Sat, 31 Aug 2024 10:54:21 +0200
Merged with branch 'eric7' in order to prepare a new release.
--- a/docs/ThirdParty.md Mon Jul 29 14:43:59 2024 +0200 +++ b/docs/ThirdParty.md Sat Aug 31 10:54:21 2024 +0200 @@ -7,8 +7,8 @@ |:------------:|:---------:|:----------------------------| | eradicate | 2.3.0 | MIT License (Expat License) | | mccabe | 0.7.0 | MIT License (Expat License) | -| pip-licenses | 4.4.0 | MIT License (MIT) | -| pycodestyle | 2.11.1 | MIT License (Expat License) | +| pip-licenses | 5.0.0 | MIT License (MIT) | +| pycodestyle | 2.12.0 | MIT License (Expat License) | | pyflakes | 3.2.0 | MIT License (MIT) | | | | | | jquery | 3.7.1 | MIT License (MIT) | @@ -18,14 +18,14 @@ | Name | Version | License | |:-----------------------------:|:---------:|:-----------------------------------| -| bandit | 1.7.8 | Apache License 2.0 | +| bandit | 1.7.9 | Apache License 2.0 | | flake8-alphabetize | 0.0.21 | MIT License (MIT No Attribution) | | flake8-annotations | 3.1.1 | MIT License (MIT) | | flake8-annotations-complexity | 0.0.8 | MIT License (MIT) | | flake8-annotations-coverage | 0.0.6 | MIT License (MIT) | | flake8-async | 22.11.14 | MIT License (MIT) | | flake8-bugbear | 24.4.26 | MIT License (MIT) | -| flake8-comprehensions | 3.14.0 | MIT License (MIT) | +| flake8-comprehensions | 3.15.0 | MIT License (MIT) | | flake8-future-annotations | 1.1.0 | MIT License (MIT) | | flake8-implicit-str-concat | 0.4.0 | MIT License (MIT) | | flake8-local-import | 1.0.6 | MIT License (MIT) |
--- a/docs/changelog.md Mon Jul 29 14:43:59 2024 +0200 +++ b/docs/changelog.md Sat Aug 31 10:54:21 2024 +0200 @@ -1,5 +1,15 @@ # Change Log +### Version 24.9 +- bug fixes +- Code Style Checker + - Updated these checkers. + - Security to `bandit` v1.7.9 + - Miscellaneous to `flake8-comprehensions` v3.15.0 +- Third Party Packages + - Upgraded `pip-licenses` to version 5.0.0. + - Upgraded `pycodestyle` to version 2.12.0. + ### Version 24.8 - bug fixes - General @@ -19,7 +29,7 @@ - Security Key Management - Added a tool to manage FIDO2 security keys. - Web Browser - - Added support for `Passkeys` (Qt >= 6.7.0). + - Added support for `Passkeys` (for Qt >= 6.7.0). ### Version 24.7.1 - bug fixes @@ -30,9 +40,9 @@ - Improved the internal debug logging system. - Code Style Checker - Updated these checkers. - - Annotations to `flake8-annotations v3.1.1` - - Miscellaneous to `flake8-bugbear v24.4.26` - - Logging to `flake8-logging v1.6.0` + - Annotations to `flake8-annotations` v3.1.1 + - Miscellaneous to `flake8-bugbear` v24.4.26 + - Logging to `flake8-logging` v1.6.0 - IDE Server - Added functionality to work with remote files and projects via an `eric-ide Server` on a remote computer. All communication to @@ -84,9 +94,9 @@ - bug fixes - Code Style Checker - Updated these checkers. - - Security to `bandit v1.7.8` - - Miscellaneous to `flake8-bugbear v24.2.6` - - Logging to `flake8-logging v1.5.0` + - Security to `bandit` v1.7.8 + - Miscellaneous to `flake8-bugbear` v24.2.6 + - Logging to `flake8-logging` v1.5.0 - MicroPython - Updated the list of known CircuitPython boards. - Updated the list of known UF2 capable boards. @@ -102,7 +112,7 @@ - Snapshot - Disabled the snapshot functionality for Wayland based desktops. - Third Party Packages - - Upgraded pip-licenses to version 4.3.4. + - Upgraded `pip-licenses` to version 4.3.4. ### Version 24.3 - bug fixes @@ -147,8 +157,8 @@ - Project Browser - Added the capability to show local variables of functions and methods. - Third Party packages - - Upgraded pyflakes to version 3.2.0. - - Upgraded jquery.js to version 3.7.1. + - Upgraded `pyflakes` to version 3.2.0. + - Upgraded `jquery.js` to version 3.7.1. ### Version 24.1 - bug fixes
--- a/scripts/install.py Mon Jul 29 14:43:59 2024 +0200 +++ b/scripts/install.py Sat Aug 31 10:54:21 2024 +0200 @@ -2017,6 +2017,9 @@ @param iconPath path of the icon file @type str """ + # replicate stuff done in pywin32.pth - needed only here + import pywin32_bootstrap # noqa + from pywintypes import com_error # noqa: I102 from win32com.client import Dispatch # noqa: I102
--- a/scripts/uninstall.py Mon Jul 29 14:43:59 2024 +0200 +++ b/scripts/uninstall.py Sat Aug 31 10:54:21 2024 +0200 @@ -197,29 +197,30 @@ os.remove(name) # Cleanup API files - apidir = getConfig("apidir") - if apidir: - for progLanguage in progLanguages: - for name in getConfig("apis"): - # step 1: programming language as given - apiname = os.path.join(apidir, progLanguage, name) - if os.path.exists(apiname): - os.remove(apiname) - # step 2: programming language as lowercase - apiname = os.path.join(apidir, progLanguage.lower(), name) - if os.path.exists(apiname): - os.remove(apiname) - for apiname in glob.glob( - os.path.join(apidir, progLanguage, "*.bas") - ) + glob.glob(os.path.join(apidir, progLanguage.lower(), "*.bas")): - if os.path.exists(apiname): - os.remove(apiname) + with contextlib.suppress(AttributeError): + apidir = getConfig("apidir") + if apidir: + for progLanguage in progLanguages: + for name in getConfig("apis"): + # step 1: programming language as given + apiname = os.path.join(apidir, progLanguage, name) + if os.path.exists(apiname): + os.remove(apiname) + # step 2: programming language as lowercase + apiname = os.path.join(apidir, progLanguage.lower(), name) + if os.path.exists(apiname): + os.remove(apiname) + for apiname in glob.glob( + os.path.join(apidir, progLanguage, "*.bas") + ) + glob.glob(os.path.join(apidir, progLanguage.lower(), "*.bas")): + if os.path.exists(apiname): + os.remove(apiname) - # remove empty directories - with contextlib.suppress(FileNotFoundError, OSError): - os.rmdir(os.path.join(apidir, progLanguage)) - with contextlib.suppress(FileNotFoundError, OSError): - os.rmdir(os.path.join(apidir, progLanguage.lower())) + # remove empty directories + with contextlib.suppress(FileNotFoundError, OSError): + os.rmdir(os.path.join(apidir, progLanguage)) + with contextlib.suppress(FileNotFoundError, OSError): + os.rmdir(os.path.join(apidir, progLanguage.lower())) if sys.platform == "darwin": # delete the Mac app bundle
--- a/src/eric7/APIs/Python3/eric7.api Mon Jul 29 14:43:59 2024 +0200 +++ b/src/eric7/APIs/Python3/eric7.api Sat Aug 31 10:54:21 2024 +0200 @@ -8737,6 +8737,7 @@ eric7.QScintilla.Editor.Editor.recordModificationTime?4(filename="") eric7.QScintilla.Editor.Editor.redo?4() eric7.QScintilla.Editor.Editor.redoAvailable?7 +eric7.QScintilla.Editor.Editor.refresh?4() eric7.QScintilla.Editor.Editor.refreshCoverageAnnotations?4() eric7.QScintilla.Editor.Editor.refreshed?7 eric7.QScintilla.Editor.Editor.registerMouseHoverHelpFunction?4(func) @@ -11050,6 +11051,7 @@ eric7.UI.UserInterface.UserInterface.activateCodeDocumentationViewer?4(switchFocus=True) eric7.UI.UserInterface.UserInterface.activateCooperationViewer?4() eric7.UI.UserInterface.UserInterface.activateDebugViewer?4() +eric7.UI.UserInterface.UserInterface.activateLeftRightSidebarWidget?4(widget) eric7.UI.UserInterface.UserInterface.activatePluginRepositoryViewer?4() eric7.UI.UserInterface.UserInterface.activateVirtualenvManager?4() eric7.UI.UserInterface.UserInterface.addEricActions?4(actions, actionType) @@ -11099,6 +11101,7 @@ eric7.UI.UserInterface.UserInterface.removeSideWidget?4(widget) eric7.UI.UserInterface.UserInterface.reregisterToolbar?4(name, text, category="") eric7.UI.UserInterface.UserInterface.setDebugProfile?4(save=True) +eric7.UI.UserInterface.UserInterface.setLeftRightSidebarWidgetIcon?4(widget, icon) eric7.UI.UserInterface.UserInterface.showEmailDialog?4(mode, attachFile=None, deleteAttachFile=False) eric7.UI.UserInterface.UserInterface.showEvent?4(_evt) eric7.UI.UserInterface.UserInterface.showFindFileByNameDialog?4()
--- a/src/eric7/Documentation/Help/source.qhp Mon Jul 29 14:43:59 2024 +0200 +++ b/src/eric7/Documentation/Help/source.qhp Sat Aug 31 10:54:21 2024 +0200 @@ -4740,7 +4740,6 @@ <keyword name="Editor.__processSyntaxCheckError" id="Editor.__processSyntaxCheckError" ref="eric7.QScintilla.Editor.html#Editor.__processSyntaxCheckError" /> <keyword name="Editor.__processSyntaxCheckResult" id="Editor.__processSyntaxCheckResult" ref="eric7.QScintilla.Editor.html#Editor.__processSyntaxCheckResult" /> <keyword name="Editor.__projectPropertiesChanged" id="Editor.__projectPropertiesChanged" ref="eric7.QScintilla.Editor.html#Editor.__projectPropertiesChanged" /> - <keyword name="Editor.__refresh" id="Editor.__refresh" ref="eric7.QScintilla.Editor.html#Editor.__refresh" /> <keyword name="Editor.__refreshAnnotations" id="Editor.__refreshAnnotations" ref="eric7.QScintilla.Editor.html#Editor.__refreshAnnotations" /> <keyword name="Editor.__registerImages" id="Editor.__registerImages" ref="eric7.QScintilla.Editor.html#Editor.__registerImages" /> <keyword name="Editor.__reinitOnlineChangeTrace" id="Editor.__reinitOnlineChangeTrace" ref="eric7.QScintilla.Editor.html#Editor.__reinitOnlineChangeTrace" /> @@ -4982,6 +4981,7 @@ <keyword name="Editor.receive" id="Editor.receive" ref="eric7.QScintilla.Editor.html#Editor.receive" /> <keyword name="Editor.recordModificationTime" id="Editor.recordModificationTime" ref="eric7.QScintilla.Editor.html#Editor.recordModificationTime" /> <keyword name="Editor.redo" id="Editor.redo" ref="eric7.QScintilla.Editor.html#Editor.redo" /> + <keyword name="Editor.refresh" id="Editor.refresh" ref="eric7.QScintilla.Editor.html#Editor.refresh" /> <keyword name="Editor.refreshCoverageAnnotations" id="Editor.refreshCoverageAnnotations" ref="eric7.QScintilla.Editor.html#Editor.refreshCoverageAnnotations" /> <keyword name="Editor.registerMouseHoverHelpFunction" id="Editor.registerMouseHoverHelpFunction" ref="eric7.QScintilla.Editor.html#Editor.registerMouseHoverHelpFunction" /> <keyword name="Editor.reload" id="Editor.reload" ref="eric7.QScintilla.Editor.html#Editor.reload" /> @@ -18156,7 +18156,6 @@ <keyword name="UserInterface.__activateFindLocationWidget" id="UserInterface.__activateFindLocationWidget" ref="eric7.UI.UserInterface.html#UserInterface.__activateFindLocationWidget" /> <keyword name="UserInterface.__activateHelpViewerWidget" id="UserInterface.__activateHelpViewerWidget" ref="eric7.UI.UserInterface.html#UserInterface.__activateHelpViewerWidget" /> <keyword name="UserInterface.__activateIRC" id="UserInterface.__activateIRC" ref="eric7.UI.UserInterface.html#UserInterface.__activateIRC" /> - <keyword name="UserInterface.__activateLeftRightSidebarWidget" id="UserInterface.__activateLeftRightSidebarWidget" ref="eric7.UI.UserInterface.html#UserInterface.__activateLeftRightSidebarWidget" /> <keyword name="UserInterface.__activateLogViewer" id="UserInterface.__activateLogViewer" ref="eric7.UI.UserInterface.html#UserInterface.__activateLogViewer" /> <keyword name="UserInterface.__activateMicroPython" id="UserInterface.__activateMicroPython" ref="eric7.UI.UserInterface.html#UserInterface.__activateMicroPython" /> <keyword name="UserInterface.__activateMultiProjectBrowser" id="UserInterface.__activateMultiProjectBrowser" ref="eric7.UI.UserInterface.html#UserInterface.__activateMultiProjectBrowser" /> @@ -18329,6 +18328,7 @@ <keyword name="UserInterface.activateCodeDocumentationViewer" id="UserInterface.activateCodeDocumentationViewer" ref="eric7.UI.UserInterface.html#UserInterface.activateCodeDocumentationViewer" /> <keyword name="UserInterface.activateCooperationViewer" id="UserInterface.activateCooperationViewer" ref="eric7.UI.UserInterface.html#UserInterface.activateCooperationViewer" /> <keyword name="UserInterface.activateDebugViewer" id="UserInterface.activateDebugViewer" ref="eric7.UI.UserInterface.html#UserInterface.activateDebugViewer" /> + <keyword name="UserInterface.activateLeftRightSidebarWidget" id="UserInterface.activateLeftRightSidebarWidget" ref="eric7.UI.UserInterface.html#UserInterface.activateLeftRightSidebarWidget" /> <keyword name="UserInterface.activatePluginRepositoryViewer" id="UserInterface.activatePluginRepositoryViewer" ref="eric7.UI.UserInterface.html#UserInterface.activatePluginRepositoryViewer" /> <keyword name="UserInterface.activateVirtualenvManager" id="UserInterface.activateVirtualenvManager" ref="eric7.UI.UserInterface.html#UserInterface.activateVirtualenvManager" /> <keyword name="UserInterface.addEricActions" id="UserInterface.addEricActions" ref="eric7.UI.UserInterface.html#UserInterface.addEricActions" /> @@ -18370,6 +18370,7 @@ <keyword name="UserInterface.removeSideWidget" id="UserInterface.removeSideWidget" ref="eric7.UI.UserInterface.html#UserInterface.removeSideWidget" /> <keyword name="UserInterface.reregisterToolbar" id="UserInterface.reregisterToolbar" ref="eric7.UI.UserInterface.html#UserInterface.reregisterToolbar" /> <keyword name="UserInterface.setDebugProfile" id="UserInterface.setDebugProfile" ref="eric7.UI.UserInterface.html#UserInterface.setDebugProfile" /> + <keyword name="UserInterface.setLeftRightSidebarWidgetIcon" id="UserInterface.setLeftRightSidebarWidgetIcon" ref="eric7.UI.UserInterface.html#UserInterface.setLeftRightSidebarWidgetIcon" /> <keyword name="UserInterface.showEmailDialog" id="UserInterface.showEmailDialog" ref="eric7.UI.UserInterface.html#UserInterface.showEmailDialog" /> <keyword name="UserInterface.showEvent" id="UserInterface.showEvent" ref="eric7.UI.UserInterface.html#UserInterface.showEvent" /> <keyword name="UserInterface.showFindFileByNameDialog" id="UserInterface.showFindFileByNameDialog" ref="eric7.UI.UserInterface.html#UserInterface.showFindFileByNameDialog" />
--- a/src/eric7/Documentation/Source/eric7.QScintilla.Editor.html Mon Jul 29 14:43:59 2024 +0200 +++ b/src/eric7/Documentation/Source/eric7.QScintilla.Editor.html Sat Aug 31 10:54:21 2024 +0200 @@ -698,10 +698,6 @@ <td>Private slot to handle changes of the project properties.</td> </tr> <tr> -<td><a href="#Editor.__refresh">__refresh</a></td> -<td>Private slot to refresh the editor contents.</td> -</tr> -<tr> <td><a href="#Editor.__refreshAnnotations">__refreshAnnotations</a></td> <td>Private method to refresh the annotations.</td> </tr> @@ -1666,6 +1662,10 @@ <td>Public method to redo the last recorded change.</td> </tr> <tr> +<td><a href="#Editor.refresh">refresh</a></td> +<td>Public slot to refresh the editor contents.</td> +</tr> +<tr> <td><a href="#Editor.refreshCoverageAnnotations">refreshCoverageAnnotations</a></td> <td>Public method to refresh the code coverage annotations.</td> </tr> @@ -3777,13 +3777,6 @@ Private slot to handle changes of the project properties. </p> -<a NAME="Editor.__refresh" ID="Editor.__refresh"></a> -<h4>Editor.__refresh</h4> -<b>__refresh</b>(<i></i>) -<p> - Private slot to refresh the editor contents. -</p> - <a NAME="Editor.__refreshAnnotations" ID="Editor.__refreshAnnotations"></a> <h4>Editor.__refreshAnnotations</h4> <b>__refreshAnnotations</b>(<i></i>) @@ -7157,6 +7150,13 @@ Public method to redo the last recorded change. </p> +<a NAME="Editor.refresh" ID="Editor.refresh"></a> +<h4>Editor.refresh</h4> +<b>refresh</b>(<i></i>) +<p> + Public slot to refresh the editor contents. +</p> + <a NAME="Editor.refreshCoverageAnnotations" ID="Editor.refreshCoverageAnnotations"></a> <h4>Editor.refreshCoverageAnnotations</h4> <b>refreshCoverageAnnotations</b>(<i></i>)
--- a/src/eric7/Documentation/Source/eric7.UI.UserInterface.html Mon Jul 29 14:43:59 2024 +0200 +++ b/src/eric7/Documentation/Source/eric7.UI.UserInterface.html Sat Aug 31 10:54:21 2024 +0200 @@ -138,10 +138,6 @@ <td>Private slot to handle the activation of the IRC window.</td> </tr> <tr> -<td><a href="#UserInterface.__activateLeftRightSidebarWidget">__activateLeftRightSidebarWidget</a></td> -<td>Private method to activate the given widget in the left or right sidebar.</td> -</tr> -<tr> <td><a href="#UserInterface.__activateLogViewer">__activateLogViewer</a></td> <td>Private slot to handle the activation of the Log Viewer.</td> </tr> @@ -830,6 +826,10 @@ <td>Public slot to handle the activation of the debug viewer.</td> </tr> <tr> +<td><a href="#UserInterface.activateLeftRightSidebarWidget">activateLeftRightSidebarWidget</a></td> +<td>Public method to activate the given widget in the left or right sidebar.</td> +</tr> +<tr> <td><a href="#UserInterface.activatePluginRepositoryViewer">activatePluginRepositoryViewer</a></td> <td>Public slot to activate the plugin repository viewer.</td> </tr> @@ -994,6 +994,10 @@ <td>Public slot to activate the debug view profile.</td> </tr> <tr> +<td><a href="#UserInterface.setLeftRightSidebarWidgetIcon">setLeftRightSidebarWidgetIcon</a></td> +<td>Public method to set the icon of the given widget in the left or right sidebar.</td> +</tr> +<tr> <td><a href="#UserInterface.showEmailDialog">showEmailDialog</a></td> <td>Public slot to show the email dialog in a given mode.</td> </tr> @@ -1228,21 +1232,6 @@ Private slot to handle the activation of the IRC window. </p> -<a NAME="UserInterface.__activateLeftRightSidebarWidget" ID="UserInterface.__activateLeftRightSidebarWidget"></a> -<h4>UserInterface.__activateLeftRightSidebarWidget</h4> -<b>__activateLeftRightSidebarWidget</b>(<i>widget</i>) -<p> - Private method to activate the given widget in the left or right - sidebar. -</p> - -<dl> - -<dt><i>widget</i> (QWidget)</dt> -<dd> -reference to the widget to be activated -</dd> -</dl> <a NAME="UserInterface.__activateLogViewer" ID="UserInterface.__activateLogViewer"></a> <h4>UserInterface.__activateLogViewer</h4> <b>__activateLogViewer</b>(<i></i>) @@ -3048,6 +3037,21 @@ Public slot to handle the activation of the debug viewer. </p> +<a NAME="UserInterface.activateLeftRightSidebarWidget" ID="UserInterface.activateLeftRightSidebarWidget"></a> +<h4>UserInterface.activateLeftRightSidebarWidget</h4> +<b>activateLeftRightSidebarWidget</b>(<i>widget</i>) +<p> + Public method to activate the given widget in the left or right + sidebar. +</p> + +<dl> + +<dt><i>widget</i> (QWidget)</dt> +<dd> +reference to the widget to be activated +</dd> +</dl> <a NAME="UserInterface.activatePluginRepositoryViewer" ID="UserInterface.activatePluginRepositoryViewer"></a> <h4>UserInterface.activatePluginRepositoryViewer</h4> <b>activatePluginRepositoryViewer</b>(<i></i>) @@ -3751,6 +3755,25 @@ be saved </dd> </dl> +<a NAME="UserInterface.setLeftRightSidebarWidgetIcon" ID="UserInterface.setLeftRightSidebarWidgetIcon"></a> +<h4>UserInterface.setLeftRightSidebarWidgetIcon</h4> +<b>setLeftRightSidebarWidgetIcon</b>(<i>widget, icon</i>) +<p> + Public method to set the icon of the given widget in the left or right + sidebar. +</p> + +<dl> + +<dt><i>widget</i> (QWidget)</dt> +<dd> +reference to the widget to set the icon for +</dd> +<dt><i>icon</i> (QIcon)</dt> +<dd> +icon to be set +</dd> +</dl> <a NAME="UserInterface.showEmailDialog" ID="UserInterface.showEmailDialog"></a> <h4>UserInterface.showEmailDialog</h4> <b>showEmailDialog</b>(<i>mode, attachFile=None, deleteAttachFile=False</i>)
--- a/src/eric7/EricWidgets/EricToolBarDialog.py Mon Jul 29 14:43:59 2024 +0200 +++ b/src/eric7/EricWidgets/EricToolBarDialog.py Sat Aug 31 10:54:21 2024 +0200 @@ -258,8 +258,10 @@ row = self.toolbarActionsList.currentRow() self.upButton.setEnabled(row > 0) - self.downButton.setEnabled(row < self.toolbarActionsList.count() - 1) - self.leftButton.setEnabled(self.toolbarActionsList.count() > 0) + self.downButton.setEnabled( + row >= 0 and row < self.toolbarActionsList.count() - 1 + ) + self.leftButton.setEnabled(self.toolbarActionsList.count() > 0 and row >= 0) rightEnable = ( self.actionsTree.currentItem().parent() is not None or self.actionsTree.currentItem().text(0) == self.__separatorText
--- a/src/eric7/PipInterface/piplicenses.py Mon Jul 29 14:43:59 2024 +0200 +++ b/src/eric7/PipInterface/piplicenses.py Sat Aug 31 10:54:21 2024 +0200 @@ -38,6 +38,8 @@ # - changed 'create_licenses_table' to 'create_licenses_list' # - changed 'create_summary_table' to 'create_summary_list' # - changed 'create_output_string' to return a JSON string +# - removed 'load_config_from_file()' because we only use command line +# configuration # from __future__ import annotations @@ -66,13 +68,10 @@ __pkgname__ = "pip-licenses" -__version__ = "4.4.0" -__author__ = "raimon" -__license__ = "MIT" +__version__ = "5.0.0" __summary__ = ( "Dump the software license list of Python packages installed with pip." ) -__url__ = "https://github.com/raimon49/pip-licenses" FIELD_NAMES = ( @@ -678,6 +677,12 @@ ] +def get_value_from_enum( + enum_cls: Type[NoValueEnum], value: str +) -> NoValueEnum: + return getattr(enum_cls, value_to_enum_key(value)) + + MAP_DEST_TO_ENUM = { 'from_': FromArg, 'order': OrderArg, @@ -693,11 +698,10 @@ option_string: Optional[str] = None, ) -> None: enum_cls = MAP_DEST_TO_ENUM[self.dest] - values = value_to_enum_key(values) - setattr(namespace, self.dest, getattr(enum_cls, values)) + setattr(namespace, self.dest, get_value_from_enum(enum_cls, values)) -def create_parser(): +def create_parser() -> CompatibleArgumentParser: parser = CompatibleArgumentParser( description=__summary__, formatter_class=CustomHelpFormatter )
--- a/src/eric7/Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/MiscellaneousChecker.py Mon Jul 29 14:43:59 2024 +0200 +++ b/src/eric7/Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/MiscellaneousChecker.py Sat Aug 31 10:54:21 2024 +0200 @@ -96,17 +96,18 @@ "M197", "M198", "M199", + "M200", ## Dictionaries with sorted keys - "M201", + "M251", ## Property - "M210", - "M211", - "M212", - "M213", - "M214", - "M215", - "M216", - "M217", + "M260", + "M261", + "M262", + "M263", + "M264", + "M265", + "M266", + "M267", ## Naive datetime usage "M301", "M302", @@ -301,12 +302,13 @@ "M197", "M198", "M199", + "M200", ), ), - (self.__checkDictWithSortedKeys, ("M201",)), + (self.__checkDictWithSortedKeys, ("M251",)), ( self.__checkProperties, - ("M210", "M211", "M212", "M213", "M214", "M215", "M216", "M217"), + ("M260", "M261", "M262", "M263", "M264", "M265", "M266", "M267"), ), ( self.__checkDateTime, @@ -887,9 +889,15 @@ """ Private method to check some comprehension related things. - This method is adapted from: flake8-comprehensions v3.14.0 + This method is adapted from: flake8-comprehensions v3.15.0 Original: Copyright (c) 2017 Adam Johnson """ + compType = { + ast.DictComp: "dict", + ast.ListComp: "list", + ast.SetComp: "set", + } + visitedMapCalls = set() for node in ast.walk(self.__tree): @@ -1136,37 +1144,47 @@ node.lineno - 1, node.col_offset, "M197", comprehensionType ) - elif isinstance(node, (ast.DictComp, ast.ListComp, ast.SetComp)) and ( - len(node.generators) == 1 - and not node.generators[0].ifs - and not node.generators[0].is_async - and ( - ( - isinstance(node, (ast.ListComp, ast.SetComp)) - and isinstance(node.elt, ast.Name) - and isinstance(node.generators[0].target, ast.Name) - and node.elt.id == node.generators[0].target.id - ) - or ( - isinstance(node, ast.DictComp) - and isinstance(node.key, ast.Name) - and isinstance(node.value, ast.Name) - and isinstance(node.generators[0].target, ast.Tuple) - and len(node.generators[0].target.elts) == 2 - and isinstance(node.generators[0].target.elts[0], ast.Name) - and node.generators[0].target.elts[0].id == node.key.id - and isinstance(node.generators[0].target.elts[1], ast.Name) - and node.generators[0].target.elts[1].id == node.value.id - ) + elif isinstance(node, (ast.DictComp, ast.ListComp, ast.SetComp)) and ( + len(node.generators) == 1 + and not node.generators[0].ifs + and not node.generators[0].is_async + ): + if ( + isinstance(node, (ast.ListComp, ast.SetComp)) + and isinstance(node.elt, ast.Name) + and isinstance(node.generators[0].target, ast.Name) + and node.elt.id == node.generators[0].target.id + ) or ( + isinstance(node, ast.DictComp) + and isinstance(node.key, ast.Name) + and isinstance(node.value, ast.Name) + and isinstance(node.generators[0].target, ast.Tuple) + and len(node.generators[0].target.elts) == 2 + and isinstance(node.generators[0].target.elts[0], ast.Name) + and node.generators[0].target.elts[0].id == node.key.id + and isinstance(node.generators[0].target.elts[1], ast.Name) + and node.generators[0].target.elts[1].id == node.value.id + ): + self.__error( + node.lineno - 1, + node.col_offset, + "M196", + compType[node.__class__], ) + + elif ( + isinstance(node, ast.DictComp) + and isinstance(node.key, ast.Name) + and isinstance(node.value, ast.Constant) + and isinstance(node.generators[0].target, ast.Name) + and node.key.id == node.generators[0].target.id ): - compType = { - ast.DictComp: "dict", - ast.ListComp: "list", - ast.SetComp: "set", - }[node.__class__] - - self.__error(node.lineno - 1, node.col_offset, "M196", compType) + self.__error( + node.lineno - 1, + node.col_offset, + "M200", + compType[node.__class__], + ) def __checkMutableDefault(self): """ @@ -1256,7 +1274,7 @@ if ( "__IGNORE_WARNING__" in self.__source[node.lineno - 1] - or "__IGNORE_WARNING_M201__" in self.__source[node.lineno - 1] + or "__IGNORE_WARNING_M251__" in self.__source[node.lineno - 1] ): return False @@ -1274,7 +1292,7 @@ self.__error( key2.lineno - 1, key2.col_offset, - "M201", + "M251", key2.value, key1.value, ) @@ -1364,7 +1382,7 @@ self.__error( node.lineno - 1, node.col_offset, - "M210", + "M260", len(node.args.args), ) @@ -1377,7 +1395,7 @@ self.__error( node.lineno - 1, node.col_offset, - "M215", + "M265", node.name, decorator.value.id, ) @@ -1385,7 +1403,7 @@ self.__error( node.lineno - 1, node.col_offset, - "M213", + "M263", decorator.value.id, node.name, ) @@ -1393,7 +1411,7 @@ self.__error( node.lineno - 1, node.col_offset, - "M211", + "M261", len(node.args.args), ) @@ -1405,7 +1423,7 @@ self.__error( node.lineno - 1, node.col_offset, - "M216", + "M266", node.name, decorator.value.id, ) @@ -1413,7 +1431,7 @@ self.__error( node.lineno - 1, node.col_offset, - "M214", + "M264", decorator.value.id, node.name, ) @@ -1421,12 +1439,12 @@ self.__error( node.lineno - 1, node.col_offset, - "M212", + "M262", len(node.args.args), ) if propertyCount > 1: - self.__error(node.lineno - 1, node.col_offset, "M217", node.name) + self.__error(node.lineno - 1, node.col_offset, "M267", node.name) ####################################################################### ## The following methods check for implicitly concatenated strings.
--- a/src/eric7/Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py Mon Jul 29 14:43:59 2024 +0200 +++ b/src/eric7/Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py Sat Aug 31 10:54:21 2024 +0200 @@ -131,44 +131,48 @@ "unnecessary list comprehension passed to {0}() prevents short-circuiting" " - rewrite as a generator", ), + "M200": QCoreApplication.translate( + "MiscellaneousChecker", + "unnecessary {0} comprehension - rewrite using dict.fromkeys()" + ), ## Dictionaries with sorted keys - "M201": QCoreApplication.translate( + "M251": QCoreApplication.translate( "MiscellaneousChecker", "sort keys - '{0}' should be before '{1}'", ), ## Property - "M210": QCoreApplication.translate( + "M260": QCoreApplication.translate( "MiscellaneousChecker", "the number of arguments for property getter method is wrong" " (should be 1 instead of {0})", ), - "M211": QCoreApplication.translate( + "M261": QCoreApplication.translate( "MiscellaneousChecker", "the number of arguments for property setter method is wrong" " (should be 2 instead of {0})", ), - "M212": QCoreApplication.translate( + "M262": QCoreApplication.translate( "MiscellaneousChecker", "the number of arguments for property deleter method is wrong" " (should be 1 instead of {0})", ), - "M213": QCoreApplication.translate( + "M263": QCoreApplication.translate( "MiscellaneousChecker", "the name of the setter method is wrong (should be '{0}' instead of '{1}')", ), - "M214": QCoreApplication.translate( + "M264": QCoreApplication.translate( "MiscellaneousChecker", "the name of the deleter method is wrong (should be '{0}' instead of '{1}')", ), - "M215": QCoreApplication.translate( + "M265": QCoreApplication.translate( "MiscellaneousChecker", "the name of the setter decorator is wrong (should be '{0}' instead of '{1}')", ), - "M216": QCoreApplication.translate( + "M266": QCoreApplication.translate( "MiscellaneousChecker", "the name of the deleter decorator is wrong (should be '{0}' instead of '{1}')", ), - "M217": QCoreApplication.translate( + "M267": QCoreApplication.translate( "MiscellaneousChecker", "multiple decorators were used to declare property '{0}'", ), @@ -629,17 +633,18 @@ "M197": ["list"], "M198": ["dict comprehension"], "M199": ["any"], + "M200": ["dict"], ## Dictionaries with sorted keys - "M201": ["bar", "foo"], + "M251": ["bar", "foo"], ## Property - "M210": [2], - "M211": [1], - "M212": [2], - "M213": ["foo", "bar"], - "M214": ["foo", "bar"], - "M215": ["foo", "bar"], - "M216": ["foo", "bar"], - "M217": ["foo"], + "M260": [2], + "M261": [1], + "M262": [2], + "M263": ["foo", "bar"], + "M264": ["foo", "bar"], + "M265": ["foo", "bar"], + "M266": ["foo", "bar"], + "M267": ["foo"], ## Bugbear "M507": ["x"], "M513": ["Exception"],
--- a/src/eric7/Plugins/CheckerPlugins/CodeStyleChecker/Security/Checks/injectionShell.py Mon Jul 29 14:43:59 2024 +0200 +++ b/src/eric7/Plugins/CheckerPlugins/CodeStyleChecker/Security/Checks/injectionShell.py Sat Aug 31 10:54:21 2024 +0200 @@ -285,7 +285,7 @@ node = context.node.args[0] # some calls take an arg list, check the first part - if isinstance(node, ast.List): + if isinstance(node, ast.List) and node.elts: node = node.elts[0] # make sure the param is a string literal and not a var name
--- a/src/eric7/Plugins/CheckerPlugins/CodeStyleChecker/Security/__init__.py Mon Jul 29 14:43:59 2024 +0200 +++ b/src/eric7/Plugins/CheckerPlugins/CodeStyleChecker/Security/__init__.py Sat Aug 31 10:54:21 2024 +0200 @@ -8,5 +8,5 @@ """ ########################################################################### -## The security checker is based on Bandit v1.7.8. ## +## The security checker is based on Bandit v1.7.9. ## ###########################################################################
--- a/src/eric7/Plugins/CheckerPlugins/CodeStyleChecker/pycodestyle.py Mon Jul 29 14:43:59 2024 +0200 +++ b/src/eric7/Plugins/CheckerPlugins/CodeStyleChecker/pycodestyle.py Sat Aug 31 10:54:21 2024 +0200 @@ -84,7 +84,7 @@ ): # pragma: no cover (<py310) tokenize._compile = lru_cache(tokenize._compile) # type: ignore -__version__ = '2.11.1-eric' +__version__ = '2.12.0-eric' DEFAULT_EXCLUDE = '.svn,CVS,.bzr,.hg,.git,__pycache__,.tox' DEFAULT_IGNORE = 'E121,E123,E126,E226,E24,E704,W503,W504' @@ -136,14 +136,15 @@ ERRORCODE_REGEX = re.compile(r'\b[A-Z]\d{3}\b') DOCSTRING_REGEX = re.compile(r'u?r?["\']') EXTRANEOUS_WHITESPACE_REGEX = re.compile(r'[\[({][ \t]|[ \t][\]}),;:](?!=)') +WHITESPACE_AFTER_DECORATOR_REGEX = re.compile(r'@\s') WHITESPACE_AFTER_COMMA_REGEX = re.compile(r'[,;:]\s*(?: |\t)') COMPARE_SINGLETON_REGEX = re.compile(r'(\bNone|\bFalse|\bTrue)?\s*([=!]=)' r'\s*(?(1)|(None|False|True))\b') COMPARE_NEGATIVE_REGEX = re.compile(r'\b(?<!is\s)(not)\s+[^][)(}{ ]+\s+' r'(in|is)\s') COMPARE_TYPE_REGEX = re.compile( - r'[=!]=\s+type(?:\s*\(\s*([^)]*[^ )])\s*\))' - r'|\btype(?:\s*\(\s*([^)]*[^ )])\s*\))\s+[=!]=' + r'[=!]=\s+type(?:\s*\(\s*([^)]*[^\s)])\s*\))' + r'|(?<!\.)\btype(?:\s*\(\s*([^)]*[^\s)])\s*\))\s+[=!]=' ) KEYWORD_REGEX = re.compile(r'(\s*)\b(?:%s)\b(\s*)' % r'|'.join(KEYWORDS)) OPERATOR_REGEX = re.compile(r'(?:[^,\s])(\s*)(?:[-+*/|!<=>%&^]+|:=)(\s*)') @@ -466,6 +467,9 @@ E203: if x == 4: print x, y; x, y = y , x E203: if x == 4: print x, y ; x, y = y, x E203: if x == 4 : print x, y; x, y = y, x + + Okay: @decorator + E204: @ decorator """ line = logical_line for match in EXTRANEOUS_WHITESPACE_REGEX.finditer(line): @@ -479,6 +483,8 @@ code = ('E202' if char in '}])' else 'E203') # if char in ',;:' yield found, f"{code} whitespace before '{char}'", char + if WHITESPACE_AFTER_DECORATOR_REGEX.match(logical_line): + yield 1, "E204 whitespace after decorator '@'" @register_check def whitespace_around_keywords(logical_line): @@ -1297,6 +1303,8 @@ comment = True if start[0] != prev_start and parens and backslash and not comment: yield backslash, "E502 the backslash is redundant between brackets" + if start[0] != prev_start: + comment = False # Reset comment flag on newline if end[0] != prev_end: if line.rstrip('\r\n').endswith('\\'): backslash = (end[0], len(line.splitlines()[-1]) - 1)
--- a/src/eric7/Plugins/CheckerPlugins/CodeStyleChecker/translations.py Mon Jul 29 14:43:59 2024 +0200 +++ b/src/eric7/Plugins/CheckerPlugins/CodeStyleChecker/translations.py Sat Aug 31 10:54:21 2024 +0200 @@ -92,6 +92,7 @@ "E201": QCoreApplication.translate("pycodestyle", "whitespace after '{0}'"), "E202": QCoreApplication.translate("pycodestyle", "whitespace before '{0}'"), "E203": QCoreApplication.translate("pycodestyle", "whitespace before '{0}'"), + "E204": QCoreApplication.translate("pycodestyle", "whitespace after decorator '@'"), "E211": QCoreApplication.translate("pycodestyle", "whitespace before '{0}'"), "E221": QCoreApplication.translate( "pycodestyle", "multiple spaces before operator"
--- a/src/eric7/Plugins/ViewManagerPlugins/Tabview/Tabview.py Mon Jul 29 14:43:59 2024 +0200 +++ b/src/eric7/Plugins/ViewManagerPlugins/Tabview/Tabview.py Sat Aug 31 10:54:21 2024 +0200 @@ -598,6 +598,7 @@ self.vm.insertView( assembly, self, targetIndex, editor.getFileName(), editor.getNoName() ) + assembly.finishSetup() def __copyTab(self, sourceIndex, targetIndex): """ @@ -615,6 +616,7 @@ self.vm.insertView( assembly, self, targetIndex, editor.getFileName(), editor.getNoName() ) + assembly.finishSetup() def currentWidget(self): """
--- a/src/eric7/Project/Project.py Mon Jul 29 14:43:59 2024 +0200 +++ b/src/eric7/Project/Project.py Sat Aug 31 10:54:21 2024 +0200 @@ -1179,7 +1179,8 @@ # check, if the files of the project still exist in the # project directory for fileCategory in self.getFileCategories(): - self.__checkFilesExist(fileCategory) + if fileCategory != "TRANSLATIONS": + self.__checkFilesExist(fileCategory) # get the names of subdirectories the files are stored in for fileCategory in [c for c in self.getFileCategories() if c != "OTHERS"]:
--- a/src/eric7/QScintilla/Editor.py Mon Jul 29 14:43:59 2024 +0200 +++ b/src/eric7/QScintilla/Editor.py Sat Aug 31 10:54:21 2024 +0200 @@ -8399,7 +8399,7 @@ """ if self.__checkExternalModification and self.checkModificationTime(): if Preferences.getEditor("AutoReopen") and not self.isModified(): - self.__refresh() + self.refresh() else: msg = self.tr( """<p>The file <b>{0}</b> has been changed while it""" @@ -8420,7 +8420,7 @@ yesDefault=yesDefault, ) if res: - self.__refresh() + self.refresh() else: # do not prompt for this change again... self.recordModificationTime() @@ -8499,9 +8499,9 @@ return False @pyqtSlot() - def __refresh(self): - """ - Private slot to refresh the editor contents. + def refresh(self): + """ + Public slot to refresh the editor contents. """ # save cursor position cline, cindex = self.getCursorPosition() @@ -8570,7 +8570,7 @@ else True ) if ok: - self.__refresh() + self.refresh() def setMonospaced(self, on): """
--- a/src/eric7/QScintilla/EditorAssembly.py Mon Jul 29 14:43:59 2024 +0200 +++ b/src/eric7/QScintilla/EditorAssembly.py Sat Aug 31 10:54:21 2024 +0200 @@ -114,7 +114,7 @@ Public method to finish the setup of the assembly. """ splitterWidth = ( - self.__editorSplitter.width() - self.__editorSplitter.handleWidth() + self.parent().width() - self.__editorSplitter.handleWidth() ) outlineWidth = Preferences.getEditor("SourceOutlineWidth") self.__editorSplitter.setSizes([splitterWidth - outlineWidth, outlineWidth])
--- a/src/eric7/QScintilla/MiniEditor.py Mon Jul 29 14:43:59 2024 +0200 +++ b/src/eric7/QScintilla/MiniEditor.py Sat Aug 31 10:54:21 2024 +0200 @@ -370,6 +370,7 @@ self.__textEdit.selectionChanged.connect( lambda: self.__searchReplaceWidget.selectionChanged(self.__textEdit) ) + self.__textEdit.zoomValueChanged.connect(self.sbZoom.setValue) if filename: if FileSystemUtilities.isPlainFileName(filename):
--- a/src/eric7/QScintilla/QsciScintillaCompat.py Mon Jul 29 14:43:59 2024 +0200 +++ b/src/eric7/QScintilla/QsciScintillaCompat.py Sat Aug 31 10:54:21 2024 +0200 @@ -431,6 +431,7 @@ @type int """ super().zoomIn(zoom) + self.zoomValueChanged.emit(self.zoom) def zoomOut(self, zoom=1): """ @@ -440,6 +441,7 @@ @type int """ super().zoomOut(zoom) + self.zoomValueChanged.emit(self.zoom) def zoomTo(self, zoom): """
--- a/src/eric7/UI/UserInterface.py Mon Jul 29 14:43:59 2024 +0200 +++ b/src/eric7/UI/UserInterface.py Sat Aug 31 10:54:21 2024 +0200 @@ -5643,9 +5643,27 @@ """ return self.__layoutType - def __activateLeftRightSidebarWidget(self, widget): - """ - Private method to activate the given widget in the left or right + def setLeftRightSidebarWidgetIcon(self, widget, icon): + """ + Public method to set the icon of the given widget in the left or right + sidebar. + + @param widget reference to the widget to set the icon for + @type QWidget + @param icon icon to be set + @type QIcon + """ + sidebar = ( + self.leftSidebar + if Preferences.getUI("CombinedLeftRightSidebar") + else self.rightSidebar + ) + index = sidebar.indexOf(widget) + sidebar.setTabIcon(index, icon) + + def activateLeftRightSidebarWidget(self, widget): + """ + Public method to activate the given widget in the left or right sidebar. @param widget reference to the widget to be activated @@ -5694,7 +5712,7 @@ self.rToolboxDock.show() self.rToolbox.setCurrentWidget(self.debugViewer) elif self.__layoutType == "Sidebars": - self.__activateLeftRightSidebarWidget(self.debugViewer) + self.activateLeftRightSidebarWidget(self.debugViewer) self.debugViewer.currentWidget().setFocus( Qt.FocusReason.ActiveWindowFocusReason ) @@ -5886,7 +5904,7 @@ self.rToolboxDock.show() self.rToolbox.setCurrentWidget(self.cooperation) elif self.__layoutType == "Sidebars": - self.__activateLeftRightSidebarWidget(self.cooperation) + self.activateLeftRightSidebarWidget(self.cooperation) self.cooperation.setFocus(Qt.FocusReason.ActiveWindowFocusReason) def __activateIRC(self): @@ -5898,7 +5916,7 @@ self.rToolboxDock.show() self.rToolbox.setCurrentWidget(self.irc) elif self.__layoutType == "Sidebars": - self.__activateLeftRightSidebarWidget(self.irc) + self.activateLeftRightSidebarWidget(self.irc) self.irc.setFocus(Qt.FocusReason.ActiveWindowFocusReason) def __activateSymbolsViewer(self): @@ -5949,7 +5967,7 @@ self.rToolboxDock.show() self.rToolbox.setCurrentWidget(self.codeDocumentationViewer) elif self.__layoutType == "Sidebars": - self.__activateLeftRightSidebarWidget(self.codeDocumentationViewer) + self.activateLeftRightSidebarWidget(self.codeDocumentationViewer) if switchFocus: self.codeDocumentationViewer.setFocus( Qt.FocusReason.ActiveWindowFocusReason @@ -5964,7 +5982,7 @@ self.rToolboxDock.show() self.rToolbox.setCurrentWidget(self.pipWidget) elif self.__layoutType == "Sidebars": - self.__activateLeftRightSidebarWidget(self.pipWidget) + self.activateLeftRightSidebarWidget(self.pipWidget) self.pipWidget.setFocus(Qt.FocusReason.ActiveWindowFocusReason) def __activateCondaWidget(self): @@ -5976,7 +5994,7 @@ self.rToolboxDock.show() self.rToolbox.setCurrentWidget(self.condaWidget) elif self.__layoutType == "Sidebars": - self.__activateLeftRightSidebarWidget(self.condaWidget) + self.activateLeftRightSidebarWidget(self.condaWidget) self.condaWidget.setFocus(Qt.FocusReason.ActiveWindowFocusReason) def __activateMicroPython(self): @@ -5988,7 +6006,7 @@ self.rToolboxDock.show() self.rToolbox.setCurrentWidget(self.microPythonWidget) elif self.__layoutType == "Sidebars": - self.__activateLeftRightSidebarWidget(self.microPythonWidget) + self.activateLeftRightSidebarWidget(self.microPythonWidget) self.microPythonWidget.setFocus(Qt.FocusReason.ActiveWindowFocusReason) def __toggleWindow(self, w): @@ -6303,9 +6321,7 @@ Private slot to start the FIDO2 Security Key Management. """ fido2Mgmt = os.path.join(os.path.dirname(__file__), "..", "eric7_fido2.py") - QProcess.startDetached( - PythonUtilities.getPythonExecutable(), [fido2Mgmt] - ) + QProcess.startDetached(PythonUtilities.getPythonExecutable(), [fido2Mgmt]) def __customViewer(self, home=None): """ @@ -8158,7 +8174,7 @@ self.rToolboxDock.show() self.rToolbox.setCurrentWidget(self.__helpViewerWidget) elif self.__layoutType == "Sidebars": - self.__activateLeftRightSidebarWidget(self.__helpViewerWidget) + self.activateLeftRightSidebarWidget(self.__helpViewerWidget) self.__helpViewerWidget.setFocus(Qt.FocusReason.ActiveWindowFocusReason) url = None @@ -8306,7 +8322,7 @@ self.rToolboxDock.show() self.rToolbox.setCurrentWidget(self.pluginRepositoryViewer) elif self.__layoutType == "Sidebars": - self.__activateLeftRightSidebarWidget(self.pluginRepositoryViewer) + self.activateLeftRightSidebarWidget(self.pluginRepositoryViewer) self.pluginRepositoryViewer.setFocus(Qt.FocusReason.ActiveWindowFocusReason) ################################################################# @@ -8825,7 +8841,7 @@ self.rToolboxDock.show() self.rToolbox.setCurrentWidget(self.__virtualenvManagerWidget) elif self.__layoutType == "Sidebars": - self.__activateLeftRightSidebarWidget(self.__virtualenvManagerWidget) + self.activateLeftRightSidebarWidget(self.__virtualenvManagerWidget) self.__virtualenvManagerWidget.setFocus(Qt.FocusReason.ActiveWindowFocusReason) ############################################################
--- a/src/eric7/ViewManager/ViewManager.py Mon Jul 29 14:43:59 2024 +0200 +++ b/src/eric7/ViewManager/ViewManager.py Sat Aug 31 10:54:21 2024 +0200 @@ -5907,6 +5907,7 @@ editor.languageChanged.connect(lambda: self.editorLanguageChanged.emit(editor)) editor.textChanged.connect(lambda: self.editorTextChanged.emit(editor)) + editor.zoomValueChanged.connect(lambda z: self.zoomValueChanged(z, editor)) def newEditorView(self, fn, caller, filetype="", indexes=None): """
--- a/src/eric7/i18n/eric7_cs.ts Mon Jul 29 14:43:59 2024 +0200 +++ b/src/eric7/i18n/eric7_cs.ts Sat Aug 31 10:54:21 2024 +0200 @@ -5110,7 +5110,7 @@ <context> <name>CodeStyleChecker</name> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="515" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="516" /> <source>No message defined for code '{0}'.</source> <translation type="unfinished" /> </message> @@ -6250,146 +6250,146 @@ <context> <name>CodeStyleFixer</name> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="253" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="254" /> <source>Triple single quotes converted to triple double quotes.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="256" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="257" /> <source>Introductory quotes corrected to be {0}"""</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="259" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="260" /> <source>Single line docstring put on one line.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="262" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="263" /> <source>Period added to summary line.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="289" /> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="265" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="290" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="266" /> <source>Blank line before function/method docstring removed.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="268" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="269" /> <source>Blank line inserted before class docstring.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="271" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="272" /> <source>Blank line inserted after class docstring.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="274" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="275" /> <source>Blank line inserted after docstring summary.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="277" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="278" /> <source>Blank line inserted after last paragraph of docstring.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="280" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="281" /> <source>Leading quotes put on separate line.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="283" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="284" /> <source>Trailing quotes put on separate line.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="286" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="287" /> <source>Blank line before class docstring removed.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="292" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="293" /> <source>Blank line after class docstring removed.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="295" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="296" /> <source>Blank line after function/method docstring removed.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="298" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="299" /> <source>Blank line after last paragraph removed.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="301" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="302" /> <source>Tab converted to 4 spaces.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="304" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="305" /> <source>Indentation adjusted to be a multiple of four.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="307" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="308" /> <source>Indentation of continuation line corrected.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="310" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="311" /> <source>Indentation of closing bracket corrected.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="313" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="314" /> <source>Missing indentation of continuation line corrected.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="316" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="317" /> <source>Closing bracket aligned to opening bracket.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="319" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="320" /> <source>Indentation level changed.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="322" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="323" /> <source>Indentation level of hanging indentation changed.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="325" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="326" /> <source>Visual indentation corrected.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="340" /> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="334" /> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="328" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="341" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="335" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="329" /> <source>Extraneous whitespace removed.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="337" /> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="331" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="338" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="332" /> <source>Missing whitespace added.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="343" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="344" /> <source>Whitespace around comment sign corrected.</source> <translation type="unfinished" /> </message> <message numerus="yes"> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="346" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="347" /> <source>%n blank line(s) inserted.</source> <translation type="unfinished"> <numerusform /> @@ -6398,7 +6398,7 @@ </translation> </message> <message numerus="yes"> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="349" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="350" /> <source>%n superfluous lines removed</source> <translation type="unfinished"> <numerusform /> @@ -6407,73 +6407,73 @@ </translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="352" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="353" /> <source>Superfluous blank lines removed.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="355" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="356" /> <source>Superfluous blank lines after function decorator removed.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="358" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="359" /> <source>Imports were put on separate lines.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="361" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="362" /> <source>Long lines have been shortened.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="364" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="365" /> <source>Redundant backslash in brackets removed.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="370" /> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="367" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="371" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="368" /> <source>Compound statement corrected.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="373" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="374" /> <source>Comparison to None/True/False corrected.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="376" /> - <source>'{0}' argument added.</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="377" /> - <source>'{0}' argument removed.</source> + <source>'{0}' argument added.</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="378" /> + <source>'{0}' argument removed.</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="379" /> <source>Whitespace stripped from end of line.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="381" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="382" /> <source>newline added to end of file.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="384" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="385" /> <source>Superfluous trailing blank lines removed from end of file.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="387" /> - <source>'<>' replaced by '!='.</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="388" /> + <source>'<>' replaced by '!='.</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="389" /> <source>Could not save the file! Skipping it. Reason: {0}</source> <translation type="unfinished" /> </message> @@ -20688,45 +20688,45 @@ <context> <name>EricToolBarDialog</name> <message> - <location filename="../EricWidgets/EricToolBarDialog.py" line="89" /> + <location filename="../EricWidgets/EricToolBarDialog.py" line="90" /> <source>--Separator--</source> <translation type="unfinished">--Oddělovač--</translation> </message> <message> - <location filename="../EricWidgets/EricToolBarDialog.py" line="169" /> - <location filename="../EricWidgets/EricToolBarDialog.py" line="160" /> + <location filename="../EricWidgets/EricToolBarDialog.py" line="164" /> + <location filename="../EricWidgets/EricToolBarDialog.py" line="155" /> <source>New Toolbar</source> <translation type="unfinished">Nová lišta nástrojů</translation> </message> <message> - <location filename="../EricWidgets/EricToolBarDialog.py" line="161" /> + <location filename="../EricWidgets/EricToolBarDialog.py" line="156" /> <source>Toolbar Name:</source> <translation type="unfinished">Jméno nástrojové lišty:</translation> </message> <message> - <location filename="../EricWidgets/EricToolBarDialog.py" line="238" /> - <location filename="../EricWidgets/EricToolBarDialog.py" line="170" /> + <location filename="../EricWidgets/EricToolBarDialog.py" line="233" /> + <location filename="../EricWidgets/EricToolBarDialog.py" line="165" /> <source>A toolbar with the name <b>{0}</b> already exists.</source> <translation type="unfinished">Nástrojová lišta jména <b>{0}</b> již existuje.</translation> </message> <message> - <location filename="../EricWidgets/EricToolBarDialog.py" line="197" /> + <location filename="../EricWidgets/EricToolBarDialog.py" line="192" /> <source>Remove Toolbar</source> <translation type="unfinished">Odebrat nástrojovou lištu</translation> </message> <message> - <location filename="../EricWidgets/EricToolBarDialog.py" line="198" /> + <location filename="../EricWidgets/EricToolBarDialog.py" line="193" /> <source>Should the toolbar <b>{0}</b> really be removed?</source> <translation type="unfinished">Má se nástrojová lišta <b>{0}</b> opravdu odebrat?</translation> </message> <message> - <location filename="../EricWidgets/EricToolBarDialog.py" line="237" /> - <location filename="../EricWidgets/EricToolBarDialog.py" line="225" /> + <location filename="../EricWidgets/EricToolBarDialog.py" line="232" /> + <location filename="../EricWidgets/EricToolBarDialog.py" line="220" /> <source>Rename Toolbar</source> <translation type="unfinished">Přejmenovat lištu</translation> </message> <message> - <location filename="../EricWidgets/EricToolBarDialog.py" line="226" /> + <location filename="../EricWidgets/EricToolBarDialog.py" line="221" /> <source>New Toolbar Name:</source> <translation type="unfinished">Nové jméno nástrojové lišty:</translation> </message> @@ -54455,723 +54455,723 @@ <context> <name>MiniEditor</name> <message> - <location filename="../QScintilla/MiniEditor.py" line="492" /> + <location filename="../QScintilla/MiniEditor.py" line="493" /> <source>About eric Mini Editor</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="493" /> + <location filename="../QScintilla/MiniEditor.py" line="494" /> <source>The eric 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 type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="562" /> + <location filename="../QScintilla/MiniEditor.py" line="563" /> <source>Line: {0:5}</source> <translation>Řádek: {0:5}</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="566" /> + <location filename="../QScintilla/MiniEditor.py" line="567" /> <source>Pos: {0:5}</source> <translation>Poz: {0:5}</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="580" /> + <location filename="../QScintilla/MiniEditor.py" line="581" /> <source>Language: {0}</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="644" /> + <location filename="../QScintilla/MiniEditor.py" line="645" /> <source>New</source> <translation>Nový</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="646" /> - <source>&New</source> - <translation>&Nový</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="647" /> + <source>&New</source> + <translation>&Nový</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="648" /> <source>Ctrl+N</source> <comment>File|New</comment> <translation /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="652" /> + <location filename="../QScintilla/MiniEditor.py" line="653" /> <source>Open an empty editor window</source> <translation>Otevřít prázdné editační okno</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="654" /> + <location filename="../QScintilla/MiniEditor.py" line="655" /> <source><b>New</b><p>An empty editor window will be created.</p></source> <translation><b>Nový</b><p>Bude otevřeno prázdné editační okno.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="660" /> + <location filename="../QScintilla/MiniEditor.py" line="661" /> <source>Open</source> <translation>Otevřít</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="662" /> - <source>&Open...</source> - <translation>&Otevřít...</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="663" /> + <source>&Open...</source> + <translation>&Otevřít...</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="664" /> <source>Ctrl+O</source> <comment>File|Open</comment> <translation /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="668" /> + <location filename="../QScintilla/MiniEditor.py" line="669" /> <source>Open a file</source> <translation>Otevřít soubor</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="670" /> + <location filename="../QScintilla/MiniEditor.py" line="671" /> <source><b>Open a file</b><p>You will be asked for the name of a file to be opened.</p></source> <translation><b>Otevřít soubor</b><p>Budete dotázáni na jméno souboru, který se má otevřít do editačního okna.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="679" /> + <location filename="../QScintilla/MiniEditor.py" line="680" /> <source>Save</source> <translation>Uložit</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="681" /> - <source>&Save</source> - <translation>&Uložit</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="682" /> + <source>&Save</source> + <translation>&Uložit</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="683" /> <source>Ctrl+S</source> <comment>File|Save</comment> <translation /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="687" /> + <location filename="../QScintilla/MiniEditor.py" line="688" /> <source>Save the current file</source> <translation>Uložit aktuální soubor</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="689" /> + <location filename="../QScintilla/MiniEditor.py" line="690" /> <source><b>Save File</b><p>Save the contents of current editor window.</p></source> <translation><b>Uložit soubor</b><p>Uložit obsah aktuálního editačního okna.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="698" /> + <location filename="../QScintilla/MiniEditor.py" line="699" /> <source>Save as</source> <translation>Uložit jako</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="700" /> - <source>Save &as...</source> - <translation>Uložit j&ako...</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="701" /> + <source>Save &as...</source> + <translation>Uložit j&ako...</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="702" /> <source>Shift+Ctrl+S</source> <comment>File|Save As</comment> <translation /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="706" /> + <location filename="../QScintilla/MiniEditor.py" line="707" /> <source>Save the current file to a new one</source> <translation>Uložit aktuální soubor do nového</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="708" /> + <location filename="../QScintilla/MiniEditor.py" line="709" /> <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>Uložit soubor jako</b><p>Uložit obsah aktuálního editačního okna do nového souboru. Název souboru bude zadán v dialogu výběru souboru.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="718" /> + <location filename="../QScintilla/MiniEditor.py" line="719" /> <source>Save Copy</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="720" /> + <location filename="../QScintilla/MiniEditor.py" line="721" /> <source>Save &Copy...</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="726" /> + <location filename="../QScintilla/MiniEditor.py" line="727" /> <source>Save a copy of the current file</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="728" /> + <location filename="../QScintilla/MiniEditor.py" line="729" /> <source><b>Save Copy</b><p>Save a copy of the contents of current editor window. The file can be entered in a file selection dialog.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="738" /> + <location filename="../QScintilla/MiniEditor.py" line="739" /> <source>Close</source> <translation>Zavřít</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="740" /> - <source>&Close</source> - <translation>&Zavřít</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="741" /> + <source>&Close</source> + <translation>&Zavřít</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="742" /> <source>Ctrl+W</source> <comment>File|Close</comment> <translation /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="746" /> + <location filename="../QScintilla/MiniEditor.py" line="747" /> <source>Close the editor window</source> <translation>Zavřít editační okno</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="748" /> + <location filename="../QScintilla/MiniEditor.py" line="749" /> <source><b>Close Window</b><p>Close the current window.</p></source> <translation><b>Zavřít okno</b><p>Zavřít aktuální okno.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="754" /> + <location filename="../QScintilla/MiniEditor.py" line="755" /> <source>Print</source> <translation>Tisk</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="756" /> - <source>&Print</source> - <translation>&Tisk</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="757" /> + <source>&Print</source> + <translation>&Tisk</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="758" /> <source>Ctrl+P</source> <comment>File|Print</comment> <translation /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="762" /> + <location filename="../QScintilla/MiniEditor.py" line="763" /> <source>Print the current file</source> <translation>Tisk aktuálního souboru</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="764" /> + <location filename="../QScintilla/MiniEditor.py" line="765" /> <source><b>Print File</b><p>Print the contents of the current file.</p></source> <translation><b>Tisk souboru</b><p>Tisk obsahu aktuálního souboru.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="773" /> + <location filename="../QScintilla/MiniEditor.py" line="774" /> <source>Print Preview</source> <translation>Náhled tisku</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="781" /> + <location filename="../QScintilla/MiniEditor.py" line="782" /> <source>Print preview of the current file</source> <translation>Náhled tisku aktuálního souboru</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="783" /> + <location filename="../QScintilla/MiniEditor.py" line="784" /> <source><b>Print Preview</b><p>Print preview of the current file.</p></source> <translation><b>Náhkled tisku</b><p>Náhkled tisku aktuálního souboru.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="796" /> + <location filename="../QScintilla/MiniEditor.py" line="797" /> <source>Undo</source> <translation>Vrátit</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="798" /> - <source>&Undo</source> - <translation>&Vrátit</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="799" /> - <source>Ctrl+Z</source> - <comment>Edit|Undo</comment> - <translation /> + <source>&Undo</source> + <translation>&Vrátit</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="800" /> + <source>Ctrl+Z</source> + <comment>Edit|Undo</comment> + <translation /> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="801" /> <source>Alt+Backspace</source> <comment>Edit|Undo</comment> <translation /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="804" /> + <location filename="../QScintilla/MiniEditor.py" line="805" /> <source>Undo the last change</source> <translation>Vrátit poslední změnu</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="806" /> + <location filename="../QScintilla/MiniEditor.py" line="807" /> <source><b>Undo</b><p>Undo the last change done in the current editor.</p></source> <translation><b>Undo</b><p>Vrátit poslední změnu v aktuálním editačním okně.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="815" /> + <location filename="../QScintilla/MiniEditor.py" line="816" /> <source>Redo</source> <translation>Znovu použít</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="817" /> - <source>&Redo</source> - <translation>&Znovu použít</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="818" /> + <source>&Redo</source> + <translation>&Znovu použít</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="819" /> <source>Ctrl+Shift+Z</source> <comment>Edit|Redo</comment> <translation /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="823" /> + <location filename="../QScintilla/MiniEditor.py" line="824" /> <source>Redo the last change</source> <translation>Znovu použít poslední změnu</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="825" /> + <location filename="../QScintilla/MiniEditor.py" line="826" /> <source><b>Redo</b><p>Redo the last change done in the current editor.</p></source> <translation><b>Redo</b><p>Znovu použít poslení změnu, která byla provedena v aktuálním editačním okně.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="834" /> + <location filename="../QScintilla/MiniEditor.py" line="835" /> <source>Cut</source> <translation>Vyjmout</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="836" /> - <source>Cu&t</source> - <translation>Vyjmou&t</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="837" /> - <source>Ctrl+X</source> - <comment>Edit|Cut</comment> - <translation /> + <source>Cu&t</source> + <translation>Vyjmou&t</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="838" /> + <source>Ctrl+X</source> + <comment>Edit|Cut</comment> + <translation /> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="839" /> <source>Shift+Del</source> <comment>Edit|Cut</comment> <translation /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="842" /> + <location filename="../QScintilla/MiniEditor.py" line="843" /> <source>Cut the selection</source> <translation>Vyjmout výběr</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="844" /> + <location filename="../QScintilla/MiniEditor.py" line="845" /> <source><b>Cut</b><p>Cut the selected text of the current editor to the clipboard.</p></source> <translation><b>Vyjmout</b><p>Vyjme vybraný text z aktuálního editačního okna a vloží jej do schránky.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="854" /> + <location filename="../QScintilla/MiniEditor.py" line="855" /> <source>Copy</source> <translation>Kopírovat</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="856" /> - <source>&Copy</source> - <translation>&Kopírovat</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="857" /> - <source>Ctrl+C</source> - <comment>Edit|Copy</comment> - <translation /> + <source>&Copy</source> + <translation>&Kopírovat</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="858" /> + <source>Ctrl+C</source> + <comment>Edit|Copy</comment> + <translation /> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="859" /> <source>Ctrl+Ins</source> <comment>Edit|Copy</comment> <translation /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="862" /> + <location filename="../QScintilla/MiniEditor.py" line="863" /> <source>Copy the selection</source> <translation>Kopírovat výběr</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="864" /> + <location filename="../QScintilla/MiniEditor.py" line="865" /> <source><b>Copy</b><p>Copy the selected text of the current editor to the clipboard.</p></source> <translation><b>Kopírovat</b><p>Zkopíruje vybraný text v aktuálním editačním okně a uloží jej do schránky.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="874" /> + <location filename="../QScintilla/MiniEditor.py" line="875" /> <source>Paste</source> <translation>Vložit</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="876" /> - <source>&Paste</source> - <translation>V&ložit</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="877" /> - <source>Ctrl+V</source> - <comment>Edit|Paste</comment> - <translation /> + <source>&Paste</source> + <translation>V&ložit</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="878" /> + <source>Ctrl+V</source> + <comment>Edit|Paste</comment> + <translation /> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="879" /> <source>Shift+Ins</source> <comment>Edit|Paste</comment> <translation /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="882" /> + <location filename="../QScintilla/MiniEditor.py" line="883" /> <source>Paste the last cut/copied text</source> <translation>Vložit text ze schránky</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="884" /> + <location filename="../QScintilla/MiniEditor.py" line="885" /> <source><b>Paste</b><p>Paste the last cut/copied text from the clipboard to the current editor.</p></source> <translation><b>Vložit</b><p>Vloží text, který byl uložen do schránky při předchozím kroku Vyjmout nebo Kopírovat.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="894" /> + <location filename="../QScintilla/MiniEditor.py" line="895" /> <source>Clear</source> <translation>Vyčistit</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="896" /> - <source>Cl&ear</source> - <translation>Vyči&stit</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="897" /> + <source>Cl&ear</source> + <translation>Vyči&stit</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="898" /> <source>Alt+Shift+C</source> <comment>Edit|Clear</comment> <translation /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="902" /> + <location filename="../QScintilla/MiniEditor.py" line="903" /> <source>Clear all text</source> <translation>Vyčistit všechen text</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="904" /> + <location filename="../QScintilla/MiniEditor.py" line="905" /> <source><b>Clear</b><p>Delete all text of the current editor.</p></source> <translation><b>Vyčistit</b><p>Smazat všechnen text v aktuálním editoru.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2892" /> + <location filename="../QScintilla/MiniEditor.py" line="2893" /> <source>About</source> <translation>O aplikaci</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2892" /> + <location filename="../QScintilla/MiniEditor.py" line="2893" /> <source>&About</source> <translation>O &aplikaci</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2894" /> + <location filename="../QScintilla/MiniEditor.py" line="2895" /> <source>Display information about this software</source> <translation>Zobrazit informace a tomto software</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2896" /> + <location filename="../QScintilla/MiniEditor.py" line="2897" /> <source><b>About</b><p>Display some information about this software.</p></source> <translation><b>O aplikaci</b><p>Zobrazí se informace o tomto software.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2905" /> + <location filename="../QScintilla/MiniEditor.py" line="2906" /> <source>About Qt</source> <translation>O Qt</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2905" /> + <location filename="../QScintilla/MiniEditor.py" line="2906" /> <source>About &Qt</source> <translation>O &Qt</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2908" /> + <location filename="../QScintilla/MiniEditor.py" line="2909" /> <source>Display information about the Qt toolkit</source> <translation>Zobrazit informace o Qt toolkitu</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2911" /> + <location filename="../QScintilla/MiniEditor.py" line="2912" /> <source><b>About Qt</b><p>Display some information about the Qt toolkit.</p></source> <translation><b>O Qt</b><p>Zobrazit informace o Qt toolkitu.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2920" /> + <location filename="../QScintilla/MiniEditor.py" line="2921" /> <source>What's This?</source> <translation>Co je to?</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2922" /> - <source>&What's This?</source> - <translation>&Co je to?</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="2923" /> + <source>&What's This?</source> + <translation>&Co je to?</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="2924" /> <source>Shift+F1</source> <comment>Help|What's This?'</comment> <translation /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2928" /> + <location filename="../QScintilla/MiniEditor.py" line="2929" /> <source>Context sensitive help</source> <translation>Kontextově senzitivní nápověda</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2930" /> + <location filename="../QScintilla/MiniEditor.py" line="2931" /> <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>Zobrazit kontextově senzitivní nápovědu</b><p>V režimu "Co je to?" se nad různými prvky aplikace u kurzoru zobrazí otazník. Když pak kliknete na tyto prvky, zobrazí se krátký popis co daný prvek znamená a jak jej použít. V dialogových oknech se tato funkce spustí tlačítkem kontextové nápovědy na horní liště.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2948" /> + <location filename="../QScintilla/MiniEditor.py" line="2949" /> <source>Preferences</source> <translation type="unfinished">Nastavení</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2950" /> + <location filename="../QScintilla/MiniEditor.py" line="2951" /> <source>&Preferences...</source> <translation type="unfinished">Na&stavení...</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2956" /> + <location filename="../QScintilla/MiniEditor.py" line="2957" /> <source>Set the prefered configuration</source> <translation type="unfinished">Nastavení konfigurace</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2958" /> + <location filename="../QScintilla/MiniEditor.py" line="2959" /> <source><b>Preferences</b><p>Set the configuration items of the application with your prefered values.</p></source> <translation type="unfinished"><b>Nastavení</b><p>Upravit konfiguraci aplikace podle požadavků uživatele.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2972" /> + <location filename="../QScintilla/MiniEditor.py" line="2973" /> <source>&File</source> <translation>S&oubor</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2984" /> + <location filename="../QScintilla/MiniEditor.py" line="2985" /> <source>&Edit</source> <translation>&Edit</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2994" /> + <location filename="../QScintilla/MiniEditor.py" line="2995" /> <source>&Search</source> <translation type="unfinished">V&yhledat</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3004" /> + <location filename="../QScintilla/MiniEditor.py" line="3005" /> <source>&View</source> <translation type="unfinished">Poh&led</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3010" /> + <location filename="../QScintilla/MiniEditor.py" line="3011" /> <source>Se&ttings</source> <translation type="unfinished">Nas&tavení</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3015" /> + <location filename="../QScintilla/MiniEditor.py" line="3016" /> <source>&Help</source> <translation>&Nápověda</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3027" /> + <location filename="../QScintilla/MiniEditor.py" line="3028" /> <source>File</source> <translation>Soubor</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3039" /> + <location filename="../QScintilla/MiniEditor.py" line="3040" /> <source>Edit</source> <translation>Editovat</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3048" /> + <location filename="../QScintilla/MiniEditor.py" line="3049" /> <source>Search</source> <translation type="unfinished">Vyhledat</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3054" /> + <location filename="../QScintilla/MiniEditor.py" line="3055" /> <source>View</source> <translation type="unfinished">Pohled</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3060" /> + <location filename="../QScintilla/MiniEditor.py" line="3061" /> <source>Settings</source> <translation type="unfinished">Nastavení</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3063" /> + <location filename="../QScintilla/MiniEditor.py" line="3064" /> <source>Help</source> <translation>Nápověda</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3076" /> + <location filename="../QScintilla/MiniEditor.py" line="3077" /> <source><p>This part of the status bar displays the editor language.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3086" /> + <location filename="../QScintilla/MiniEditor.py" line="3087" /> <source><p>This part of the status bar displays an indication of the editors files writability.</p></source> <translation><p>Tato část statusbaru zobrazuje indikátor práva zápisu editoru do souboru.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3095" /> + <location filename="../QScintilla/MiniEditor.py" line="3096" /> <source><p>This part of the status bar displays the line number of the editor.</p></source> <translation><p>Tato část status baru zobrazuje číslo řádku v editoru.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3104" /> + <location filename="../QScintilla/MiniEditor.py" line="3105" /> <source><p>This part of the status bar displays the cursor position of the editor.</p></source> <translation><p>Tato část status baru zobrazuje pozici kurzoru v editoru.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3118" /> + <location filename="../QScintilla/MiniEditor.py" line="3119" /> <source><p>This part of the status bar allows zooming the editor.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3125" /> + <location filename="../QScintilla/MiniEditor.py" line="3126" /> <source>Ready</source> <translation>Hotovo</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3201" /> - <source>eric Mini Editor</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="3202" /> + <source>eric Mini Editor</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="3203" /> <source>The document has unsaved changes.</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3231" /> - <source>Open File</source> - <translation>Otevřít soubor</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="3232" /> + <source>Open File</source> + <translation>Otevřít soubor</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="3233" /> <source><p>The file <b>{0}</b> could not be opened.</p><p>Reason: {1}</p></source> <translation><p>Soubor <b>{0}</b> nelze otevřít.<br />Důvod: {1}</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3260" /> + <location filename="../QScintilla/MiniEditor.py" line="3261" /> <source>File loaded</source> <translation>Soubor načten</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3341" /> - <source>Save File</source> - <translation>Uložit soubor</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="3342" /> + <source>Save File</source> + <translation>Uložit soubor</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="3343" /> <source><p>The file <b>{0}</b> could not be saved.<br/>Reason: {1}</p></source> <translation><p>Soubor <b>{0}</b> nelze uložit.<br />Důvod: {1}</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3348" /> + <location filename="../QScintilla/MiniEditor.py" line="3349" /> <source>File saved</source> <translation>Soubor uložen</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3360" /> + <location filename="../QScintilla/MiniEditor.py" line="3361" /> <source>[*] - {0}</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3380" /> - <location filename="../QScintilla/MiniEditor.py" line="3360" /> + <location filename="../QScintilla/MiniEditor.py" line="3381" /> + <location filename="../QScintilla/MiniEditor.py" line="3361" /> <source>Mini Editor</source> <translation /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3735" /> - <location filename="../QScintilla/MiniEditor.py" line="3706" /> - <location filename="../QScintilla/MiniEditor.py" line="3373" /> + <location filename="../QScintilla/MiniEditor.py" line="3736" /> + <location filename="../QScintilla/MiniEditor.py" line="3707" /> + <location filename="../QScintilla/MiniEditor.py" line="3374" /> <source>Untitled</source> <translation>Beze jména</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3380" /> + <location filename="../QScintilla/MiniEditor.py" line="3381" /> <source>{0}[*] - {1}</source> <translation /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3701" /> + <location filename="../QScintilla/MiniEditor.py" line="3702" /> <source>Printing...</source> <translation>Tisk...</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3717" /> + <location filename="../QScintilla/MiniEditor.py" line="3718" /> <source>Printing completed</source> <translation>Tisk je hotov</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3719" /> + <location filename="../QScintilla/MiniEditor.py" line="3720" /> <source>Error while printing</source> <translation>Chyba během tisku</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3722" /> + <location filename="../QScintilla/MiniEditor.py" line="3723" /> <source>Printing aborted</source> <translation>Tisk byl zrušen</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3777" /> - <source>Select all</source> - <translation>Vybrat vše</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="3778" /> + <source>Select all</source> + <translation>Vybrat vše</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="3779" /> <source>Deselect all</source> <translation>Zrušit celý výběr</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3792" /> + <location filename="../QScintilla/MiniEditor.py" line="3793" /> <source>Languages</source> <translation>Jazyky</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3795" /> + <location filename="../QScintilla/MiniEditor.py" line="3796" /> <source>No Language</source> <translation>Žádný jazyk</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3816" /> + <location filename="../QScintilla/MiniEditor.py" line="3817" /> <source>Guessed</source> <translation>Odhadem</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3838" /> - <location filename="../QScintilla/MiniEditor.py" line="3820" /> + <location filename="../QScintilla/MiniEditor.py" line="3839" /> + <location filename="../QScintilla/MiniEditor.py" line="3821" /> <source>Alternatives</source> <translation>Alternativy</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3835" /> + <location filename="../QScintilla/MiniEditor.py" line="3836" /> <source>Alternatives ({0})</source> <translation>Alternativy ({0})</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3867" /> - <source>Pygments Lexer</source> - <translation>Pygments Lexer</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="3868" /> + <source>Pygments Lexer</source> + <translation>Pygments Lexer</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="3869" /> <source>Select the Pygments lexer to apply.</source> <translation>Použít Pygments lexer.</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="4413" /> - <source>EditorConfig Properties</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="4414" /> + <source>EditorConfig Properties</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="4415" /> <source><p>The EditorConfig properties for file <b>{0}</b> could not be loaded.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="4601" /> - <source>Save File to Device</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="4602" /> + <source>Save File to Device</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="4603" /> <source>Enter the complete device file path:</source> <translation type="unfinished" /> </message> @@ -55388,499 +55388,504 @@ <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="135" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="134" /> + <source>unnecessary {0} comprehension - rewrite using dict.fromkeys()</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="139" /> <source>sort keys - '{0}' should be before '{1}'</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="140" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="144" /> <source>the number of arguments for property getter method is wrong (should be 1 instead of {0})</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="145" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="149" /> <source>the number of arguments for property setter method is wrong (should be 2 instead of {0})</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="150" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="154" /> <source>the number of arguments for property deleter method is wrong (should be 1 instead of {0})</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="155" /> - <source>the name of the setter method is wrong (should be '{0}' instead of '{1}')</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="159" /> - <source>the name of the deleter method is wrong (should be '{0}' instead of '{1}')</source> + <source>the name of the setter method is wrong (should be '{0}' instead of '{1}')</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="163" /> - <source>the name of the setter decorator is wrong (should be '{0}' instead of '{1}')</source> + <source>the name of the deleter method is wrong (should be '{0}' instead of '{1}')</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="167" /> - <source>the name of the deleter decorator is wrong (should be '{0}' instead of '{1}')</source> + <source>the name of the setter decorator is wrong (should be '{0}' instead of '{1}')</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="171" /> + <source>the name of the deleter decorator is wrong (should be '{0}' instead of '{1}')</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="175" /> <source>multiple decorators were used to declare property '{0}'</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="176" /> - <source>use of 'datetime.datetime()' without 'tzinfo' argument should be avoided</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="180" /> + <source>use of 'datetime.datetime()' without 'tzinfo' argument should be avoided</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="184" /> <source>use of 'datetime.datetime.today()' should be avoided. Use 'datetime.datetime.now(tz=)' instead.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="185" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="189" /> <source>use of 'datetime.datetime.utcnow()' should be avoided. Use 'datetime.datetime.now(tz=datetime.timezone.utc)' instead.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="190" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="194" /> <source>use of 'datetime.datetime.utcfromtimestamp()' should be avoided. Use 'datetime.datetime.fromtimestamp(..., tz=datetime.timezone.utc)' instead.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="195" /> - <source>use of 'datetime.datetime.now()' without 'tz' argument should be avoided</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="199" /> + <source>use of 'datetime.datetime.now()' without 'tz' argument should be avoided</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="203" /> <source>use of 'datetime.datetime.fromtimestamp()' without 'tz' argument should be avoided</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="204" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="208" /> <source>use of 'datetime.datetime.strptime()' should be followed by '.replace(tzinfo=)'</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="209" /> - <source>use of 'datetime.datetime.fromordinal()' should be avoided</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="213" /> + <source>use of 'datetime.datetime.fromordinal()' should be avoided</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="217" /> <source>use of 'datetime.date()' should be avoided. Use 'datetime.datetime(, tzinfo=).date()' instead.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="218" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="222" /> <source>use of 'datetime.date.today()' should be avoided. Use 'datetime.datetime.now(tz=).date()' instead.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="223" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="227" /> <source>use of 'datetime.date.fromtimestamp()' should be avoided. Use 'datetime.datetime.fromtimestamp(tz=).date()' instead.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="228" /> - <source>use of 'datetime.date.fromordinal()' should be avoided</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="232" /> - <source>use of 'datetime.date.fromisoformat()' should be avoided</source> + <source>use of 'datetime.date.fromordinal()' should be avoided</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="236" /> + <source>use of 'datetime.date.fromisoformat()' should be avoided</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="240" /> <source>use of 'datetime.time()' without 'tzinfo' argument should be avoided</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="241" /> - <source>'sys.version[:3]' referenced (Python 3.10), use 'sys.version_info'</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="245" /> - <source>'sys.version[2]' referenced (Python 3.10), use 'sys.version_info'</source> + <source>'sys.version[:3]' referenced (Python 3.10), use 'sys.version_info'</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="249" /> - <source>'sys.version' compared to string (Python 3.10), use 'sys.version_info'</source> + <source>'sys.version[2]' referenced (Python 3.10), use 'sys.version_info'</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="253" /> - <source>'sys.version_info[0] == 3' referenced (Python 4), use '>='</source> + <source>'sys.version' compared to string (Python 3.10), use 'sys.version_info'</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="257" /> - <source>'six.PY3' referenced (Python 4), use 'not six.PY2'</source> + <source>'sys.version_info[0] == 3' referenced (Python 4), use '>='</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="261" /> + <source>'six.PY3' referenced (Python 4), use 'not six.PY2'</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="265" /> <source>'sys.version_info[1]' compared to integer (Python 4), compare 'sys.version_info' to tuple</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="266" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="270" /> <source>'sys.version_info.minor' compared to integer (Python 4), compare 'sys.version_info' to tuple</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="271" /> - <source>'sys.version[0]' referenced (Python 10), use 'sys.version_info'</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="275" /> - <source>'sys.version' compared to string (Python 10), use 'sys.version_info'</source> + <source>'sys.version[0]' referenced (Python 10), use 'sys.version_info'</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="279" /> + <source>'sys.version' compared to string (Python 10), use 'sys.version_info'</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="283" /> <source>'sys.version[:1]' referenced (Python 10), use 'sys.version_info'</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="284" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="288" /> <source>Do not use bare 'except:', it also catches unexpected events like memory errors, interrupts, system exit, and so on. Prefer excepting specific exceptions. If you're sure what you're doing, be explicit and write 'except BaseException:'.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="291" /> - <source>Python does not support the unary prefix increment</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="295" /> + <source>Python does not support the unary prefix increment</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="299" /> <source>assigning to 'os.environ' does not clear the environment - use 'os.environ.clear()'</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="300" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="304" /> <source>using 'hasattr(x, "__call__")' to test if 'x' is callable is unreliable. Use 'callable(x)' for consistent results.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="305" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="309" /> <source>using .strip() with multi-character strings is misleading. Use .replace(), .removeprefix(), .removesuffix(), or regular expressions to remove string fragments.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="311" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="315" /> <source>loop control variable {0} not used within the loop body - start the name with an underscore</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="316" /> - <source>do not call getattr with a constant attribute value</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="320" /> - <source>do not call setattr with a constant attribute value</source> + <source>do not call getattr with a constant attribute value</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="324" /> - <source>do not call assert False since python -O removes these calls</source> + <source>do not call setattr with a constant attribute value</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="328" /> + <source>do not call assert False since python -O removes these calls</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="332" /> <source>return/continue/break inside finally blocks cause exceptions to be silenced. Exceptions should be silenced in except blocks. Control statements can be moved outside the finally block.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="334" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="338" /> <source>A length-one tuple literal is redundant. Write 'except {0}:' instead of 'except ({0},):'.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="339" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="343" /> <source>Redundant exception types in 'except ({0}){1}:'. Write 'except {2}{1}:', which catches exactly the same exceptions.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="344" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="348" /> <source>Result of comparison is not used. This line doesn't do anything. Did you intend to prepend it with assert?</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="349" /> - <source>Cannot raise a literal. Did you intend to return it or raise an Exception?</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="353" /> + <source>Cannot raise a literal. Did you intend to return it or raise an Exception?</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="357" /> <source>'assertRaises(Exception)' and 'pytest.raises(Exception)' should be considered evil. They can lead to your test passing even if the code being tested is never executed due to a typo. Assert for a more specific exception (builtin or custom), or use 'assertRaisesRegex' (if using 'assertRaises'), or add the 'match' keyword argument (if using 'pytest.raises'), or use the context manager form with a target.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="362" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="366" /> <source>Found useless {0} expression. Consider either assigning it to a variable or removing it.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="367" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="371" /> <source>Use of 'functools.lru_cache' or 'functools.cache' on methods can lead to memory leaks. The cache may retain instance references, preventing garbage collection.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="373" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="377" /> <source>Found for loop that reassigns the iterable it is iterating with each iterable value.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="378" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="382" /> <source>f-string used as docstring. This will be interpreted by python as a joined string rather than a docstring.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="383" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="387" /> <source>No arguments passed to 'contextlib.suppress'. No exceptions will be suppressed and therefore this context manager is redundant.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="388" /> - <source>Function definition does not bind loop variable '{0}'.</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="392" /> + <source>Function definition does not bind loop variable '{0}'.</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="396" /> <source>{0} is an abstract base class, but none of the methods it defines are abstract. This is not necessarily an error, but you might have forgotten to add the @abstractmethod decorator, potentially in conjunction with @classmethod, @property and/or @staticmethod.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="399" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="403" /> <source>Exception '{0}' has been caught multiple times. Only the first except will be considered and all other except catches can be safely removed.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="404" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="408" /> <source>Star-arg unpacking after a keyword argument is strongly discouraged, because it only works when the keyword parameter is declared after all parameters supplied by the unpacked sequence, and this change of ordering can surprise and mislead readers.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="411" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="415" /> <source>{0} is an empty method in an abstract base class, but has no abstract decorator. Consider adding @abstractmethod.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="416" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="420" /> <source>No explicit stacklevel argument found. The warn method from the warnings module uses a stacklevel of 1 by default. This will only show a stack trace for the line on which the warn method is called. It is therefore recommended to use a stacklevel of 2 or greater to provide more information to the user.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="424" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="428" /> <source>Using 'except ():' with an empty tuple does not handle/catch anything. Add exceptions to handle.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="429" /> - <source>Except handlers should only be names of exception classes</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="433" /> + <source>Except handlers should only be names of exception classes</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="437" /> <source>Using the generator returned from 'itertools.groupby()' more than once will do nothing on the second usage. Save the result to a list, if the result is needed multiple times.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="439" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="443" /> <source>Possible unintentional type annotation (using ':'). Did you mean to assign (using '=')?</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="444" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="448" /> <source>Set should not contain duplicate item '{0}'. Duplicate items will be replaced with a single item at runtime.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="449" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="453" /> <source>re.{0} should get '{1}' and 'flags' passed as keyword arguments to avoid confusion due to unintuitive argument positions.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="454" /> - <source>Static key in dict comprehension: {0!r}.</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="458" /> - <source>Don't except 'BaseException' unless you plan to re-raise it.</source> + <source>Static key in dict comprehension: {0!r}.</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="462" /> + <source>Don't except 'BaseException' unless you plan to re-raise it.</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="466" /> <source>Class '__init__' methods must not return or yield and any values.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="467" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="471" /> <source>Editing a loop's mutable iterable often leads to unexpected results/bugs.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="472" /> - <source>unncessary f-string</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="476" /> + <source>unncessary f-string</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="480" /> <source>cannot use 'self.__class__' as first argument of 'super()' call</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="481" /> - <source>found {0} formatter</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="485" /> - <source>format string does contain unindexed parameters</source> + <source>found {0} formatter</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="489" /> - <source>docstring does contain unindexed parameters</source> + <source>format string does contain unindexed parameters</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="493" /> - <source>other string does contain unindexed parameters</source> + <source>docstring does contain unindexed parameters</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="497" /> - <source>format call uses too large index ({0})</source> + <source>other string does contain unindexed parameters</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="501" /> - <source>format call uses missing keyword ({0})</source> + <source>format call uses too large index ({0})</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="505" /> - <source>format call uses keyword arguments but no named entries</source> + <source>format call uses missing keyword ({0})</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="509" /> - <source>format call uses variable arguments but no numbered entries</source> + <source>format call uses keyword arguments but no named entries</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="513" /> - <source>format call uses implicit and explicit indexes together</source> + <source>format call uses variable arguments but no numbered entries</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="517" /> - <source>format call provides unused index ({0})</source> + <source>format call uses implicit and explicit indexes together</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="521" /> + <source>format call provides unused index ({0})</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="525" /> <source>format call provides unused keyword ({0})</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="526" /> - <source>expected these __future__ imports: {0}; but only got: {1}</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="530" /> + <source>expected these __future__ imports: {0}; but only got: {1}</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="534" /> <source>expected these __future__ imports: {0}; but got none</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="535" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="539" /> <source>gettext import with alias _ found: {0}</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="540" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="544" /> <source>print statement found</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="545" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="549" /> <source>one element tuple found</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="554" /> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="550" /> - <source>mutable default argument of type {0}</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="558" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="554" /> + <source>mutable default argument of type {0}</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="562" /> <source>mutable default argument of function call '{0}'</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="563" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="567" /> <source>None should not be added at any return if function has no return value except None</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="568" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="572" /> <source>an explicit value at every return should be added if function has a return value except None</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="573" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="577" /> <source>an explicit return at the end of the function should be added if it has a return value except None</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="578" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="582" /> <source>a value should not be assigned to a variable if it will be used as a return value only</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="584" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="588" /> <source>prefer implied line continuation inside parentheses, brackets and braces as opposed to a backslash</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="590" /> - <source>implicitly concatenated string or bytes literals on one line</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="594" /> - <source>implicitly concatenated string or bytes literals over continuation line</source> + <source>implicitly concatenated string or bytes literals on one line</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="598" /> + <source>implicitly concatenated string or bytes literals over continuation line</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="602" /> <source>explicitly concatenated string or bytes should be implicitly concatenated</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="603" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="607" /> <source>commented code lines should be removed</source> <translation type="unfinished" /> </message> @@ -86350,15 +86355,15 @@ <context> <name>Tabview</name> <message> - <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="1132" /> - <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="1067" /> + <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="1134" /> + <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="1069" /> <source>Untitled {0}</source> <translation>Beze jména {0}</translation> </message> <message> - <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="1532" /> - <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="1143" /> - <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="1088" /> + <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="1534" /> + <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="1145" /> + <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="1090" /> <source>{0} (ro)</source> <translation>{0} (ro)</translation> </message> @@ -91079,7 +91084,7 @@ <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7844" /> + <location filename="../UI/UserInterface.py" line="7860" /> <location filename="../UI/UserInterface.py" line="1946" /> <location filename="../UI/UserInterface.py" line="1939" /> <source>Load session</source> @@ -92170,7 +92175,7 @@ <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6593" /> + <location filename="../UI/UserInterface.py" line="6609" /> <location filename="../UI/UserInterface.py" line="3163" /> <source>Snapshot</source> <translation type="unfinished" /> @@ -92407,8 +92412,8 @@ <translation><b>Klávesové zkratky</b><p>Nastavení klávesových zkratek aplikace podle zvyklostí uživatele.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7552" /> - <location filename="../UI/UserInterface.py" line="7533" /> + <location filename="../UI/UserInterface.py" line="7568" /> + <location filename="../UI/UserInterface.py" line="7549" /> <location filename="../UI/UserInterface.py" line="3393" /> <source>Export Keyboard Shortcuts</source> <translation>Exportovat klávesové zkratky</translation> @@ -92429,7 +92434,7 @@ <translation><b>Export klávesových zkratek</b><p>Exportují se klávesové zkratky z aplikace.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7571" /> + <location filename="../UI/UserInterface.py" line="7587" /> <location filename="../UI/UserInterface.py" line="3412" /> <source>Import Keyboard Shortcuts</source> <translation>Import klávesových zkratek</translation> @@ -92838,7 +92843,7 @@ <translation>Nastavení</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6321" /> + <location filename="../UI/UserInterface.py" line="6337" /> <location filename="../UI/UserInterface.py" line="4185" /> <location filename="../UI/UserInterface.py" line="4170" /> <source>Help</source> @@ -93016,315 +93021,315 @@ <translation>&Skrýt vše</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6458" /> - <location filename="../UI/UserInterface.py" line="6447" /> - <location filename="../UI/UserInterface.py" line="6399" /> - <location filename="../UI/UserInterface.py" line="6389" /> - <location filename="../UI/UserInterface.py" line="6210" /> - <location filename="../UI/UserInterface.py" line="6200" /> - <location filename="../UI/UserInterface.py" line="6142" /> - <location filename="../UI/UserInterface.py" line="6132" /> + <location filename="../UI/UserInterface.py" line="6474" /> + <location filename="../UI/UserInterface.py" line="6463" /> + <location filename="../UI/UserInterface.py" line="6415" /> + <location filename="../UI/UserInterface.py" line="6405" /> + <location filename="../UI/UserInterface.py" line="6228" /> + <location filename="../UI/UserInterface.py" line="6218" /> + <location filename="../UI/UserInterface.py" line="6160" /> + <location filename="../UI/UserInterface.py" line="6150" /> <source>Problem</source> <translation>Problém</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6459" /> - <location filename="../UI/UserInterface.py" line="6448" /> - <location filename="../UI/UserInterface.py" line="6400" /> - <location filename="../UI/UserInterface.py" line="6390" /> - <location filename="../UI/UserInterface.py" line="6211" /> - <location filename="../UI/UserInterface.py" line="6201" /> - <location filename="../UI/UserInterface.py" line="6143" /> - <location filename="../UI/UserInterface.py" line="6133" /> + <location filename="../UI/UserInterface.py" line="6475" /> + <location filename="../UI/UserInterface.py" line="6464" /> + <location filename="../UI/UserInterface.py" line="6416" /> + <location filename="../UI/UserInterface.py" line="6406" /> + <location filename="../UI/UserInterface.py" line="6229" /> + <location filename="../UI/UserInterface.py" line="6219" /> + <location filename="../UI/UserInterface.py" line="6161" /> + <location filename="../UI/UserInterface.py" line="6151" /> <source><p>The file <b>{0}</b> does not exist or is zero length.</p></source> <translation><p>Soubor <b>{0}</b> neexistuje nebo má nulovou délku.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6702" /> - <location filename="../UI/UserInterface.py" line="6613" /> - <location filename="../UI/UserInterface.py" line="6494" /> - <location filename="../UI/UserInterface.py" line="6471" /> - <location filename="../UI/UserInterface.py" line="6412" /> - <location filename="../UI/UserInterface.py" line="6359" /> - <location filename="../UI/UserInterface.py" line="6337" /> - <location filename="../UI/UserInterface.py" line="6286" /> - <location filename="../UI/UserInterface.py" line="6277" /> - <location filename="../UI/UserInterface.py" line="6242" /> - <location filename="../UI/UserInterface.py" line="6233" /> - <location filename="../UI/UserInterface.py" line="6174" /> - <location filename="../UI/UserInterface.py" line="6165" /> + <location filename="../UI/UserInterface.py" line="6718" /> + <location filename="../UI/UserInterface.py" line="6629" /> + <location filename="../UI/UserInterface.py" line="6510" /> + <location filename="../UI/UserInterface.py" line="6487" /> + <location filename="../UI/UserInterface.py" line="6428" /> + <location filename="../UI/UserInterface.py" line="6375" /> + <location filename="../UI/UserInterface.py" line="6353" /> + <location filename="../UI/UserInterface.py" line="6304" /> + <location filename="../UI/UserInterface.py" line="6295" /> + <location filename="../UI/UserInterface.py" line="6260" /> + <location filename="../UI/UserInterface.py" line="6251" /> + <location filename="../UI/UserInterface.py" line="6192" /> + <location filename="../UI/UserInterface.py" line="6183" /> <source>Process Generation Error</source> <translation>Chyba v procesu generování</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6166" /> + <location filename="../UI/UserInterface.py" line="6184" /> <source><p>Could not start Qt-Designer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>Nemohu spustit Qt-Designer.<br>Ověřte jestli je dostupný jako <b>{0}</b>.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6175" /> + <location filename="../UI/UserInterface.py" line="6193" /> <source><p>Could not find the Qt-Designer executable.<br>Ensure that it is installed and optionally configured on the Qt configuration page.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6234" /> + <location filename="../UI/UserInterface.py" line="6252" /> <source><p>Could not start Qt-Linguist.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>Nemohu spustit Qt-Linguist.<br>Ověřte jestli je dostupný jako <b>{0}</b>.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6243" /> + <location filename="../UI/UserInterface.py" line="6261" /> <source><p>Could not find the Qt-Linguist executable.<br>Ensure that it is installed and optionally configured on the Qt configuration page.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6278" /> + <location filename="../UI/UserInterface.py" line="6296" /> <source><p>Could not start Qt-Assistant.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>Nemohu spustit Qt-Assistant.<br>Ověřte jestli je dostupný jako <b>{0}</b>.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6287" /> + <location filename="../UI/UserInterface.py" line="6305" /> <source><p>Could not find the Qt-Assistant executable.<br>Ensure that it is installed and optionally configured on the Qt configuration page.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6322" /> - <source>Currently no custom viewer is selected. Please use the preferences dialog to specify one.</source> - <translation>Aktuálně není vybrán žádný prohlížeč. Prosím otevřete Nastavení a nějaký vyberte.</translation> - </message> - <message> <location filename="../UI/UserInterface.py" line="6338" /> + <source>Currently no custom viewer is selected. Please use the preferences dialog to specify one.</source> + <translation>Aktuálně není vybrán žádný prohlížeč. Prosím otevřete Nastavení a nějaký vyberte.</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="6354" /> <source><p>Could not start custom viewer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>Nemohu spustit aktuální prohlížeč.<br>Ověřte jestli je dostupný jako <b>{0}</b>.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6360" /> + <location filename="../UI/UserInterface.py" line="6376" /> <source><p>Could not start the help viewer.<br>Ensure that it is available as <b>hh</b>.</p></source> <translation><p>Nemohu spustit prohlížeč nápovědy.<br>Ověřte jestli je dostupný jako <b>hh</b>.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6413" /> + <location filename="../UI/UserInterface.py" line="6429" /> <source><p>Could not start UI Previewer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>Nemohu spustit UI Previewer.<br>Ověřte jestli je dostupný jako <b>{0}</b>.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6472" /> + <location filename="../UI/UserInterface.py" line="6488" /> <source><p>Could not start Translation Previewer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>Nemohu spustit Previewer překladů.<br>Ověřte jestli je dostupný jako <b>{0}</b>.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6495" /> + <location filename="../UI/UserInterface.py" line="6511" /> <source><p>Could not start SQL Browser.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>Nelze spustit SQL Browser.<br>Ujistěte se, že je dostupný jako <b>{0}</b>.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6594" /> + <location filename="../UI/UserInterface.py" line="6610" /> <source><p>The snapshot utility is not available for Wayland desktop sessions.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6614" /> + <location filename="../UI/UserInterface.py" line="6630" /> <source><p>Could not start Snapshot tool.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6647" /> - <location filename="../UI/UserInterface.py" line="6637" /> + <location filename="../UI/UserInterface.py" line="6663" /> + <location filename="../UI/UserInterface.py" line="6653" /> <source>External Tools</source> <translation>Externí nástroje</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6638" /> + <location filename="../UI/UserInterface.py" line="6654" /> <source>No tool entry found for external tool '{0}' in tool group '{1}'.</source> <translation>V externím nástroji '{0}' ve skupině '{1}' nebyl záznam nástroje nalezen.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6648" /> + <location filename="../UI/UserInterface.py" line="6664" /> <source>No toolgroup entry '{0}' found.</source> <translation>Skupina nástrojů '{0}' nenalezena. </translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6685" /> + <location filename="../UI/UserInterface.py" line="6701" /> <source>Starting process '{0} {1}'. </source> <translation>Spouštím proces '{0} {1}'. </translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6703" /> + <location filename="../UI/UserInterface.py" line="6719" /> <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>Nemohu spustit příkaz <b>{0}</b><br>Ověřte jestli je dostupný jako <b>{1}</b>. </p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6782" /> + <location filename="../UI/UserInterface.py" line="6798" /> <source>Process '{0}' has exited. </source> <translation>Proces '{0}' byl ukončen. </translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7069" /> - <location filename="../UI/UserInterface.py" line="7007" /> - <location filename="../UI/UserInterface.py" line="6963" /> - <location filename="../UI/UserInterface.py" line="6889" /> - <location filename="../UI/UserInterface.py" line="6825" /> + <location filename="../UI/UserInterface.py" line="7085" /> + <location filename="../UI/UserInterface.py" line="7023" /> + <location filename="../UI/UserInterface.py" line="6979" /> + <location filename="../UI/UserInterface.py" line="6905" /> + <location filename="../UI/UserInterface.py" line="6841" /> <source>Documentation Missing</source> <translation>Dokumentace chybí</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7070" /> - <location filename="../UI/UserInterface.py" line="7008" /> - <location filename="../UI/UserInterface.py" line="6964" /> - <location filename="../UI/UserInterface.py" line="6890" /> - <location filename="../UI/UserInterface.py" line="6826" /> + <location filename="../UI/UserInterface.py" line="7086" /> + <location filename="../UI/UserInterface.py" line="7024" /> + <location filename="../UI/UserInterface.py" line="6980" /> + <location filename="../UI/UserInterface.py" line="6906" /> + <location filename="../UI/UserInterface.py" line="6842" /> <source><p>The documentation starting point "<b>{0}</b>" could not be found.</p></source> <translation><p>Adresář dokumentace "<b>{0}</b>" nebyl nalezen.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7051" /> - <location filename="../UI/UserInterface.py" line="6933" /> + <location filename="../UI/UserInterface.py" line="7067" /> + <location filename="../UI/UserInterface.py" line="6949" /> <source>Documentation</source> <translation>Dokumentace</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6934" /> + <location filename="../UI/UserInterface.py" line="6950" /> <source><p>The PyQt{0} documentation starting point has not been configured.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7052" /> + <location filename="../UI/UserInterface.py" line="7068" /> <source><p>The PySide{0} documentation starting point has not been configured.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7231" /> - <location filename="../UI/UserInterface.py" line="7167" /> + <location filename="../UI/UserInterface.py" line="7247" /> + <location filename="../UI/UserInterface.py" line="7183" /> <source>Start Web Browser</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7168" /> + <location filename="../UI/UserInterface.py" line="7184" /> <source>The eric web browser could not be started.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7232" /> + <location filename="../UI/UserInterface.py" line="7248" /> <source><p>The eric web browser is not started.</p><p>Reason: {0}</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7278" /> + <location filename="../UI/UserInterface.py" line="7294" /> <source>Open Browser</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7278" /> + <location filename="../UI/UserInterface.py" line="7294" /> <source>Could not start a web browser</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7573" /> - <location filename="../UI/UserInterface.py" line="7535" /> + <location filename="../UI/UserInterface.py" line="7589" /> + <location filename="../UI/UserInterface.py" line="7551" /> <source>Keyboard Shortcuts File (*.ekj)</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7553" /> + <location filename="../UI/UserInterface.py" line="7569" /> <source><p>The keyboard shortcuts file <b>{0}</b> exists already. Overwrite it?</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7757" /> + <location filename="../UI/UserInterface.py" line="7773" /> <source>Load crash session...</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7760" /> + <location filename="../UI/UserInterface.py" line="7776" /> <source>Clean crash sessions...</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7797" /> + <location filename="../UI/UserInterface.py" line="7813" /> <source>Read Session</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7798" /> + <location filename="../UI/UserInterface.py" line="7814" /> <source><p>The session file <b>{0}</b> could not be read.</p></source> <translation><p>Soubor relace session <b>{0}</b> nelze přečíst.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7821" /> + <location filename="../UI/UserInterface.py" line="7837" /> <source>Save Session</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7846" /> - <location filename="../UI/UserInterface.py" line="7823" /> + <location filename="../UI/UserInterface.py" line="7862" /> + <location filename="../UI/UserInterface.py" line="7839" /> <source>eric Session Files (*.esj)</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7913" /> + <location filename="../UI/UserInterface.py" line="7929" /> <source>Found Crash Sessions</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7914" /> + <location filename="../UI/UserInterface.py" line="7930" /> <source>These crash session files were found. Select the one to open. Select 'Cancel' to not open a crash session.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7987" /> + <location filename="../UI/UserInterface.py" line="8003" /> <source>Clean stale crash sessions</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7988" /> + <location filename="../UI/UserInterface.py" line="8004" /> <source>Do you really want to delete these stale crash session files?</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="8364" /> + <location filename="../UI/UserInterface.py" line="8380" /> <source>Drop Error</source> <translation>Zahodit chybu</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="8365" /> + <location filename="../UI/UserInterface.py" line="8381" /> <source><p><b>{0}</b> is not a file.</p></source> <translation><p><b>{0}</b> není soubor.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="8551" /> + <location filename="../UI/UserInterface.py" line="8567" /> <source>Upgrade available</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="8552" /> + <location filename="../UI/UserInterface.py" line="8568" /> <source><p>A newer version of the <b>eric-ide</b> package is available at <a href="{0}/eric-ide/">PyPI</a>.</p><p>Installed: {1}<br/>Available: <b>{2}</b></p><p>Shall <b>eric-ide</b> be upgraded?</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="8597" /> + <location filename="../UI/UserInterface.py" line="8613" /> <source>First time usage</source> <translation>Spuštěno poprvé</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="8598" /> + <location filename="../UI/UserInterface.py" line="8614" /> <source>eric has not been configured yet. The configuration dialog will be started.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="8620" /> + <location filename="../UI/UserInterface.py" line="8636" /> <source>Select Workspace Directory</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="8788" /> + <location filename="../UI/UserInterface.py" line="8804" /> <source>Unsaved Data Detected</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="8789" /> + <location filename="../UI/UserInterface.py" line="8805" /> <source>Some editors contain unsaved data. Shall these be saved?</source> <translation type="unfinished" /> </message> @@ -94801,7 +94806,7 @@ <p>Tisk obsahu aktuálního editačního okna.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="775" /> + <location filename="../QScintilla/MiniEditor.py" line="776" /> <location filename="../ViewManager/ViewManager.py" line="913" /> <location filename="../ViewManager/ViewManager.py" line="911" /> <source>Print Preview</source> @@ -95594,8 +95599,8 @@ <translation type="unfinished" /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="926" /> <location filename="../QScintilla/MiniEditor.py" line="925" /> - <location filename="../QScintilla/MiniEditor.py" line="924" /> <location filename="../QScintilla/ShellWindow.py" line="575" /> <location filename="../QScintilla/ShellWindow.py" line="574" /> <location filename="../ViewManager/ViewManager.py" line="1858" /> @@ -95604,22 +95609,22 @@ <translation>Posun o jeden znak doleva</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="926" /> + <location filename="../QScintilla/MiniEditor.py" line="927" /> <location filename="../QScintilla/ShellWindow.py" line="576" /> <location filename="../ViewManager/ViewManager.py" line="1859" /> <source>Left</source> <translation /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="934" /> + <location filename="../QScintilla/MiniEditor.py" line="935" /> <location filename="../QScintilla/ShellWindow.py" line="584" /> <location filename="../ViewManager/ViewManager.py" line="1867" /> <source>Meta+B</source> <translation type="unfinished" /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="942" /> <location filename="../QScintilla/MiniEditor.py" line="941" /> - <location filename="../QScintilla/MiniEditor.py" line="940" /> <location filename="../QScintilla/ShellWindow.py" line="591" /> <location filename="../QScintilla/ShellWindow.py" line="590" /> <location filename="../ViewManager/ViewManager.py" line="1874" /> @@ -95628,22 +95633,22 @@ <translation>Posun o jeden znak doprava</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="942" /> + <location filename="../QScintilla/MiniEditor.py" line="943" /> <location filename="../QScintilla/ShellWindow.py" line="592" /> <location filename="../ViewManager/ViewManager.py" line="1875" /> <source>Right</source> <translation /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="949" /> + <location filename="../QScintilla/MiniEditor.py" line="950" /> <location filename="../QScintilla/ShellWindow.py" line="599" /> <location filename="../ViewManager/ViewManager.py" line="1882" /> <source>Meta+F</source> <translation type="unfinished" /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="958" /> <location filename="../QScintilla/MiniEditor.py" line="957" /> - <location filename="../QScintilla/MiniEditor.py" line="956" /> <location filename="../QScintilla/ShellWindow.py" line="683" /> <location filename="../QScintilla/ShellWindow.py" line="682" /> <location filename="../ViewManager/ViewManager.py" line="1890" /> @@ -95652,22 +95657,22 @@ <translation>Posun o jeden řádek nahoru</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="958" /> + <location filename="../QScintilla/MiniEditor.py" line="959" /> <location filename="../QScintilla/ShellWindow.py" line="684" /> <location filename="../ViewManager/ViewManager.py" line="1891" /> <source>Up</source> <translation /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="965" /> + <location filename="../QScintilla/MiniEditor.py" line="966" /> <location filename="../QScintilla/ShellWindow.py" line="691" /> <location filename="../ViewManager/ViewManager.py" line="1898" /> <source>Meta+P</source> <translation type="unfinished" /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="974" /> <location filename="../QScintilla/MiniEditor.py" line="973" /> - <location filename="../QScintilla/MiniEditor.py" line="972" /> <location filename="../QScintilla/ShellWindow.py" line="699" /> <location filename="../QScintilla/ShellWindow.py" line="698" /> <location filename="../ViewManager/ViewManager.py" line="1906" /> @@ -95676,30 +95681,30 @@ <translation>Posun o jeden řádek dolu</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="974" /> + <location filename="../QScintilla/MiniEditor.py" line="975" /> <location filename="../QScintilla/ShellWindow.py" line="700" /> <location filename="../ViewManager/ViewManager.py" line="1907" /> <source>Down</source> <translation /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="981" /> + <location filename="../QScintilla/MiniEditor.py" line="982" /> <location filename="../QScintilla/ShellWindow.py" line="707" /> <location filename="../ViewManager/ViewManager.py" line="1914" /> <source>Meta+N</source> <translation type="unfinished" /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="990" /> <location filename="../QScintilla/MiniEditor.py" line="989" /> - <location filename="../QScintilla/MiniEditor.py" line="988" /> <location filename="../ViewManager/ViewManager.py" line="1922" /> <location filename="../ViewManager/ViewManager.py" line="1921" /> <source>Move left one word part</source> <translation>Posun o jednu část slova doleva</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1029" /> - <location filename="../QScintilla/MiniEditor.py" line="997" /> + <location filename="../QScintilla/MiniEditor.py" line="1030" /> + <location filename="../QScintilla/MiniEditor.py" line="998" /> <location filename="../QScintilla/ShellWindow.py" line="615" /> <location filename="../ViewManager/ViewManager.py" line="1962" /> <location filename="../ViewManager/ViewManager.py" line="1930" /> @@ -95707,25 +95712,25 @@ <translation /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1006" /> <location filename="../QScintilla/MiniEditor.py" line="1005" /> - <location filename="../QScintilla/MiniEditor.py" line="1004" /> <location filename="../ViewManager/ViewManager.py" line="1938" /> <location filename="../ViewManager/ViewManager.py" line="1937" /> <source>Move right one word part</source> <translation>Posun o jednu část slova doprava</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2159" /> - <location filename="../QScintilla/MiniEditor.py" line="1049" /> - <location filename="../QScintilla/MiniEditor.py" line="1013" /> + <location filename="../QScintilla/MiniEditor.py" line="2160" /> + <location filename="../QScintilla/MiniEditor.py" line="1050" /> + <location filename="../QScintilla/MiniEditor.py" line="1014" /> <location filename="../ViewManager/ViewManager.py" line="3071" /> <location filename="../ViewManager/ViewManager.py" line="1946" /> <source>Alt+Right</source> <translation /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1022" /> <location filename="../QScintilla/MiniEditor.py" line="1021" /> - <location filename="../QScintilla/MiniEditor.py" line="1020" /> <location filename="../QScintilla/ShellWindow.py" line="607" /> <location filename="../QScintilla/ShellWindow.py" line="606" /> <location filename="../ViewManager/ViewManager.py" line="1954" /> @@ -95734,8 +95739,8 @@ <translation>Posun o jedno slovo doleva</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1089" /> - <location filename="../QScintilla/MiniEditor.py" line="1033" /> + <location filename="../QScintilla/MiniEditor.py" line="1090" /> + <location filename="../QScintilla/MiniEditor.py" line="1034" /> <location filename="../QScintilla/ShellWindow.py" line="619" /> <location filename="../ViewManager/ViewManager.py" line="2018" /> <location filename="../ViewManager/ViewManager.py" line="1966" /> @@ -95743,8 +95748,8 @@ <translation /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1042" /> <location filename="../QScintilla/MiniEditor.py" line="1041" /> - <location filename="../QScintilla/MiniEditor.py" line="1040" /> <location filename="../QScintilla/ShellWindow.py" line="627" /> <location filename="../QScintilla/ShellWindow.py" line="626" /> <location filename="../ViewManager/ViewManager.py" line="1974" /> @@ -95753,8 +95758,8 @@ <translation>Posun o jedno slovo doprava</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1843" /> - <location filename="../QScintilla/MiniEditor.py" line="1053" /> + <location filename="../QScintilla/MiniEditor.py" line="1844" /> + <location filename="../QScintilla/MiniEditor.py" line="1054" /> <location filename="../QScintilla/ShellWindow.py" line="635" /> <location filename="../ViewManager/ViewManager.py" line="2755" /> <location filename="../ViewManager/ViewManager.py" line="1982" /> @@ -95762,8 +95767,8 @@ <translation /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1063" /> - <location filename="../QScintilla/MiniEditor.py" line="1060" /> + <location filename="../QScintilla/MiniEditor.py" line="1064" /> + <location filename="../QScintilla/MiniEditor.py" line="1061" /> <location filename="../QScintilla/ShellWindow.py" line="645" /> <location filename="../QScintilla/ShellWindow.py" line="642" /> <location filename="../ViewManager/ViewManager.py" line="1992" /> @@ -95772,8 +95777,8 @@ <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2104" /> - <location filename="../QScintilla/MiniEditor.py" line="1073" /> + <location filename="../QScintilla/MiniEditor.py" line="2105" /> + <location filename="../QScintilla/MiniEditor.py" line="1074" /> <location filename="../QScintilla/ShellWindow.py" line="655" /> <location filename="../ViewManager/ViewManager.py" line="3016" /> <location filename="../ViewManager/ViewManager.py" line="2002" /> @@ -95781,22 +95786,22 @@ <translation /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1082" /> <location filename="../QScintilla/MiniEditor.py" line="1081" /> - <location filename="../QScintilla/MiniEditor.py" line="1080" /> <location filename="../ViewManager/ViewManager.py" line="2010" /> <location filename="../ViewManager/ViewManager.py" line="2009" /> <source>Move to start of display line</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1093" /> + <location filename="../QScintilla/MiniEditor.py" line="1094" /> <location filename="../ViewManager/ViewManager.py" line="2022" /> <source>Alt+Home</source> <translation /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1102" /> <location filename="../QScintilla/MiniEditor.py" line="1101" /> - <location filename="../QScintilla/MiniEditor.py" line="1100" /> <location filename="../QScintilla/ShellWindow.py" line="663" /> <location filename="../QScintilla/ShellWindow.py" line="662" /> <location filename="../ViewManager/ViewManager.py" line="2030" /> @@ -95805,15 +95810,15 @@ <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1109" /> + <location filename="../QScintilla/MiniEditor.py" line="1110" /> <location filename="../QScintilla/ShellWindow.py" line="671" /> <location filename="../ViewManager/ViewManager.py" line="2038" /> <source>Meta+E</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2121" /> - <location filename="../QScintilla/MiniEditor.py" line="1113" /> + <location filename="../QScintilla/MiniEditor.py" line="2122" /> + <location filename="../QScintilla/MiniEditor.py" line="1114" /> <location filename="../QScintilla/ShellWindow.py" line="675" /> <location filename="../ViewManager/ViewManager.py" line="3033" /> <location filename="../ViewManager/ViewManager.py" line="2042" /> @@ -95821,16 +95826,16 @@ <translation /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1122" /> <location filename="../QScintilla/MiniEditor.py" line="1121" /> - <location filename="../QScintilla/MiniEditor.py" line="1120" /> <location filename="../ViewManager/ViewManager.py" line="2050" /> <location filename="../ViewManager/ViewManager.py" line="2049" /> <source>Scroll view down one line</source> <translation>Posun pohledu jeden řádek dolů</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1225" /> - <location filename="../QScintilla/MiniEditor.py" line="1122" /> + <location filename="../QScintilla/MiniEditor.py" line="1226" /> + <location filename="../QScintilla/MiniEditor.py" line="1123" /> <location filename="../QScintilla/ShellWindow.py" line="716" /> <location filename="../ViewManager/ViewManager.py" line="2154" /> <location filename="../ViewManager/ViewManager.py" line="2051" /> @@ -95838,16 +95843,16 @@ <translation /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1134" /> <location filename="../QScintilla/MiniEditor.py" line="1133" /> - <location filename="../QScintilla/MiniEditor.py" line="1132" /> <location filename="../ViewManager/ViewManager.py" line="2062" /> <location filename="../ViewManager/ViewManager.py" line="2061" /> <source>Scroll view up one line</source> <translation>Posun pohledu o jeden řádek nahoru</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1205" /> - <location filename="../QScintilla/MiniEditor.py" line="1134" /> + <location filename="../QScintilla/MiniEditor.py" line="1206" /> + <location filename="../QScintilla/MiniEditor.py" line="1135" /> <location filename="../QScintilla/ShellWindow.py" line="728" /> <location filename="../ViewManager/ViewManager.py" line="2134" /> <location filename="../ViewManager/ViewManager.py" line="2063" /> @@ -95855,36 +95860,36 @@ <translation /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1146" /> <location filename="../QScintilla/MiniEditor.py" line="1145" /> - <location filename="../QScintilla/MiniEditor.py" line="1144" /> <location filename="../ViewManager/ViewManager.py" line="2074" /> <location filename="../ViewManager/ViewManager.py" line="2073" /> <source>Move up one paragraph</source> <translation>Posun na předchozí odstavec</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1146" /> + <location filename="../QScintilla/MiniEditor.py" line="1147" /> <location filename="../ViewManager/ViewManager.py" line="2075" /> <source>Alt+Up</source> <translation /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1158" /> <location filename="../QScintilla/MiniEditor.py" line="1157" /> - <location filename="../QScintilla/MiniEditor.py" line="1156" /> <location filename="../ViewManager/ViewManager.py" line="2086" /> <location filename="../ViewManager/ViewManager.py" line="2085" /> <source>Move down one paragraph</source> <translation>Posun na následující odstavec</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1158" /> + <location filename="../QScintilla/MiniEditor.py" line="1159" /> <location filename="../ViewManager/ViewManager.py" line="2087" /> <source>Alt+Down</source> <translation /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1170" /> <location filename="../QScintilla/MiniEditor.py" line="1169" /> - <location filename="../QScintilla/MiniEditor.py" line="1168" /> <location filename="../QScintilla/ShellWindow.py" line="739" /> <location filename="../QScintilla/ShellWindow.py" line="738" /> <location filename="../ViewManager/ViewManager.py" line="2098" /> @@ -95893,15 +95898,15 @@ <translation>Posun na předchozí stranu</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1170" /> + <location filename="../QScintilla/MiniEditor.py" line="1171" /> <location filename="../QScintilla/ShellWindow.py" line="740" /> <location filename="../ViewManager/ViewManager.py" line="2099" /> <source>PgUp</source> <translation /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1182" /> <location filename="../QScintilla/MiniEditor.py" line="1181" /> - <location filename="../QScintilla/MiniEditor.py" line="1180" /> <location filename="../QScintilla/ShellWindow.py" line="751" /> <location filename="../QScintilla/ShellWindow.py" line="750" /> <location filename="../ViewManager/ViewManager.py" line="2110" /> @@ -95910,50 +95915,50 @@ <translation>Posun na následující stranu</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1182" /> + <location filename="../QScintilla/MiniEditor.py" line="1183" /> <location filename="../QScintilla/ShellWindow.py" line="752" /> <location filename="../ViewManager/ViewManager.py" line="2111" /> <source>PgDown</source> <translation /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1189" /> + <location filename="../QScintilla/MiniEditor.py" line="1190" /> <location filename="../QScintilla/ShellWindow.py" line="759" /> <location filename="../ViewManager/ViewManager.py" line="2118" /> <source>Meta+V</source> <translation type="unfinished" /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1198" /> <location filename="../QScintilla/MiniEditor.py" line="1197" /> - <location filename="../QScintilla/MiniEditor.py" line="1196" /> <location filename="../ViewManager/ViewManager.py" line="2126" /> <location filename="../ViewManager/ViewManager.py" line="2125" /> <source>Move to start of document</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1209" /> + <location filename="../QScintilla/MiniEditor.py" line="1210" /> <location filename="../ViewManager/ViewManager.py" line="2138" /> <source>Ctrl+Home</source> <translation /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1218" /> <location filename="../QScintilla/MiniEditor.py" line="1217" /> - <location filename="../QScintilla/MiniEditor.py" line="1216" /> <location filename="../ViewManager/ViewManager.py" line="2146" /> <location filename="../ViewManager/ViewManager.py" line="2145" /> <source>Move to end of document</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1229" /> + <location filename="../QScintilla/MiniEditor.py" line="1230" /> <location filename="../ViewManager/ViewManager.py" line="2158" /> <source>Ctrl+End</source> <translation /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1238" /> <location filename="../QScintilla/MiniEditor.py" line="1237" /> - <location filename="../QScintilla/MiniEditor.py" line="1236" /> <location filename="../QScintilla/ShellWindow.py" line="453" /> <location filename="../QScintilla/ShellWindow.py" line="452" /> <location filename="../ViewManager/ViewManager.py" line="2166" /> @@ -95962,29 +95967,29 @@ <translation>Odsadit o jednu úroveň</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1238" /> + <location filename="../QScintilla/MiniEditor.py" line="1239" /> <location filename="../QScintilla/ShellWindow.py" line="454" /> <location filename="../ViewManager/ViewManager.py" line="2167" /> <source>Tab</source> <translation /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1250" /> <location filename="../QScintilla/MiniEditor.py" line="1249" /> - <location filename="../QScintilla/MiniEditor.py" line="1248" /> <location filename="../ViewManager/ViewManager.py" line="2178" /> <location filename="../ViewManager/ViewManager.py" line="2177" /> <source>Unindent one level</source> <translation>Zrušit odsazení o jednu úroveň</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1250" /> + <location filename="../QScintilla/MiniEditor.py" line="1251" /> <location filename="../ViewManager/ViewManager.py" line="2179" /> <source>Shift+Tab</source> <translation /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1263" /> - <location filename="../QScintilla/MiniEditor.py" line="1260" /> + <location filename="../QScintilla/MiniEditor.py" line="1264" /> + <location filename="../QScintilla/MiniEditor.py" line="1261" /> <location filename="../QScintilla/ShellWindow.py" line="781" /> <location filename="../QScintilla/ShellWindow.py" line="778" /> <location filename="../ViewManager/ViewManager.py" line="2192" /> @@ -95993,22 +95998,22 @@ <translation>Rozšířit výběr o jeden znak vlevo</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1266" /> + <location filename="../QScintilla/MiniEditor.py" line="1267" /> <location filename="../QScintilla/ShellWindow.py" line="784" /> <location filename="../ViewManager/ViewManager.py" line="2195" /> <source>Shift+Left</source> <translation /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1273" /> + <location filename="../QScintilla/MiniEditor.py" line="1274" /> <location filename="../QScintilla/ShellWindow.py" line="791" /> <location filename="../ViewManager/ViewManager.py" line="2202" /> <source>Meta+Shift+B</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1283" /> - <location filename="../QScintilla/MiniEditor.py" line="1280" /> + <location filename="../QScintilla/MiniEditor.py" line="1284" /> + <location filename="../QScintilla/MiniEditor.py" line="1281" /> <location filename="../QScintilla/ShellWindow.py" line="801" /> <location filename="../QScintilla/ShellWindow.py" line="798" /> <location filename="../ViewManager/ViewManager.py" line="2212" /> @@ -96017,70 +96022,70 @@ <translation>Rozšířit výběr o jeden znak vpravo</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1286" /> + <location filename="../QScintilla/MiniEditor.py" line="1287" /> <location filename="../QScintilla/ShellWindow.py" line="804" /> <location filename="../ViewManager/ViewManager.py" line="2215" /> <source>Shift+Right</source> <translation /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1293" /> + <location filename="../QScintilla/MiniEditor.py" line="1294" /> <location filename="../QScintilla/ShellWindow.py" line="811" /> <location filename="../ViewManager/ViewManager.py" line="2222" /> <source>Meta+Shift+F</source> <translation type="unfinished" /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1302" /> <location filename="../QScintilla/MiniEditor.py" line="1301" /> - <location filename="../QScintilla/MiniEditor.py" line="1300" /> <location filename="../ViewManager/ViewManager.py" line="2230" /> <location filename="../ViewManager/ViewManager.py" line="2229" /> <source>Extend selection up one line</source> <translation>Rozšířit výběr o řádku nahoru</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1302" /> + <location filename="../QScintilla/MiniEditor.py" line="1303" /> <location filename="../ViewManager/ViewManager.py" line="2231" /> <source>Shift+Up</source> <translation /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1309" /> + <location filename="../QScintilla/MiniEditor.py" line="1310" /> <location filename="../ViewManager/ViewManager.py" line="2238" /> <source>Meta+Shift+P</source> <translation type="unfinished" /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1318" /> <location filename="../QScintilla/MiniEditor.py" line="1317" /> - <location filename="../QScintilla/MiniEditor.py" line="1316" /> <location filename="../ViewManager/ViewManager.py" line="2246" /> <location filename="../ViewManager/ViewManager.py" line="2245" /> <source>Extend selection down one line</source> <translation>Rozšířit výběr o jednu řádku dolů</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1318" /> + <location filename="../QScintilla/MiniEditor.py" line="1319" /> <location filename="../ViewManager/ViewManager.py" line="2247" /> <source>Shift+Down</source> <translation /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1325" /> + <location filename="../QScintilla/MiniEditor.py" line="1326" /> <location filename="../ViewManager/ViewManager.py" line="2254" /> <source>Meta+Shift+N</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1335" /> - <location filename="../QScintilla/MiniEditor.py" line="1332" /> + <location filename="../QScintilla/MiniEditor.py" line="1336" /> + <location filename="../QScintilla/MiniEditor.py" line="1333" /> <location filename="../ViewManager/ViewManager.py" line="2264" /> <location filename="../ViewManager/ViewManager.py" line="2261" /> <source>Extend selection left one word part</source> <translation>Rozšířit výběr o jednu část slova vlevo</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1386" /> - <location filename="../QScintilla/MiniEditor.py" line="1346" /> + <location filename="../QScintilla/MiniEditor.py" line="1387" /> + <location filename="../QScintilla/MiniEditor.py" line="1347" /> <location filename="../QScintilla/ShellWindow.py" line="828" /> <location filename="../ViewManager/ViewManager.py" line="2315" /> <location filename="../ViewManager/ViewManager.py" line="2275" /> @@ -96088,17 +96093,17 @@ <translation /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1357" /> - <location filename="../QScintilla/MiniEditor.py" line="1354" /> + <location filename="../QScintilla/MiniEditor.py" line="1358" /> + <location filename="../QScintilla/MiniEditor.py" line="1355" /> <location filename="../ViewManager/ViewManager.py" line="2286" /> <location filename="../ViewManager/ViewManager.py" line="2283" /> <source>Extend selection right one word part</source> <translation>Rozšířit výběr o jednu část slova vpravo</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2181" /> - <location filename="../QScintilla/MiniEditor.py" line="1414" /> - <location filename="../QScintilla/MiniEditor.py" line="1368" /> + <location filename="../QScintilla/MiniEditor.py" line="2182" /> + <location filename="../QScintilla/MiniEditor.py" line="1415" /> + <location filename="../QScintilla/MiniEditor.py" line="1369" /> <location filename="../QScintilla/ShellWindow.py" line="856" /> <location filename="../ViewManager/ViewManager.py" line="3093" /> <location filename="../ViewManager/ViewManager.py" line="2343" /> @@ -96107,8 +96112,8 @@ <translation /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1378" /> <location filename="../QScintilla/MiniEditor.py" line="1377" /> - <location filename="../QScintilla/MiniEditor.py" line="1376" /> <location filename="../QScintilla/ShellWindow.py" line="819" /> <location filename="../QScintilla/ShellWindow.py" line="818" /> <location filename="../ViewManager/ViewManager.py" line="2306" /> @@ -96117,8 +96122,8 @@ <translation>Rozšířit výběr o jedno slovo vlevo</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2307" /> - <location filename="../QScintilla/MiniEditor.py" line="1392" /> + <location filename="../QScintilla/MiniEditor.py" line="2308" /> + <location filename="../QScintilla/MiniEditor.py" line="1393" /> <location filename="../QScintilla/ShellWindow.py" line="834" /> <location filename="../ViewManager/ViewManager.py" line="3219" /> <location filename="../ViewManager/ViewManager.py" line="2321" /> @@ -96126,8 +96131,8 @@ <translation /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1403" /> - <location filename="../QScintilla/MiniEditor.py" line="1400" /> + <location filename="../QScintilla/MiniEditor.py" line="1404" /> + <location filename="../QScintilla/MiniEditor.py" line="1401" /> <location filename="../QScintilla/ShellWindow.py" line="845" /> <location filename="../QScintilla/ShellWindow.py" line="842" /> <location filename="../ViewManager/ViewManager.py" line="2332" /> @@ -96136,8 +96141,8 @@ <translation>Rozšířit výběr o jedno slovo vpravo</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1868" /> - <location filename="../QScintilla/MiniEditor.py" line="1420" /> + <location filename="../QScintilla/MiniEditor.py" line="1869" /> + <location filename="../QScintilla/MiniEditor.py" line="1421" /> <location filename="../QScintilla/ShellWindow.py" line="862" /> <location filename="../ViewManager/ViewManager.py" line="2780" /> <location filename="../ViewManager/ViewManager.py" line="2349" /> @@ -96145,8 +96150,8 @@ <translation /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1432" /> - <location filename="../QScintilla/MiniEditor.py" line="1428" /> + <location filename="../QScintilla/MiniEditor.py" line="1433" /> + <location filename="../QScintilla/MiniEditor.py" line="1429" /> <location filename="../QScintilla/ShellWindow.py" line="874" /> <location filename="../QScintilla/ShellWindow.py" line="870" /> <location filename="../ViewManager/ViewManager.py" line="2361" /> @@ -96155,15 +96160,15 @@ <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1443" /> + <location filename="../QScintilla/MiniEditor.py" line="1444" /> <location filename="../QScintilla/ShellWindow.py" line="885" /> <location filename="../ViewManager/ViewManager.py" line="2372" /> <source>Shift+Home</source> <translation /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1453" /> - <location filename="../QScintilla/MiniEditor.py" line="1450" /> + <location filename="../QScintilla/MiniEditor.py" line="1454" /> + <location filename="../QScintilla/MiniEditor.py" line="1451" /> <location filename="../QScintilla/ShellWindow.py" line="895" /> <location filename="../QScintilla/ShellWindow.py" line="892" /> <location filename="../ViewManager/ViewManager.py" line="2382" /> @@ -96172,124 +96177,124 @@ <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1463" /> + <location filename="../QScintilla/MiniEditor.py" line="1464" /> <location filename="../QScintilla/ShellWindow.py" line="905" /> <location filename="../ViewManager/ViewManager.py" line="2392" /> <source>Meta+Shift+E</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1467" /> + <location filename="../QScintilla/MiniEditor.py" line="1468" /> <location filename="../QScintilla/ShellWindow.py" line="909" /> <location filename="../ViewManager/ViewManager.py" line="2396" /> <source>Shift+End</source> <translation /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1477" /> - <location filename="../QScintilla/MiniEditor.py" line="1474" /> + <location filename="../QScintilla/MiniEditor.py" line="1478" /> + <location filename="../QScintilla/MiniEditor.py" line="1475" /> <location filename="../ViewManager/ViewManager.py" line="2406" /> <location filename="../ViewManager/ViewManager.py" line="2403" /> <source>Extend selection up one paragraph</source> <translation>Rozšířit výběr o předchozí odstavec</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1480" /> + <location filename="../QScintilla/MiniEditor.py" line="1481" /> <location filename="../ViewManager/ViewManager.py" line="2409" /> <source>Alt+Shift+Up</source> <translation /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1493" /> - <location filename="../QScintilla/MiniEditor.py" line="1490" /> + <location filename="../QScintilla/MiniEditor.py" line="1494" /> + <location filename="../QScintilla/MiniEditor.py" line="1491" /> <location filename="../ViewManager/ViewManager.py" line="2422" /> <location filename="../ViewManager/ViewManager.py" line="2419" /> <source>Extend selection down one paragraph</source> <translation>Rozšířit výběr o následující odstavec</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1496" /> + <location filename="../QScintilla/MiniEditor.py" line="1497" /> <location filename="../ViewManager/ViewManager.py" line="2425" /> <source>Alt+Shift+Down</source> <translation /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1508" /> <location filename="../QScintilla/MiniEditor.py" line="1507" /> - <location filename="../QScintilla/MiniEditor.py" line="1506" /> <location filename="../ViewManager/ViewManager.py" line="2436" /> <location filename="../ViewManager/ViewManager.py" line="2435" /> <source>Extend selection up one page</source> <translation>Rozšířit výběr na předchozí stranu</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1508" /> + <location filename="../QScintilla/MiniEditor.py" line="1509" /> <location filename="../ViewManager/ViewManager.py" line="2437" /> <source>Shift+PgUp</source> <translation /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1520" /> <location filename="../QScintilla/MiniEditor.py" line="1519" /> - <location filename="../QScintilla/MiniEditor.py" line="1518" /> <location filename="../ViewManager/ViewManager.py" line="2448" /> <location filename="../ViewManager/ViewManager.py" line="2447" /> <source>Extend selection down one page</source> <translation>Rozšířit výběr na následující stranu</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1520" /> + <location filename="../QScintilla/MiniEditor.py" line="1521" /> <location filename="../ViewManager/ViewManager.py" line="2449" /> <source>Shift+PgDown</source> <translation /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1527" /> + <location filename="../QScintilla/MiniEditor.py" line="1528" /> <location filename="../ViewManager/ViewManager.py" line="2456" /> <source>Meta+Shift+V</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1537" /> - <location filename="../QScintilla/MiniEditor.py" line="1534" /> + <location filename="../QScintilla/MiniEditor.py" line="1538" /> + <location filename="../QScintilla/MiniEditor.py" line="1535" /> <location filename="../ViewManager/ViewManager.py" line="2466" /> <location filename="../ViewManager/ViewManager.py" line="2463" /> <source>Extend selection to start of document</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1547" /> + <location filename="../QScintilla/MiniEditor.py" line="1548" /> <location filename="../ViewManager/ViewManager.py" line="2476" /> <source>Ctrl+Shift+Up</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1552" /> + <location filename="../QScintilla/MiniEditor.py" line="1553" /> <location filename="../ViewManager/ViewManager.py" line="2481" /> <source>Ctrl+Shift+Home</source> <translation /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1563" /> - <location filename="../QScintilla/MiniEditor.py" line="1560" /> + <location filename="../QScintilla/MiniEditor.py" line="1564" /> + <location filename="../QScintilla/MiniEditor.py" line="1561" /> <location filename="../ViewManager/ViewManager.py" line="2492" /> <location filename="../ViewManager/ViewManager.py" line="2489" /> <source>Extend selection to end of document</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1574" /> + <location filename="../QScintilla/MiniEditor.py" line="1575" /> <location filename="../ViewManager/ViewManager.py" line="2503" /> <source>Ctrl+Shift+Down</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1580" /> + <location filename="../QScintilla/MiniEditor.py" line="1581" /> <location filename="../ViewManager/ViewManager.py" line="2509" /> <source>Ctrl+Shift+End</source> <translation /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1590" /> <location filename="../QScintilla/MiniEditor.py" line="1589" /> - <location filename="../QScintilla/MiniEditor.py" line="1588" /> <location filename="../QScintilla/ShellWindow.py" line="477" /> <location filename="../QScintilla/ShellWindow.py" line="476" /> <location filename="../ViewManager/ViewManager.py" line="2518" /> @@ -96298,37 +96303,37 @@ <translation>Smazat předchozí znak</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1590" /> + <location filename="../QScintilla/MiniEditor.py" line="1591" /> <location filename="../QScintilla/ShellWindow.py" line="478" /> <location filename="../ViewManager/ViewManager.py" line="2519" /> <source>Backspace</source> <translation /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1597" /> + <location filename="../QScintilla/MiniEditor.py" line="1598" /> <location filename="../QScintilla/ShellWindow.py" line="485" /> <location filename="../ViewManager/ViewManager.py" line="2526" /> <source>Meta+H</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1602" /> + <location filename="../QScintilla/MiniEditor.py" line="1603" /> <location filename="../QScintilla/ShellWindow.py" line="490" /> <location filename="../ViewManager/ViewManager.py" line="2531" /> <source>Shift+Backspace</source> <translation /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1613" /> - <location filename="../QScintilla/MiniEditor.py" line="1610" /> + <location filename="../QScintilla/MiniEditor.py" line="1614" /> + <location filename="../QScintilla/MiniEditor.py" line="1611" /> <location filename="../ViewManager/ViewManager.py" line="2542" /> <location filename="../ViewManager/ViewManager.py" line="2539" /> <source>Delete previous character if not at start of line</source> <translation type="unfinished" /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1628" /> <location filename="../QScintilla/MiniEditor.py" line="1627" /> - <location filename="../QScintilla/MiniEditor.py" line="1626" /> <location filename="../QScintilla/ShellWindow.py" line="499" /> <location filename="../QScintilla/ShellWindow.py" line="498" /> <location filename="../ViewManager/ViewManager.py" line="2556" /> @@ -96337,22 +96342,22 @@ <translation>Smazat aktuální znak</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1628" /> + <location filename="../QScintilla/MiniEditor.py" line="1629" /> <location filename="../QScintilla/ShellWindow.py" line="500" /> <location filename="../ViewManager/ViewManager.py" line="2557" /> <source>Del</source> <translation /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1635" /> + <location filename="../QScintilla/MiniEditor.py" line="1636" /> <location filename="../QScintilla/ShellWindow.py" line="507" /> <location filename="../ViewManager/ViewManager.py" line="2564" /> <source>Meta+D</source> <translation type="unfinished" /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1644" /> <location filename="../QScintilla/MiniEditor.py" line="1643" /> - <location filename="../QScintilla/MiniEditor.py" line="1642" /> <location filename="../QScintilla/ShellWindow.py" line="515" /> <location filename="../QScintilla/ShellWindow.py" line="514" /> <location filename="../ViewManager/ViewManager.py" line="2572" /> @@ -96361,15 +96366,15 @@ <translation>Smazat slovo doleva</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1644" /> + <location filename="../QScintilla/MiniEditor.py" line="1645" /> <location filename="../QScintilla/ShellWindow.py" line="516" /> <location filename="../ViewManager/ViewManager.py" line="2573" /> <source>Ctrl+Backspace</source> <translation /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1656" /> <location filename="../QScintilla/MiniEditor.py" line="1655" /> - <location filename="../QScintilla/MiniEditor.py" line="1654" /> <location filename="../QScintilla/ShellWindow.py" line="527" /> <location filename="../QScintilla/ShellWindow.py" line="526" /> <location filename="../ViewManager/ViewManager.py" line="2584" /> @@ -96378,15 +96383,15 @@ <translation>Smazat slovo doprava</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1656" /> + <location filename="../QScintilla/MiniEditor.py" line="1657" /> <location filename="../QScintilla/ShellWindow.py" line="528" /> <location filename="../ViewManager/ViewManager.py" line="2585" /> <source>Ctrl+Del</source> <translation /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1668" /> <location filename="../QScintilla/MiniEditor.py" line="1667" /> - <location filename="../QScintilla/MiniEditor.py" line="1666" /> <location filename="../QScintilla/ShellWindow.py" line="539" /> <location filename="../QScintilla/ShellWindow.py" line="538" /> <location filename="../ViewManager/ViewManager.py" line="2596" /> @@ -96395,15 +96400,15 @@ <translation>Smazat řádku doleva</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1669" /> + <location filename="../QScintilla/MiniEditor.py" line="1670" /> <location filename="../QScintilla/ShellWindow.py" line="541" /> <location filename="../ViewManager/ViewManager.py" line="2598" /> <source>Ctrl+Shift+Backspace</source> <translation /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1682" /> <location filename="../QScintilla/MiniEditor.py" line="1681" /> - <location filename="../QScintilla/MiniEditor.py" line="1680" /> <location filename="../QScintilla/ShellWindow.py" line="553" /> <location filename="../QScintilla/ShellWindow.py" line="552" /> <location filename="../ViewManager/ViewManager.py" line="2610" /> @@ -96412,22 +96417,22 @@ <translation>Smazat řádku doprava</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1689" /> + <location filename="../QScintilla/MiniEditor.py" line="1690" /> <location filename="../QScintilla/ShellWindow.py" line="561" /> <location filename="../ViewManager/ViewManager.py" line="2618" /> <source>Meta+K</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1694" /> + <location filename="../QScintilla/MiniEditor.py" line="1695" /> <location filename="../QScintilla/ShellWindow.py" line="566" /> <location filename="../ViewManager/ViewManager.py" line="2623" /> <source>Ctrl+Shift+Del</source> <translation /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1704" /> <location filename="../QScintilla/MiniEditor.py" line="1703" /> - <location filename="../QScintilla/MiniEditor.py" line="1702" /> <location filename="../QScintilla/ShellWindow.py" line="465" /> <location filename="../QScintilla/ShellWindow.py" line="464" /> <location filename="../ViewManager/ViewManager.py" line="2632" /> @@ -96436,14 +96441,14 @@ <translation>Vložit nový řádek</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1704" /> + <location filename="../QScintilla/MiniEditor.py" line="1705" /> <location filename="../QScintilla/ShellWindow.py" line="466" /> <location filename="../ViewManager/ViewManager.py" line="2633" /> <source>Return</source> <translation /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1705" /> + <location filename="../QScintilla/MiniEditor.py" line="1706" /> <location filename="../QScintilla/ShellWindow.py" line="467" /> <location filename="../ViewManager/ViewManager.py" line="2634" /> <source>Enter</source> @@ -96466,8 +96471,8 @@ <translation>Shift+Enter</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1716" /> <location filename="../QScintilla/MiniEditor.py" line="1715" /> - <location filename="../QScintilla/MiniEditor.py" line="1714" /> <location filename="../QScintilla/ShellWindow.py" line="441" /> <location filename="../QScintilla/ShellWindow.py" line="440" /> <location filename="../ViewManager/ViewManager.py" line="2659" /> @@ -96476,129 +96481,129 @@ <translation>Smazat aktuální řádek</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1716" /> + <location filename="../QScintilla/MiniEditor.py" line="1717" /> <location filename="../QScintilla/ShellWindow.py" line="442" /> <location filename="../ViewManager/ViewManager.py" line="2660" /> <source>Ctrl+Shift+L</source> <translation /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1728" /> <location filename="../QScintilla/MiniEditor.py" line="1727" /> - <location filename="../QScintilla/MiniEditor.py" line="1726" /> <location filename="../ViewManager/ViewManager.py" line="2671" /> <location filename="../ViewManager/ViewManager.py" line="2670" /> <source>Duplicate current line</source> <translation>Duplikovat aktuální řádek</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1728" /> + <location filename="../QScintilla/MiniEditor.py" line="1729" /> <location filename="../ViewManager/ViewManager.py" line="2672" /> <source>Ctrl+D</source> <translation /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1741" /> - <location filename="../QScintilla/MiniEditor.py" line="1738" /> + <location filename="../QScintilla/MiniEditor.py" line="1742" /> + <location filename="../QScintilla/MiniEditor.py" line="1739" /> <location filename="../ViewManager/ViewManager.py" line="2685" /> <location filename="../ViewManager/ViewManager.py" line="2682" /> <source>Swap current and previous lines</source> <translation>Prohodit aktuální řádek s předchozím</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1744" /> + <location filename="../QScintilla/MiniEditor.py" line="1745" /> <location filename="../ViewManager/ViewManager.py" line="2688" /> <source>Ctrl+T</source> <translation /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1756" /> <location filename="../QScintilla/MiniEditor.py" line="1755" /> - <location filename="../QScintilla/MiniEditor.py" line="1754" /> <location filename="../ViewManager/ViewManager.py" line="2699" /> <location filename="../ViewManager/ViewManager.py" line="2698" /> <source>Reverse selected lines</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1756" /> + <location filename="../QScintilla/MiniEditor.py" line="1757" /> <location filename="../ViewManager/ViewManager.py" line="2700" /> <source>Meta+Alt+R</source> <translation type="unfinished" /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1768" /> <location filename="../QScintilla/MiniEditor.py" line="1767" /> - <location filename="../QScintilla/MiniEditor.py" line="1766" /> <location filename="../ViewManager/ViewManager.py" line="2711" /> <location filename="../ViewManager/ViewManager.py" line="2710" /> <source>Cut current line</source> <translation>Vyjmout aktuální řádek</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1768" /> + <location filename="../QScintilla/MiniEditor.py" line="1769" /> <location filename="../ViewManager/ViewManager.py" line="2712" /> <source>Alt+Shift+L</source> <translation /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1780" /> <location filename="../QScintilla/MiniEditor.py" line="1779" /> - <location filename="../QScintilla/MiniEditor.py" line="1778" /> <location filename="../ViewManager/ViewManager.py" line="2723" /> <location filename="../ViewManager/ViewManager.py" line="2722" /> <source>Copy current line</source> <translation>Kopírovat aktuální řádek</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1780" /> + <location filename="../QScintilla/MiniEditor.py" line="1781" /> <location filename="../ViewManager/ViewManager.py" line="2724" /> <source>Ctrl+Shift+T</source> <translation /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1792" /> <location filename="../QScintilla/MiniEditor.py" line="1791" /> - <location filename="../QScintilla/MiniEditor.py" line="1790" /> <location filename="../ViewManager/ViewManager.py" line="2735" /> <location filename="../ViewManager/ViewManager.py" line="2734" /> <source>Toggle insert/overtype</source> <translation>Přepnout vkládání/přepisování</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1792" /> + <location filename="../QScintilla/MiniEditor.py" line="1793" /> <location filename="../ViewManager/ViewManager.py" line="2736" /> <source>Ins</source> <translation /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1836" /> <location filename="../QScintilla/MiniEditor.py" line="1835" /> - <location filename="../QScintilla/MiniEditor.py" line="1834" /> <location filename="../ViewManager/ViewManager.py" line="2747" /> <location filename="../ViewManager/ViewManager.py" line="2746" /> <source>Move to end of display line</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1847" /> + <location filename="../QScintilla/MiniEditor.py" line="1848" /> <location filename="../ViewManager/ViewManager.py" line="2759" /> <source>Alt+End</source> <translation /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1857" /> - <location filename="../QScintilla/MiniEditor.py" line="1854" /> + <location filename="../QScintilla/MiniEditor.py" line="1858" /> + <location filename="../QScintilla/MiniEditor.py" line="1855" /> <location filename="../ViewManager/ViewManager.py" line="2769" /> <location filename="../ViewManager/ViewManager.py" line="2766" /> <source>Extend selection to end of display line</source> <translation type="unfinished" /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1878" /> <location filename="../QScintilla/MiniEditor.py" line="1877" /> - <location filename="../QScintilla/MiniEditor.py" line="1876" /> <location filename="../ViewManager/ViewManager.py" line="2789" /> <location filename="../ViewManager/ViewManager.py" line="2788" /> <source>Formfeed</source> <translation /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1890" /> <location filename="../QScintilla/MiniEditor.py" line="1889" /> - <location filename="../QScintilla/MiniEditor.py" line="1888" /> <location filename="../QScintilla/ShellWindow.py" line="767" /> <location filename="../QScintilla/ShellWindow.py" line="766" /> <location filename="../ViewManager/ViewManager.py" line="2801" /> @@ -96607,423 +96612,423 @@ <translation /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1890" /> + <location filename="../QScintilla/MiniEditor.py" line="1891" /> <location filename="../QScintilla/ShellWindow.py" line="768" /> <location filename="../ViewManager/ViewManager.py" line="2802" /> <source>Esc</source> <translation /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1903" /> - <location filename="../QScintilla/MiniEditor.py" line="1900" /> + <location filename="../QScintilla/MiniEditor.py" line="1904" /> + <location filename="../QScintilla/MiniEditor.py" line="1901" /> <location filename="../ViewManager/ViewManager.py" line="2815" /> <location filename="../ViewManager/ViewManager.py" line="2812" /> <source>Extend rectangular selection down one line</source> <translation>Rozšířit obdélníkový výběr o řádek dolů</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1906" /> + <location filename="../QScintilla/MiniEditor.py" line="1907" /> <location filename="../ViewManager/ViewManager.py" line="2818" /> <source>Alt+Ctrl+Down</source> <translation /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1914" /> + <location filename="../QScintilla/MiniEditor.py" line="1915" /> <location filename="../ViewManager/ViewManager.py" line="2826" /> <source>Meta+Alt+Shift+N</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1925" /> - <location filename="../QScintilla/MiniEditor.py" line="1922" /> + <location filename="../QScintilla/MiniEditor.py" line="1926" /> + <location filename="../QScintilla/MiniEditor.py" line="1923" /> <location filename="../ViewManager/ViewManager.py" line="2837" /> <location filename="../ViewManager/ViewManager.py" line="2834" /> <source>Extend rectangular selection up one line</source> <translation>Rozšířit obdélníkový výběr o řádek nahoru</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1928" /> + <location filename="../QScintilla/MiniEditor.py" line="1929" /> <location filename="../ViewManager/ViewManager.py" line="2840" /> <source>Alt+Ctrl+Up</source> <translation /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1936" /> + <location filename="../QScintilla/MiniEditor.py" line="1937" /> <location filename="../ViewManager/ViewManager.py" line="2848" /> <source>Meta+Alt+Shift+P</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1947" /> - <location filename="../QScintilla/MiniEditor.py" line="1944" /> + <location filename="../QScintilla/MiniEditor.py" line="1948" /> + <location filename="../QScintilla/MiniEditor.py" line="1945" /> <location filename="../ViewManager/ViewManager.py" line="2859" /> <location filename="../ViewManager/ViewManager.py" line="2856" /> <source>Extend rectangular selection left one character</source> <translation>Rozšířit obdélníkový výběr o jeden znak vlevo</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1950" /> + <location filename="../QScintilla/MiniEditor.py" line="1951" /> <location filename="../ViewManager/ViewManager.py" line="2862" /> <source>Alt+Ctrl+Left</source> <translation /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1958" /> + <location filename="../QScintilla/MiniEditor.py" line="1959" /> <location filename="../ViewManager/ViewManager.py" line="2870" /> <source>Meta+Alt+Shift+B</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1969" /> - <location filename="../QScintilla/MiniEditor.py" line="1966" /> + <location filename="../QScintilla/MiniEditor.py" line="1970" /> + <location filename="../QScintilla/MiniEditor.py" line="1967" /> <location filename="../ViewManager/ViewManager.py" line="2881" /> <location filename="../ViewManager/ViewManager.py" line="2878" /> <source>Extend rectangular selection right one character</source> <translation>Rozšířit obdélníkový výběr o jeden znak vpravo</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1972" /> + <location filename="../QScintilla/MiniEditor.py" line="1973" /> <location filename="../ViewManager/ViewManager.py" line="2884" /> <source>Alt+Ctrl+Right</source> <translation /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1980" /> + <location filename="../QScintilla/MiniEditor.py" line="1981" /> <location filename="../ViewManager/ViewManager.py" line="2892" /> <source>Meta+Alt+Shift+F</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1993" /> - <location filename="../QScintilla/MiniEditor.py" line="1988" /> + <location filename="../QScintilla/MiniEditor.py" line="1994" /> + <location filename="../QScintilla/MiniEditor.py" line="1989" /> <location filename="../ViewManager/ViewManager.py" line="2905" /> <location filename="../ViewManager/ViewManager.py" line="2900" /> <source>Extend rectangular selection to first visible character in document line</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2006" /> + <location filename="../QScintilla/MiniEditor.py" line="2007" /> <location filename="../ViewManager/ViewManager.py" line="2918" /> <source>Alt+Shift+Home</source> <translation /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2017" /> - <location filename="../QScintilla/MiniEditor.py" line="2014" /> + <location filename="../QScintilla/MiniEditor.py" line="2018" /> + <location filename="../QScintilla/MiniEditor.py" line="2015" /> <location filename="../ViewManager/ViewManager.py" line="2929" /> <location filename="../ViewManager/ViewManager.py" line="2926" /> <source>Extend rectangular selection to end of document line</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2028" /> + <location filename="../QScintilla/MiniEditor.py" line="2029" /> <location filename="../ViewManager/ViewManager.py" line="2940" /> <source>Meta+Alt+Shift+E</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2033" /> + <location filename="../QScintilla/MiniEditor.py" line="2034" /> <location filename="../ViewManager/ViewManager.py" line="2945" /> <source>Alt+Shift+End</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2043" /> - <location filename="../QScintilla/MiniEditor.py" line="2040" /> + <location filename="../QScintilla/MiniEditor.py" line="2044" /> + <location filename="../QScintilla/MiniEditor.py" line="2041" /> <location filename="../ViewManager/ViewManager.py" line="2955" /> <location filename="../ViewManager/ViewManager.py" line="2952" /> <source>Extend rectangular selection up one page</source> <translation>Rozšířit obdélníkový výběr o předchozí stranu</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2046" /> + <location filename="../QScintilla/MiniEditor.py" line="2047" /> <location filename="../ViewManager/ViewManager.py" line="2958" /> <source>Alt+Shift+PgUp</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2059" /> - <location filename="../QScintilla/MiniEditor.py" line="2056" /> + <location filename="../QScintilla/MiniEditor.py" line="2060" /> + <location filename="../QScintilla/MiniEditor.py" line="2057" /> <location filename="../ViewManager/ViewManager.py" line="2971" /> <location filename="../ViewManager/ViewManager.py" line="2968" /> <source>Extend rectangular selection down one page</source> <translation>Rozšířit obdélníkový výběr o následující stranu</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2062" /> + <location filename="../QScintilla/MiniEditor.py" line="2063" /> <location filename="../ViewManager/ViewManager.py" line="2974" /> <source>Alt+Shift+PgDown</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2070" /> + <location filename="../QScintilla/MiniEditor.py" line="2071" /> <location filename="../ViewManager/ViewManager.py" line="2982" /> <source>Meta+Alt+Shift+V</source> <translation type="unfinished" /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="2546" /> <location filename="../QScintilla/MiniEditor.py" line="2545" /> - <location filename="../QScintilla/MiniEditor.py" line="2544" /> + <location filename="../QScintilla/MiniEditor.py" line="2080" /> <location filename="../QScintilla/MiniEditor.py" line="2079" /> - <location filename="../QScintilla/MiniEditor.py" line="2078" /> <location filename="../ViewManager/ViewManager.py" line="2991" /> <location filename="../ViewManager/ViewManager.py" line="2990" /> <source>Duplicate current selection</source> <translation>Duplikovat aktuální výběr</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2546" /> - <location filename="../QScintilla/MiniEditor.py" line="2080" /> + <location filename="../QScintilla/MiniEditor.py" line="2547" /> + <location filename="../QScintilla/MiniEditor.py" line="2081" /> <location filename="../ViewManager/ViewManager.py" line="2992" /> <source>Ctrl+Shift+D</source> <translation /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2094" /> - <location filename="../QScintilla/MiniEditor.py" line="2091" /> + <location filename="../QScintilla/MiniEditor.py" line="2095" /> + <location filename="../QScintilla/MiniEditor.py" line="2092" /> <location filename="../ViewManager/ViewManager.py" line="3006" /> <location filename="../ViewManager/ViewManager.py" line="3003" /> <source>Scroll to start of document</source> <translation type="unfinished" /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="2114" /> <location filename="../QScintilla/MiniEditor.py" line="2113" /> - <location filename="../QScintilla/MiniEditor.py" line="2112" /> <location filename="../ViewManager/ViewManager.py" line="3025" /> <location filename="../ViewManager/ViewManager.py" line="3024" /> <source>Scroll to end of document</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2132" /> - <location filename="../QScintilla/MiniEditor.py" line="2129" /> + <location filename="../QScintilla/MiniEditor.py" line="2133" /> + <location filename="../QScintilla/MiniEditor.py" line="2130" /> <location filename="../ViewManager/ViewManager.py" line="3044" /> <location filename="../ViewManager/ViewManager.py" line="3041" /> <source>Scroll vertically to center current line</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2142" /> + <location filename="../QScintilla/MiniEditor.py" line="2143" /> <location filename="../ViewManager/ViewManager.py" line="3054" /> <source>Meta+L</source> <translation type="unfinished" /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="2152" /> <location filename="../QScintilla/MiniEditor.py" line="2151" /> - <location filename="../QScintilla/MiniEditor.py" line="2150" /> <location filename="../ViewManager/ViewManager.py" line="3063" /> <location filename="../ViewManager/ViewManager.py" line="3062" /> <source>Move to end of next word</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2170" /> - <location filename="../QScintilla/MiniEditor.py" line="2167" /> + <location filename="../QScintilla/MiniEditor.py" line="2171" /> + <location filename="../QScintilla/MiniEditor.py" line="2168" /> <location filename="../ViewManager/ViewManager.py" line="3082" /> <location filename="../ViewManager/ViewManager.py" line="3079" /> <source>Extend selection to end of next word</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2193" /> - <location filename="../QScintilla/MiniEditor.py" line="2190" /> + <location filename="../QScintilla/MiniEditor.py" line="2194" /> + <location filename="../QScintilla/MiniEditor.py" line="2191" /> <location filename="../ViewManager/ViewManager.py" line="3105" /> <location filename="../ViewManager/ViewManager.py" line="3102" /> <source>Move to end of previous word</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2210" /> - <location filename="../QScintilla/MiniEditor.py" line="2207" /> + <location filename="../QScintilla/MiniEditor.py" line="2211" /> + <location filename="../QScintilla/MiniEditor.py" line="2208" /> <location filename="../ViewManager/ViewManager.py" line="3122" /> <location filename="../ViewManager/ViewManager.py" line="3119" /> <source>Extend selection to end of previous word</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2227" /> - <location filename="../QScintilla/MiniEditor.py" line="2224" /> + <location filename="../QScintilla/MiniEditor.py" line="2228" /> + <location filename="../QScintilla/MiniEditor.py" line="2225" /> <location filename="../ViewManager/ViewManager.py" line="3139" /> <location filename="../ViewManager/ViewManager.py" line="3136" /> <source>Move to start of document line</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2237" /> + <location filename="../QScintilla/MiniEditor.py" line="2238" /> <location filename="../ViewManager/ViewManager.py" line="3149" /> <source>Meta+A</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2248" /> - <location filename="../QScintilla/MiniEditor.py" line="2245" /> + <location filename="../QScintilla/MiniEditor.py" line="2249" /> + <location filename="../QScintilla/MiniEditor.py" line="2246" /> <location filename="../ViewManager/ViewManager.py" line="3160" /> <location filename="../ViewManager/ViewManager.py" line="3157" /> <source>Extend selection to start of document line</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2259" /> + <location filename="../QScintilla/MiniEditor.py" line="2260" /> <location filename="../ViewManager/ViewManager.py" line="3171" /> <source>Meta+Shift+A</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2272" /> - <location filename="../QScintilla/MiniEditor.py" line="2268" /> + <location filename="../QScintilla/MiniEditor.py" line="2273" /> + <location filename="../QScintilla/MiniEditor.py" line="2269" /> <location filename="../ViewManager/ViewManager.py" line="3184" /> <location filename="../ViewManager/ViewManager.py" line="3180" /> <source>Extend rectangular selection to start of document line</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2284" /> + <location filename="../QScintilla/MiniEditor.py" line="2285" /> <location filename="../ViewManager/ViewManager.py" line="3196" /> <source>Meta+Alt+Shift+A</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2296" /> - <location filename="../QScintilla/MiniEditor.py" line="2293" /> + <location filename="../QScintilla/MiniEditor.py" line="2297" /> + <location filename="../QScintilla/MiniEditor.py" line="2294" /> <location filename="../ViewManager/ViewManager.py" line="3208" /> <location filename="../ViewManager/ViewManager.py" line="3205" /> <source>Extend selection to start of display line</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2319" /> - <location filename="../QScintilla/MiniEditor.py" line="2316" /> + <location filename="../QScintilla/MiniEditor.py" line="2320" /> + <location filename="../QScintilla/MiniEditor.py" line="2317" /> <location filename="../ViewManager/ViewManager.py" line="3231" /> <location filename="../ViewManager/ViewManager.py" line="3228" /> <source>Move to start of display or document line</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2337" /> - <location filename="../QScintilla/MiniEditor.py" line="2333" /> + <location filename="../QScintilla/MiniEditor.py" line="2338" /> + <location filename="../QScintilla/MiniEditor.py" line="2334" /> <location filename="../ViewManager/ViewManager.py" line="3249" /> <location filename="../ViewManager/ViewManager.py" line="3245" /> <source>Extend selection to start of display or document line</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2356" /> - <location filename="../QScintilla/MiniEditor.py" line="2352" /> + <location filename="../QScintilla/MiniEditor.py" line="2357" /> + <location filename="../QScintilla/MiniEditor.py" line="2353" /> <location filename="../ViewManager/ViewManager.py" line="3268" /> <location filename="../ViewManager/ViewManager.py" line="3264" /> <source>Move to first visible character in display or document line</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2376" /> - <location filename="../QScintilla/MiniEditor.py" line="2371" /> + <location filename="../QScintilla/MiniEditor.py" line="2377" /> + <location filename="../QScintilla/MiniEditor.py" line="2372" /> <location filename="../ViewManager/ViewManager.py" line="3288" /> <location filename="../ViewManager/ViewManager.py" line="3283" /> <source>Extend selection to first visible character in display or document line</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2395" /> - <location filename="../QScintilla/MiniEditor.py" line="2392" /> + <location filename="../QScintilla/MiniEditor.py" line="2396" /> + <location filename="../QScintilla/MiniEditor.py" line="2393" /> <location filename="../ViewManager/ViewManager.py" line="3307" /> <location filename="../ViewManager/ViewManager.py" line="3304" /> <source>Move to end of display or document line</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2412" /> - <location filename="../QScintilla/MiniEditor.py" line="2409" /> + <location filename="../QScintilla/MiniEditor.py" line="2413" /> + <location filename="../QScintilla/MiniEditor.py" line="2410" /> <location filename="../ViewManager/ViewManager.py" line="3324" /> <location filename="../ViewManager/ViewManager.py" line="3321" /> <source>Extend selection to end of display or document line</source> <translation type="unfinished" /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="2428" /> <location filename="../QScintilla/MiniEditor.py" line="2427" /> - <location filename="../QScintilla/MiniEditor.py" line="2426" /> <location filename="../ViewManager/ViewManager.py" line="3339" /> <location filename="../ViewManager/ViewManager.py" line="3338" /> <source>Stuttered move up one page</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2442" /> - <location filename="../QScintilla/MiniEditor.py" line="2439" /> + <location filename="../QScintilla/MiniEditor.py" line="2443" /> + <location filename="../QScintilla/MiniEditor.py" line="2440" /> <location filename="../ViewManager/ViewManager.py" line="3354" /> <location filename="../ViewManager/ViewManager.py" line="3351" /> <source>Stuttered extend selection up one page</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2459" /> - <location filename="../QScintilla/MiniEditor.py" line="2456" /> + <location filename="../QScintilla/MiniEditor.py" line="2460" /> + <location filename="../QScintilla/MiniEditor.py" line="2457" /> <location filename="../ViewManager/ViewManager.py" line="3371" /> <location filename="../ViewManager/ViewManager.py" line="3368" /> <source>Stuttered move down one page</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2476" /> - <location filename="../QScintilla/MiniEditor.py" line="2473" /> + <location filename="../QScintilla/MiniEditor.py" line="2477" /> + <location filename="../QScintilla/MiniEditor.py" line="2474" /> <location filename="../ViewManager/ViewManager.py" line="3388" /> <location filename="../ViewManager/ViewManager.py" line="3385" /> <source>Stuttered extend selection down one page</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2493" /> - <location filename="../QScintilla/MiniEditor.py" line="2490" /> + <location filename="../QScintilla/MiniEditor.py" line="2494" /> + <location filename="../QScintilla/MiniEditor.py" line="2491" /> <location filename="../ViewManager/ViewManager.py" line="3405" /> <location filename="../ViewManager/ViewManager.py" line="3402" /> <source>Delete right to end of next word</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2503" /> + <location filename="../QScintilla/MiniEditor.py" line="2504" /> <location filename="../ViewManager/ViewManager.py" line="3415" /> <source>Alt+Del</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2514" /> - <location filename="../QScintilla/MiniEditor.py" line="2511" /> + <location filename="../QScintilla/MiniEditor.py" line="2515" /> + <location filename="../QScintilla/MiniEditor.py" line="2512" /> <location filename="../ViewManager/ViewManager.py" line="3426" /> <location filename="../ViewManager/ViewManager.py" line="3423" /> <source>Move selected lines up one line</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2531" /> - <location filename="../QScintilla/MiniEditor.py" line="2528" /> + <location filename="../QScintilla/MiniEditor.py" line="2532" /> + <location filename="../QScintilla/MiniEditor.py" line="2529" /> <location filename="../ViewManager/ViewManager.py" line="3443" /> <location filename="../ViewManager/ViewManager.py" line="3440" /> <source>Move selected lines down one line</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1805" /> - <location filename="../QScintilla/MiniEditor.py" line="1802" /> + <location filename="../QScintilla/MiniEditor.py" line="1806" /> + <location filename="../QScintilla/MiniEditor.py" line="1803" /> <location filename="../ViewManager/ViewManager.py" line="3461" /> <location filename="../ViewManager/ViewManager.py" line="3458" /> <source>Convert selection to lower case</source> <translation>Převést výběr na minusky</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1808" /> + <location filename="../QScintilla/MiniEditor.py" line="1809" /> <location filename="../ViewManager/ViewManager.py" line="3464" /> <source>Alt+Shift+U</source> <translation /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1821" /> - <location filename="../QScintilla/MiniEditor.py" line="1818" /> + <location filename="../QScintilla/MiniEditor.py" line="1822" /> + <location filename="../QScintilla/MiniEditor.py" line="1819" /> <location filename="../ViewManager/ViewManager.py" line="3477" /> <location filename="../ViewManager/ViewManager.py" line="3474" /> <source>Convert selection to upper case</source> <translation>Převést výběr na verzálky</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1824" /> + <location filename="../QScintilla/MiniEditor.py" line="1825" /> <location filename="../ViewManager/ViewManager.py" line="3480" /> <source>Ctrl+Shift+U</source> <translation /> @@ -97040,7 +97045,7 @@ <translation /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2563" /> + <location filename="../QScintilla/MiniEditor.py" line="2564" /> <location filename="../QScintilla/ShellWindow.py" line="923" /> <location filename="../ViewManager/ViewManager.py" line="4167" /> <location filename="../ViewManager/ViewManager.py" line="4165" /> @@ -97049,14 +97054,14 @@ <translation>Vyhledat</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2565" /> + <location filename="../QScintilla/MiniEditor.py" line="2566" /> <location filename="../QScintilla/ShellWindow.py" line="925" /> <location filename="../ViewManager/ViewManager.py" line="3600" /> <source>&Search...</source> <translation>V&yhledat...</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2567" /> + <location filename="../QScintilla/MiniEditor.py" line="2568" /> <location filename="../QScintilla/ShellWindow.py" line="927" /> <location filename="../ViewManager/ViewManager.py" line="3602" /> <source>Ctrl+F</source> @@ -97064,35 +97069,35 @@ <translation /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2574" /> + <location filename="../QScintilla/MiniEditor.py" line="2575" /> <location filename="../QScintilla/ShellWindow.py" line="934" /> <location filename="../ViewManager/ViewManager.py" line="3609" /> <source>Search for a text</source> <translation>Hledat text</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2577" /> + <location filename="../QScintilla/MiniEditor.py" line="2578" /> <location filename="../ViewManager/ViewManager.py" line="3612" /> <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>Hledat</b> <p>Hledat text v aktuálním editoru. Zobrazí se dialogové okno, do kterého se zadá hledaný text a další nastavení.<p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2589" /> + <location filename="../QScintilla/MiniEditor.py" line="2590" /> <location filename="../QScintilla/ShellWindow.py" line="949" /> <location filename="../ViewManager/ViewManager.py" line="3624" /> <source>Search next</source> <translation>Hledat text</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2591" /> + <location filename="../QScintilla/MiniEditor.py" line="2592" /> <location filename="../QScintilla/ShellWindow.py" line="951" /> <location filename="../ViewManager/ViewManager.py" line="3626" /> <source>Search &next</source> <translation>Hledat &další</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2593" /> + <location filename="../QScintilla/MiniEditor.py" line="2594" /> <location filename="../QScintilla/ShellWindow.py" line="953" /> <location filename="../ViewManager/ViewManager.py" line="3628" /> <source>F3</source> @@ -97100,34 +97105,34 @@ <translation /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2600" /> + <location filename="../QScintilla/MiniEditor.py" line="2601" /> <location filename="../QScintilla/ShellWindow.py" line="960" /> <location filename="../ViewManager/ViewManager.py" line="3635" /> <source>Search next occurrence of text</source> <translation>Hledat další výskyt textu</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2603" /> + <location filename="../QScintilla/MiniEditor.py" line="2604" /> <location filename="../ViewManager/ViewManager.py" line="3638" /> <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>Hledat další</b><p>Hledá se další výskyt hledaného textu v aktuálním editoru. Stále platí nastavení, která byla nastavena při zadání hledaného textu.<p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2615" /> + <location filename="../QScintilla/MiniEditor.py" line="2616" /> <location filename="../QScintilla/ShellWindow.py" line="977" /> <location filename="../ViewManager/ViewManager.py" line="3650" /> <source>Search previous</source> <translation>Hledat předchozí</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2617" /> + <location filename="../QScintilla/MiniEditor.py" line="2618" /> <location filename="../QScintilla/ShellWindow.py" line="979" /> <location filename="../ViewManager/ViewManager.py" line="3652" /> <source>Search &previous</source> <translation>Hledat &předchozí</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2619" /> + <location filename="../QScintilla/MiniEditor.py" line="2620" /> <location filename="../QScintilla/ShellWindow.py" line="981" /> <location filename="../ViewManager/ViewManager.py" line="3654" /> <source>Shift+F3</source> @@ -97135,41 +97140,41 @@ <translation /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2628" /> + <location filename="../QScintilla/MiniEditor.py" line="2629" /> <location filename="../QScintilla/ShellWindow.py" line="990" /> <location filename="../ViewManager/ViewManager.py" line="3663" /> <source>Search previous occurrence of text</source> <translation>Hledat předchozí výskyt textu</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2633" /> + <location filename="../QScintilla/MiniEditor.py" line="2634" /> <location filename="../ViewManager/ViewManager.py" line="3668" /> <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>Hledat předchozí</b><p>Hledá se předchozí výskyt hledaného textu v aktuálním editoru. Stále platí nastavení, která byla nastavena při zadání hledaného textu.<p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2647" /> - <location filename="../QScintilla/MiniEditor.py" line="2645" /> + <location filename="../QScintilla/MiniEditor.py" line="2648" /> + <location filename="../QScintilla/MiniEditor.py" line="2646" /> <location filename="../ViewManager/ViewManager.py" line="3682" /> <location filename="../ViewManager/ViewManager.py" line="3680" /> <source>Clear search markers</source> <translation>Vyčistit značky hledání</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2649" /> + <location filename="../QScintilla/MiniEditor.py" line="2650" /> <location filename="../ViewManager/ViewManager.py" line="3684" /> <source>Ctrl+3</source> <comment>Search|Clear search markers</comment> <translation /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2658" /> + <location filename="../QScintilla/MiniEditor.py" line="2659" /> <location filename="../ViewManager/ViewManager.py" line="3693" /> <source>Clear all displayed search markers</source> <translation>Vyčistit všechny zobrazené začky hledání</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2663" /> + <location filename="../QScintilla/MiniEditor.py" line="2664" /> <location filename="../ViewManager/ViewManager.py" line="3698" /> <source><b>Clear search markers</b><p>Clear all displayed search markers.</p></source> <translation><b>Vyčistit značky hledání</b><p>Smažou všechny zabrazené značky hledání.</p></translation> @@ -97219,114 +97224,114 @@ <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2673" /> + <location filename="../QScintilla/MiniEditor.py" line="2674" /> <location filename="../ViewManager/ViewManager.py" line="3766" /> <source>Replace</source> <translation>Nahradit</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2674" /> + <location filename="../QScintilla/MiniEditor.py" line="2675" /> <location filename="../ViewManager/ViewManager.py" line="3767" /> <source>&Replace...</source> <translation>Nah&radit...</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2676" /> + <location filename="../QScintilla/MiniEditor.py" line="2677" /> <location filename="../ViewManager/ViewManager.py" line="3769" /> <source>Ctrl+R</source> <comment>Search|Replace</comment> <translation /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2683" /> + <location filename="../QScintilla/MiniEditor.py" line="2684" /> <location filename="../ViewManager/ViewManager.py" line="3776" /> <source>Replace some text</source> <translation>Hledat nějaký text</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2686" /> + <location filename="../QScintilla/MiniEditor.py" line="2687" /> <location filename="../ViewManager/ViewManager.py" line="3779" /> <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>Nahradit</b> <p>Vyhledá va ktuálním editoru text a nahradí jej. Je zobrazeno dialogové okno, kde se zadá text, který se má nahradit, nový text a nastavení pro vyhledávání a nahrazení.<p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2700" /> - <location filename="../QScintilla/MiniEditor.py" line="2698" /> + <location filename="../QScintilla/MiniEditor.py" line="2701" /> + <location filename="../QScintilla/MiniEditor.py" line="2699" /> <location filename="../ViewManager/ViewManager.py" line="3793" /> <location filename="../ViewManager/ViewManager.py" line="3791" /> <source>Replace and Search</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2702" /> + <location filename="../QScintilla/MiniEditor.py" line="2703" /> <location filename="../ViewManager/ViewManager.py" line="3795" /> <source>Meta+R</source> <comment>Search|Replace and Search</comment> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2711" /> + <location filename="../QScintilla/MiniEditor.py" line="2712" /> <location filename="../ViewManager/ViewManager.py" line="3804" /> <source>Replace the found text and search the next occurrence</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2716" /> + <location filename="../QScintilla/MiniEditor.py" line="2717" /> <location filename="../ViewManager/ViewManager.py" line="3809" /> <source><b>Replace and Search</b><p>Replace the found occurrence of text in the current editor and search for the next one. The previously entered search text and options are reused.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2732" /> - <location filename="../QScintilla/MiniEditor.py" line="2730" /> + <location filename="../QScintilla/MiniEditor.py" line="2733" /> + <location filename="../QScintilla/MiniEditor.py" line="2731" /> <location filename="../ViewManager/ViewManager.py" line="3825" /> <location filename="../ViewManager/ViewManager.py" line="3823" /> <source>Replace Occurrence</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2734" /> + <location filename="../QScintilla/MiniEditor.py" line="2735" /> <location filename="../ViewManager/ViewManager.py" line="3827" /> <source>Ctrl+Meta+R</source> <comment>Search|Replace Occurrence</comment> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2743" /> + <location filename="../QScintilla/MiniEditor.py" line="2744" /> <location filename="../ViewManager/ViewManager.py" line="3836" /> <source>Replace the found text</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2746" /> + <location filename="../QScintilla/MiniEditor.py" line="2747" /> <location filename="../ViewManager/ViewManager.py" line="3839" /> <source><b>Replace Occurrence</b><p>Replace the found occurrence of the search text in the current editor.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2759" /> - <location filename="../QScintilla/MiniEditor.py" line="2757" /> + <location filename="../QScintilla/MiniEditor.py" line="2760" /> + <location filename="../QScintilla/MiniEditor.py" line="2758" /> <location filename="../ViewManager/ViewManager.py" line="3852" /> <location filename="../ViewManager/ViewManager.py" line="3850" /> <source>Replace All</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2761" /> + <location filename="../QScintilla/MiniEditor.py" line="2762" /> <location filename="../ViewManager/ViewManager.py" line="3854" /> <source>Shift+Meta+R</source> <comment>Search|Replace All</comment> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2770" /> + <location filename="../QScintilla/MiniEditor.py" line="2771" /> <location filename="../ViewManager/ViewManager.py" line="3863" /> <source>Replace search text occurrences</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2773" /> + <location filename="../QScintilla/MiniEditor.py" line="2774" /> <location filename="../ViewManager/ViewManager.py" line="3866" /> <source><b>Replace All</b><p>Replace all occurrences of the search text in the current editor.</p></source> <translation type="unfinished" /> @@ -97553,21 +97558,21 @@ <translation>V&yhledat</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2788" /> + <location filename="../QScintilla/MiniEditor.py" line="2789" /> <location filename="../QScintilla/ShellWindow.py" line="1016" /> <location filename="../ViewManager/ViewManager.py" line="4208" /> <source>Zoom in</source> <translation>Přiblížit</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2790" /> + <location filename="../QScintilla/MiniEditor.py" line="2791" /> <location filename="../QScintilla/ShellWindow.py" line="1018" /> <location filename="../ViewManager/ViewManager.py" line="4210" /> <source>Zoom &in</source> <translation>Př&iblížit</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2792" /> + <location filename="../QScintilla/MiniEditor.py" line="2793" /> <location filename="../QScintilla/ShellWindow.py" line="1020" /> <location filename="../ViewManager/ViewManager.py" line="4212" /> <source>Ctrl++</source> @@ -97575,7 +97580,7 @@ <translation /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2795" /> + <location filename="../QScintilla/MiniEditor.py" line="2796" /> <location filename="../QScintilla/ShellWindow.py" line="1023" /> <location filename="../ViewManager/ViewManager.py" line="4215" /> <source>Zoom In</source> @@ -97583,35 +97588,35 @@ <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2801" /> + <location filename="../QScintilla/MiniEditor.py" line="2802" /> <location filename="../QScintilla/ShellWindow.py" line="1029" /> <location filename="../ViewManager/ViewManager.py" line="4221" /> <source>Zoom in on the text</source> <translation>Zvětšovací lupa</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2804" /> + <location filename="../QScintilla/MiniEditor.py" line="2805" /> <location filename="../QScintilla/ShellWindow.py" line="1032" /> <location filename="../ViewManager/ViewManager.py" line="4224" /> <source><b>Zoom in</b><p>Zoom in on the text. This makes the text bigger.</p></source> <translation><b>Přiblížit</b><p>Přiblížit text. Text bude větší.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2814" /> + <location filename="../QScintilla/MiniEditor.py" line="2815" /> <location filename="../QScintilla/ShellWindow.py" line="1042" /> <location filename="../ViewManager/ViewManager.py" line="4234" /> <source>Zoom out</source> <translation>Oddálit</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2816" /> + <location filename="../QScintilla/MiniEditor.py" line="2817" /> <location filename="../QScintilla/ShellWindow.py" line="1044" /> <location filename="../ViewManager/ViewManager.py" line="4236" /> <source>Zoom &out</source> <translation>&Oddálit</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2818" /> + <location filename="../QScintilla/MiniEditor.py" line="2819" /> <location filename="../QScintilla/ShellWindow.py" line="1046" /> <location filename="../ViewManager/ViewManager.py" line="4238" /> <source>Ctrl+-</source> @@ -97619,7 +97624,7 @@ <translation /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2821" /> + <location filename="../QScintilla/MiniEditor.py" line="2822" /> <location filename="../QScintilla/ShellWindow.py" line="1049" /> <location filename="../ViewManager/ViewManager.py" line="4241" /> <source>Zoom Out</source> @@ -97627,35 +97632,35 @@ <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2827" /> + <location filename="../QScintilla/MiniEditor.py" line="2828" /> <location filename="../QScintilla/ShellWindow.py" line="1055" /> <location filename="../ViewManager/ViewManager.py" line="4247" /> <source>Zoom out on the text</source> <translation>Zmenšovací lupa</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2830" /> + <location filename="../QScintilla/MiniEditor.py" line="2831" /> <location filename="../QScintilla/ShellWindow.py" line="1058" /> <location filename="../ViewManager/ViewManager.py" line="4250" /> <source><b>Zoom out</b><p>Zoom out on the text. This makes the text smaller.</p></source> <translation><b>Oddálit</b><p>Lupa na oddálení textu. Text bude menší.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2840" /> + <location filename="../QScintilla/MiniEditor.py" line="2841" /> <location filename="../QScintilla/ShellWindow.py" line="1068" /> <location filename="../ViewManager/ViewManager.py" line="4260" /> <source>Zoom reset</source> <translation type="unfinished">Resetovat lupu</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2842" /> + <location filename="../QScintilla/MiniEditor.py" line="2843" /> <location filename="../QScintilla/ShellWindow.py" line="1070" /> <location filename="../ViewManager/ViewManager.py" line="4262" /> <source>Zoom &reset</source> <translation type="unfinished">&Resetovat lupu</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2844" /> + <location filename="../QScintilla/MiniEditor.py" line="2845" /> <location filename="../QScintilla/ShellWindow.py" line="1072" /> <location filename="../ViewManager/ViewManager.py" line="4264" /> <source>Ctrl+0</source> @@ -97663,42 +97668,42 @@ <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2851" /> + <location filename="../QScintilla/MiniEditor.py" line="2852" /> <location filename="../QScintilla/ShellWindow.py" line="1079" /> <location filename="../ViewManager/ViewManager.py" line="4271" /> <source>Reset the zoom of the text</source> <translation type="unfinished">Resetovat lupu textu</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2854" /> + <location filename="../QScintilla/MiniEditor.py" line="2855" /> <location filename="../QScintilla/ShellWindow.py" line="1082" /> <location filename="../ViewManager/ViewManager.py" line="4274" /> <source><b>Zoom reset</b><p>Reset the zoom of the text. This sets the zoom factor to 100%.</p></source> <translation type="unfinished"><b>Reset lupy</b><p>Reset lupy pro text. Nastaví se lupa na hodnotu 100%.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2865" /> + <location filename="../QScintilla/MiniEditor.py" line="2866" /> <location filename="../QScintilla/ShellWindow.py" line="1093" /> <location filename="../ViewManager/ViewManager.py" line="4285" /> <source>Zoom</source> <translation>Lupa</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2867" /> + <location filename="../QScintilla/MiniEditor.py" line="2868" /> <location filename="../QScintilla/ShellWindow.py" line="1095" /> <location filename="../ViewManager/ViewManager.py" line="4287" /> <source>&Zoom</source> <translation>&Lupa</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2874" /> + <location filename="../QScintilla/MiniEditor.py" line="2875" /> <location filename="../QScintilla/ShellWindow.py" line="1102" /> <location filename="../ViewManager/ViewManager.py" line="4294" /> <source>Zoom the text</source> <translation>Lupa na text</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2877" /> + <location filename="../QScintilla/MiniEditor.py" line="2878" /> <location filename="../QScintilla/ShellWindow.py" line="1105" /> <location filename="../ViewManager/ViewManager.py" line="4297" /> <source><b>Zoom</b><p>Zoom the text. This opens a dialog where the desired size can be entered.</p></source> @@ -98463,65 +98468,65 @@ <translation><p>Soubor <b>{0}</b> obsahuje neuložené změny.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6077" /> + <location filename="../ViewManager/ViewManager.py" line="6078" /> <source>Line: {0:5}</source> <translation>Řádek: {0:5}</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6083" /> + <location filename="../ViewManager/ViewManager.py" line="6084" /> <source>Pos: {0:5}</source> <translation>Poz: {0:5}</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6103" /> + <location filename="../ViewManager/ViewManager.py" line="6104" /> <source>Language: {0}</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6112" /> + <location filename="../ViewManager/ViewManager.py" line="6113" /> <source>EOL Mode: {0}</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6640" /> - <location filename="../ViewManager/ViewManager.py" line="6597" /> + <location filename="../ViewManager/ViewManager.py" line="6641" /> + <location filename="../ViewManager/ViewManager.py" line="6598" /> <source>&Clear</source> <translation>&Vyčistit</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6634" /> + <location filename="../ViewManager/ViewManager.py" line="6635" /> <source>&Add</source> <translation>Přid&at</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6637" /> + <location filename="../ViewManager/ViewManager.py" line="6638" /> <source>&Edit...</source> <translation>&Edit...</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="7707" /> - <location filename="../ViewManager/ViewManager.py" line="7693" /> - <location filename="../ViewManager/ViewManager.py" line="7661" /> + <location filename="../ViewManager/ViewManager.py" line="7708" /> + <location filename="../ViewManager/ViewManager.py" line="7694" /> + <location filename="../ViewManager/ViewManager.py" line="7662" /> <source>Edit Spelling Dictionary</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="7664" /> + <location filename="../ViewManager/ViewManager.py" line="7665" /> <source><p>The spelling dictionary file <b>{0}</b> could not be read.</p><p>Reason: {1}</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="7680" /> + <location filename="../ViewManager/ViewManager.py" line="7681" /> <source>Editing {0}</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="7696" /> + <location filename="../ViewManager/ViewManager.py" line="7697" /> <source><p>The spelling dictionary file <b>{0}</b> could not be written.</p><p>Reason: {1}</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="7710" /> + <location filename="../ViewManager/ViewManager.py" line="7711" /> <source>The spelling dictionary was saved successfully.</source> <translation type="unfinished" /> </message> @@ -98531,28 +98536,28 @@ <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6819" /> + <location filename="../ViewManager/ViewManager.py" line="6820" /> <source>Clear Editor</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6820" /> + <location filename="../ViewManager/ViewManager.py" line="6821" /> <source>Do you really want to delete all text of the current editor?</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="8240" /> - <location filename="../ViewManager/ViewManager.py" line="8223" /> - <source>File System Watcher Error</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="8224" /> - <source><p>The operating system resources for file system watches are exhausted. This limit should be increased. On a Linux system you should <ul><li>sudo nano /etc/sysctl.conf</li><li>add to the bottom "fs.inotify.max_user_instances = 1024"</li><li>save and close the editor</li><li>sudo sysctl -p</li></ul></p><p>Error Message: {0}</p></source> - <translation type="unfinished" /> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="8241" /> + <location filename="../ViewManager/ViewManager.py" line="8224" /> + <source>File System Watcher Error</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="8225" /> + <source><p>The operating system resources for file system watches are exhausted. This limit should be increased. On a Linux system you should <ul><li>sudo nano /etc/sysctl.conf</li><li>add to the bottom "fs.inotify.max_user_instances = 1024"</li><li>save and close the editor</li><li>sudo sysctl -p</li></ul></p><p>Error Message: {0}</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="8242" /> <source>The file system watcher reported an error with code <b>{0}</b>.</p><p>Error Message: {1}</p></source> <translation type="unfinished" /> </message> @@ -105939,301 +105944,306 @@ <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="95" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="96" /> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="94" /> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="93" /> <source>whitespace before '{0}'</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="96" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="95" /> + <source>whitespace after decorator '@'</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="97" /> <source>multiple spaces before operator</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="99" /> - <source>multiple spaces after operator</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="100" /> - <source>tab before operator</source> + <source>multiple spaces after operator</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="101" /> - <source>tab after operator</source> + <source>tab before operator</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="102" /> + <source>tab after operator</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="103" /> <source>missing whitespace around operator</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="105" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="106" /> <source>missing whitespace around arithmetic operator</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="108" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="109" /> <source>missing whitespace around bitwise or shift operator</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="111" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="112" /> <source>missing whitespace around modulo operator</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="114" /> - <source>missing whitespace after '{0}'</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="115" /> - <source>multiple spaces after '{0}'</source> + <source>missing whitespace after '{0}'</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="116" /> - <source>tab after '{0}'</source> + <source>multiple spaces after '{0}'</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="117" /> + <source>tab after '{0}'</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="118" /> <source>unexpected spaces around keyword / parameter equals</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="120" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="121" /> <source>missing whitespace around parameter equals</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="123" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="124" /> <source>at least two spaces before inline comment</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="126" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="127" /> <source>inline comment should start with '# '</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="129" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="130" /> <source>block comment should start with '# '</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="132" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="133" /> <source>too many leading '#' for block comment</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="135" /> - <source>multiple spaces after keyword</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="136" /> - <source>multiple spaces before keyword</source> + <source>multiple spaces after keyword</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="137" /> - <source>tab after keyword</source> + <source>multiple spaces before keyword</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="138" /> - <source>tab before keyword</source> + <source>tab after keyword</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="139" /> + <source>tab before keyword</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="140" /> <source>missing whitespace after keyword</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="145" /> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="142" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="146" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="143" /> <source>expected {0} blank lines, found {1}</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="148" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="149" /> <source>too many blank lines ({0}), expected {1}</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="151" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="152" /> <source>blank lines found after function decorator</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="154" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="155" /> <source>expected {0} blank lines after class or function definition, found {1}</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="158" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="159" /> <source>expected {0} blank lines before a nested definition, found {1}</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="161" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="162" /> <source>too many blank lines ({0}) before a nested definition, expected {1}</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="165" /> - <source>too many blank lines ({0})</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="166" /> - <source>multiple imports on one line</source> + <source>too many blank lines ({0})</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="167" /> + <source>multiple imports on one line</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="168" /> <source>module level import not at top of file</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="170" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="171" /> <source>line too long ({0} > {1} characters)</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="173" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="174" /> <source>the backslash is redundant between brackets</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="176" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="177" /> <source>multiple statements on one line (colon)</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="179" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="180" /> <source>multiple statements on one line (semicolon)</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="182" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="183" /> <source>statement ends with a semicolon</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="185" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="186" /> <source>multiple statements on one line (def)</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="191" /> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="188" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="192" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="189" /> <source>comparison to {0} should be {1}</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="194" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="195" /> <source>test for membership should be 'not in'</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="197" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="198" /> <source>test for object identity should be 'is not'</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="200" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="201" /> <source>do not compare types, for exact checks use 'is' / 'is not', for instance checks use 'isinstance()'</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="205" /> - <source>do not use bare except</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="206" /> + <source>do not use bare except</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="207" /> <source>do not assign a lambda expression, use a def</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="209" /> - <source>ambiguous variable name '{0}'</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="210" /> + <source>ambiguous variable name '{0}'</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="211" /> <source>ambiguous class definition '{0}'</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="213" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="214" /> <source>ambiguous function definition '{0}'</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="216" /> - <source>{0}: {1}</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="217" /> + <source>{0}: {1}</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="218" /> <source>{0}</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="225" /> - <source>indentation contains tabs</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="226" /> - <source>trailing whitespace</source> + <source>indentation contains tabs</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="227" /> - <source>no newline at end of file</source> + <source>trailing whitespace</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="228" /> - <source>blank line contains whitespace</source> + <source>no newline at end of file</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="229" /> - <source>blank line at end of file</source> + <source>blank line contains whitespace</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="230" /> + <source>blank line at end of file</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="231" /> <source>line break before binary operator</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="233" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="234" /> <source>line break after binary operator</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="236" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="237" /> <source>doc line too long ({0} > {1} characters)</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="239" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="240" /> <source>invalid escape sequence '\{0}'</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="242" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="243" /> <source>'async' and 'await' are reserved keywords starting with Python 3.7</source> <translation type="unfinished" /> </message>
--- a/src/eric7/i18n/eric7_de.ts Mon Jul 29 14:43:59 2024 +0200 +++ b/src/eric7/i18n/eric7_de.ts Sat Aug 31 10:54:21 2024 +0200 @@ -5131,7 +5131,7 @@ <context> <name>CodeStyleChecker</name> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="515" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="516" /> <source>No message defined for code '{0}'.</source> <translation>Keine Nachricht für '{0}' definiert.</translation> </message> @@ -6274,146 +6274,146 @@ <context> <name>CodeStyleFixer</name> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="253" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="254" /> <source>Triple single quotes converted to triple double quotes.</source> <translation>Dreifache Einfachanführungszeichen in dreifache Doppelanführungszeichen umgewandelt.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="256" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="257" /> <source>Introductory quotes corrected to be {0}"""</source> <translation>Einleitende Anführungszeichen in {0}""" korrigiert</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="259" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="260" /> <source>Single line docstring put on one line.</source> <translation>Einzeiligen Docstring auf eine Zeile gebracht.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="262" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="263" /> <source>Period added to summary line.</source> <translation>Punkt an die Zusammenfassungszeile angefügt.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="289" /> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="265" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="290" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="266" /> <source>Blank line before function/method docstring removed.</source> <translation>Leerzeile vor Funktions-/Methodendocstring entfernt.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="268" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="269" /> <source>Blank line inserted before class docstring.</source> <translation>Leerzeile vor Klassendocstring eingefügt.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="271" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="272" /> <source>Blank line inserted after class docstring.</source> <translation>Leerzeile nach Klassendocstring eingefügt.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="274" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="275" /> <source>Blank line inserted after docstring summary.</source> <translation>Leerzeile nach Docstring Zusammenfassung eingefügt.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="277" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="278" /> <source>Blank line inserted after last paragraph of docstring.</source> <translation>Leerzeile nach letztem Abschnitt des Docstring eingefügt.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="280" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="281" /> <source>Leading quotes put on separate line.</source> <translation>Einleitende Anführungszeichen auf separate Zeile gesetzt.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="283" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="284" /> <source>Trailing quotes put on separate line.</source> <translation>Schließende Anführungszeichen auf separate Zeile gesetzt.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="286" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="287" /> <source>Blank line before class docstring removed.</source> <translation>Leerzeile vor Klassendocstring entfernt.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="292" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="293" /> <source>Blank line after class docstring removed.</source> <translation>Leerzeile nach Klassendocstring entfernt.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="295" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="296" /> <source>Blank line after function/method docstring removed.</source> <translation>Leerzeile nach Funktions-/Methodendocstring entfernt.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="298" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="299" /> <source>Blank line after last paragraph removed.</source> <translation>Leerzeile nach letzten Abschnitt entfernt.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="301" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="302" /> <source>Tab converted to 4 spaces.</source> <translation>Tabulator in 4 Leerzeichen gewandelt.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="304" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="305" /> <source>Indentation adjusted to be a multiple of four.</source> <translation>Einrückung auf ein Vielfaches von vier korrigiert.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="307" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="308" /> <source>Indentation of continuation line corrected.</source> <translation>Einrückung der Fortsetzungszeile korrigiert.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="310" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="311" /> <source>Indentation of closing bracket corrected.</source> <translation>Einrückung der schließenden Klammer korrigiert.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="313" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="314" /> <source>Missing indentation of continuation line corrected.</source> <translation>Fehlende Einrückung der Fortsetzungszeile korrigiert.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="316" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="317" /> <source>Closing bracket aligned to opening bracket.</source> <translation>Schließende Klammer an öffnender Klammer ausgerichtet.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="319" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="320" /> <source>Indentation level changed.</source> <translation>Einrückungsebene geändert.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="322" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="323" /> <source>Indentation level of hanging indentation changed.</source> <translation>Einrückungsebene der hängenden Einrückung geändert.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="325" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="326" /> <source>Visual indentation corrected.</source> <translation>Visuelle Einrückung korrigiert.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="340" /> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="334" /> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="328" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="341" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="335" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="329" /> <source>Extraneous whitespace removed.</source> <translation>Überzählige Leerzeichen gelöscht.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="337" /> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="331" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="338" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="332" /> <source>Missing whitespace added.</source> <translation>Fehlende Leerzeichen eingefügt.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="343" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="344" /> <source>Whitespace around comment sign corrected.</source> <translation>Leerzeichen um Kommentarzeichen korrigiert.</translation> </message> <message numerus="yes"> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="346" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="347" /> <source>%n blank line(s) inserted.</source> <translation> <numerusform>Eine Leerzeile eingefügt.</numerusform> @@ -6421,7 +6421,7 @@ </translation> </message> <message numerus="yes"> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="349" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="350" /> <source>%n superfluous lines removed</source> <translation> <numerusform>Eine überflüssige Zeile gelöscht</numerusform> @@ -6429,73 +6429,73 @@ </translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="352" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="353" /> <source>Superfluous blank lines removed.</source> <translation>Überflüssige Leerzeilen gelöscht.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="355" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="356" /> <source>Superfluous blank lines after function decorator removed.</source> <translation>Überflüssige Leerzeilen nach Funktionsdekorator gelöscht.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="358" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="359" /> <source>Imports were put on separate lines.</source> <translation>Imports wurden auf separate Zeilen verteilt.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="361" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="362" /> <source>Long lines have been shortened.</source> <translation>Lange Zeilen wurden gekürzt.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="364" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="365" /> <source>Redundant backslash in brackets removed.</source> <translation>Redundante Backslashes in Klammern entfernt.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="370" /> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="367" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="371" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="368" /> <source>Compound statement corrected.</source> <translation>Compund Statement korrigiert.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="373" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="374" /> <source>Comparison to None/True/False corrected.</source> <translation>Vergleich mit None/True/False korrigiert.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="376" /> - <source>'{0}' argument added.</source> - <translation>'{0}' Argument hinzugefügt.</translation> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="377" /> - <source>'{0}' argument removed.</source> - <translation>'{0}' Argument entfernt.</translation> + <source>'{0}' argument added.</source> + <translation>'{0}' Argument hinzugefügt.</translation> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="378" /> + <source>'{0}' argument removed.</source> + <translation>'{0}' Argument entfernt.</translation> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="379" /> <source>Whitespace stripped from end of line.</source> <translation>Leerzeichen am Zeilenende entfernt.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="381" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="382" /> <source>newline added to end of file.</source> <translation>Zeilenvorschub am Dateiende angefügt.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="384" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="385" /> <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/CodeStyleChecker/translations.py" line="387" /> - <source>'<>' replaced by '!='.</source> - <translation>„<>“ durch „!=“ ersetzt.</translation> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="388" /> + <source>'<>' replaced by '!='.</source> + <translation>„<>“ durch „!=“ ersetzt.</translation> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="389" /> <source>Could not save the file! Skipping it. Reason: {0}</source> <translation>Datei konnte nicht gespeichert werden! Ursache: {0}</translation> </message> @@ -20745,45 +20745,45 @@ <context> <name>EricToolBarDialog</name> <message> - <location filename="../EricWidgets/EricToolBarDialog.py" line="89" /> + <location filename="../EricWidgets/EricToolBarDialog.py" line="90" /> <source>--Separator--</source> <translation>--Trenner--</translation> </message> <message> - <location filename="../EricWidgets/EricToolBarDialog.py" line="169" /> - <location filename="../EricWidgets/EricToolBarDialog.py" line="160" /> + <location filename="../EricWidgets/EricToolBarDialog.py" line="164" /> + <location filename="../EricWidgets/EricToolBarDialog.py" line="155" /> <source>New Toolbar</source> <translation>Neue Werkzeugleiste</translation> </message> <message> - <location filename="../EricWidgets/EricToolBarDialog.py" line="161" /> + <location filename="../EricWidgets/EricToolBarDialog.py" line="156" /> <source>Toolbar Name:</source> <translation>Name der Werkzeugleiste:</translation> </message> <message> - <location filename="../EricWidgets/EricToolBarDialog.py" line="238" /> - <location filename="../EricWidgets/EricToolBarDialog.py" line="170" /> + <location filename="../EricWidgets/EricToolBarDialog.py" line="233" /> + <location filename="../EricWidgets/EricToolBarDialog.py" line="165" /> <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="../EricWidgets/EricToolBarDialog.py" line="197" /> + <location filename="../EricWidgets/EricToolBarDialog.py" line="192" /> <source>Remove Toolbar</source> <translation>Werkzeugleiste entfernen</translation> </message> <message> - <location filename="../EricWidgets/EricToolBarDialog.py" line="198" /> + <location filename="../EricWidgets/EricToolBarDialog.py" line="193" /> <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="../EricWidgets/EricToolBarDialog.py" line="237" /> - <location filename="../EricWidgets/EricToolBarDialog.py" line="225" /> + <location filename="../EricWidgets/EricToolBarDialog.py" line="232" /> + <location filename="../EricWidgets/EricToolBarDialog.py" line="220" /> <source>Rename Toolbar</source> <translation>Werkzeugleiste umbenennen</translation> </message> <message> - <location filename="../EricWidgets/EricToolBarDialog.py" line="226" /> + <location filename="../EricWidgets/EricToolBarDialog.py" line="221" /> <source>New Toolbar Name:</source> <translation>Neuer Name der Werkzeugleiste:</translation> </message> @@ -54597,723 +54597,723 @@ <context> <name>MiniEditor</name> <message> - <location filename="../QScintilla/MiniEditor.py" line="492" /> + <location filename="../QScintilla/MiniEditor.py" line="493" /> <source>About eric Mini Editor</source> <translation>Über den eric Mini Editor</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="493" /> + <location filename="../QScintilla/MiniEditor.py" line="494" /> <source>The eric 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 eric Mini-Editor ist eine Editorkomponente, die auf QScintilla basiert. Sie kann für einfachere Editieraufgaben, die keinen ausgewachsenen Editor benötigen, verwendet werden.</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="562" /> + <location filename="../QScintilla/MiniEditor.py" line="563" /> <source>Line: {0:5}</source> <translation>Zeile: {0:5}</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="566" /> + <location filename="../QScintilla/MiniEditor.py" line="567" /> <source>Pos: {0:5}</source> <translation>Pos: {0:5}</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="580" /> + <location filename="../QScintilla/MiniEditor.py" line="581" /> <source>Language: {0}</source> <translation>Sprache: {0}</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="644" /> + <location filename="../QScintilla/MiniEditor.py" line="645" /> <source>New</source> <translation>Neu</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="646" /> - <source>&New</source> - <translation>&Neu</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="647" /> + <source>&New</source> + <translation>&Neu</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="648" /> <source>Ctrl+N</source> <comment>File|New</comment> <translation>Ctrl+N</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="652" /> + <location filename="../QScintilla/MiniEditor.py" line="653" /> <source>Open an empty editor window</source> <translation>Öffnet ein leeres Editorfenster</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="654" /> + <location filename="../QScintilla/MiniEditor.py" line="655" /> <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="660" /> + <location filename="../QScintilla/MiniEditor.py" line="661" /> <source>Open</source> <translation>Öffnen</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="662" /> - <source>&Open...</source> - <translation>&Öffnen...</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="663" /> + <source>&Open...</source> + <translation>&Öffnen...</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="664" /> <source>Ctrl+O</source> <comment>File|Open</comment> <translation>Ctrl+O</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="668" /> + <location filename="../QScintilla/MiniEditor.py" line="669" /> <source>Open a file</source> <translation>Datei öffnen</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="670" /> + <location filename="../QScintilla/MiniEditor.py" line="671" /> <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="679" /> + <location filename="../QScintilla/MiniEditor.py" line="680" /> <source>Save</source> <translation>Speichern</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="681" /> - <source>&Save</source> - <translation>&Speichern</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="682" /> + <source>&Save</source> + <translation>&Speichern</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="683" /> <source>Ctrl+S</source> <comment>File|Save</comment> <translation>Ctrl+S</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="687" /> + <location filename="../QScintilla/MiniEditor.py" line="688" /> <source>Save the current file</source> <translation>Speichert die aktuelle Datei</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="689" /> + <location filename="../QScintilla/MiniEditor.py" line="690" /> <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="698" /> + <location filename="../QScintilla/MiniEditor.py" line="699" /> <source>Save as</source> <translation>Speichern unter</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="700" /> - <source>Save &as...</source> - <translation>Speichern &unter...</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="701" /> + <source>Save &as...</source> + <translation>Speichern &unter...</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="702" /> <source>Shift+Ctrl+S</source> <comment>File|Save As</comment> <translation>Shift+Ctrl+S</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="706" /> + <location filename="../QScintilla/MiniEditor.py" line="707" /> <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="708" /> + <location filename="../QScintilla/MiniEditor.py" line="709" /> <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="718" /> + <location filename="../QScintilla/MiniEditor.py" line="719" /> <source>Save Copy</source> <translation>Kopie speichern</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="720" /> + <location filename="../QScintilla/MiniEditor.py" line="721" /> <source>Save &Copy...</source> <translation>&Kopie speichern...</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="726" /> + <location filename="../QScintilla/MiniEditor.py" line="727" /> <source>Save a copy of the current file</source> <translation>Speichert eine Kopie der aktuellen Datei</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="728" /> + <location filename="../QScintilla/MiniEditor.py" line="729" /> <source><b>Save Copy</b><p>Save a copy of the contents of current editor window. The file can be entered in a file selection dialog.</p></source> <translation><b>Kopie speichern</b><p>Speichern einer Kopie des Inhalts des aktuellen Editorfensters. Die Datei kann mit einem Dateiauswahldialog eingegeben werden.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="738" /> + <location filename="../QScintilla/MiniEditor.py" line="739" /> <source>Close</source> <translation>Schließen</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="740" /> - <source>&Close</source> - <translation>Schl&ießen</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="741" /> + <source>&Close</source> + <translation>Schl&ießen</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="742" /> <source>Ctrl+W</source> <comment>File|Close</comment> <translation>Ctrl+W</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="746" /> + <location filename="../QScintilla/MiniEditor.py" line="747" /> <source>Close the editor window</source> <translation>Schließt das Editorfenster</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="748" /> + <location filename="../QScintilla/MiniEditor.py" line="749" /> <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="754" /> + <location filename="../QScintilla/MiniEditor.py" line="755" /> <source>Print</source> <translation>Drucken</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="756" /> - <source>&Print</source> - <translation>&Drucken</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="757" /> + <source>&Print</source> + <translation>&Drucken</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="758" /> <source>Ctrl+P</source> <comment>File|Print</comment> <translation>Ctrl+P</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="762" /> + <location filename="../QScintilla/MiniEditor.py" line="763" /> <source>Print the current file</source> <translation>Druckt die aktuelle Datei</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="764" /> + <location filename="../QScintilla/MiniEditor.py" line="765" /> <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="773" /> + <location filename="../QScintilla/MiniEditor.py" line="774" /> <source>Print Preview</source> <translation>Druckvorschau</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="781" /> + <location filename="../QScintilla/MiniEditor.py" line="782" /> <source>Print preview of the current file</source> <translation>Druckvorschau der aktuellen Datei</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="783" /> + <location filename="../QScintilla/MiniEditor.py" line="784" /> <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="796" /> + <location filename="../QScintilla/MiniEditor.py" line="797" /> <source>Undo</source> <translation>Rückgängig</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="798" /> - <source>&Undo</source> - <translation>&Rückgängig</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="799" /> + <source>&Undo</source> + <translation>&Rückgängig</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="800" /> <source>Ctrl+Z</source> <comment>Edit|Undo</comment> <translation>Ctrl+Z</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="800" /> + <location filename="../QScintilla/MiniEditor.py" line="801" /> <source>Alt+Backspace</source> <comment>Edit|Undo</comment> <translation>Alt+Backspace</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="804" /> + <location filename="../QScintilla/MiniEditor.py" line="805" /> <source>Undo the last change</source> <translation>Die letzte Änderung rückgängig machen</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="806" /> + <location filename="../QScintilla/MiniEditor.py" line="807" /> <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="815" /> + <location filename="../QScintilla/MiniEditor.py" line="816" /> <source>Redo</source> <translation>Wiederherstellen</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="817" /> - <source>&Redo</source> - <translation>Wieder&herstellen</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="818" /> + <source>&Redo</source> + <translation>Wieder&herstellen</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="819" /> <source>Ctrl+Shift+Z</source> <comment>Edit|Redo</comment> <translation>Ctrl+Shift+Z</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="823" /> + <location filename="../QScintilla/MiniEditor.py" line="824" /> <source>Redo the last change</source> <translation>Die letzte Änderung wiederherstellen</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="825" /> + <location filename="../QScintilla/MiniEditor.py" line="826" /> <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="834" /> + <location filename="../QScintilla/MiniEditor.py" line="835" /> <source>Cut</source> <translation>Ausschneiden</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="836" /> - <source>Cu&t</source> - <translation>&Ausschneiden</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="837" /> + <source>Cu&t</source> + <translation>&Ausschneiden</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="838" /> <source>Ctrl+X</source> <comment>Edit|Cut</comment> <translation>Ctrl+X</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="838" /> + <location filename="../QScintilla/MiniEditor.py" line="839" /> <source>Shift+Del</source> <comment>Edit|Cut</comment> <translation>Shift+Del</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="842" /> + <location filename="../QScintilla/MiniEditor.py" line="843" /> <source>Cut the selection</source> <translation>Schneidet die Auswahl aus</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="844" /> + <location filename="../QScintilla/MiniEditor.py" line="845" /> <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="854" /> + <location filename="../QScintilla/MiniEditor.py" line="855" /> <source>Copy</source> <translation>Kopieren</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="856" /> - <source>&Copy</source> - <translation>&Kopieren</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="857" /> + <source>&Copy</source> + <translation>&Kopieren</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="858" /> <source>Ctrl+C</source> <comment>Edit|Copy</comment> <translation>Ctrl+C</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="858" /> + <location filename="../QScintilla/MiniEditor.py" line="859" /> <source>Ctrl+Ins</source> <comment>Edit|Copy</comment> <translation>Ctrl+Einfg</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="862" /> + <location filename="../QScintilla/MiniEditor.py" line="863" /> <source>Copy the selection</source> <translation>Kopiert die Auswahl</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="864" /> + <location filename="../QScintilla/MiniEditor.py" line="865" /> <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="874" /> + <location filename="../QScintilla/MiniEditor.py" line="875" /> <source>Paste</source> <translation>Einfügen</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="876" /> - <source>&Paste</source> - <translation>Ein&fügen</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="877" /> + <source>&Paste</source> + <translation>Ein&fügen</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="878" /> <source>Ctrl+V</source> <comment>Edit|Paste</comment> <translation>Ctrl+V</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="878" /> + <location filename="../QScintilla/MiniEditor.py" line="879" /> <source>Shift+Ins</source> <comment>Edit|Paste</comment> <translation>Shift+Ins</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="882" /> + <location filename="../QScintilla/MiniEditor.py" line="883" /> <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="884" /> + <location filename="../QScintilla/MiniEditor.py" line="885" /> <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="894" /> + <location filename="../QScintilla/MiniEditor.py" line="895" /> <source>Clear</source> <translation>Löschen</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="896" /> - <source>Cl&ear</source> - <translation>All&es löschen</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="897" /> + <source>Cl&ear</source> + <translation>All&es löschen</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="898" /> <source>Alt+Shift+C</source> <comment>Edit|Clear</comment> <translation>Alt+Shift+C</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="902" /> + <location filename="../QScintilla/MiniEditor.py" line="903" /> <source>Clear all text</source> <translation>Löscht den gesamten Text</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="904" /> + <location filename="../QScintilla/MiniEditor.py" line="905" /> <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="2892" /> + <location filename="../QScintilla/MiniEditor.py" line="2893" /> <source>About</source> <translation>Über</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2892" /> + <location filename="../QScintilla/MiniEditor.py" line="2893" /> <source>&About</source> <translation>&Über</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2894" /> + <location filename="../QScintilla/MiniEditor.py" line="2895" /> <source>Display information about this software</source> <translation>Zeigt Informationen zu diesem Programm an</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2896" /> + <location filename="../QScintilla/MiniEditor.py" line="2897" /> <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="2905" /> + <location filename="../QScintilla/MiniEditor.py" line="2906" /> <source>About Qt</source> <translation>Über Qt</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2905" /> + <location filename="../QScintilla/MiniEditor.py" line="2906" /> <source>About &Qt</source> <translation>Über &Qt</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2908" /> + <location filename="../QScintilla/MiniEditor.py" line="2909" /> <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="2911" /> + <location filename="../QScintilla/MiniEditor.py" line="2912" /> <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="2920" /> + <location filename="../QScintilla/MiniEditor.py" line="2921" /> <source>What's This?</source> <translation>Was ist das?</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2922" /> - <source>&What's This?</source> - <translation>&Was ist das?</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="2923" /> + <source>&What's This?</source> + <translation>&Was ist das?</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="2924" /> <source>Shift+F1</source> <comment>Help|What's This?'</comment> <translation>Shift+F1</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2928" /> + <location filename="../QScintilla/MiniEditor.py" line="2929" /> <source>Context sensitive help</source> <translation>Kontextsensitive Hilfe</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2930" /> + <location filename="../QScintilla/MiniEditor.py" line="2931" /> <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="../QScintilla/MiniEditor.py" line="2948" /> + <location filename="../QScintilla/MiniEditor.py" line="2949" /> <source>Preferences</source> <translation>Einstellungen</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2950" /> + <location filename="../QScintilla/MiniEditor.py" line="2951" /> <source>&Preferences...</source> <translation>&Einstellungen...</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2956" /> + <location filename="../QScintilla/MiniEditor.py" line="2957" /> <source>Set the prefered configuration</source> <translation>Konfiguriert die Einstellungen</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2958" /> + <location filename="../QScintilla/MiniEditor.py" line="2959" /> <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="../QScintilla/MiniEditor.py" line="2972" /> + <location filename="../QScintilla/MiniEditor.py" line="2973" /> <source>&File</source> <translation>&Datei</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2984" /> + <location filename="../QScintilla/MiniEditor.py" line="2985" /> <source>&Edit</source> <translation>&Bearbeiten</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2994" /> + <location filename="../QScintilla/MiniEditor.py" line="2995" /> <source>&Search</source> <translation>&Suchen</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3004" /> + <location filename="../QScintilla/MiniEditor.py" line="3005" /> <source>&View</source> <translation>&Ansicht</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3010" /> + <location filename="../QScintilla/MiniEditor.py" line="3011" /> <source>Se&ttings</source> <translation>&Einstellungen</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3015" /> + <location filename="../QScintilla/MiniEditor.py" line="3016" /> <source>&Help</source> <translation>&Hilfe</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3027" /> + <location filename="../QScintilla/MiniEditor.py" line="3028" /> <source>File</source> <translation>Datei</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3039" /> + <location filename="../QScintilla/MiniEditor.py" line="3040" /> <source>Edit</source> <translation>Bearbeiten</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3048" /> + <location filename="../QScintilla/MiniEditor.py" line="3049" /> <source>Search</source> <translation>Suchen</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3054" /> + <location filename="../QScintilla/MiniEditor.py" line="3055" /> <source>View</source> <translation>Ansicht</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3060" /> + <location filename="../QScintilla/MiniEditor.py" line="3061" /> <source>Settings</source> <translation>Einstellungen</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3063" /> + <location filename="../QScintilla/MiniEditor.py" line="3064" /> <source>Help</source> <translation>Hilfe</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3076" /> + <location filename="../QScintilla/MiniEditor.py" line="3077" /> <source><p>This part of the status bar displays the editor language.</p></source> <translation><p>Dieser Teil der Statusleiste zeigt die Sprache des Editors an.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3086" /> + <location filename="../QScintilla/MiniEditor.py" line="3087" /> <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="3095" /> + <location filename="../QScintilla/MiniEditor.py" line="3096" /> <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="3104" /> + <location filename="../QScintilla/MiniEditor.py" line="3105" /> <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="3118" /> + <location filename="../QScintilla/MiniEditor.py" line="3119" /> <source><p>This part of the status bar allows zooming the editor.</p></source> <translation><p>Dieser Teil der Statusleiste ermöglicht das Zoomen des Editors.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3125" /> + <location filename="../QScintilla/MiniEditor.py" line="3126" /> <source>Ready</source> <translation>Bereit</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3201" /> - <source>eric Mini Editor</source> - <translation>eric Mini Editor</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="3202" /> + <source>eric Mini Editor</source> + <translation>eric Mini Editor</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="3203" /> <source>The document has unsaved changes.</source> <translation>Das Dokument hat ungesicherte Änderungen.</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3231" /> - <source>Open File</source> - <translation>Datei öffnen</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="3232" /> + <source>Open File</source> + <translation>Datei öffnen</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="3233" /> <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="3260" /> + <location filename="../QScintilla/MiniEditor.py" line="3261" /> <source>File loaded</source> <translation>Datei geladen</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3341" /> - <source>Save File</source> - <translation>Datei speichern</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="3342" /> + <source>Save File</source> + <translation>Datei speichern</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="3343" /> <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="3348" /> + <location filename="../QScintilla/MiniEditor.py" line="3349" /> <source>File saved</source> <translation>Datei gespeichert</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3360" /> + <location filename="../QScintilla/MiniEditor.py" line="3361" /> <source>[*] - {0}</source> <translation>[*] - {0}</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3380" /> - <location filename="../QScintilla/MiniEditor.py" line="3360" /> + <location filename="../QScintilla/MiniEditor.py" line="3381" /> + <location filename="../QScintilla/MiniEditor.py" line="3361" /> <source>Mini Editor</source> <translation>Mini Editor</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3735" /> - <location filename="../QScintilla/MiniEditor.py" line="3706" /> - <location filename="../QScintilla/MiniEditor.py" line="3373" /> + <location filename="../QScintilla/MiniEditor.py" line="3736" /> + <location filename="../QScintilla/MiniEditor.py" line="3707" /> + <location filename="../QScintilla/MiniEditor.py" line="3374" /> <source>Untitled</source> <translation>Unbenannt</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3380" /> + <location filename="../QScintilla/MiniEditor.py" line="3381" /> <source>{0}[*] - {1}</source> <translation>{0} [*] – {1}</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3701" /> + <location filename="../QScintilla/MiniEditor.py" line="3702" /> <source>Printing...</source> <translation>Drucke...</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3717" /> + <location filename="../QScintilla/MiniEditor.py" line="3718" /> <source>Printing completed</source> <translation>Drucken beendet</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3719" /> + <location filename="../QScintilla/MiniEditor.py" line="3720" /> <source>Error while printing</source> <translation>Fehler beim Drucken</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3722" /> + <location filename="../QScintilla/MiniEditor.py" line="3723" /> <source>Printing aborted</source> <translation>Drucken abgebrochen</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3777" /> - <source>Select all</source> - <translation>Alles auswählen</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="3778" /> + <source>Select all</source> + <translation>Alles auswählen</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="3779" /> <source>Deselect all</source> <translation>Auswahl aufheben</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3792" /> + <location filename="../QScintilla/MiniEditor.py" line="3793" /> <source>Languages</source> <translation>Sprachen</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3795" /> + <location filename="../QScintilla/MiniEditor.py" line="3796" /> <source>No Language</source> <translation>Keine Sprache</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3816" /> + <location filename="../QScintilla/MiniEditor.py" line="3817" /> <source>Guessed</source> <translation>Ermittelt</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3838" /> - <location filename="../QScintilla/MiniEditor.py" line="3820" /> + <location filename="../QScintilla/MiniEditor.py" line="3839" /> + <location filename="../QScintilla/MiniEditor.py" line="3821" /> <source>Alternatives</source> <translation>Alternativen</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3835" /> + <location filename="../QScintilla/MiniEditor.py" line="3836" /> <source>Alternatives ({0})</source> <translation>Alternativen ({0})</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3867" /> - <source>Pygments Lexer</source> - <translation>Pygments Lexer</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="3868" /> + <source>Pygments Lexer</source> + <translation>Pygments Lexer</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="3869" /> <source>Select the Pygments lexer to apply.</source> <translation>Wähle den anzuwendenden Pygments Lexer.</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="4413" /> - <source>EditorConfig Properties</source> - <translation>EditorConfig Eigenschaften</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="4414" /> + <source>EditorConfig Properties</source> + <translation>EditorConfig Eigenschaften</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="4415" /> <source><p>The EditorConfig properties for file <b>{0}</b> could not be loaded.</p></source> <translation><p>Die EditorConfig Eigenschaften für die Datei <b>{0}</b> konnten nicht geladen werden.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="4601" /> - <source>Save File to Device</source> - <translation>Datei auf Gerät speichern</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="4602" /> + <source>Save File to Device</source> + <translation>Datei auf Gerät speichern</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="4603" /> <source>Enter the complete device file path:</source> <translation>Gib den vollständigen Dateipfad auf dem Gerät ein:</translation> </message> @@ -55514,7 +55514,7 @@ <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="117" /> <source>unnecessary {0} comprehension - rewrite using {0}()</source> - <translation>unnätige {0} Comprehension - schreibe sie als {0}() um</translation> + <translation>unnötige {0} Comprehension - schreibe sie als {0}() um</translation> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="121" /> @@ -55532,505 +55532,510 @@ <translation>unnötige, an {0}() übergebene List Comprehension verhindert Kurzschluss - umschreiben als Generator</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="135" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="134" /> + <source>unnecessary {0} comprehension - rewrite using dict.fromkeys()</source> + <translation>unnötige {0} Comprehension - schreibe sie unter Verwendung von dict.fromkeys() um</translation> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="139" /> <source>sort keys - '{0}' should be before '{1}'</source> <translation>Schlüssel sortieren - '{0}' sollte vor '{1}' kommen</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="140" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="144" /> <source>the number of arguments for property getter method is wrong (should be 1 instead of {0})</source> <translation>Die Anzahl der Argumente der Property getter Methode ist falsch (sollte 1 anstatt {0} sein)</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="145" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="149" /> <source>the number of arguments for property setter method is wrong (should be 2 instead of {0})</source> <translation>Die Anzahl der Argumente der Property setter Methode ist falsch (sollte 2 anstatt {0} sein)</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="150" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="154" /> <source>the number of arguments for property deleter method is wrong (should be 1 instead of {0})</source> <translation>Die Anzahl der Argumente der Property deleter Methode ist falsch (sollte 1 anstatt {0} sein)</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="155" /> - <source>the name of the setter method is wrong (should be '{0}' instead of '{1}')</source> - <translation>Der Name der setter Methode ist falsch (sollte '{0}' anstatt '{1}' sein)</translation> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="159" /> - <source>the name of the deleter method is wrong (should be '{0}' instead of '{1}')</source> - <translation>Der Name der deleter Methode ist falsch (sollte '{0}' anstatt '{1}' sein)</translation> + <source>the name of the setter method is wrong (should be '{0}' instead of '{1}')</source> + <translation>Der Name der setter Methode ist falsch (sollte '{0}' anstatt '{1}' sein)</translation> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="163" /> - <source>the name of the setter decorator is wrong (should be '{0}' instead of '{1}')</source> - <translation>Der Name des setter Dekorators ist falsch (sollte '{0}' anstatt '{1}' sein)</translation> + <source>the name of the deleter method is wrong (should be '{0}' instead of '{1}')</source> + <translation>Der Name der deleter Methode ist falsch (sollte '{0}' anstatt '{1}' sein)</translation> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="167" /> - <source>the name of the deleter decorator is wrong (should be '{0}' instead of '{1}')</source> - <translation>Der Name des deleter Dekorators ist falsch (sollte '{0}' anstatt '{1}' sein)</translation> + <source>the name of the setter decorator is wrong (should be '{0}' instead of '{1}')</source> + <translation>Der Name des setter Dekorators ist falsch (sollte '{0}' anstatt '{1}' sein)</translation> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="171" /> + <source>the name of the deleter decorator is wrong (should be '{0}' instead of '{1}')</source> + <translation>Der Name des deleter Dekorators ist falsch (sollte '{0}' anstatt '{1}' sein)</translation> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="175" /> <source>multiple decorators were used to declare property '{0}'</source> <translation>Mehrfache Dekoratoren wurden zur Definition des Property '{0}' verwendet</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="176" /> - <source>use of 'datetime.datetime()' without 'tzinfo' argument should be avoided</source> - <translation>Verwendung von 'datetime.datetime()' ohne 'tzinfo' Argument sollte vermieden werden</translation> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="180" /> + <source>use of 'datetime.datetime()' without 'tzinfo' argument should be avoided</source> + <translation>Verwendung von 'datetime.datetime()' ohne 'tzinfo' Argument sollte vermieden werden</translation> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="184" /> <source>use of 'datetime.datetime.today()' should be avoided. Use 'datetime.datetime.now(tz=)' instead.</source> <translation>Verwendung von 'datetime.datetime.today()' sollte vermieden werden Verwende 'datetime.datetime.now(tz=)'.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="185" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="189" /> <source>use of 'datetime.datetime.utcnow()' should be avoided. Use 'datetime.datetime.now(tz=datetime.timezone.utc)' instead.</source> <translation>Verwendung von 'datetime.datetime.utcnow()' sollte vermieden werden Verwende stattdessen 'datetime.datetime.now(tz=datetime.timezone.utc)'.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="190" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="194" /> <source>use of 'datetime.datetime.utcfromtimestamp()' should be avoided. Use 'datetime.datetime.fromtimestamp(..., tz=datetime.timezone.utc)' instead.</source> <translation>Verwendung von 'datetime.datetime.utcfromtimestamp()' sollte vermieden werden Verwende stattdessen 'datetime.datetime.fromtimestamp(..., tz=datetime.timezone.utc)'.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="195" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="199" /> <source>use of 'datetime.datetime.now()' without 'tz' argument should be avoided</source> <translation>Verwendung von 'datetime.datetime.now()' ohne 'tz' Argument sollte vermieden werden</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="199" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="203" /> <source>use of 'datetime.datetime.fromtimestamp()' without 'tz' argument should be avoided</source> <translation>Verwendung von 'datetime.datetime.fromtimestamp()' ohne 'tz' Argument sollte vermieden werden</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="204" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="208" /> <source>use of 'datetime.datetime.strptime()' should be followed by '.replace(tzinfo=)'</source> <translation>Verwendung von datetime.datetime.strptime()' sollte mit '.replace(tzinfo=)' erweitert werden</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="209" /> - <source>use of 'datetime.datetime.fromordinal()' should be avoided</source> - <translation>Verwendung von 'datetime.datetime.fromordinal()' sollte vermieden werden</translation> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="213" /> + <source>use of 'datetime.datetime.fromordinal()' should be avoided</source> + <translation>Verwendung von 'datetime.datetime.fromordinal()' sollte vermieden werden</translation> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="217" /> <source>use of 'datetime.date()' should be avoided. Use 'datetime.datetime(, tzinfo=).date()' instead.</source> <translation>Verwendung von 'datetime.date()' sollte vermieden werden Verwende 'datetime.datetime(, tzinfo=).date()'.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="218" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="222" /> <source>use of 'datetime.date.today()' should be avoided. Use 'datetime.datetime.now(tz=).date()' instead.</source> <translation>Verwendung von 'datetime.date.today()' sollte vermieden werden Verwende 'datetime.datetime.now(tz=).date()'.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="223" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="227" /> <source>use of 'datetime.date.fromtimestamp()' should be avoided. Use 'datetime.datetime.fromtimestamp(tz=).date()' instead.</source> <translation>Verwendung von 'datetime.date.fromtimestamp()' sollte vermieden werden Verwende 'datetime.datetime.fromtimestamp(tz=).date()'.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="228" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="232" /> <source>use of 'datetime.date.fromordinal()' should be avoided</source> <translation>Verwendung von 'datetime.date.fromordinal()' sollte vermieden werden</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="232" /> - <source>use of 'datetime.date.fromisoformat()' should be avoided</source> - <translation>Verwendung von 'datetime.date.fromisoformat()' sollte vermieden werden</translation> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="236" /> + <source>use of 'datetime.date.fromisoformat()' should be avoided</source> + <translation>Verwendung von 'datetime.date.fromisoformat()' sollte vermieden werden</translation> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="240" /> <source>use of 'datetime.time()' without 'tzinfo' argument should be avoided</source> <translation>Verwendung von 'datetime.time()' ohne 'tzinfo' Argument sollte vermieden werden</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="241" /> - <source>'sys.version[:3]' referenced (Python 3.10), use 'sys.version_info'</source> - <translation>'sys.version[:3]' referenziert (Python 3.10), verwende 'sys.version_info'</translation> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="245" /> - <source>'sys.version[2]' referenced (Python 3.10), use 'sys.version_info'</source> - <translation>'sys.version[2]' referenziert (Python 3.10), verwende 'sys.version_info'</translation> + <source>'sys.version[:3]' referenced (Python 3.10), use 'sys.version_info'</source> + <translation>'sys.version[:3]' referenziert (Python 3.10), verwende 'sys.version_info'</translation> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="249" /> - <source>'sys.version' compared to string (Python 3.10), use 'sys.version_info'</source> - <translation>'sys.version' verglichen mit Zeichenkette (Python 3.10), verwende 'sys.version_info'</translation> + <source>'sys.version[2]' referenced (Python 3.10), use 'sys.version_info'</source> + <translation>'sys.version[2]' referenziert (Python 3.10), verwende 'sys.version_info'</translation> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="253" /> - <source>'sys.version_info[0] == 3' referenced (Python 4), use '>='</source> - <translation>'sys.version_info[0] == 3' referenziert (Python 4), verwende '>='</translation> + <source>'sys.version' compared to string (Python 3.10), use 'sys.version_info'</source> + <translation>'sys.version' verglichen mit Zeichenkette (Python 3.10), verwende 'sys.version_info'</translation> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="257" /> - <source>'six.PY3' referenced (Python 4), use 'not six.PY2'</source> - <translation>'six.PY3' referenziert (Python 4), verwende 'not six.PY2'</translation> + <source>'sys.version_info[0] == 3' referenced (Python 4), use '>='</source> + <translation>'sys.version_info[0] == 3' referenziert (Python 4), verwende '>='</translation> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="261" /> + <source>'six.PY3' referenced (Python 4), use 'not six.PY2'</source> + <translation>'six.PY3' referenziert (Python 4), verwende 'not six.PY2'</translation> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="265" /> <source>'sys.version_info[1]' compared to integer (Python 4), compare 'sys.version_info' to tuple</source> <translation>'sys.version_info[1]' verglichen mit einem Integer (Python 4), vergleiche 'sys.version_info' mit einem Tuple</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="266" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="270" /> <source>'sys.version_info.minor' compared to integer (Python 4), compare 'sys.version_info' to tuple</source> <translation>'sys.version_info.minor' verglichen mit einem Integer (Python 4), vergleiche 'sys.version_info' mit einem Tuple</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="271" /> - <source>'sys.version[0]' referenced (Python 10), use 'sys.version_info'</source> - <translation>'sys.version[0]' referenziert (Python 10), verwende 'sys.version_info'</translation> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="275" /> - <source>'sys.version' compared to string (Python 10), use 'sys.version_info'</source> - <translation>'sys.version' verglichen mit Zeichenkette (Python 10), verwende 'sys.version_info'</translation> + <source>'sys.version[0]' referenced (Python 10), use 'sys.version_info'</source> + <translation>'sys.version[0]' referenziert (Python 10), verwende 'sys.version_info'</translation> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="279" /> + <source>'sys.version' compared to string (Python 10), use 'sys.version_info'</source> + <translation>'sys.version' verglichen mit Zeichenkette (Python 10), verwende 'sys.version_info'</translation> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="283" /> <source>'sys.version[:1]' referenced (Python 10), use 'sys.version_info'</source> <translation>'sys.version[:1]' referenziert (Python 10), verwende 'sys.version_info'</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="284" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="288" /> <source>Do not use bare 'except:', it also catches unexpected events like memory errors, interrupts, system exit, and so on. Prefer excepting specific exceptions. If you're sure what you're doing, be explicit and write 'except BaseException:'.</source> <translation>Verwende kein einfaches 'except:', da es auch unerwartete Ereignisse wie Speicherfehler, Interrupts, System Exit usw. abfängt. Bevorzuge das Abfangen spezifischer Ausnahmen. Wenn du absolut sicher bist, sei explizit und verwende 'except BaseException:'.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="291" /> - <source>Python does not support the unary prefix increment</source> - <translation>Python unterstützt kein 'Unary Prefix Increment'</translation> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="295" /> + <source>Python does not support the unary prefix increment</source> + <translation>Python unterstützt kein 'Unary Prefix Increment'</translation> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="299" /> <source>assigning to 'os.environ' does not clear the environment - use 'os.environ.clear()'</source> <translation>Zuweisungen an 'os.environ' löschen nicht die Umgebungsvariablen - verwende 'os.environ.clear()'</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="300" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="304" /> <source>using 'hasattr(x, "__call__")' to test if 'x' is callable is unreliable. Use 'callable(x)' for consistent results.</source> <translation>Die Verwendung von 'hasattr(x, "__call__")' zum Testen der Ausführbarkeit von 'x' ist unzuverlässig. Verwende 'callable(x)' für konsistente Ergebnisse.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="305" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="309" /> <source>using .strip() with multi-character strings is misleading. Use .replace(), .removeprefix(), .removesuffix(), or regular expressions to remove string fragments.</source> <translation>Die Verwendung von .strip() mit Zeichenketten mit mehreren Zeichen ist irreführend. Verwende .replace(), .removeprefix(), .removesuffix() oder reguläre Ausdrücke, um Zeichenkettenteile zu entfernen.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="311" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="315" /> <source>loop control variable {0} not used within the loop body - start the name with an underscore</source> <translation>Schleifenvariable {0} wird im Schleifenkörper nicht verwendet - beginne den Namen mit einem Unterstrich</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="316" /> - <source>do not call getattr with a constant attribute value</source> - <translation>verwende getattr nicht mit einem konstanten Attribut</translation> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="320" /> - <source>do not call setattr with a constant attribute value</source> - <translation>verwende setattr nicht mit einem konstanten Attribut</translation> + <source>do not call getattr with a constant attribute value</source> + <translation>verwende getattr nicht mit einem konstanten Attribut</translation> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="324" /> - <source>do not call assert False since python -O removes these calls</source> - <translation>verwende nicht 'assert False', da python -O dies entfernt</translation> + <source>do not call setattr with a constant attribute value</source> + <translation>verwende setattr nicht mit einem konstanten Attribut</translation> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="328" /> + <source>do not call assert False since python -O removes these calls</source> + <translation>verwende nicht 'assert False', da python -O dies entfernt</translation> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="332" /> <source>return/continue/break inside finally blocks cause exceptions to be silenced. Exceptions should be silenced in except blocks. Control statements can be moved outside the finally block.</source> <translation>return/continue/break innerhalb eines finally Blocks unterdrückt Ausnahmen. Ausnahmen sollten in except Blöcken behandelt werden. Kontrollanweisungen können aus dem finally Block verschoben werden.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="334" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="338" /> <source>A length-one tuple literal is redundant. Write 'except {0}:' instead of 'except ({0},):'.</source> <translation>Ein Tuple der Länge eins ist redundant. Schreibe 'except {0}:' anstelle 'except ({0},):'.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="339" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="343" /> <source>Redundant exception types in 'except ({0}){1}:'. Write 'except {2}{1}:', which catches exactly the same exceptions.</source> <translation>Redundante Ausnahmetypen in 'except ({0}){1}:'. Schreibe 'except {2}{1}:', was die exakt gleichen Ausnahmen behandelt.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="344" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="348" /> <source>Result of comparison is not used. This line doesn't do anything. Did you intend to prepend it with assert?</source> <translation>Das Ergebnis des Vergleiches wird nicht verwendet. Diese Zeile macht nichts. Sollte ihr ein 'assert' vorangestellt werden?</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="349" /> - <source>Cannot raise a literal. Did you intend to return it or raise an Exception?</source> - <translation>Ein Literal kann nicht geworfen werden. Sollte es zurückgegeben oder eine Ausnahme geworfen werden?</translation> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="353" /> + <source>Cannot raise a literal. Did you intend to return it or raise an Exception?</source> + <translation>Ein Literal kann nicht geworfen werden. Sollte es zurückgegeben oder eine Ausnahme geworfen werden?</translation> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="357" /> <source>'assertRaises(Exception)' and 'pytest.raises(Exception)' should be considered evil. They can lead to your test passing even if the code being tested is never executed due to a typo. Assert for a more specific exception (builtin or custom), or use 'assertRaisesRegex' (if using 'assertRaises'), or add the 'match' keyword argument (if using 'pytest.raises'), or use the context manager form with a target.</source> <translation>'assertRaises(Exception)' und 'pytest.raises(Exception)' sollten als unschön betrachtet werden. Sie können dazu führen, dass Tests bestanden werden, obwohl der Code auf Grund eines Tippfehlers niemals getestet wurde. Verwende ein Assert für eine spezifischere Exception oder verwende 'assertRaisesRegex' (statt 'assertRaises') oder verwende das 'match' Schlüsselwortargument (bei 'pytest.raises') oder verwende die Kontextmanager Form mit einem Ziel.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="362" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="366" /> <source>Found useless {0} expression. Consider either assigning it to a variable or removing it.</source> <translation>Nutzloser {0} Ausdruck gefunden. Er sollte einer Variablen zugewiesen oder entfernt werden.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="367" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="371" /> <source>Use of 'functools.lru_cache' or 'functools.cache' on methods can lead to memory leaks. The cache may retain instance references, preventing garbage collection.</source> <translation>Die Verwendung von 'functools.lru_cache' oder 'functools.cache' bei Methoden kann zu Speicherlecks führen. Der Cache kann Instanzreferenzen beibehalten und so die Garbage Collection verhindern.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="373" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="377" /> <source>Found for loop that reassigns the iterable it is iterating with each iterable value.</source> <translation>Gefundene for-Schleife, die die Iterable bei jedem Schleifendurchlauf neu zuordnet.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="378" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="382" /> <source>f-string used as docstring. This will be interpreted by python as a joined string rather than a docstring.</source> <translation>f-String als Docstring verwendet. Dies wird durch Python als ein 'Joined String' anstelle eines Docstring interpretiert.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="383" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="387" /> <source>No arguments passed to 'contextlib.suppress'. No exceptions will be suppressed and therefore this context manager is redundant.</source> <translation>Keine Argumente an 'contextlib.suppress' übergeben. Es werden keine Ausnahmen unterdrückt und deshalb ist dieser Kontextmanager überflüssig.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="388" /> - <source>Function definition does not bind loop variable '{0}'.</source> - <translation>Funktionsdefinition bindet die Schleifenvariable '{0}' nicht.</translation> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="392" /> + <source>Function definition does not bind loop variable '{0}'.</source> + <translation>Funktionsdefinition bindet die Schleifenvariable '{0}' nicht.</translation> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="396" /> <source>{0} is an abstract base class, but none of the methods it defines are abstract. This is not necessarily an error, but you might have forgotten to add the @abstractmethod decorator, potentially in conjunction with @classmethod, @property and/or @staticmethod.</source> <translation>{0} ist eine abstrakte Basisklasse, aber keine ihrer definierten Methoden ist abstrakt. Dies ist nicht unbedingt ein Fehler, könnte aber auf das Fehlen eines @abstractmethod Decorators, ggf. im Zusammenhang mit @classmethod, @property und/oder @staticmethod zurückzuführen sein.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="399" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="403" /> <source>Exception '{0}' has been caught multiple times. Only the first except will be considered and all other except catches can be safely removed.</source> <translation>Die Ausnahme '{0}' wurde mehrfach abgefangen. Nur das erste 'except' wird berücksichtigt und alle anderen 'except' Blöcke können entfernt werden.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="404" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="408" /> <source>Star-arg unpacking after a keyword argument is strongly discouraged, because it only works when the keyword parameter is declared after all parameters supplied by the unpacked sequence, and this change of ordering can surprise and mislead readers.</source> <translation>Von einer Star-arg Auflösung nach einem Schlüsselwortargument wird dringend abgeraten, da sie nur funktioniert, wenn der Schlüsselwortparameter nach allen Parameters der aufzulösenden Sequenz deklariert wird, und diese Änderung der Reihenfolge kann einen Leser überraschen und in die Irre führen.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="411" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="415" /> <source>{0} is an empty method in an abstract base class, but has no abstract decorator. Consider adding @abstractmethod.</source> <translation>{0} ist eine leere Methode in einer abstrakten Klasse, hat aber keinen abstrakt Dekorator. Es sollte @abstractmethod hinzugefügt werden.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="416" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="420" /> <source>No explicit stacklevel argument found. The warn method from the warnings module uses a stacklevel of 1 by default. This will only show a stack trace for the line on which the warn method is called. It is therefore recommended to use a stacklevel of 2 or greater to provide more information to the user.</source> <translation>Es wurde kein explizites 'stacklevel' Argument gefunden. Die 'warn' Methode des 'warnings' Moduls verwendet einen Stacklevel von 1. Dies zeigt nur einen Stacktrace für die Zeile, in der die 'warn' Methode aufgerufen wurde. Es wird daher empfohlen, einen Stacklevel von 2 oder größer zu verwenden, um dem Nutzer mehr Informationen zu präsentieren.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="424" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="428" /> <source>Using 'except ():' with an empty tuple does not handle/catch anything. Add exceptions to handle.</source> <translation>Die Verwendung von 'except ():' mit eine leeren Tuple fangt nichts ab. Füge zu behandelnde Exceptions hinzu.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="429" /> - <source>Except handlers should only be names of exception classes</source> - <translation>Except Handler sollten nur Namen von Exception Klassen sein</translation> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="433" /> + <source>Except handlers should only be names of exception classes</source> + <translation>Except Handler sollten nur Namen von Exception Klassen sein</translation> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="437" /> <source>Using the generator returned from 'itertools.groupby()' more than once will do nothing on the second usage. Save the result to a list, if the result is needed multiple times.</source> <translation>Die mehrfache Verwendung des von 'itertools.groupby()' zurückgegebenen Iterators hat bei der zweiten Verwendung keine Wirkung. Sichere das Ergebnis in einer Liste, falls es mehrfach verwendet werden muss.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="439" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="443" /> <source>Possible unintentional type annotation (using ':'). Did you mean to assign (using '=')?</source> <translation>Mögliche ungewollte Typannotation (mit ':'). Sollte dies eine Zuweisung (mit '=') sein?</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="444" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="448" /> <source>Set should not contain duplicate item '{0}'. Duplicate items will be replaced with a single item at runtime.</source> <translation>Set sollte kein doppeltes Element '{0}' enthalten. Doppelte Einträge werden zur Laufzeit durch einen einzelnen Eintrag ersetzt.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="449" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="453" /> <source>re.{0} should get '{1}' and 'flags' passed as keyword arguments to avoid confusion due to unintuitive argument positions.</source> <translation>re.{0} sollte '{1}' und 'flags' als Schlüsselwortargumente übergeben bekommen, um Verwechslung durch nicht intuitive Argumentpositionen zu vermeiden.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="454" /> - <source>Static key in dict comprehension: {0!r}.</source> - <translation>Statischer Schlüssel in Dict Comprhension: {0!r}.</translation> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="458" /> - <source>Don't except 'BaseException' unless you plan to re-raise it.</source> - <translation>Fange keine 'BaseException ab, es sei denn, sie soll erneut geworfen werden.</translation> + <source>Static key in dict comprehension: {0!r}.</source> + <translation>Statischer Schlüssel in Dict Comprhension: {0!r}.</translation> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="462" /> + <source>Don't except 'BaseException' unless you plan to re-raise it.</source> + <translation>Fange keine 'BaseException ab, es sei denn, sie soll erneut geworfen werden.</translation> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="466" /> <source>Class '__init__' methods must not return or yield and any values.</source> <translation>'__init__' Methoden einer Klasse dürfen keinen Wert zurückgeben oder yielden.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="467" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="471" /> <source>Editing a loop's mutable iterable often leads to unexpected results/bugs.</source> <translation>Die Bearbeitung der veränderbaren Iterablen einer Schleife führt oft zu unerwarteten Ergebnissen/Fehlern.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="472" /> - <source>unncessary f-string</source> - <translation>unnötige f-Zeichenkette</translation> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="476" /> + <source>unncessary f-string</source> + <translation>unnötige f-Zeichenkette</translation> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="480" /> <source>cannot use 'self.__class__' as first argument of 'super()' call</source> <translation>als erstes Argument von 'super()' kann nicht 'self.__class__' verwendet werden</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="481" /> - <source>found {0} formatter</source> - <translation>{0} Format gefunden</translation> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="485" /> - <source>format string does contain unindexed parameters</source> - <translation>Formatstring enthält nicht indizierte Parameter</translation> + <source>found {0} formatter</source> + <translation>{0} Format gefunden</translation> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="489" /> - <source>docstring does contain unindexed parameters</source> - <translation>Dokumentationsstring enthält nicht indizierte Parameter</translation> + <source>format string does contain unindexed parameters</source> + <translation>Formatstring enthält nicht indizierte Parameter</translation> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="493" /> - <source>other string does contain unindexed parameters</source> - <translation>Anderer String enthält nicht indizierte Parameter</translation> + <source>docstring does contain unindexed parameters</source> + <translation>Dokumentationsstring enthält nicht indizierte Parameter</translation> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="497" /> - <source>format call uses too large index ({0})</source> - <translation>Format Aufruf enthält zu großen Index ({0})</translation> + <source>other string does contain unindexed parameters</source> + <translation>Anderer String enthält nicht indizierte Parameter</translation> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="501" /> - <source>format call uses missing keyword ({0})</source> - <translation>Format Aufruf verwendet fehlendes Schlüsselwort ({0})</translation> + <source>format call uses too large index ({0})</source> + <translation>Format Aufruf enthält zu großen Index ({0})</translation> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="505" /> - <source>format call uses keyword arguments but no named entries</source> - <translation>Format Aufruf verwendet Schlüsselwort Argumente, enthält aber keine benannten Einträge</translation> + <source>format call uses missing keyword ({0})</source> + <translation>Format Aufruf verwendet fehlendes Schlüsselwort ({0})</translation> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="509" /> - <source>format call uses variable arguments but no numbered entries</source> - <translation>Format Aufruf verwendet variable argumente, enthält aber keine nummerierten Einträge</translation> + <source>format call uses keyword arguments but no named entries</source> + <translation>Format Aufruf verwendet Schlüsselwort Argumente, enthält aber keine benannten Einträge</translation> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="513" /> - <source>format call uses implicit and explicit indexes together</source> - <translation>Format Aufruf verwendet sowohl implizite als auch explizite Indizes</translation> + <source>format call uses variable arguments but no numbered entries</source> + <translation>Format Aufruf verwendet variable argumente, enthält aber keine nummerierten Einträge</translation> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="517" /> - <source>format call provides unused index ({0})</source> - <translation>Format Aufruf verwendet ungenutzten Index ({0})</translation> + <source>format call uses implicit and explicit indexes together</source> + <translation>Format Aufruf verwendet sowohl implizite als auch explizite Indizes</translation> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="521" /> + <source>format call provides unused index ({0})</source> + <translation>Format Aufruf verwendet ungenutzten Index ({0})</translation> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="525" /> <source>format call provides unused keyword ({0})</source> <translation>Format Aufruf verwendet ungenutztes Schlüsselwort ({0})</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="526" /> - <source>expected these __future__ imports: {0}; but only got: {1}</source> - <translation>erwartete __future__ Imports: {0}; aber nur {1} gefunden</translation> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="530" /> + <source>expected these __future__ imports: {0}; but only got: {1}</source> + <translation>erwartete __future__ Imports: {0}; aber nur {1} gefunden</translation> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="534" /> <source>expected these __future__ imports: {0}; but got none</source> <translation>erwartete __future__ Imports: {0}; jedoch keine gefunden</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="535" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="539" /> <source>gettext import with alias _ found: {0}</source> <translation>gettext Import mit Alias _ entdeckt: {0}</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="540" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="544" /> <source>print statement found</source> <translation>print Statement gefunden</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="545" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="549" /> <source>one element tuple found</source> <translation>Tuple mit einem Element gefunden</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="554" /> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="550" /> - <source>mutable default argument of type {0}</source> - <translation>veränderbares Standardargument des Typs {0}</translation> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="558" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="554" /> + <source>mutable default argument of type {0}</source> + <translation>veränderbares Standardargument des Typs {0}</translation> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="562" /> <source>mutable default argument of function call '{0}'</source> <translation>Funktionsaufruf '{0}' als veränderbares Standardargument</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="563" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="567" /> <source>None should not be added at any return if function has no return value except None</source> <translation>None sollte nicht zu einem return hinzugefügt werden, wenn die Funktion keinen Rückgabewert außer None besitzt</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="568" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="572" /> <source>an explicit value at every return should be added if function has a return value except None</source> <translation>ein expliziter Wert sollte jedem return hinzugefügt werden, wenn eine Funktion einen Rückgabewert außer None besitzt</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="573" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="577" /> <source>an explicit return at the end of the function should be added if it has a return value except None</source> <translation>ein expliziter Rückgabewert sollte am Ende einer Funktion hinzugefügt werden, wenn sie einen Rückgabewert außer None besitzt</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="578" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="582" /> <source>a value should not be assigned to a variable if it will be used as a return value only</source> <translation>einer Variable sollte kein Wert zugewiesen werden, wenn sie nur als Rückgabewert verwendet wird</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="584" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="588" /> <source>prefer implied line continuation inside parentheses, brackets and braces as opposed to a backslash</source> <translation>ziehe eine implizite Zeilenfortsetzung innerhalb von Klammern gegenüber einem Backslash (\) vor</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="590" /> - <source>implicitly concatenated string or bytes literals on one line</source> - <translation>implizit verkettete String- oder Bytes-Literale in einer Zeile</translation> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="594" /> - <source>implicitly concatenated string or bytes literals over continuation line</source> - <translation>implizit verkettete String- oder Byte-Literale über die Fortsetzungszeile</translation> + <source>implicitly concatenated string or bytes literals on one line</source> + <translation>implizit verkettete String- oder Bytes-Literale in einer Zeile</translation> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="598" /> + <source>implicitly concatenated string or bytes literals over continuation line</source> + <translation>implizit verkettete String- oder Byte-Literale über die Fortsetzungszeile</translation> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="602" /> <source>explicitly concatenated string or bytes should be implicitly concatenated</source> <translation>explizit verkettete Zeichenfolgen oder Bytes sollten implizit verkettet werden</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="603" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="607" /> <source>commented code lines should be removed</source> <translation>auskommentierte Codezeilen sollten entfernt werden</translation> </message> @@ -86635,15 +86640,15 @@ <context> <name>Tabview</name> <message> - <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="1132" /> - <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="1067" /> + <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="1134" /> + <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="1069" /> <source>Untitled {0}</source> <translation>Unbenannt {0}</translation> </message> <message> - <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="1532" /> - <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="1143" /> - <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="1088" /> + <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="1534" /> + <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="1145" /> + <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="1090" /> <source>{0} (ro)</source> <translation>{0} (ro)</translation> </message> @@ -91388,7 +91393,7 @@ <translation><b>Sitzung speichern...</b><p>Dies speichert die aktuelle Sitzung in eine Datei. Es wird ein Dialog zur Eingabe des Dateinamens geöffnet.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7844" /> + <location filename="../UI/UserInterface.py" line="7860" /> <location filename="../UI/UserInterface.py" line="1946" /> <location filename="../UI/UserInterface.py" line="1939" /> <source>Load session</source> @@ -92479,7 +92484,7 @@ <translation><b>Symbol-Editor</b><p>Startet den eric Symbol-Editor zum Editieren einfacher Icons.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6593" /> + <location filename="../UI/UserInterface.py" line="6609" /> <location filename="../UI/UserInterface.py" line="3163" /> <source>Snapshot</source> <translation>Bildschirmfoto</translation> @@ -92716,8 +92721,8 @@ <translation><b>Tastaturkurzbefehle</b><p>Setze die Tastaturkurzbefehle der Applikation mit den bevorzugten Werten.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7552" /> - <location filename="../UI/UserInterface.py" line="7533" /> + <location filename="../UI/UserInterface.py" line="7568" /> + <location filename="../UI/UserInterface.py" line="7549" /> <location filename="../UI/UserInterface.py" line="3393" /> <source>Export Keyboard Shortcuts</source> <translation>Tastaturkurzbefehle exportieren</translation> @@ -92738,7 +92743,7 @@ <translation><b>Tastaturkurzbefehle exportieren</b><p>Exportiert die Tastaturkurzbefehle der Applikation.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7571" /> + <location filename="../UI/UserInterface.py" line="7587" /> <location filename="../UI/UserInterface.py" line="3412" /> <source>Import Keyboard Shortcuts</source> <translation>Tastaturkurzbefehle importieren</translation> @@ -93147,7 +93152,7 @@ <translation>Einstellungen</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6321" /> + <location filename="../UI/UserInterface.py" line="6337" /> <location filename="../UI/UserInterface.py" line="4185" /> <location filename="../UI/UserInterface.py" line="4170" /> <source>Help</source> @@ -93331,315 +93336,315 @@ <translation>Alle &ausblenden</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6458" /> - <location filename="../UI/UserInterface.py" line="6447" /> - <location filename="../UI/UserInterface.py" line="6399" /> - <location filename="../UI/UserInterface.py" line="6389" /> - <location filename="../UI/UserInterface.py" line="6210" /> - <location filename="../UI/UserInterface.py" line="6200" /> - <location filename="../UI/UserInterface.py" line="6142" /> - <location filename="../UI/UserInterface.py" line="6132" /> + <location filename="../UI/UserInterface.py" line="6474" /> + <location filename="../UI/UserInterface.py" line="6463" /> + <location filename="../UI/UserInterface.py" line="6415" /> + <location filename="../UI/UserInterface.py" line="6405" /> + <location filename="../UI/UserInterface.py" line="6228" /> + <location filename="../UI/UserInterface.py" line="6218" /> + <location filename="../UI/UserInterface.py" line="6160" /> + <location filename="../UI/UserInterface.py" line="6150" /> <source>Problem</source> <translation>Problem</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6459" /> - <location filename="../UI/UserInterface.py" line="6448" /> - <location filename="../UI/UserInterface.py" line="6400" /> - <location filename="../UI/UserInterface.py" line="6390" /> - <location filename="../UI/UserInterface.py" line="6211" /> - <location filename="../UI/UserInterface.py" line="6201" /> - <location filename="../UI/UserInterface.py" line="6143" /> - <location filename="../UI/UserInterface.py" line="6133" /> + <location filename="../UI/UserInterface.py" line="6475" /> + <location filename="../UI/UserInterface.py" line="6464" /> + <location filename="../UI/UserInterface.py" line="6416" /> + <location filename="../UI/UserInterface.py" line="6406" /> + <location filename="../UI/UserInterface.py" line="6229" /> + <location filename="../UI/UserInterface.py" line="6219" /> + <location filename="../UI/UserInterface.py" line="6161" /> + <location filename="../UI/UserInterface.py" line="6151" /> <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="6702" /> - <location filename="../UI/UserInterface.py" line="6613" /> - <location filename="../UI/UserInterface.py" line="6494" /> - <location filename="../UI/UserInterface.py" line="6471" /> - <location filename="../UI/UserInterface.py" line="6412" /> - <location filename="../UI/UserInterface.py" line="6359" /> - <location filename="../UI/UserInterface.py" line="6337" /> - <location filename="../UI/UserInterface.py" line="6286" /> - <location filename="../UI/UserInterface.py" line="6277" /> - <location filename="../UI/UserInterface.py" line="6242" /> - <location filename="../UI/UserInterface.py" line="6233" /> - <location filename="../UI/UserInterface.py" line="6174" /> - <location filename="../UI/UserInterface.py" line="6165" /> + <location filename="../UI/UserInterface.py" line="6718" /> + <location filename="../UI/UserInterface.py" line="6629" /> + <location filename="../UI/UserInterface.py" line="6510" /> + <location filename="../UI/UserInterface.py" line="6487" /> + <location filename="../UI/UserInterface.py" line="6428" /> + <location filename="../UI/UserInterface.py" line="6375" /> + <location filename="../UI/UserInterface.py" line="6353" /> + <location filename="../UI/UserInterface.py" line="6304" /> + <location filename="../UI/UserInterface.py" line="6295" /> + <location filename="../UI/UserInterface.py" line="6260" /> + <location filename="../UI/UserInterface.py" line="6251" /> + <location filename="../UI/UserInterface.py" line="6192" /> + <location filename="../UI/UserInterface.py" line="6183" /> <source>Process Generation Error</source> <translation>Fehler beim Prozessstart</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6166" /> + <location filename="../UI/UserInterface.py" line="6184" /> <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="6175" /> + <location filename="../UI/UserInterface.py" line="6193" /> <source><p>Could not find the Qt-Designer executable.<br>Ensure that it is installed and optionally configured on the Qt configuration page.</p></source> <translation><p>Das Qt-Designer Programm konnte nicht gefunden werden.<br>Stelle sicher, dass es installiert und optional auf der Qt Konfigurationsseite konfiguriert ist.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6234" /> + <location filename="../UI/UserInterface.py" line="6252" /> <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="6243" /> + <location filename="../UI/UserInterface.py" line="6261" /> <source><p>Could not find the Qt-Linguist executable.<br>Ensure that it is installed and optionally configured on the Qt configuration page.</p></source> <translation><p>Das Qt-Linguist Programm konnte nicht gefunden werden.<br>Stelle sicher, dass es installiert und optional auf der Qt Konfigurationsseite konfiguriert ist.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6278" /> + <location filename="../UI/UserInterface.py" line="6296" /> <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="6287" /> + <location filename="../UI/UserInterface.py" line="6305" /> <source><p>Could not find the Qt-Assistant executable.<br>Ensure that it is installed and optionally configured on the Qt configuration page.</p></source> <translation><p>Das Qt-Assistant Programm konnte nicht gefunden werden.<br>Stelle sicher, dass es installiert und optional auf der Qt Konfigurationsseite konfiguriert ist.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6322" /> - <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 Einstellungsdialog, um einen festzulegen.</translation> - </message> - <message> <location filename="../UI/UserInterface.py" line="6338" /> + <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 Einstellungsdialog, um einen festzulegen.</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="6354" /> <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="6360" /> + <location filename="../UI/UserInterface.py" line="6376" /> <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="6413" /> + <location filename="../UI/UserInterface.py" line="6429" /> <source><p>Could not start UI Previewer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>Die UI-Vorschau 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="6472" /> + <location filename="../UI/UserInterface.py" line="6488" /> <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="6495" /> + <location filename="../UI/UserInterface.py" line="6511" /> <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="6594" /> + <location filename="../UI/UserInterface.py" line="6610" /> <source><p>The snapshot utility is not available for Wayland desktop sessions.</p></source> <translation><p>Die Bildschirmfotofunktion steht für Wayland basierte Desktop-Umgebungen nicht zur Verfügung.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6614" /> + <location filename="../UI/UserInterface.py" line="6630" /> <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="6647" /> - <location filename="../UI/UserInterface.py" line="6637" /> + <location filename="../UI/UserInterface.py" line="6663" /> + <location filename="../UI/UserInterface.py" line="6653" /> <source>External Tools</source> <translation>Externe Werkzeuge</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6638" /> + <location filename="../UI/UserInterface.py" line="6654" /> <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="6648" /> + <location filename="../UI/UserInterface.py" line="6664" /> <source>No toolgroup entry '{0}' found.</source> <translation>Kein Werkzeuggruppeneintrag „{0}“ gefunden.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6685" /> + <location filename="../UI/UserInterface.py" line="6701" /> <source>Starting process '{0} {1}'. </source> <translation>Starte Prozess „{0} {1}“. </translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6703" /> + <location filename="../UI/UserInterface.py" line="6719" /> <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 Werkzeugeeintrag <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="6782" /> + <location filename="../UI/UserInterface.py" line="6798" /> <source>Process '{0}' has exited. </source> <translation>Prozess „{0}“ ist beendet. </translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7069" /> - <location filename="../UI/UserInterface.py" line="7007" /> - <location filename="../UI/UserInterface.py" line="6963" /> - <location filename="../UI/UserInterface.py" line="6889" /> - <location filename="../UI/UserInterface.py" line="6825" /> + <location filename="../UI/UserInterface.py" line="7085" /> + <location filename="../UI/UserInterface.py" line="7023" /> + <location filename="../UI/UserInterface.py" line="6979" /> + <location filename="../UI/UserInterface.py" line="6905" /> + <location filename="../UI/UserInterface.py" line="6841" /> <source>Documentation Missing</source> <translation>Dokumentation fehlt</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7070" /> - <location filename="../UI/UserInterface.py" line="7008" /> - <location filename="../UI/UserInterface.py" line="6964" /> - <location filename="../UI/UserInterface.py" line="6890" /> - <location filename="../UI/UserInterface.py" line="6826" /> + <location filename="../UI/UserInterface.py" line="7086" /> + <location filename="../UI/UserInterface.py" line="7024" /> + <location filename="../UI/UserInterface.py" line="6980" /> + <location filename="../UI/UserInterface.py" line="6906" /> + <location filename="../UI/UserInterface.py" line="6842" /> <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="7051" /> - <location filename="../UI/UserInterface.py" line="6933" /> + <location filename="../UI/UserInterface.py" line="7067" /> + <location filename="../UI/UserInterface.py" line="6949" /> <source>Documentation</source> <translation>Dokumentation</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6934" /> + <location filename="../UI/UserInterface.py" line="6950" /> <source><p>The PyQt{0} documentation starting point has not been configured.</p></source> <translation><p>Der PyQt{0}-Dokumentations-Startpunkt ist nicht konfiguriert.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7052" /> + <location filename="../UI/UserInterface.py" line="7068" /> <source><p>The PySide{0} documentation starting point has not been configured.</p></source> <translation><p>Der PySide{0}-Dokumentations-Startpunkt ist nicht konfiguriert.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7231" /> - <location filename="../UI/UserInterface.py" line="7167" /> + <location filename="../UI/UserInterface.py" line="7247" /> + <location filename="../UI/UserInterface.py" line="7183" /> <source>Start Web Browser</source> <translation>Web Browser starten</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7168" /> + <location filename="../UI/UserInterface.py" line="7184" /> <source>The eric web browser could not be started.</source> <translation>Der eric Web Browser konnte nicht gestartet werden.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7232" /> + <location filename="../UI/UserInterface.py" line="7248" /> <source><p>The eric web browser is not started.</p><p>Reason: {0}</p></source> <translation><p>Der eric Web Browser ist nicht gestartet.</p><p>Ursache: {0}</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7278" /> + <location filename="../UI/UserInterface.py" line="7294" /> <source>Open Browser</source> <translation>Browser starten</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7278" /> + <location filename="../UI/UserInterface.py" line="7294" /> <source>Could not start a web browser</source> <translation>Der System Web Browser konnte nicht gestartet werden</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7573" /> - <location filename="../UI/UserInterface.py" line="7535" /> + <location filename="../UI/UserInterface.py" line="7589" /> + <location filename="../UI/UserInterface.py" line="7551" /> <source>Keyboard Shortcuts File (*.ekj)</source> <translation>Tastaturkurzbefehlsdatei (*.ekj)</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7553" /> + <location filename="../UI/UserInterface.py" line="7569" /> <source><p>The keyboard shortcuts file <b>{0}</b> exists already. Overwrite it?</p></source> <translation><p>Die Tastaturkurzbefehlsdatei <b>{0}</b> existiert bereits. Überschreiben?</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7757" /> + <location filename="../UI/UserInterface.py" line="7773" /> <source>Load crash session...</source> <translation>Absturzsicherung laden...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7760" /> + <location filename="../UI/UserInterface.py" line="7776" /> <source>Clean crash sessions...</source> <translation>Absturzsicherungen bereinigen...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7797" /> + <location filename="../UI/UserInterface.py" line="7813" /> <source>Read Session</source> <translation>Sitzung lesen</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7798" /> + <location filename="../UI/UserInterface.py" line="7814" /> <source><p>The session file <b>{0}</b> could not be read.</p></source> <translation><p>Die Sitzungsdatei <b>{0}</b> konnte nicht gelesen werden.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7821" /> + <location filename="../UI/UserInterface.py" line="7837" /> <source>Save Session</source> <translation>Sitzung speichern</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7846" /> - <location filename="../UI/UserInterface.py" line="7823" /> + <location filename="../UI/UserInterface.py" line="7862" /> + <location filename="../UI/UserInterface.py" line="7839" /> <source>eric Session Files (*.esj)</source> <translation>eric Sitzungsdateien (*.esj)</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7913" /> + <location filename="../UI/UserInterface.py" line="7929" /> <source>Found Crash Sessions</source> <translation>Absturzsicherungen gefunden</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7914" /> + <location filename="../UI/UserInterface.py" line="7930" /> <source>These crash session files were found. Select the one to open. Select 'Cancel' to not open a crash session.</source> <translation>Diese Absturzsicherungen wurden gefunden. Wähle die zu öffnende aus. Wähle 'Abbrechen', wenn keine geladen werden soll.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7987" /> + <location filename="../UI/UserInterface.py" line="8003" /> <source>Clean stale crash sessions</source> <translation>Veraltete Absturzsicherungen bereinigen</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7988" /> + <location filename="../UI/UserInterface.py" line="8004" /> <source>Do you really want to delete these stale crash session files?</source> <translation>Sollen wirklich diese veralteten Absturzsicherungen gelöscht werden?</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="8364" /> + <location filename="../UI/UserInterface.py" line="8380" /> <source>Drop Error</source> <translation>Drop-Fehler</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="8365" /> + <location filename="../UI/UserInterface.py" line="8381" /> <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="8551" /> + <location filename="../UI/UserInterface.py" line="8567" /> <source>Upgrade available</source> <translation>Aktualisierung verfügbar</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="8552" /> + <location filename="../UI/UserInterface.py" line="8568" /> <source><p>A newer version of the <b>eric-ide</b> package is available at <a href="{0}/eric-ide/">PyPI</a>.</p><p>Installed: {1}<br/>Available: <b>{2}</b></p><p>Shall <b>eric-ide</b> be upgraded?</p></source> <translation><p>Eine neuere Version des <b>eric-ide</b> Paketes ist auf <a href="{0}/eric-ide/">PyPI</a> verfügbar.</p><p>Installiert: {1}<br/>Verfügbar: <b>{2}</b></p><p>Soll <b>eric-ide</b> aktualisiert werden?</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="8597" /> + <location filename="../UI/UserInterface.py" line="8613" /> <source>First time usage</source> <translation>Erstmalige Nutzung</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="8598" /> + <location filename="../UI/UserInterface.py" line="8614" /> <source>eric has not been configured yet. The configuration dialog will be started.</source> <translation>eric wurde noch nicht konfiguriert. Der Konfigurationsdialog wird nun gestartet.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="8620" /> + <location filename="../UI/UserInterface.py" line="8636" /> <source>Select Workspace Directory</source> <translation>Wähle Arbeitsverzeichnis</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="8788" /> + <location filename="../UI/UserInterface.py" line="8804" /> <source>Unsaved Data Detected</source> <translation>Nicht gespeicherte Daten gefunden</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="8789" /> + <location filename="../UI/UserInterface.py" line="8805" /> <source>Some editors contain unsaved data. Shall these be saved?</source> <translation>Einige Editoren haben nicht gespeicherte Inhalte. Sollen diese gespeichert werden?</translation> </message> @@ -95120,7 +95125,7 @@ <translation><b>Datei drucken</b><p>Dies druckt den Inhalt des aktuellen Editorfensters.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="775" /> + <location filename="../QScintilla/MiniEditor.py" line="776" /> <location filename="../ViewManager/ViewManager.py" line="913" /> <location filename="../ViewManager/ViewManager.py" line="911" /> <source>Print Preview</source> @@ -95897,8 +95902,8 @@ <translation><b>Docstring erzeugen</b><p>Erzeuge eine Docstring für die aktuelle Funktion/Methode falls die Einfügemarke auf der Startzeile der Funktionsdefinition oder der Zeile nach deren Ende steht. Der Docstring wird an der korrekten Stelle eingefügt und die Einfügemarke wird an das Ende der Beschreibungszeile gesetzt.</p></translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="926" /> <location filename="../QScintilla/MiniEditor.py" line="925" /> - <location filename="../QScintilla/MiniEditor.py" line="924" /> <location filename="../QScintilla/ShellWindow.py" line="575" /> <location filename="../QScintilla/ShellWindow.py" line="574" /> <location filename="../ViewManager/ViewManager.py" line="1858" /> @@ -95907,22 +95912,22 @@ <translation>Ein Zeichen nach links</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="926" /> + <location filename="../QScintilla/MiniEditor.py" line="927" /> <location filename="../QScintilla/ShellWindow.py" line="576" /> <location filename="../ViewManager/ViewManager.py" line="1859" /> <source>Left</source> <translation>Left</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="934" /> + <location filename="../QScintilla/MiniEditor.py" line="935" /> <location filename="../QScintilla/ShellWindow.py" line="584" /> <location filename="../ViewManager/ViewManager.py" line="1867" /> <source>Meta+B</source> <translation>Meta+B</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="942" /> <location filename="../QScintilla/MiniEditor.py" line="941" /> - <location filename="../QScintilla/MiniEditor.py" line="940" /> <location filename="../QScintilla/ShellWindow.py" line="591" /> <location filename="../QScintilla/ShellWindow.py" line="590" /> <location filename="../ViewManager/ViewManager.py" line="1874" /> @@ -95931,22 +95936,22 @@ <translation>Ein Zeichen nach rechts</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="942" /> + <location filename="../QScintilla/MiniEditor.py" line="943" /> <location filename="../QScintilla/ShellWindow.py" line="592" /> <location filename="../ViewManager/ViewManager.py" line="1875" /> <source>Right</source> <translation>Right</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="949" /> + <location filename="../QScintilla/MiniEditor.py" line="950" /> <location filename="../QScintilla/ShellWindow.py" line="599" /> <location filename="../ViewManager/ViewManager.py" line="1882" /> <source>Meta+F</source> <translation>Meta+F</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="958" /> <location filename="../QScintilla/MiniEditor.py" line="957" /> - <location filename="../QScintilla/MiniEditor.py" line="956" /> <location filename="../QScintilla/ShellWindow.py" line="683" /> <location filename="../QScintilla/ShellWindow.py" line="682" /> <location filename="../ViewManager/ViewManager.py" line="1890" /> @@ -95955,22 +95960,22 @@ <translation>Eine Zeile nach oben</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="958" /> + <location filename="../QScintilla/MiniEditor.py" line="959" /> <location filename="../QScintilla/ShellWindow.py" line="684" /> <location filename="../ViewManager/ViewManager.py" line="1891" /> <source>Up</source> <translation>Up</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="965" /> + <location filename="../QScintilla/MiniEditor.py" line="966" /> <location filename="../QScintilla/ShellWindow.py" line="691" /> <location filename="../ViewManager/ViewManager.py" line="1898" /> <source>Meta+P</source> <translation>Meta+P</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="974" /> <location filename="../QScintilla/MiniEditor.py" line="973" /> - <location filename="../QScintilla/MiniEditor.py" line="972" /> <location filename="../QScintilla/ShellWindow.py" line="699" /> <location filename="../QScintilla/ShellWindow.py" line="698" /> <location filename="../ViewManager/ViewManager.py" line="1906" /> @@ -95979,30 +95984,30 @@ <translation>Eine Zeile nach unten</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="974" /> + <location filename="../QScintilla/MiniEditor.py" line="975" /> <location filename="../QScintilla/ShellWindow.py" line="700" /> <location filename="../ViewManager/ViewManager.py" line="1907" /> <source>Down</source> <translation>Down</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="981" /> + <location filename="../QScintilla/MiniEditor.py" line="982" /> <location filename="../QScintilla/ShellWindow.py" line="707" /> <location filename="../ViewManager/ViewManager.py" line="1914" /> <source>Meta+N</source> <translation>Meta+N</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="990" /> <location filename="../QScintilla/MiniEditor.py" line="989" /> - <location filename="../QScintilla/MiniEditor.py" line="988" /> <location filename="../ViewManager/ViewManager.py" line="1922" /> <location filename="../ViewManager/ViewManager.py" line="1921" /> <source>Move left one word part</source> <translation>Ein Wortteil nach links</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1029" /> - <location filename="../QScintilla/MiniEditor.py" line="997" /> + <location filename="../QScintilla/MiniEditor.py" line="1030" /> + <location filename="../QScintilla/MiniEditor.py" line="998" /> <location filename="../QScintilla/ShellWindow.py" line="615" /> <location filename="../ViewManager/ViewManager.py" line="1962" /> <location filename="../ViewManager/ViewManager.py" line="1930" /> @@ -96010,25 +96015,25 @@ <translation>Alt+Left</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1006" /> <location filename="../QScintilla/MiniEditor.py" line="1005" /> - <location filename="../QScintilla/MiniEditor.py" line="1004" /> <location filename="../ViewManager/ViewManager.py" line="1938" /> <location filename="../ViewManager/ViewManager.py" line="1937" /> <source>Move right one word part</source> <translation>Ein Wortteil nach rechts</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2159" /> - <location filename="../QScintilla/MiniEditor.py" line="1049" /> - <location filename="../QScintilla/MiniEditor.py" line="1013" /> + <location filename="../QScintilla/MiniEditor.py" line="2160" /> + <location filename="../QScintilla/MiniEditor.py" line="1050" /> + <location filename="../QScintilla/MiniEditor.py" line="1014" /> <location filename="../ViewManager/ViewManager.py" line="3071" /> <location filename="../ViewManager/ViewManager.py" line="1946" /> <source>Alt+Right</source> <translation>Alt+Right</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1022" /> <location filename="../QScintilla/MiniEditor.py" line="1021" /> - <location filename="../QScintilla/MiniEditor.py" line="1020" /> <location filename="../QScintilla/ShellWindow.py" line="607" /> <location filename="../QScintilla/ShellWindow.py" line="606" /> <location filename="../ViewManager/ViewManager.py" line="1954" /> @@ -96037,8 +96042,8 @@ <translation>Ein Wort nach links</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1089" /> - <location filename="../QScintilla/MiniEditor.py" line="1033" /> + <location filename="../QScintilla/MiniEditor.py" line="1090" /> + <location filename="../QScintilla/MiniEditor.py" line="1034" /> <location filename="../QScintilla/ShellWindow.py" line="619" /> <location filename="../ViewManager/ViewManager.py" line="2018" /> <location filename="../ViewManager/ViewManager.py" line="1966" /> @@ -96046,8 +96051,8 @@ <translation>Ctrl+Left</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1042" /> <location filename="../QScintilla/MiniEditor.py" line="1041" /> - <location filename="../QScintilla/MiniEditor.py" line="1040" /> <location filename="../QScintilla/ShellWindow.py" line="627" /> <location filename="../QScintilla/ShellWindow.py" line="626" /> <location filename="../ViewManager/ViewManager.py" line="1974" /> @@ -96056,8 +96061,8 @@ <translation>Ein Wort nach rechts</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1843" /> - <location filename="../QScintilla/MiniEditor.py" line="1053" /> + <location filename="../QScintilla/MiniEditor.py" line="1844" /> + <location filename="../QScintilla/MiniEditor.py" line="1054" /> <location filename="../QScintilla/ShellWindow.py" line="635" /> <location filename="../ViewManager/ViewManager.py" line="2755" /> <location filename="../ViewManager/ViewManager.py" line="1982" /> @@ -96065,8 +96070,8 @@ <translation>Ctrl+Right</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1063" /> - <location filename="../QScintilla/MiniEditor.py" line="1060" /> + <location filename="../QScintilla/MiniEditor.py" line="1064" /> + <location filename="../QScintilla/MiniEditor.py" line="1061" /> <location filename="../QScintilla/ShellWindow.py" line="645" /> <location filename="../QScintilla/ShellWindow.py" line="642" /> <location filename="../ViewManager/ViewManager.py" line="1992" /> @@ -96075,8 +96080,8 @@ <translation>Zum ersten sichtbaren Zeichen der Dokumentzeile springen</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2104" /> - <location filename="../QScintilla/MiniEditor.py" line="1073" /> + <location filename="../QScintilla/MiniEditor.py" line="2105" /> + <location filename="../QScintilla/MiniEditor.py" line="1074" /> <location filename="../QScintilla/ShellWindow.py" line="655" /> <location filename="../ViewManager/ViewManager.py" line="3016" /> <location filename="../ViewManager/ViewManager.py" line="2002" /> @@ -96084,22 +96089,22 @@ <translation>Home</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1082" /> <location filename="../QScintilla/MiniEditor.py" line="1081" /> - <location filename="../QScintilla/MiniEditor.py" line="1080" /> <location filename="../ViewManager/ViewManager.py" line="2010" /> <location filename="../ViewManager/ViewManager.py" line="2009" /> <source>Move to start of display line</source> <translation>Zum Beginn der Anzeigezeile springen</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1093" /> + <location filename="../QScintilla/MiniEditor.py" line="1094" /> <location filename="../ViewManager/ViewManager.py" line="2022" /> <source>Alt+Home</source> <translation>Alt+Home</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1102" /> <location filename="../QScintilla/MiniEditor.py" line="1101" /> - <location filename="../QScintilla/MiniEditor.py" line="1100" /> <location filename="../QScintilla/ShellWindow.py" line="663" /> <location filename="../QScintilla/ShellWindow.py" line="662" /> <location filename="../ViewManager/ViewManager.py" line="2030" /> @@ -96108,15 +96113,15 @@ <translation>Zum Ende der Dokumentenzeile springen</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1109" /> + <location filename="../QScintilla/MiniEditor.py" line="1110" /> <location filename="../QScintilla/ShellWindow.py" line="671" /> <location filename="../ViewManager/ViewManager.py" line="2038" /> <source>Meta+E</source> <translation>Meta+E</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2121" /> - <location filename="../QScintilla/MiniEditor.py" line="1113" /> + <location filename="../QScintilla/MiniEditor.py" line="2122" /> + <location filename="../QScintilla/MiniEditor.py" line="1114" /> <location filename="../QScintilla/ShellWindow.py" line="675" /> <location filename="../ViewManager/ViewManager.py" line="3033" /> <location filename="../ViewManager/ViewManager.py" line="2042" /> @@ -96124,16 +96129,16 @@ <translation>End</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1122" /> <location filename="../QScintilla/MiniEditor.py" line="1121" /> - <location filename="../QScintilla/MiniEditor.py" line="1120" /> <location filename="../ViewManager/ViewManager.py" line="2050" /> <location filename="../ViewManager/ViewManager.py" line="2049" /> <source>Scroll view down one line</source> <translation>Eine Zeile nach unten rollen</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1225" /> - <location filename="../QScintilla/MiniEditor.py" line="1122" /> + <location filename="../QScintilla/MiniEditor.py" line="1226" /> + <location filename="../QScintilla/MiniEditor.py" line="1123" /> <location filename="../QScintilla/ShellWindow.py" line="716" /> <location filename="../ViewManager/ViewManager.py" line="2154" /> <location filename="../ViewManager/ViewManager.py" line="2051" /> @@ -96141,16 +96146,16 @@ <translation>Ctrl+Down</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1134" /> <location filename="../QScintilla/MiniEditor.py" line="1133" /> - <location filename="../QScintilla/MiniEditor.py" line="1132" /> <location filename="../ViewManager/ViewManager.py" line="2062" /> <location filename="../ViewManager/ViewManager.py" line="2061" /> <source>Scroll view up one line</source> <translation>Eine Zeile nach oben rollen</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1205" /> - <location filename="../QScintilla/MiniEditor.py" line="1134" /> + <location filename="../QScintilla/MiniEditor.py" line="1206" /> + <location filename="../QScintilla/MiniEditor.py" line="1135" /> <location filename="../QScintilla/ShellWindow.py" line="728" /> <location filename="../ViewManager/ViewManager.py" line="2134" /> <location filename="../ViewManager/ViewManager.py" line="2063" /> @@ -96158,36 +96163,36 @@ <translation>Ctrl+Up</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1146" /> <location filename="../QScintilla/MiniEditor.py" line="1145" /> - <location filename="../QScintilla/MiniEditor.py" line="1144" /> <location filename="../ViewManager/ViewManager.py" line="2074" /> <location filename="../ViewManager/ViewManager.py" line="2073" /> <source>Move up one paragraph</source> <translation>Einen Absatz nach oben</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1146" /> + <location filename="../QScintilla/MiniEditor.py" line="1147" /> <location filename="../ViewManager/ViewManager.py" line="2075" /> <source>Alt+Up</source> <translation>Alt+Up</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1158" /> <location filename="../QScintilla/MiniEditor.py" line="1157" /> - <location filename="../QScintilla/MiniEditor.py" line="1156" /> <location filename="../ViewManager/ViewManager.py" line="2086" /> <location filename="../ViewManager/ViewManager.py" line="2085" /> <source>Move down one paragraph</source> <translation>Einen Absatz nach unten</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1158" /> + <location filename="../QScintilla/MiniEditor.py" line="1159" /> <location filename="../ViewManager/ViewManager.py" line="2087" /> <source>Alt+Down</source> <translation>Alt+Down</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1170" /> <location filename="../QScintilla/MiniEditor.py" line="1169" /> - <location filename="../QScintilla/MiniEditor.py" line="1168" /> <location filename="../QScintilla/ShellWindow.py" line="739" /> <location filename="../QScintilla/ShellWindow.py" line="738" /> <location filename="../ViewManager/ViewManager.py" line="2098" /> @@ -96196,15 +96201,15 @@ <translation>Eine Seite hoch</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1170" /> + <location filename="../QScintilla/MiniEditor.py" line="1171" /> <location filename="../QScintilla/ShellWindow.py" line="740" /> <location filename="../ViewManager/ViewManager.py" line="2099" /> <source>PgUp</source> <translation>PgUp</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1182" /> <location filename="../QScintilla/MiniEditor.py" line="1181" /> - <location filename="../QScintilla/MiniEditor.py" line="1180" /> <location filename="../QScintilla/ShellWindow.py" line="751" /> <location filename="../QScintilla/ShellWindow.py" line="750" /> <location filename="../ViewManager/ViewManager.py" line="2110" /> @@ -96213,50 +96218,50 @@ <translation>Eine Seite nach unten</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1182" /> + <location filename="../QScintilla/MiniEditor.py" line="1183" /> <location filename="../QScintilla/ShellWindow.py" line="752" /> <location filename="../ViewManager/ViewManager.py" line="2111" /> <source>PgDown</source> <translation>PgDown</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1189" /> + <location filename="../QScintilla/MiniEditor.py" line="1190" /> <location filename="../QScintilla/ShellWindow.py" line="759" /> <location filename="../ViewManager/ViewManager.py" line="2118" /> <source>Meta+V</source> <translation>Meta+V</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1198" /> <location filename="../QScintilla/MiniEditor.py" line="1197" /> - <location filename="../QScintilla/MiniEditor.py" line="1196" /> <location filename="../ViewManager/ViewManager.py" line="2126" /> <location filename="../ViewManager/ViewManager.py" line="2125" /> <source>Move to start of document</source> <translation>Zum Dokumentenanfang springen</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1209" /> + <location filename="../QScintilla/MiniEditor.py" line="1210" /> <location filename="../ViewManager/ViewManager.py" line="2138" /> <source>Ctrl+Home</source> <translation>Ctrl+Home</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1218" /> <location filename="../QScintilla/MiniEditor.py" line="1217" /> - <location filename="../QScintilla/MiniEditor.py" line="1216" /> <location filename="../ViewManager/ViewManager.py" line="2146" /> <location filename="../ViewManager/ViewManager.py" line="2145" /> <source>Move to end of document</source> <translation>Zum Dokumentenende springen</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1229" /> + <location filename="../QScintilla/MiniEditor.py" line="1230" /> <location filename="../ViewManager/ViewManager.py" line="2158" /> <source>Ctrl+End</source> <translation>Ctrl+End</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1238" /> <location filename="../QScintilla/MiniEditor.py" line="1237" /> - <location filename="../QScintilla/MiniEditor.py" line="1236" /> <location filename="../QScintilla/ShellWindow.py" line="453" /> <location filename="../QScintilla/ShellWindow.py" line="452" /> <location filename="../ViewManager/ViewManager.py" line="2166" /> @@ -96265,29 +96270,29 @@ <translation>Eine Ebene einrücken</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1238" /> + <location filename="../QScintilla/MiniEditor.py" line="1239" /> <location filename="../QScintilla/ShellWindow.py" line="454" /> <location filename="../ViewManager/ViewManager.py" line="2167" /> <source>Tab</source> <translation>Tab</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1250" /> <location filename="../QScintilla/MiniEditor.py" line="1249" /> - <location filename="../QScintilla/MiniEditor.py" line="1248" /> <location filename="../ViewManager/ViewManager.py" line="2178" /> <location filename="../ViewManager/ViewManager.py" line="2177" /> <source>Unindent one level</source> <translation>Eine Ebene ausrücken</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1250" /> + <location filename="../QScintilla/MiniEditor.py" line="1251" /> <location filename="../ViewManager/ViewManager.py" line="2179" /> <source>Shift+Tab</source> <translation>Shift+Tab</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1263" /> - <location filename="../QScintilla/MiniEditor.py" line="1260" /> + <location filename="../QScintilla/MiniEditor.py" line="1264" /> + <location filename="../QScintilla/MiniEditor.py" line="1261" /> <location filename="../QScintilla/ShellWindow.py" line="781" /> <location filename="../QScintilla/ShellWindow.py" line="778" /> <location filename="../ViewManager/ViewManager.py" line="2192" /> @@ -96296,22 +96301,22 @@ <translation>Auswahl um ein Zeichen nach links erweitern</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1266" /> + <location filename="../QScintilla/MiniEditor.py" line="1267" /> <location filename="../QScintilla/ShellWindow.py" line="784" /> <location filename="../ViewManager/ViewManager.py" line="2195" /> <source>Shift+Left</source> <translation>Shift+Left</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1273" /> + <location filename="../QScintilla/MiniEditor.py" line="1274" /> <location filename="../QScintilla/ShellWindow.py" line="791" /> <location filename="../ViewManager/ViewManager.py" line="2202" /> <source>Meta+Shift+B</source> <translation>Meta+Shift+B</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1283" /> - <location filename="../QScintilla/MiniEditor.py" line="1280" /> + <location filename="../QScintilla/MiniEditor.py" line="1284" /> + <location filename="../QScintilla/MiniEditor.py" line="1281" /> <location filename="../QScintilla/ShellWindow.py" line="801" /> <location filename="../QScintilla/ShellWindow.py" line="798" /> <location filename="../ViewManager/ViewManager.py" line="2212" /> @@ -96320,70 +96325,70 @@ <translation>Auswahl um ein Zeichen nach rechts erweitern</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1286" /> + <location filename="../QScintilla/MiniEditor.py" line="1287" /> <location filename="../QScintilla/ShellWindow.py" line="804" /> <location filename="../ViewManager/ViewManager.py" line="2215" /> <source>Shift+Right</source> <translation>Shift+Right</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1293" /> + <location filename="../QScintilla/MiniEditor.py" line="1294" /> <location filename="../QScintilla/ShellWindow.py" line="811" /> <location filename="../ViewManager/ViewManager.py" line="2222" /> <source>Meta+Shift+F</source> <translation>Meta+Shift+F</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1302" /> <location filename="../QScintilla/MiniEditor.py" line="1301" /> - <location filename="../QScintilla/MiniEditor.py" line="1300" /> <location filename="../ViewManager/ViewManager.py" line="2230" /> <location filename="../ViewManager/ViewManager.py" line="2229" /> <source>Extend selection up one line</source> <translation>Auswahl um eine Zeile nach oben erweitern</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1302" /> + <location filename="../QScintilla/MiniEditor.py" line="1303" /> <location filename="../ViewManager/ViewManager.py" line="2231" /> <source>Shift+Up</source> <translation>Shift+Up</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1309" /> + <location filename="../QScintilla/MiniEditor.py" line="1310" /> <location filename="../ViewManager/ViewManager.py" line="2238" /> <source>Meta+Shift+P</source> <translation>Meta+Shift+P</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1318" /> <location filename="../QScintilla/MiniEditor.py" line="1317" /> - <location filename="../QScintilla/MiniEditor.py" line="1316" /> <location filename="../ViewManager/ViewManager.py" line="2246" /> <location filename="../ViewManager/ViewManager.py" line="2245" /> <source>Extend selection down one line</source> <translation>Auswahl um eine Zeile nach unten erweitern</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1318" /> + <location filename="../QScintilla/MiniEditor.py" line="1319" /> <location filename="../ViewManager/ViewManager.py" line="2247" /> <source>Shift+Down</source> <translation>Shift+Down</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1325" /> + <location filename="../QScintilla/MiniEditor.py" line="1326" /> <location filename="../ViewManager/ViewManager.py" line="2254" /> <source>Meta+Shift+N</source> <translation>Meta+Shift+N</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1335" /> - <location filename="../QScintilla/MiniEditor.py" line="1332" /> + <location filename="../QScintilla/MiniEditor.py" line="1336" /> + <location filename="../QScintilla/MiniEditor.py" line="1333" /> <location filename="../ViewManager/ViewManager.py" line="2264" /> <location filename="../ViewManager/ViewManager.py" line="2261" /> <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="1386" /> - <location filename="../QScintilla/MiniEditor.py" line="1346" /> + <location filename="../QScintilla/MiniEditor.py" line="1387" /> + <location filename="../QScintilla/MiniEditor.py" line="1347" /> <location filename="../QScintilla/ShellWindow.py" line="828" /> <location filename="../ViewManager/ViewManager.py" line="2315" /> <location filename="../ViewManager/ViewManager.py" line="2275" /> @@ -96391,17 +96396,17 @@ <translation>Alt+Shift+Left</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1357" /> - <location filename="../QScintilla/MiniEditor.py" line="1354" /> + <location filename="../QScintilla/MiniEditor.py" line="1358" /> + <location filename="../QScintilla/MiniEditor.py" line="1355" /> <location filename="../ViewManager/ViewManager.py" line="2286" /> <location filename="../ViewManager/ViewManager.py" line="2283" /> <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="2181" /> - <location filename="../QScintilla/MiniEditor.py" line="1414" /> - <location filename="../QScintilla/MiniEditor.py" line="1368" /> + <location filename="../QScintilla/MiniEditor.py" line="2182" /> + <location filename="../QScintilla/MiniEditor.py" line="1415" /> + <location filename="../QScintilla/MiniEditor.py" line="1369" /> <location filename="../QScintilla/ShellWindow.py" line="856" /> <location filename="../ViewManager/ViewManager.py" line="3093" /> <location filename="../ViewManager/ViewManager.py" line="2343" /> @@ -96410,8 +96415,8 @@ <translation>Alt+Shift+Right</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1378" /> <location filename="../QScintilla/MiniEditor.py" line="1377" /> - <location filename="../QScintilla/MiniEditor.py" line="1376" /> <location filename="../QScintilla/ShellWindow.py" line="819" /> <location filename="../QScintilla/ShellWindow.py" line="818" /> <location filename="../ViewManager/ViewManager.py" line="2306" /> @@ -96420,8 +96425,8 @@ <translation>Auswahl um ein Wort nach links erweitern</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2307" /> - <location filename="../QScintilla/MiniEditor.py" line="1392" /> + <location filename="../QScintilla/MiniEditor.py" line="2308" /> + <location filename="../QScintilla/MiniEditor.py" line="1393" /> <location filename="../QScintilla/ShellWindow.py" line="834" /> <location filename="../ViewManager/ViewManager.py" line="3219" /> <location filename="../ViewManager/ViewManager.py" line="2321" /> @@ -96429,8 +96434,8 @@ <translation>Ctrl+Shift+Left</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1403" /> - <location filename="../QScintilla/MiniEditor.py" line="1400" /> + <location filename="../QScintilla/MiniEditor.py" line="1404" /> + <location filename="../QScintilla/MiniEditor.py" line="1401" /> <location filename="../QScintilla/ShellWindow.py" line="845" /> <location filename="../QScintilla/ShellWindow.py" line="842" /> <location filename="../ViewManager/ViewManager.py" line="2332" /> @@ -96439,8 +96444,8 @@ <translation>Auswahl um ein Wort nach rechts erweitern</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1868" /> - <location filename="../QScintilla/MiniEditor.py" line="1420" /> + <location filename="../QScintilla/MiniEditor.py" line="1869" /> + <location filename="../QScintilla/MiniEditor.py" line="1421" /> <location filename="../QScintilla/ShellWindow.py" line="862" /> <location filename="../ViewManager/ViewManager.py" line="2780" /> <location filename="../ViewManager/ViewManager.py" line="2349" /> @@ -96448,8 +96453,8 @@ <translation>Ctrl+Shift+Right</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1432" /> - <location filename="../QScintilla/MiniEditor.py" line="1428" /> + <location filename="../QScintilla/MiniEditor.py" line="1433" /> + <location filename="../QScintilla/MiniEditor.py" line="1429" /> <location filename="../QScintilla/ShellWindow.py" line="874" /> <location filename="../QScintilla/ShellWindow.py" line="870" /> <location filename="../ViewManager/ViewManager.py" line="2361" /> @@ -96458,15 +96463,15 @@ <translation>Auswahl zum ersten sichtbaren Zeichen der Dokumentzeile erweitern</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1443" /> + <location filename="../QScintilla/MiniEditor.py" line="1444" /> <location filename="../QScintilla/ShellWindow.py" line="885" /> <location filename="../ViewManager/ViewManager.py" line="2372" /> <source>Shift+Home</source> <translation>Shift+Home</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1453" /> - <location filename="../QScintilla/MiniEditor.py" line="1450" /> + <location filename="../QScintilla/MiniEditor.py" line="1454" /> + <location filename="../QScintilla/MiniEditor.py" line="1451" /> <location filename="../QScintilla/ShellWindow.py" line="895" /> <location filename="../QScintilla/ShellWindow.py" line="892" /> <location filename="../ViewManager/ViewManager.py" line="2382" /> @@ -96475,124 +96480,124 @@ <translation>Auswahl zum Ende der Dokumentenzeile erweitern</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1463" /> + <location filename="../QScintilla/MiniEditor.py" line="1464" /> <location filename="../QScintilla/ShellWindow.py" line="905" /> <location filename="../ViewManager/ViewManager.py" line="2392" /> <source>Meta+Shift+E</source> <translation>Meta+Shift+E</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1467" /> + <location filename="../QScintilla/MiniEditor.py" line="1468" /> <location filename="../QScintilla/ShellWindow.py" line="909" /> <location filename="../ViewManager/ViewManager.py" line="2396" /> <source>Shift+End</source> <translation>Shift+End</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1477" /> - <location filename="../QScintilla/MiniEditor.py" line="1474" /> + <location filename="../QScintilla/MiniEditor.py" line="1478" /> + <location filename="../QScintilla/MiniEditor.py" line="1475" /> <location filename="../ViewManager/ViewManager.py" line="2406" /> <location filename="../ViewManager/ViewManager.py" line="2403" /> <source>Extend selection up one paragraph</source> <translation>Auswahl um einen Absatz nach oben erweitern</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1480" /> + <location filename="../QScintilla/MiniEditor.py" line="1481" /> <location filename="../ViewManager/ViewManager.py" line="2409" /> <source>Alt+Shift+Up</source> <translation>Alt+Shift+Up</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1493" /> - <location filename="../QScintilla/MiniEditor.py" line="1490" /> + <location filename="../QScintilla/MiniEditor.py" line="1494" /> + <location filename="../QScintilla/MiniEditor.py" line="1491" /> <location filename="../ViewManager/ViewManager.py" line="2422" /> <location filename="../ViewManager/ViewManager.py" line="2419" /> <source>Extend selection down one paragraph</source> <translation>Auswahl um einen Absatz nach unten erweitern</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1496" /> + <location filename="../QScintilla/MiniEditor.py" line="1497" /> <location filename="../ViewManager/ViewManager.py" line="2425" /> <source>Alt+Shift+Down</source> <translation>Alt+Shift+Down</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1508" /> <location filename="../QScintilla/MiniEditor.py" line="1507" /> - <location filename="../QScintilla/MiniEditor.py" line="1506" /> <location filename="../ViewManager/ViewManager.py" line="2436" /> <location filename="../ViewManager/ViewManager.py" line="2435" /> <source>Extend selection up one page</source> <translation>Auswahl um eine Seite nach oben erweitern</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1508" /> + <location filename="../QScintilla/MiniEditor.py" line="1509" /> <location filename="../ViewManager/ViewManager.py" line="2437" /> <source>Shift+PgUp</source> <translation>Shift+PgUp</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1520" /> <location filename="../QScintilla/MiniEditor.py" line="1519" /> - <location filename="../QScintilla/MiniEditor.py" line="1518" /> <location filename="../ViewManager/ViewManager.py" line="2448" /> <location filename="../ViewManager/ViewManager.py" line="2447" /> <source>Extend selection down one page</source> <translation>Auswahl um eine Seite nach unten erweitern</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1520" /> + <location filename="../QScintilla/MiniEditor.py" line="1521" /> <location filename="../ViewManager/ViewManager.py" line="2449" /> <source>Shift+PgDown</source> <translation>Shift+PgDown</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1527" /> + <location filename="../QScintilla/MiniEditor.py" line="1528" /> <location filename="../ViewManager/ViewManager.py" line="2456" /> <source>Meta+Shift+V</source> <translation>Meta+Shift+V</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1537" /> - <location filename="../QScintilla/MiniEditor.py" line="1534" /> + <location filename="../QScintilla/MiniEditor.py" line="1538" /> + <location filename="../QScintilla/MiniEditor.py" line="1535" /> <location filename="../ViewManager/ViewManager.py" line="2466" /> <location filename="../ViewManager/ViewManager.py" line="2463" /> <source>Extend selection to start of document</source> <translation>Auswahl zum Dokumentenanfang erweitern</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1547" /> + <location filename="../QScintilla/MiniEditor.py" line="1548" /> <location filename="../ViewManager/ViewManager.py" line="2476" /> <source>Ctrl+Shift+Up</source> <translation>Ctrl+Shift+Up</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1552" /> + <location filename="../QScintilla/MiniEditor.py" line="1553" /> <location filename="../ViewManager/ViewManager.py" line="2481" /> <source>Ctrl+Shift+Home</source> <translation>Ctrl+Shift+Home</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1563" /> - <location filename="../QScintilla/MiniEditor.py" line="1560" /> + <location filename="../QScintilla/MiniEditor.py" line="1564" /> + <location filename="../QScintilla/MiniEditor.py" line="1561" /> <location filename="../ViewManager/ViewManager.py" line="2492" /> <location filename="../ViewManager/ViewManager.py" line="2489" /> <source>Extend selection to end of document</source> <translation>Auswahl zum Dokumentenende erweitern</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1574" /> + <location filename="../QScintilla/MiniEditor.py" line="1575" /> <location filename="../ViewManager/ViewManager.py" line="2503" /> <source>Ctrl+Shift+Down</source> <translation>Ctrl+Shift+Down</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1580" /> + <location filename="../QScintilla/MiniEditor.py" line="1581" /> <location filename="../ViewManager/ViewManager.py" line="2509" /> <source>Ctrl+Shift+End</source> <translation>Ctrl+Shift+End</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1590" /> <location filename="../QScintilla/MiniEditor.py" line="1589" /> - <location filename="../QScintilla/MiniEditor.py" line="1588" /> <location filename="../QScintilla/ShellWindow.py" line="477" /> <location filename="../QScintilla/ShellWindow.py" line="476" /> <location filename="../ViewManager/ViewManager.py" line="2518" /> @@ -96601,37 +96606,37 @@ <translation>Zeichen links löschen</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1590" /> + <location filename="../QScintilla/MiniEditor.py" line="1591" /> <location filename="../QScintilla/ShellWindow.py" line="478" /> <location filename="../ViewManager/ViewManager.py" line="2519" /> <source>Backspace</source> <translation>Backspace</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1597" /> + <location filename="../QScintilla/MiniEditor.py" line="1598" /> <location filename="../QScintilla/ShellWindow.py" line="485" /> <location filename="../ViewManager/ViewManager.py" line="2526" /> <source>Meta+H</source> <translation>Meta+H</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1602" /> + <location filename="../QScintilla/MiniEditor.py" line="1603" /> <location filename="../QScintilla/ShellWindow.py" line="490" /> <location filename="../ViewManager/ViewManager.py" line="2531" /> <source>Shift+Backspace</source> <translation>Shift+Backspace</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1613" /> - <location filename="../QScintilla/MiniEditor.py" line="1610" /> + <location filename="../QScintilla/MiniEditor.py" line="1614" /> + <location filename="../QScintilla/MiniEditor.py" line="1611" /> <location filename="../ViewManager/ViewManager.py" line="2542" /> <location filename="../ViewManager/ViewManager.py" line="2539" /> <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="1628" /> <location filename="../QScintilla/MiniEditor.py" line="1627" /> - <location filename="../QScintilla/MiniEditor.py" line="1626" /> <location filename="../QScintilla/ShellWindow.py" line="499" /> <location filename="../QScintilla/ShellWindow.py" line="498" /> <location filename="../ViewManager/ViewManager.py" line="2556" /> @@ -96640,22 +96645,22 @@ <translation>Aktuelles Zeichen löschen</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1628" /> + <location filename="../QScintilla/MiniEditor.py" line="1629" /> <location filename="../QScintilla/ShellWindow.py" line="500" /> <location filename="../ViewManager/ViewManager.py" line="2557" /> <source>Del</source> <translation>Del</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1635" /> + <location filename="../QScintilla/MiniEditor.py" line="1636" /> <location filename="../QScintilla/ShellWindow.py" line="507" /> <location filename="../ViewManager/ViewManager.py" line="2564" /> <source>Meta+D</source> <translation>Meta+D</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1644" /> <location filename="../QScintilla/MiniEditor.py" line="1643" /> - <location filename="../QScintilla/MiniEditor.py" line="1642" /> <location filename="../QScintilla/ShellWindow.py" line="515" /> <location filename="../QScintilla/ShellWindow.py" line="514" /> <location filename="../ViewManager/ViewManager.py" line="2572" /> @@ -96664,15 +96669,15 @@ <translation>Wort links löschen</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1644" /> + <location filename="../QScintilla/MiniEditor.py" line="1645" /> <location filename="../QScintilla/ShellWindow.py" line="516" /> <location filename="../ViewManager/ViewManager.py" line="2573" /> <source>Ctrl+Backspace</source> <translation>Ctrl+Backspace</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1656" /> <location filename="../QScintilla/MiniEditor.py" line="1655" /> - <location filename="../QScintilla/MiniEditor.py" line="1654" /> <location filename="../QScintilla/ShellWindow.py" line="527" /> <location filename="../QScintilla/ShellWindow.py" line="526" /> <location filename="../ViewManager/ViewManager.py" line="2584" /> @@ -96681,15 +96686,15 @@ <translation>Wort rechts löschen</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1656" /> + <location filename="../QScintilla/MiniEditor.py" line="1657" /> <location filename="../QScintilla/ShellWindow.py" line="528" /> <location filename="../ViewManager/ViewManager.py" line="2585" /> <source>Ctrl+Del</source> <translation>Ctrl+Del</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1668" /> <location filename="../QScintilla/MiniEditor.py" line="1667" /> - <location filename="../QScintilla/MiniEditor.py" line="1666" /> <location filename="../QScintilla/ShellWindow.py" line="539" /> <location filename="../QScintilla/ShellWindow.py" line="538" /> <location filename="../ViewManager/ViewManager.py" line="2596" /> @@ -96698,15 +96703,15 @@ <translation>Zeile links löschen</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1669" /> + <location filename="../QScintilla/MiniEditor.py" line="1670" /> <location filename="../QScintilla/ShellWindow.py" line="541" /> <location filename="../ViewManager/ViewManager.py" line="2598" /> <source>Ctrl+Shift+Backspace</source> <translation>Ctrl+Shift+Backspace</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1682" /> <location filename="../QScintilla/MiniEditor.py" line="1681" /> - <location filename="../QScintilla/MiniEditor.py" line="1680" /> <location filename="../QScintilla/ShellWindow.py" line="553" /> <location filename="../QScintilla/ShellWindow.py" line="552" /> <location filename="../ViewManager/ViewManager.py" line="2610" /> @@ -96715,22 +96720,22 @@ <translation>Zeile rechts löschen</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1689" /> + <location filename="../QScintilla/MiniEditor.py" line="1690" /> <location filename="../QScintilla/ShellWindow.py" line="561" /> <location filename="../ViewManager/ViewManager.py" line="2618" /> <source>Meta+K</source> <translation>Meta+K</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1694" /> + <location filename="../QScintilla/MiniEditor.py" line="1695" /> <location filename="../QScintilla/ShellWindow.py" line="566" /> <location filename="../ViewManager/ViewManager.py" line="2623" /> <source>Ctrl+Shift+Del</source> <translation>Ctrl+Shift+Del</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1704" /> <location filename="../QScintilla/MiniEditor.py" line="1703" /> - <location filename="../QScintilla/MiniEditor.py" line="1702" /> <location filename="../QScintilla/ShellWindow.py" line="465" /> <location filename="../QScintilla/ShellWindow.py" line="464" /> <location filename="../ViewManager/ViewManager.py" line="2632" /> @@ -96739,14 +96744,14 @@ <translation>Neue Zeile einfügen</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1704" /> + <location filename="../QScintilla/MiniEditor.py" line="1705" /> <location filename="../QScintilla/ShellWindow.py" line="466" /> <location filename="../ViewManager/ViewManager.py" line="2633" /> <source>Return</source> <translation>Return</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1705" /> + <location filename="../QScintilla/MiniEditor.py" line="1706" /> <location filename="../QScintilla/ShellWindow.py" line="467" /> <location filename="../ViewManager/ViewManager.py" line="2634" /> <source>Enter</source> @@ -96769,8 +96774,8 @@ <translation>Shift+Enter</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1716" /> <location filename="../QScintilla/MiniEditor.py" line="1715" /> - <location filename="../QScintilla/MiniEditor.py" line="1714" /> <location filename="../QScintilla/ShellWindow.py" line="441" /> <location filename="../QScintilla/ShellWindow.py" line="440" /> <location filename="../ViewManager/ViewManager.py" line="2659" /> @@ -96779,129 +96784,129 @@ <translation>Aktuelle Zeile löschen</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1716" /> + <location filename="../QScintilla/MiniEditor.py" line="1717" /> <location filename="../QScintilla/ShellWindow.py" line="442" /> <location filename="../ViewManager/ViewManager.py" line="2660" /> <source>Ctrl+Shift+L</source> <translation>Ctrl+Shift+L</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1728" /> <location filename="../QScintilla/MiniEditor.py" line="1727" /> - <location filename="../QScintilla/MiniEditor.py" line="1726" /> <location filename="../ViewManager/ViewManager.py" line="2671" /> <location filename="../ViewManager/ViewManager.py" line="2670" /> <source>Duplicate current line</source> <translation>Aktuelle Zeile duplizieren</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1728" /> + <location filename="../QScintilla/MiniEditor.py" line="1729" /> <location filename="../ViewManager/ViewManager.py" line="2672" /> <source>Ctrl+D</source> <translation>Ctrl+D</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1741" /> - <location filename="../QScintilla/MiniEditor.py" line="1738" /> + <location filename="../QScintilla/MiniEditor.py" line="1742" /> + <location filename="../QScintilla/MiniEditor.py" line="1739" /> <location filename="../ViewManager/ViewManager.py" line="2685" /> <location filename="../ViewManager/ViewManager.py" line="2682" /> <source>Swap current and previous lines</source> <translation>Aktuelle Zeile mit vorhergehender tauschen</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1744" /> + <location filename="../QScintilla/MiniEditor.py" line="1745" /> <location filename="../ViewManager/ViewManager.py" line="2688" /> <source>Ctrl+T</source> <translation>Ctrl+T</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1756" /> <location filename="../QScintilla/MiniEditor.py" line="1755" /> - <location filename="../QScintilla/MiniEditor.py" line="1754" /> <location filename="../ViewManager/ViewManager.py" line="2699" /> <location filename="../ViewManager/ViewManager.py" line="2698" /> <source>Reverse selected lines</source> <translation>Ausgewählte Zeilen umkehren</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1756" /> + <location filename="../QScintilla/MiniEditor.py" line="1757" /> <location filename="../ViewManager/ViewManager.py" line="2700" /> <source>Meta+Alt+R</source> <translation>Meta+Ctrl+Alt+R</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1768" /> <location filename="../QScintilla/MiniEditor.py" line="1767" /> - <location filename="../QScintilla/MiniEditor.py" line="1766" /> <location filename="../ViewManager/ViewManager.py" line="2711" /> <location filename="../ViewManager/ViewManager.py" line="2710" /> <source>Cut current line</source> <translation>Aktuelle Zeile ausschneiden</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1768" /> + <location filename="../QScintilla/MiniEditor.py" line="1769" /> <location filename="../ViewManager/ViewManager.py" line="2712" /> <source>Alt+Shift+L</source> <translation>Alt+Shift+L</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1780" /> <location filename="../QScintilla/MiniEditor.py" line="1779" /> - <location filename="../QScintilla/MiniEditor.py" line="1778" /> <location filename="../ViewManager/ViewManager.py" line="2723" /> <location filename="../ViewManager/ViewManager.py" line="2722" /> <source>Copy current line</source> <translation>Aktuelle Zeile kopieren</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1780" /> + <location filename="../QScintilla/MiniEditor.py" line="1781" /> <location filename="../ViewManager/ViewManager.py" line="2724" /> <source>Ctrl+Shift+T</source> <translation>Ctrl+Shift+L</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1792" /> <location filename="../QScintilla/MiniEditor.py" line="1791" /> - <location filename="../QScintilla/MiniEditor.py" line="1790" /> <location filename="../ViewManager/ViewManager.py" line="2735" /> <location filename="../ViewManager/ViewManager.py" line="2734" /> <source>Toggle insert/overtype</source> <translation>Einfügen/Überschreiben umschalten</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1792" /> + <location filename="../QScintilla/MiniEditor.py" line="1793" /> <location filename="../ViewManager/ViewManager.py" line="2736" /> <source>Ins</source> <translation>Ins</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1836" /> <location filename="../QScintilla/MiniEditor.py" line="1835" /> - <location filename="../QScintilla/MiniEditor.py" line="1834" /> <location filename="../ViewManager/ViewManager.py" line="2747" /> <location filename="../ViewManager/ViewManager.py" line="2746" /> <source>Move to end of display line</source> <translation>Zum Ende der Anzeigezeile springen</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1847" /> + <location filename="../QScintilla/MiniEditor.py" line="1848" /> <location filename="../ViewManager/ViewManager.py" line="2759" /> <source>Alt+End</source> <translation>Alt+End</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1857" /> - <location filename="../QScintilla/MiniEditor.py" line="1854" /> + <location filename="../QScintilla/MiniEditor.py" line="1858" /> + <location filename="../QScintilla/MiniEditor.py" line="1855" /> <location filename="../ViewManager/ViewManager.py" line="2769" /> <location filename="../ViewManager/ViewManager.py" line="2766" /> <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="1878" /> <location filename="../QScintilla/MiniEditor.py" line="1877" /> - <location filename="../QScintilla/MiniEditor.py" line="1876" /> <location filename="../ViewManager/ViewManager.py" line="2789" /> <location filename="../ViewManager/ViewManager.py" line="2788" /> <source>Formfeed</source> <translation>Seitenumbruch</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1890" /> <location filename="../QScintilla/MiniEditor.py" line="1889" /> - <location filename="../QScintilla/MiniEditor.py" line="1888" /> <location filename="../QScintilla/ShellWindow.py" line="767" /> <location filename="../QScintilla/ShellWindow.py" line="766" /> <location filename="../ViewManager/ViewManager.py" line="2801" /> @@ -96910,423 +96915,423 @@ <translation>Abbruch</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1890" /> + <location filename="../QScintilla/MiniEditor.py" line="1891" /> <location filename="../QScintilla/ShellWindow.py" line="768" /> <location filename="../ViewManager/ViewManager.py" line="2802" /> <source>Esc</source> <translation>Esc</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1903" /> - <location filename="../QScintilla/MiniEditor.py" line="1900" /> + <location filename="../QScintilla/MiniEditor.py" line="1904" /> + <location filename="../QScintilla/MiniEditor.py" line="1901" /> <location filename="../ViewManager/ViewManager.py" line="2815" /> <location filename="../ViewManager/ViewManager.py" line="2812" /> <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="1906" /> + <location filename="../QScintilla/MiniEditor.py" line="1907" /> <location filename="../ViewManager/ViewManager.py" line="2818" /> <source>Alt+Ctrl+Down</source> <translation>Alt+Ctrl+Down</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1914" /> + <location filename="../QScintilla/MiniEditor.py" line="1915" /> <location filename="../ViewManager/ViewManager.py" line="2826" /> <source>Meta+Alt+Shift+N</source> <translation>Meta+Alt+Shift+N</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1925" /> - <location filename="../QScintilla/MiniEditor.py" line="1922" /> + <location filename="../QScintilla/MiniEditor.py" line="1926" /> + <location filename="../QScintilla/MiniEditor.py" line="1923" /> <location filename="../ViewManager/ViewManager.py" line="2837" /> <location filename="../ViewManager/ViewManager.py" line="2834" /> <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="1928" /> + <location filename="../QScintilla/MiniEditor.py" line="1929" /> <location filename="../ViewManager/ViewManager.py" line="2840" /> <source>Alt+Ctrl+Up</source> <translation>Alt+Ctrl+Up</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1936" /> + <location filename="../QScintilla/MiniEditor.py" line="1937" /> <location filename="../ViewManager/ViewManager.py" line="2848" /> <source>Meta+Alt+Shift+P</source> <translation>Meta+Alt+Shift+P</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1947" /> - <location filename="../QScintilla/MiniEditor.py" line="1944" /> + <location filename="../QScintilla/MiniEditor.py" line="1948" /> + <location filename="../QScintilla/MiniEditor.py" line="1945" /> <location filename="../ViewManager/ViewManager.py" line="2859" /> <location filename="../ViewManager/ViewManager.py" line="2856" /> <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="1950" /> + <location filename="../QScintilla/MiniEditor.py" line="1951" /> <location filename="../ViewManager/ViewManager.py" line="2862" /> <source>Alt+Ctrl+Left</source> <translation>Alt+Ctrl+Left</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1958" /> + <location filename="../QScintilla/MiniEditor.py" line="1959" /> <location filename="../ViewManager/ViewManager.py" line="2870" /> <source>Meta+Alt+Shift+B</source> <translation>Meta+Alt+Shift+B</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1969" /> - <location filename="../QScintilla/MiniEditor.py" line="1966" /> + <location filename="../QScintilla/MiniEditor.py" line="1970" /> + <location filename="../QScintilla/MiniEditor.py" line="1967" /> <location filename="../ViewManager/ViewManager.py" line="2881" /> <location filename="../ViewManager/ViewManager.py" line="2878" /> <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="1972" /> + <location filename="../QScintilla/MiniEditor.py" line="1973" /> <location filename="../ViewManager/ViewManager.py" line="2884" /> <source>Alt+Ctrl+Right</source> <translation>Alt+Ctrl+Right</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1980" /> + <location filename="../QScintilla/MiniEditor.py" line="1981" /> <location filename="../ViewManager/ViewManager.py" line="2892" /> <source>Meta+Alt+Shift+F</source> <translation>Meta+Alt+Shift+F</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1993" /> - <location filename="../QScintilla/MiniEditor.py" line="1988" /> + <location filename="../QScintilla/MiniEditor.py" line="1994" /> + <location filename="../QScintilla/MiniEditor.py" line="1989" /> <location filename="../ViewManager/ViewManager.py" line="2905" /> <location filename="../ViewManager/ViewManager.py" line="2900" /> <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="2006" /> + <location filename="../QScintilla/MiniEditor.py" line="2007" /> <location filename="../ViewManager/ViewManager.py" line="2918" /> <source>Alt+Shift+Home</source> <translation>Alt+Shift+Home</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2017" /> - <location filename="../QScintilla/MiniEditor.py" line="2014" /> + <location filename="../QScintilla/MiniEditor.py" line="2018" /> + <location filename="../QScintilla/MiniEditor.py" line="2015" /> <location filename="../ViewManager/ViewManager.py" line="2929" /> <location filename="../ViewManager/ViewManager.py" line="2926" /> <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="2028" /> + <location filename="../QScintilla/MiniEditor.py" line="2029" /> <location filename="../ViewManager/ViewManager.py" line="2940" /> <source>Meta+Alt+Shift+E</source> <translation>Meta+Alt+Shift+E</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2033" /> + <location filename="../QScintilla/MiniEditor.py" line="2034" /> <location filename="../ViewManager/ViewManager.py" line="2945" /> <source>Alt+Shift+End</source> <translation>Alt+Shift+End</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2043" /> - <location filename="../QScintilla/MiniEditor.py" line="2040" /> + <location filename="../QScintilla/MiniEditor.py" line="2044" /> + <location filename="../QScintilla/MiniEditor.py" line="2041" /> <location filename="../ViewManager/ViewManager.py" line="2955" /> <location filename="../ViewManager/ViewManager.py" line="2952" /> <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="2046" /> + <location filename="../QScintilla/MiniEditor.py" line="2047" /> <location filename="../ViewManager/ViewManager.py" line="2958" /> <source>Alt+Shift+PgUp</source> <translation>Alt+Shift+PgUp</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2059" /> - <location filename="../QScintilla/MiniEditor.py" line="2056" /> + <location filename="../QScintilla/MiniEditor.py" line="2060" /> + <location filename="../QScintilla/MiniEditor.py" line="2057" /> <location filename="../ViewManager/ViewManager.py" line="2971" /> <location filename="../ViewManager/ViewManager.py" line="2968" /> <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="2062" /> + <location filename="../QScintilla/MiniEditor.py" line="2063" /> <location filename="../ViewManager/ViewManager.py" line="2974" /> <source>Alt+Shift+PgDown</source> <translation>Alt+Shift+PgDown</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2070" /> + <location filename="../QScintilla/MiniEditor.py" line="2071" /> <location filename="../ViewManager/ViewManager.py" line="2982" /> <source>Meta+Alt+Shift+V</source> <translation>Meta+Alt+Shift+V</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="2546" /> <location filename="../QScintilla/MiniEditor.py" line="2545" /> - <location filename="../QScintilla/MiniEditor.py" line="2544" /> + <location filename="../QScintilla/MiniEditor.py" line="2080" /> <location filename="../QScintilla/MiniEditor.py" line="2079" /> - <location filename="../QScintilla/MiniEditor.py" line="2078" /> <location filename="../ViewManager/ViewManager.py" line="2991" /> <location filename="../ViewManager/ViewManager.py" line="2990" /> <source>Duplicate current selection</source> <translation>Aktuelle Auswahl duplizieren</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2546" /> - <location filename="../QScintilla/MiniEditor.py" line="2080" /> + <location filename="../QScintilla/MiniEditor.py" line="2547" /> + <location filename="../QScintilla/MiniEditor.py" line="2081" /> <location filename="../ViewManager/ViewManager.py" line="2992" /> <source>Ctrl+Shift+D</source> <translation>Ctrl+Shift+D</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2094" /> - <location filename="../QScintilla/MiniEditor.py" line="2091" /> + <location filename="../QScintilla/MiniEditor.py" line="2095" /> + <location filename="../QScintilla/MiniEditor.py" line="2092" /> <location filename="../ViewManager/ViewManager.py" line="3006" /> <location filename="../ViewManager/ViewManager.py" line="3003" /> <source>Scroll to start of document</source> <translation>Zum Dokumentenanfang rollen</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="2114" /> <location filename="../QScintilla/MiniEditor.py" line="2113" /> - <location filename="../QScintilla/MiniEditor.py" line="2112" /> <location filename="../ViewManager/ViewManager.py" line="3025" /> <location filename="../ViewManager/ViewManager.py" line="3024" /> <source>Scroll to end of document</source> <translation>Zum Dokumentenende rollen</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2132" /> - <location filename="../QScintilla/MiniEditor.py" line="2129" /> + <location filename="../QScintilla/MiniEditor.py" line="2133" /> + <location filename="../QScintilla/MiniEditor.py" line="2130" /> <location filename="../ViewManager/ViewManager.py" line="3044" /> <location filename="../ViewManager/ViewManager.py" line="3041" /> <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="2142" /> + <location filename="../QScintilla/MiniEditor.py" line="2143" /> <location filename="../ViewManager/ViewManager.py" line="3054" /> <source>Meta+L</source> <translation>Meta+L</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="2152" /> <location filename="../QScintilla/MiniEditor.py" line="2151" /> - <location filename="../QScintilla/MiniEditor.py" line="2150" /> <location filename="../ViewManager/ViewManager.py" line="3063" /> <location filename="../ViewManager/ViewManager.py" line="3062" /> <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="2170" /> - <location filename="../QScintilla/MiniEditor.py" line="2167" /> + <location filename="../QScintilla/MiniEditor.py" line="2171" /> + <location filename="../QScintilla/MiniEditor.py" line="2168" /> <location filename="../ViewManager/ViewManager.py" line="3082" /> <location filename="../ViewManager/ViewManager.py" line="3079" /> <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="2193" /> - <location filename="../QScintilla/MiniEditor.py" line="2190" /> + <location filename="../QScintilla/MiniEditor.py" line="2194" /> + <location filename="../QScintilla/MiniEditor.py" line="2191" /> <location filename="../ViewManager/ViewManager.py" line="3105" /> <location filename="../ViewManager/ViewManager.py" line="3102" /> <source>Move to end of previous word</source> <translation>Zum Ende des vorigen Wortes springen</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2210" /> - <location filename="../QScintilla/MiniEditor.py" line="2207" /> + <location filename="../QScintilla/MiniEditor.py" line="2211" /> + <location filename="../QScintilla/MiniEditor.py" line="2208" /> <location filename="../ViewManager/ViewManager.py" line="3122" /> <location filename="../ViewManager/ViewManager.py" line="3119" /> <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="2227" /> - <location filename="../QScintilla/MiniEditor.py" line="2224" /> + <location filename="../QScintilla/MiniEditor.py" line="2228" /> + <location filename="../QScintilla/MiniEditor.py" line="2225" /> <location filename="../ViewManager/ViewManager.py" line="3139" /> <location filename="../ViewManager/ViewManager.py" line="3136" /> <source>Move to start of document line</source> <translation>Zum Beginn der Dokumentenzeile springen</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2237" /> + <location filename="../QScintilla/MiniEditor.py" line="2238" /> <location filename="../ViewManager/ViewManager.py" line="3149" /> <source>Meta+A</source> <translation>Meta+A</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2248" /> - <location filename="../QScintilla/MiniEditor.py" line="2245" /> + <location filename="../QScintilla/MiniEditor.py" line="2249" /> + <location filename="../QScintilla/MiniEditor.py" line="2246" /> <location filename="../ViewManager/ViewManager.py" line="3160" /> <location filename="../ViewManager/ViewManager.py" line="3157" /> <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="2259" /> + <location filename="../QScintilla/MiniEditor.py" line="2260" /> <location filename="../ViewManager/ViewManager.py" line="3171" /> <source>Meta+Shift+A</source> <translation>Meta+Shift+A</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2272" /> - <location filename="../QScintilla/MiniEditor.py" line="2268" /> + <location filename="../QScintilla/MiniEditor.py" line="2273" /> + <location filename="../QScintilla/MiniEditor.py" line="2269" /> <location filename="../ViewManager/ViewManager.py" line="3184" /> <location filename="../ViewManager/ViewManager.py" line="3180" /> <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="2284" /> + <location filename="../QScintilla/MiniEditor.py" line="2285" /> <location filename="../ViewManager/ViewManager.py" line="3196" /> <source>Meta+Alt+Shift+A</source> <translation>Meta+Alt+Shift+A</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2296" /> - <location filename="../QScintilla/MiniEditor.py" line="2293" /> + <location filename="../QScintilla/MiniEditor.py" line="2297" /> + <location filename="../QScintilla/MiniEditor.py" line="2294" /> <location filename="../ViewManager/ViewManager.py" line="3208" /> <location filename="../ViewManager/ViewManager.py" line="3205" /> <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="2319" /> - <location filename="../QScintilla/MiniEditor.py" line="2316" /> + <location filename="../QScintilla/MiniEditor.py" line="2320" /> + <location filename="../QScintilla/MiniEditor.py" line="2317" /> <location filename="../ViewManager/ViewManager.py" line="3231" /> <location filename="../ViewManager/ViewManager.py" line="3228" /> <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="2337" /> - <location filename="../QScintilla/MiniEditor.py" line="2333" /> + <location filename="../QScintilla/MiniEditor.py" line="2338" /> + <location filename="../QScintilla/MiniEditor.py" line="2334" /> <location filename="../ViewManager/ViewManager.py" line="3249" /> <location filename="../ViewManager/ViewManager.py" line="3245" /> <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="2356" /> - <location filename="../QScintilla/MiniEditor.py" line="2352" /> + <location filename="../QScintilla/MiniEditor.py" line="2357" /> + <location filename="../QScintilla/MiniEditor.py" line="2353" /> <location filename="../ViewManager/ViewManager.py" line="3268" /> <location filename="../ViewManager/ViewManager.py" line="3264" /> <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="2376" /> - <location filename="../QScintilla/MiniEditor.py" line="2371" /> + <location filename="../QScintilla/MiniEditor.py" line="2377" /> + <location filename="../QScintilla/MiniEditor.py" line="2372" /> <location filename="../ViewManager/ViewManager.py" line="3288" /> <location filename="../ViewManager/ViewManager.py" line="3283" /> <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="2395" /> - <location filename="../QScintilla/MiniEditor.py" line="2392" /> + <location filename="../QScintilla/MiniEditor.py" line="2396" /> + <location filename="../QScintilla/MiniEditor.py" line="2393" /> <location filename="../ViewManager/ViewManager.py" line="3307" /> <location filename="../ViewManager/ViewManager.py" line="3304" /> <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="2412" /> - <location filename="../QScintilla/MiniEditor.py" line="2409" /> + <location filename="../QScintilla/MiniEditor.py" line="2413" /> + <location filename="../QScintilla/MiniEditor.py" line="2410" /> <location filename="../ViewManager/ViewManager.py" line="3324" /> <location filename="../ViewManager/ViewManager.py" line="3321" /> <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="2428" /> <location filename="../QScintilla/MiniEditor.py" line="2427" /> - <location filename="../QScintilla/MiniEditor.py" line="2426" /> <location filename="../ViewManager/ViewManager.py" line="3339" /> <location filename="../ViewManager/ViewManager.py" line="3338" /> <source>Stuttered move up one page</source> <translation>„Stotternd“ um eine Seite nach oben</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2442" /> - <location filename="../QScintilla/MiniEditor.py" line="2439" /> + <location filename="../QScintilla/MiniEditor.py" line="2443" /> + <location filename="../QScintilla/MiniEditor.py" line="2440" /> <location filename="../ViewManager/ViewManager.py" line="3354" /> <location filename="../ViewManager/ViewManager.py" line="3351" /> <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="2459" /> - <location filename="../QScintilla/MiniEditor.py" line="2456" /> + <location filename="../QScintilla/MiniEditor.py" line="2460" /> + <location filename="../QScintilla/MiniEditor.py" line="2457" /> <location filename="../ViewManager/ViewManager.py" line="3371" /> <location filename="../ViewManager/ViewManager.py" line="3368" /> <source>Stuttered move down one page</source> <translation>„Stotternd“ um eine Seite nach unten</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2476" /> - <location filename="../QScintilla/MiniEditor.py" line="2473" /> + <location filename="../QScintilla/MiniEditor.py" line="2477" /> + <location filename="../QScintilla/MiniEditor.py" line="2474" /> <location filename="../ViewManager/ViewManager.py" line="3388" /> <location filename="../ViewManager/ViewManager.py" line="3385" /> <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="2493" /> - <location filename="../QScintilla/MiniEditor.py" line="2490" /> + <location filename="../QScintilla/MiniEditor.py" line="2494" /> + <location filename="../QScintilla/MiniEditor.py" line="2491" /> <location filename="../ViewManager/ViewManager.py" line="3405" /> <location filename="../ViewManager/ViewManager.py" line="3402" /> <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="2503" /> + <location filename="../QScintilla/MiniEditor.py" line="2504" /> <location filename="../ViewManager/ViewManager.py" line="3415" /> <source>Alt+Del</source> <translation>Alt+Del</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2514" /> - <location filename="../QScintilla/MiniEditor.py" line="2511" /> + <location filename="../QScintilla/MiniEditor.py" line="2515" /> + <location filename="../QScintilla/MiniEditor.py" line="2512" /> <location filename="../ViewManager/ViewManager.py" line="3426" /> <location filename="../ViewManager/ViewManager.py" line="3423" /> <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="2531" /> - <location filename="../QScintilla/MiniEditor.py" line="2528" /> + <location filename="../QScintilla/MiniEditor.py" line="2532" /> + <location filename="../QScintilla/MiniEditor.py" line="2529" /> <location filename="../ViewManager/ViewManager.py" line="3443" /> <location filename="../ViewManager/ViewManager.py" line="3440" /> <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="1805" /> - <location filename="../QScintilla/MiniEditor.py" line="1802" /> + <location filename="../QScintilla/MiniEditor.py" line="1806" /> + <location filename="../QScintilla/MiniEditor.py" line="1803" /> <location filename="../ViewManager/ViewManager.py" line="3461" /> <location filename="../ViewManager/ViewManager.py" line="3458" /> <source>Convert selection to lower case</source> <translation>Auswahl in Kleinbuchstaben umwandeln</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1808" /> + <location filename="../QScintilla/MiniEditor.py" line="1809" /> <location filename="../ViewManager/ViewManager.py" line="3464" /> <source>Alt+Shift+U</source> <translation>Alt+Shift+U</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1821" /> - <location filename="../QScintilla/MiniEditor.py" line="1818" /> + <location filename="../QScintilla/MiniEditor.py" line="1822" /> + <location filename="../QScintilla/MiniEditor.py" line="1819" /> <location filename="../ViewManager/ViewManager.py" line="3477" /> <location filename="../ViewManager/ViewManager.py" line="3474" /> <source>Convert selection to upper case</source> <translation>Auswahl in Großbuchstaben umwandeln</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1824" /> + <location filename="../QScintilla/MiniEditor.py" line="1825" /> <location filename="../ViewManager/ViewManager.py" line="3480" /> <source>Ctrl+Shift+U</source> <translation>Ctrl+Shift+U</translation> @@ -97343,7 +97348,7 @@ <translation>Bearbeiten</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2563" /> + <location filename="../QScintilla/MiniEditor.py" line="2564" /> <location filename="../QScintilla/ShellWindow.py" line="923" /> <location filename="../ViewManager/ViewManager.py" line="4167" /> <location filename="../ViewManager/ViewManager.py" line="4165" /> @@ -97352,14 +97357,14 @@ <translation>Suchen</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2565" /> + <location filename="../QScintilla/MiniEditor.py" line="2566" /> <location filename="../QScintilla/ShellWindow.py" line="925" /> <location filename="../ViewManager/ViewManager.py" line="3600" /> <source>&Search...</source> <translation>&Suchen...</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2567" /> + <location filename="../QScintilla/MiniEditor.py" line="2568" /> <location filename="../QScintilla/ShellWindow.py" line="927" /> <location filename="../ViewManager/ViewManager.py" line="3602" /> <source>Ctrl+F</source> @@ -97367,34 +97372,34 @@ <translation>Ctrl+F</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2574" /> + <location filename="../QScintilla/MiniEditor.py" line="2575" /> <location filename="../QScintilla/ShellWindow.py" line="934" /> <location filename="../ViewManager/ViewManager.py" line="3609" /> <source>Search for a text</source> <translation>Sucht nach Text</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2577" /> + <location filename="../QScintilla/MiniEditor.py" line="2578" /> <location filename="../ViewManager/ViewManager.py" line="3612" /> <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="2589" /> + <location filename="../QScintilla/MiniEditor.py" line="2590" /> <location filename="../QScintilla/ShellWindow.py" line="949" /> <location filename="../ViewManager/ViewManager.py" line="3624" /> <source>Search next</source> <translation>Weitersuchen</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2591" /> + <location filename="../QScintilla/MiniEditor.py" line="2592" /> <location filename="../QScintilla/ShellWindow.py" line="951" /> <location filename="../ViewManager/ViewManager.py" line="3626" /> <source>Search &next</source> <translation>&Weitersuchen</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2593" /> + <location filename="../QScintilla/MiniEditor.py" line="2594" /> <location filename="../QScintilla/ShellWindow.py" line="953" /> <location filename="../ViewManager/ViewManager.py" line="3628" /> <source>F3</source> @@ -97402,34 +97407,34 @@ <translation>F3</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2600" /> + <location filename="../QScintilla/MiniEditor.py" line="2601" /> <location filename="../QScintilla/ShellWindow.py" line="960" /> <location filename="../ViewManager/ViewManager.py" line="3635" /> <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="2603" /> + <location filename="../QScintilla/MiniEditor.py" line="2604" /> <location filename="../ViewManager/ViewManager.py" line="3638" /> <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="2615" /> + <location filename="../QScintilla/MiniEditor.py" line="2616" /> <location filename="../QScintilla/ShellWindow.py" line="977" /> <location filename="../ViewManager/ViewManager.py" line="3650" /> <source>Search previous</source> <translation>Rückwärtssuchen</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2617" /> + <location filename="../QScintilla/MiniEditor.py" line="2618" /> <location filename="../QScintilla/ShellWindow.py" line="979" /> <location filename="../ViewManager/ViewManager.py" line="3652" /> <source>Search &previous</source> <translation>&Rückwärtssuchen</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2619" /> + <location filename="../QScintilla/MiniEditor.py" line="2620" /> <location filename="../QScintilla/ShellWindow.py" line="981" /> <location filename="../ViewManager/ViewManager.py" line="3654" /> <source>Shift+F3</source> @@ -97437,41 +97442,41 @@ <translation>Shift+F3</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2628" /> + <location filename="../QScintilla/MiniEditor.py" line="2629" /> <location filename="../QScintilla/ShellWindow.py" line="990" /> <location filename="../ViewManager/ViewManager.py" line="3663" /> <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="2633" /> + <location filename="../QScintilla/MiniEditor.py" line="2634" /> <location filename="../ViewManager/ViewManager.py" line="3668" /> <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="../QScintilla/MiniEditor.py" line="2647" /> - <location filename="../QScintilla/MiniEditor.py" line="2645" /> + <location filename="../QScintilla/MiniEditor.py" line="2648" /> + <location filename="../QScintilla/MiniEditor.py" line="2646" /> <location filename="../ViewManager/ViewManager.py" line="3682" /> <location filename="../ViewManager/ViewManager.py" line="3680" /> <source>Clear search markers</source> <translation>Suchmarkierungen löschen</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2649" /> + <location filename="../QScintilla/MiniEditor.py" line="2650" /> <location filename="../ViewManager/ViewManager.py" line="3684" /> <source>Ctrl+3</source> <comment>Search|Clear search markers</comment> <translation>Ctrl+3</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2658" /> + <location filename="../QScintilla/MiniEditor.py" line="2659" /> <location filename="../ViewManager/ViewManager.py" line="3693" /> <source>Clear all displayed search markers</source> <translation>Löscht alle angezeigten Suchmarkierungen</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2663" /> + <location filename="../QScintilla/MiniEditor.py" line="2664" /> <location filename="../ViewManager/ViewManager.py" line="3698" /> <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> @@ -97521,113 +97526,113 @@ <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="../QScintilla/MiniEditor.py" line="2673" /> + <location filename="../QScintilla/MiniEditor.py" line="2674" /> <location filename="../ViewManager/ViewManager.py" line="3766" /> <source>Replace</source> <translation>Ersetzen</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2674" /> + <location filename="../QScintilla/MiniEditor.py" line="2675" /> <location filename="../ViewManager/ViewManager.py" line="3767" /> <source>&Replace...</source> <translation>&Ersetzen...</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2676" /> + <location filename="../QScintilla/MiniEditor.py" line="2677" /> <location filename="../ViewManager/ViewManager.py" line="3769" /> <source>Ctrl+R</source> <comment>Search|Replace</comment> <translation>Ctrl+R</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2683" /> + <location filename="../QScintilla/MiniEditor.py" line="2684" /> <location filename="../ViewManager/ViewManager.py" line="3776" /> <source>Replace some text</source> <translation>Ersetzt Text</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2686" /> + <location filename="../QScintilla/MiniEditor.py" line="2687" /> <location filename="../ViewManager/ViewManager.py" line="3779" /> <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="../QScintilla/MiniEditor.py" line="2700" /> - <location filename="../QScintilla/MiniEditor.py" line="2698" /> + <location filename="../QScintilla/MiniEditor.py" line="2701" /> + <location filename="../QScintilla/MiniEditor.py" line="2699" /> <location filename="../ViewManager/ViewManager.py" line="3793" /> <location filename="../ViewManager/ViewManager.py" line="3791" /> <source>Replace and Search</source> <translation>Ersetzen und Suchen</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2702" /> + <location filename="../QScintilla/MiniEditor.py" line="2703" /> <location filename="../ViewManager/ViewManager.py" line="3795" /> <source>Meta+R</source> <comment>Search|Replace and Search</comment> <translation>Meta+R</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2711" /> + <location filename="../QScintilla/MiniEditor.py" line="2712" /> <location filename="../ViewManager/ViewManager.py" line="3804" /> <source>Replace the found text and search the next occurrence</source> <translation>Erstezt den gefundenen Text und sucht das nächste Vorkommen</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2716" /> + <location filename="../QScintilla/MiniEditor.py" line="2717" /> <location filename="../ViewManager/ViewManager.py" line="3809" /> <source><b>Replace and Search</b><p>Replace the found occurrence of text in the current editor and search for the next one. The previously entered search text and options are reused.</p></source> <translation><b>Ersetzen und Suchen</b><p>Ersetzt den Text an der Fundstelle im aktuellen Editor und sucht das nächste Vorkommen. Der zuvor eingegebene Suchtext und die Suchoptionen werden wiederverwendet.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2732" /> - <location filename="../QScintilla/MiniEditor.py" line="2730" /> + <location filename="../QScintilla/MiniEditor.py" line="2733" /> + <location filename="../QScintilla/MiniEditor.py" line="2731" /> <location filename="../ViewManager/ViewManager.py" line="3825" /> <location filename="../ViewManager/ViewManager.py" line="3823" /> <source>Replace Occurrence</source> <translation>Fundstelle ersetzen</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2734" /> + <location filename="../QScintilla/MiniEditor.py" line="2735" /> <location filename="../ViewManager/ViewManager.py" line="3827" /> <source>Ctrl+Meta+R</source> <comment>Search|Replace Occurrence</comment> <translation>Ctrl+Meta+R</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2743" /> + <location filename="../QScintilla/MiniEditor.py" line="2744" /> <location filename="../ViewManager/ViewManager.py" line="3836" /> <source>Replace the found text</source> <translation>Ersetzt den gefundenen Text</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2746" /> + <location filename="../QScintilla/MiniEditor.py" line="2747" /> <location filename="../ViewManager/ViewManager.py" line="3839" /> <source><b>Replace Occurrence</b><p>Replace the found occurrence of the search text in the current editor.</p></source> <translation><b>Fundstelle ersetzen</b><p>Ersetzt den Text an der Fundstelle im aktuellen Editor.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2759" /> - <location filename="../QScintilla/MiniEditor.py" line="2757" /> + <location filename="../QScintilla/MiniEditor.py" line="2760" /> + <location filename="../QScintilla/MiniEditor.py" line="2758" /> <location filename="../ViewManager/ViewManager.py" line="3852" /> <location filename="../ViewManager/ViewManager.py" line="3850" /> <source>Replace All</source> <translation>Alle ersetzen</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2761" /> + <location filename="../QScintilla/MiniEditor.py" line="2762" /> <location filename="../ViewManager/ViewManager.py" line="3854" /> <source>Shift+Meta+R</source> <comment>Search|Replace All</comment> <translation>Shift+Meta+R</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2770" /> + <location filename="../QScintilla/MiniEditor.py" line="2771" /> <location filename="../ViewManager/ViewManager.py" line="3863" /> <source>Replace search text occurrences</source> <translation>Ersetzt alle Fundstellen des Suchtextes</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2773" /> + <location filename="../QScintilla/MiniEditor.py" line="2774" /> <location filename="../ViewManager/ViewManager.py" line="3866" /> <source><b>Replace All</b><p>Replace all occurrences of the search text in the current editor.</p></source> <translation><b>Alle ersetzen</b><p>Ersetzt alle Fundstellen des Suchtextes im aktuellen Editor.</p></translation> @@ -97852,21 +97857,21 @@ <translation>&Suchen</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2788" /> + <location filename="../QScintilla/MiniEditor.py" line="2789" /> <location filename="../QScintilla/ShellWindow.py" line="1016" /> <location filename="../ViewManager/ViewManager.py" line="4208" /> <source>Zoom in</source> <translation>Vergrößern</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2790" /> + <location filename="../QScintilla/MiniEditor.py" line="2791" /> <location filename="../QScintilla/ShellWindow.py" line="1018" /> <location filename="../ViewManager/ViewManager.py" line="4210" /> <source>Zoom &in</source> <translation>Ver&größern</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2792" /> + <location filename="../QScintilla/MiniEditor.py" line="2793" /> <location filename="../QScintilla/ShellWindow.py" line="1020" /> <location filename="../ViewManager/ViewManager.py" line="4212" /> <source>Ctrl++</source> @@ -97874,7 +97879,7 @@ <translation>Ctrl++</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2795" /> + <location filename="../QScintilla/MiniEditor.py" line="2796" /> <location filename="../QScintilla/ShellWindow.py" line="1023" /> <location filename="../ViewManager/ViewManager.py" line="4215" /> <source>Zoom In</source> @@ -97882,35 +97887,35 @@ <translation>Vergrößern</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2801" /> + <location filename="../QScintilla/MiniEditor.py" line="2802" /> <location filename="../QScintilla/ShellWindow.py" line="1029" /> <location filename="../ViewManager/ViewManager.py" line="4221" /> <source>Zoom in on the text</source> <translation>Text vergrößern</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2804" /> + <location filename="../QScintilla/MiniEditor.py" line="2805" /> <location filename="../QScintilla/ShellWindow.py" line="1032" /> <location filename="../ViewManager/ViewManager.py" line="4224" /> <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="../QScintilla/MiniEditor.py" line="2814" /> + <location filename="../QScintilla/MiniEditor.py" line="2815" /> <location filename="../QScintilla/ShellWindow.py" line="1042" /> <location filename="../ViewManager/ViewManager.py" line="4234" /> <source>Zoom out</source> <translation>Verkleinern</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2816" /> + <location filename="../QScintilla/MiniEditor.py" line="2817" /> <location filename="../QScintilla/ShellWindow.py" line="1044" /> <location filename="../ViewManager/ViewManager.py" line="4236" /> <source>Zoom &out</source> <translation>Ver&kleinern</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2818" /> + <location filename="../QScintilla/MiniEditor.py" line="2819" /> <location filename="../QScintilla/ShellWindow.py" line="1046" /> <location filename="../ViewManager/ViewManager.py" line="4238" /> <source>Ctrl+-</source> @@ -97918,7 +97923,7 @@ <translation>Ctrl+-</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2821" /> + <location filename="../QScintilla/MiniEditor.py" line="2822" /> <location filename="../QScintilla/ShellWindow.py" line="1049" /> <location filename="../ViewManager/ViewManager.py" line="4241" /> <source>Zoom Out</source> @@ -97926,35 +97931,35 @@ <translation>Verkleinern</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2827" /> + <location filename="../QScintilla/MiniEditor.py" line="2828" /> <location filename="../QScintilla/ShellWindow.py" line="1055" /> <location filename="../ViewManager/ViewManager.py" line="4247" /> <source>Zoom out on the text</source> <translation>Text verkleinern</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2830" /> + <location filename="../QScintilla/MiniEditor.py" line="2831" /> <location filename="../QScintilla/ShellWindow.py" line="1058" /> <location filename="../ViewManager/ViewManager.py" line="4250" /> <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="../QScintilla/MiniEditor.py" line="2840" /> + <location filename="../QScintilla/MiniEditor.py" line="2841" /> <location filename="../QScintilla/ShellWindow.py" line="1068" /> <location filename="../ViewManager/ViewManager.py" line="4260" /> <source>Zoom reset</source> <translation>Vergrößerung zurücksetzen</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2842" /> + <location filename="../QScintilla/MiniEditor.py" line="2843" /> <location filename="../QScintilla/ShellWindow.py" line="1070" /> <location filename="../ViewManager/ViewManager.py" line="4262" /> <source>Zoom &reset</source> <translation>Vergrößerung &zurücksetzen</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2844" /> + <location filename="../QScintilla/MiniEditor.py" line="2845" /> <location filename="../QScintilla/ShellWindow.py" line="1072" /> <location filename="../ViewManager/ViewManager.py" line="4264" /> <source>Ctrl+0</source> @@ -97962,42 +97967,42 @@ <translation>Ctrl+0</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2851" /> + <location filename="../QScintilla/MiniEditor.py" line="2852" /> <location filename="../QScintilla/ShellWindow.py" line="1079" /> <location filename="../ViewManager/ViewManager.py" line="4271" /> <source>Reset the zoom of the text</source> <translation>Die Textgröße zurücksetzen</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2854" /> + <location filename="../QScintilla/MiniEditor.py" line="2855" /> <location filename="../QScintilla/ShellWindow.py" line="1082" /> <location filename="../ViewManager/ViewManager.py" line="4274" /> <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="../QScintilla/MiniEditor.py" line="2865" /> + <location filename="../QScintilla/MiniEditor.py" line="2866" /> <location filename="../QScintilla/ShellWindow.py" line="1093" /> <location filename="../ViewManager/ViewManager.py" line="4285" /> <source>Zoom</source> <translation>Maßstab</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2867" /> + <location filename="../QScintilla/MiniEditor.py" line="2868" /> <location filename="../QScintilla/ShellWindow.py" line="1095" /> <location filename="../ViewManager/ViewManager.py" line="4287" /> <source>&Zoom</source> <translation>&Maßstab</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2874" /> + <location filename="../QScintilla/MiniEditor.py" line="2875" /> <location filename="../QScintilla/ShellWindow.py" line="1102" /> <location filename="../ViewManager/ViewManager.py" line="4294" /> <source>Zoom the text</source> <translation>Den Maßstab des Textes ändern</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2877" /> + <location filename="../QScintilla/MiniEditor.py" line="2878" /> <location filename="../QScintilla/ShellWindow.py" line="1105" /> <location filename="../ViewManager/ViewManager.py" line="4297" /> <source><b>Zoom</b><p>Zoom the text. This opens a dialog where the desired size can be entered.</p></source> @@ -98762,65 +98767,65 @@ <translation><p>Die Datei <b>{0}</b> enthält ungesicherte Änderungen.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6077" /> + <location filename="../ViewManager/ViewManager.py" line="6078" /> <source>Line: {0:5}</source> <translation>Zeile: {0:5}</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6083" /> + <location filename="../ViewManager/ViewManager.py" line="6084" /> <source>Pos: {0:5}</source> <translation>Pos: {0:5}</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6103" /> + <location filename="../ViewManager/ViewManager.py" line="6104" /> <source>Language: {0}</source> <translation>Sprache: {0}</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6112" /> + <location filename="../ViewManager/ViewManager.py" line="6113" /> <source>EOL Mode: {0}</source> <translation>EOL-Modus: {0}</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6640" /> - <location filename="../ViewManager/ViewManager.py" line="6597" /> + <location filename="../ViewManager/ViewManager.py" line="6641" /> + <location filename="../ViewManager/ViewManager.py" line="6598" /> <source>&Clear</source> <translation>&Löschen</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6634" /> + <location filename="../ViewManager/ViewManager.py" line="6635" /> <source>&Add</source> <translation>&Hinzufügen</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6637" /> + <location filename="../ViewManager/ViewManager.py" line="6638" /> <source>&Edit...</source> <translation>&Bearbeiten...</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="7707" /> - <location filename="../ViewManager/ViewManager.py" line="7693" /> - <location filename="../ViewManager/ViewManager.py" line="7661" /> + <location filename="../ViewManager/ViewManager.py" line="7708" /> + <location filename="../ViewManager/ViewManager.py" line="7694" /> + <location filename="../ViewManager/ViewManager.py" line="7662" /> <source>Edit Spelling Dictionary</source> <translation>Wörterbuch bearbeiten</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="7664" /> + <location filename="../ViewManager/ViewManager.py" line="7665" /> <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="7680" /> + <location filename="../ViewManager/ViewManager.py" line="7681" /> <source>Editing {0}</source> <translation>Bearbeite {0}</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="7696" /> + <location filename="../ViewManager/ViewManager.py" line="7697" /> <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="7710" /> + <location filename="../ViewManager/ViewManager.py" line="7711" /> <source>The spelling dictionary was saved successfully.</source> <translation>Das Wörterbuch wurde erfolgreich gespeichert.</translation> </message> @@ -98830,28 +98835,28 @@ <translation>Es muss eine Verbindung zu einem eric-ide Server bestehen. Abbruch...</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6819" /> + <location filename="../ViewManager/ViewManager.py" line="6820" /> <source>Clear Editor</source> <translation>Editor löschen</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6820" /> + <location filename="../ViewManager/ViewManager.py" line="6821" /> <source>Do you really want to delete all text of the current editor?</source> <translation>Soll wirklich der gesamte Text des aktuellen Editors gelöscht werden?</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="8240" /> - <location filename="../ViewManager/ViewManager.py" line="8223" /> - <source>File System Watcher Error</source> - <translation>Fehler bei Dateisystemüberwachung</translation> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="8224" /> - <source><p>The operating system resources for file system watches are exhausted. This limit should be increased. On a Linux system you should <ul><li>sudo nano /etc/sysctl.conf</li><li>add to the bottom "fs.inotify.max_user_instances = 1024"</li><li>save and close the editor</li><li>sudo sysctl -p</li></ul></p><p>Error Message: {0}</p></source> - <translation><p>Die Betriebssystemresourcen zur Dateisystemüberwachung sind erschöpft. Diese Grenze sollte erhöht werden. Auf einem Linux System sollte dies ausgeführt werden <ul><li>sudo nano /etc/sysctl.conf</li><li>ergänze am Ende "fs.inotify.max_user_instances = 1024"</li><li>speichere und beende den Editor</li><li>sudo sysctl -p</li></ul></p><p>Fehlermeldung: {0}</p></translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="8241" /> + <location filename="../ViewManager/ViewManager.py" line="8224" /> + <source>File System Watcher Error</source> + <translation>Fehler bei Dateisystemüberwachung</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="8225" /> + <source><p>The operating system resources for file system watches are exhausted. This limit should be increased. On a Linux system you should <ul><li>sudo nano /etc/sysctl.conf</li><li>add to the bottom "fs.inotify.max_user_instances = 1024"</li><li>save and close the editor</li><li>sudo sysctl -p</li></ul></p><p>Error Message: {0}</p></source> + <translation><p>Die Betriebssystemresourcen zur Dateisystemüberwachung sind erschöpft. Diese Grenze sollte erhöht werden. Auf einem Linux System sollte dies ausgeführt werden <ul><li>sudo nano /etc/sysctl.conf</li><li>ergänze am Ende "fs.inotify.max_user_instances = 1024"</li><li>speichere und beende den Editor</li><li>sudo sysctl -p</li></ul></p><p>Fehlermeldung: {0}</p></translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="8242" /> <source>The file system watcher reported an error with code <b>{0}</b>.</p><p>Error Message: {1}</p></source> <translation>Die Dateisystemüberwachung meldete einen Fehler mit dem Code <b>{0}</b>.</p><p>Fehlermeldung: {1}</p></translation> </message> @@ -106314,301 +106319,306 @@ <translation>Leerzeichen nach „{0}“</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="95" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="96" /> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="94" /> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="93" /> <source>whitespace before '{0}'</source> <translation>Leerzeichen vor „{0}“</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="96" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="95" /> + <source>whitespace after decorator '@'</source> + <translation>Leerzeichen nach Dekorator '@'</translation> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="97" /> <source>multiple spaces before operator</source> <translation>mehrfache Leerzeichen vor Operator</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="99" /> - <source>multiple spaces after operator</source> - <translation>mehrfache Leerzeichen nach Operator</translation> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="100" /> - <source>tab before operator</source> - <translation>Tabulator vor Operator</translation> + <source>multiple spaces after operator</source> + <translation>mehrfache Leerzeichen nach Operator</translation> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="101" /> - <source>tab after operator</source> - <translation>Tabulator nach Operator</translation> + <source>tab before operator</source> + <translation>Tabulator vor Operator</translation> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="102" /> + <source>tab after operator</source> + <translation>Tabulator nach Operator</translation> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="103" /> <source>missing whitespace around operator</source> <translation>fehlende Leerzeichen um Operator</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="105" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="106" /> <source>missing whitespace around arithmetic operator</source> <translation>fehlende Leerzeichen um Arithmetikoperator</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="108" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="109" /> <source>missing whitespace around bitwise or shift operator</source> <translation>fehlende Leerzeichen um Bit- oder Shiftoperator</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="111" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="112" /> <source>missing whitespace around modulo operator</source> <translation>fehlende Leerzeichen um Modulooperator</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="114" /> - <source>missing whitespace after '{0}'</source> - <translation>fehlende Leerzeichen nach „{0}“</translation> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="115" /> - <source>multiple spaces after '{0}'</source> - <translation>mehrfache Leerzeichen nach „{0}“</translation> + <source>missing whitespace after '{0}'</source> + <translation>fehlende Leerzeichen nach „{0}“</translation> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="116" /> - <source>tab after '{0}'</source> - <translation>Tabulator nach „{0}“</translation> + <source>multiple spaces after '{0}'</source> + <translation>mehrfache Leerzeichen nach „{0}“</translation> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="117" /> + <source>tab after '{0}'</source> + <translation>Tabulator nach „{0}“</translation> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="118" /> <source>unexpected spaces around keyword / parameter equals</source> <translation>unerwartete Leerzeichen um Schlüsselwort- / Parameter-Gleichheitszeichen</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="120" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="121" /> <source>missing whitespace around parameter equals</source> <translation>fehlende Leerzeichen um Parameter-Gleichheitszeichen</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="123" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="124" /> <source>at least two spaces before inline comment</source> <translation>mindestens zwei Leerzeichen vor einem Inline-Kommentar</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="126" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="127" /> <source>inline comment should start with '# '</source> <translation>Inline-Kommentar sollte mit „# “ beginnen</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="129" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="130" /> <source>block comment should start with '# '</source> <translation>Blockkommentar soll mit '# ' beginnen</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="132" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="133" /> <source>too many leading '#' for block comment</source> <translation>zu viele führende '#' für einen Blockkommentar</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="135" /> - <source>multiple spaces after keyword</source> - <translation>mehrfache Leerzeichen nach Schlüsselwort</translation> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="136" /> - <source>multiple spaces before keyword</source> - <translation>mehrfache Leerzeichen vor Schlüsselwort</translation> + <source>multiple spaces after keyword</source> + <translation>mehrfache Leerzeichen nach Schlüsselwort</translation> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="137" /> - <source>tab after keyword</source> - <translation>Tabulator nach Schlüsselwort</translation> + <source>multiple spaces before keyword</source> + <translation>mehrfache Leerzeichen vor Schlüsselwort</translation> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="138" /> - <source>tab before keyword</source> - <translation>Tabulator vor Schlüsselwort</translation> + <source>tab after keyword</source> + <translation>Tabulator nach Schlüsselwort</translation> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="139" /> + <source>tab before keyword</source> + <translation>Tabulator vor Schlüsselwort</translation> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="140" /> <source>missing whitespace after keyword</source> <translation>fehlende Leerzeichen nach Schlüsselwort</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="145" /> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="142" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="146" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="143" /> <source>expected {0} blank lines, found {1}</source> <translation>erwartete {0} leere Zeilen, {1} gefunden</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="148" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="149" /> <source>too many blank lines ({0}), expected {1}</source> <translation>zu viele leere Zeilen ({0}), erwartete {1}</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="151" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="152" /> <source>blank lines found after function decorator</source> <translation>leere Zeile nach Funktionsdekorator gefunden</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="154" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="155" /> <source>expected {0} blank lines after class or function definition, found {1}</source> <translation>erwartete {0} Leerzeilen nach Klassen- oder Funktionsdefinition, {1} gefunden</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="158" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="159" /> <source>expected {0} blank lines before a nested definition, found {1}</source> <translation>erwartete {0} Leerzeilen vor einer geschachtelten Definition, {1} gefunden</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="161" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="162" /> <source>too many blank lines ({0}) before a nested definition, expected {1}</source> <translation>zu viele leere Zeilen ({0}) vor einer geschachtelten Definition, erwartete {1}</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="165" /> - <source>too many blank lines ({0})</source> - <translation>zu viele leere Zeilen ({0})</translation> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="166" /> - <source>multiple imports on one line</source> - <translation>mehrfache Importe in einer Zeile</translation> + <source>too many blank lines ({0})</source> + <translation>zu viele leere Zeilen ({0})</translation> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="167" /> + <source>multiple imports on one line</source> + <translation>mehrfache Importe in einer Zeile</translation> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="168" /> <source>module level import not at top of file</source> <translation>Modul Import nicht am Dateianfang</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="170" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="171" /> <source>line too long ({0} > {1} characters)</source> <translation>Zeile zu lang ({0} > {1} Zeichen)</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="173" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="174" /> <source>the backslash is redundant between brackets</source> <translation>Backslash ist redundant innerhalb von Klammern</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="176" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="177" /> <source>multiple statements on one line (colon)</source> <translation>mehrere Anweisungen in einer Zeile (Doppelpunkt)</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="179" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="180" /> <source>multiple statements on one line (semicolon)</source> <translation>mehrere Anweisungen in einer Zeile (Semikolon)</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="182" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="183" /> <source>statement ends with a semicolon</source> <translation>Anweisung endet mit einem Semikolon</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="185" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="186" /> <source>multiple statements on one line (def)</source> <translation>mehrere Anweisungen in einer Zeile (def)</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="191" /> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="188" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="192" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="189" /> <source>comparison to {0} should be {1}</source> <translation>Vergleich mit {0} sollte {1} sein</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="194" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="195" /> <source>test for membership should be 'not in'</source> <translation>Test auf Nicht-Mitgliederschaft soll mit 'not in' erfolgen</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="197" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="198" /> <source>test for object identity should be 'is not'</source> <translation>Test auf Ungleichheit der Objekte soll mit 'is not' erfolgen</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="200" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="201" /> <source>do not compare types, for exact checks use 'is' / 'is not', for instance checks use 'isinstance()'</source> <translation>vergleiche keine Typen; für eine genaue Typprüfung verwende 'is' / 'is not', für eine Instanzprüfung verwende 'isinstance()'</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="205" /> - <source>do not use bare except</source> - <translation>verwende kein leeres 'except'</translation> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="206" /> + <source>do not use bare except</source> + <translation>verwende kein leeres 'except'</translation> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="207" /> <source>do not assign a lambda expression, use a def</source> <translation>weise keine Lambda Ausdrücke zu, nutze def</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="209" /> - <source>ambiguous variable name '{0}'</source> - <translation>mehrdeutiger Variablenname '{0}'</translation> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="210" /> + <source>ambiguous variable name '{0}'</source> + <translation>mehrdeutiger Variablenname '{0}'</translation> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="211" /> <source>ambiguous class definition '{0}'</source> <translation>mehrdeutige Klassenbezeichnung '{0}'</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="213" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="214" /> <source>ambiguous function definition '{0}'</source> <translation>mehrdeutige Funktionsbezeichnung '{0}'</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="216" /> - <source>{0}: {1}</source> - <translation>{0}: {1}</translation> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="217" /> + <source>{0}: {1}</source> + <translation>{0}: {1}</translation> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="218" /> <source>{0}</source> <translation>{0}</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="225" /> - <source>indentation contains tabs</source> - <translation>Einrückung enthält Tabulatoren</translation> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="226" /> - <source>trailing whitespace</source> - <translation>abschließende Leerzeichen</translation> + <source>indentation contains tabs</source> + <translation>Einrückung enthält Tabulatoren</translation> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="227" /> - <source>no newline at end of file</source> - <translation>kein Zeilenumbruch am Dateiende</translation> + <source>trailing whitespace</source> + <translation>abschließende Leerzeichen</translation> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="228" /> - <source>blank line contains whitespace</source> - <translation>leere Zeile enthält Leerzeichen</translation> + <source>no newline at end of file</source> + <translation>kein Zeilenumbruch am Dateiende</translation> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="229" /> - <source>blank line at end of file</source> - <translation>leere Zeile am Dateiende</translation> + <source>blank line contains whitespace</source> + <translation>leere Zeile enthält Leerzeichen</translation> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="230" /> + <source>blank line at end of file</source> + <translation>leere Zeile am Dateiende</translation> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="231" /> <source>line break before binary operator</source> <translation>Zeilenumbruch vor Binäroperator</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="233" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="234" /> <source>line break after binary operator</source> <translation>Zeilenumbruch nach Binäroperator</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="236" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="237" /> <source>doc line too long ({0} > {1} characters)</source> <translation>Dokumentationszeile zu lang ({0} > {1} Zeichen)</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="239" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="240" /> <source>invalid escape sequence '\{0}'</source> <translation>ungültige Escape-Sequenz '\{0}'</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="242" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="243" /> <source>'async' and 'await' are reserved keywords starting with Python 3.7</source> <translation>'async' und 'await' sind ab Python 3.7 reservierte Schlüsselwörter</translation> </message>
--- a/src/eric7/i18n/eric7_empty.ts Mon Jul 29 14:43:59 2024 +0200 +++ b/src/eric7/i18n/eric7_empty.ts Sat Aug 31 10:54:21 2024 +0200 @@ -5090,7 +5090,7 @@ <context> <name>CodeStyleChecker</name> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="515" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="516" /> <source>No message defined for code '{0}'.</source> <translation type="unfinished" /> </message> @@ -6230,226 +6230,226 @@ <context> <name>CodeStyleFixer</name> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="253" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="254" /> <source>Triple single quotes converted to triple double quotes.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="256" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="257" /> <source>Introductory quotes corrected to be {0}"""</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="259" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="260" /> <source>Single line docstring put on one line.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="262" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="263" /> <source>Period added to summary line.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="289" /> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="265" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="290" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="266" /> <source>Blank line before function/method docstring removed.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="268" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="269" /> <source>Blank line inserted before class docstring.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="271" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="272" /> <source>Blank line inserted after class docstring.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="274" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="275" /> <source>Blank line inserted after docstring summary.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="277" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="278" /> <source>Blank line inserted after last paragraph of docstring.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="280" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="281" /> <source>Leading quotes put on separate line.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="283" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="284" /> <source>Trailing quotes put on separate line.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="286" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="287" /> <source>Blank line before class docstring removed.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="292" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="293" /> <source>Blank line after class docstring removed.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="295" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="296" /> <source>Blank line after function/method docstring removed.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="298" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="299" /> <source>Blank line after last paragraph removed.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="301" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="302" /> <source>Tab converted to 4 spaces.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="304" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="305" /> <source>Indentation adjusted to be a multiple of four.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="307" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="308" /> <source>Indentation of continuation line corrected.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="310" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="311" /> <source>Indentation of closing bracket corrected.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="313" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="314" /> <source>Missing indentation of continuation line corrected.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="316" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="317" /> <source>Closing bracket aligned to opening bracket.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="319" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="320" /> <source>Indentation level changed.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="322" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="323" /> <source>Indentation level of hanging indentation changed.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="325" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="326" /> <source>Visual indentation corrected.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="340" /> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="334" /> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="328" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="341" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="335" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="329" /> <source>Extraneous whitespace removed.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="337" /> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="331" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="338" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="332" /> <source>Missing whitespace added.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="343" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="344" /> <source>Whitespace around comment sign corrected.</source> <translation type="unfinished" /> </message> <message numerus="yes"> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="346" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="347" /> <source>%n blank line(s) inserted.</source> <translation type="unfinished"> <numerusform /> </translation> </message> <message numerus="yes"> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="349" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="350" /> <source>%n superfluous lines removed</source> <translation type="unfinished"> <numerusform /> </translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="352" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="353" /> <source>Superfluous blank lines removed.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="355" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="356" /> <source>Superfluous blank lines after function decorator removed.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="358" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="359" /> <source>Imports were put on separate lines.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="361" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="362" /> <source>Long lines have been shortened.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="364" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="365" /> <source>Redundant backslash in brackets removed.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="370" /> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="367" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="371" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="368" /> <source>Compound statement corrected.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="373" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="374" /> <source>Comparison to None/True/False corrected.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="376" /> - <source>'{0}' argument added.</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="377" /> - <source>'{0}' argument removed.</source> + <source>'{0}' argument added.</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="378" /> + <source>'{0}' argument removed.</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="379" /> <source>Whitespace stripped from end of line.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="381" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="382" /> <source>newline added to end of file.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="384" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="385" /> <source>Superfluous trailing blank lines removed from end of file.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="387" /> - <source>'<>' replaced by '!='.</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="388" /> + <source>'<>' replaced by '!='.</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="389" /> <source>Could not save the file! Skipping it. Reason: {0}</source> <translation type="unfinished" /> </message> @@ -20625,45 +20625,45 @@ <context> <name>EricToolBarDialog</name> <message> - <location filename="../EricWidgets/EricToolBarDialog.py" line="89" /> + <location filename="../EricWidgets/EricToolBarDialog.py" line="90" /> <source>--Separator--</source> <translation type="unfinished" /> </message> <message> - <location filename="../EricWidgets/EricToolBarDialog.py" line="169" /> - <location filename="../EricWidgets/EricToolBarDialog.py" line="160" /> + <location filename="../EricWidgets/EricToolBarDialog.py" line="164" /> + <location filename="../EricWidgets/EricToolBarDialog.py" line="155" /> <source>New Toolbar</source> <translation type="unfinished" /> </message> <message> - <location filename="../EricWidgets/EricToolBarDialog.py" line="161" /> + <location filename="../EricWidgets/EricToolBarDialog.py" line="156" /> <source>Toolbar Name:</source> <translation type="unfinished" /> </message> <message> - <location filename="../EricWidgets/EricToolBarDialog.py" line="238" /> - <location filename="../EricWidgets/EricToolBarDialog.py" line="170" /> + <location filename="../EricWidgets/EricToolBarDialog.py" line="233" /> + <location filename="../EricWidgets/EricToolBarDialog.py" line="165" /> <source>A toolbar with the name <b>{0}</b> already exists.</source> <translation type="unfinished" /> </message> <message> - <location filename="../EricWidgets/EricToolBarDialog.py" line="197" /> + <location filename="../EricWidgets/EricToolBarDialog.py" line="192" /> <source>Remove Toolbar</source> <translation type="unfinished" /> </message> <message> - <location filename="../EricWidgets/EricToolBarDialog.py" line="198" /> + <location filename="../EricWidgets/EricToolBarDialog.py" line="193" /> <source>Should the toolbar <b>{0}</b> really be removed?</source> <translation type="unfinished" /> </message> <message> - <location filename="../EricWidgets/EricToolBarDialog.py" line="237" /> - <location filename="../EricWidgets/EricToolBarDialog.py" line="225" /> + <location filename="../EricWidgets/EricToolBarDialog.py" line="232" /> + <location filename="../EricWidgets/EricToolBarDialog.py" line="220" /> <source>Rename Toolbar</source> <translation type="unfinished" /> </message> <message> - <location filename="../EricWidgets/EricToolBarDialog.py" line="226" /> + <location filename="../EricWidgets/EricToolBarDialog.py" line="221" /> <source>New Toolbar Name:</source> <translation type="unfinished" /> </message> @@ -54337,723 +54337,723 @@ <context> <name>MiniEditor</name> <message> - <location filename="../QScintilla/MiniEditor.py" line="492" /> + <location filename="../QScintilla/MiniEditor.py" line="493" /> <source>About eric Mini Editor</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="493" /> + <location filename="../QScintilla/MiniEditor.py" line="494" /> <source>The eric 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 type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="562" /> + <location filename="../QScintilla/MiniEditor.py" line="563" /> <source>Line: {0:5}</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="566" /> + <location filename="../QScintilla/MiniEditor.py" line="567" /> <source>Pos: {0:5}</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="580" /> + <location filename="../QScintilla/MiniEditor.py" line="581" /> <source>Language: {0}</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="644" /> + <location filename="../QScintilla/MiniEditor.py" line="645" /> <source>New</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="646" /> - <source>&New</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="647" /> + <source>&New</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="648" /> <source>Ctrl+N</source> <comment>File|New</comment> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="652" /> + <location filename="../QScintilla/MiniEditor.py" line="653" /> <source>Open an empty editor window</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="654" /> + <location filename="../QScintilla/MiniEditor.py" line="655" /> <source><b>New</b><p>An empty editor window will be created.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="660" /> + <location filename="../QScintilla/MiniEditor.py" line="661" /> <source>Open</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="662" /> - <source>&Open...</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="663" /> + <source>&Open...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="664" /> <source>Ctrl+O</source> <comment>File|Open</comment> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="668" /> + <location filename="../QScintilla/MiniEditor.py" line="669" /> <source>Open a file</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="670" /> + <location filename="../QScintilla/MiniEditor.py" line="671" /> <source><b>Open a file</b><p>You will be asked for the name of a file to be opened.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="679" /> + <location filename="../QScintilla/MiniEditor.py" line="680" /> <source>Save</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="681" /> - <source>&Save</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="682" /> + <source>&Save</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="683" /> <source>Ctrl+S</source> <comment>File|Save</comment> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="687" /> + <location filename="../QScintilla/MiniEditor.py" line="688" /> <source>Save the current file</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="689" /> + <location filename="../QScintilla/MiniEditor.py" line="690" /> <source><b>Save File</b><p>Save the contents of current editor window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="698" /> + <location filename="../QScintilla/MiniEditor.py" line="699" /> <source>Save as</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="700" /> - <source>Save &as...</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="701" /> + <source>Save &as...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="702" /> <source>Shift+Ctrl+S</source> <comment>File|Save As</comment> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="706" /> + <location filename="../QScintilla/MiniEditor.py" line="707" /> <source>Save the current file to a new one</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="708" /> + <location filename="../QScintilla/MiniEditor.py" line="709" /> <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 type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="718" /> + <location filename="../QScintilla/MiniEditor.py" line="719" /> <source>Save Copy</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="720" /> + <location filename="../QScintilla/MiniEditor.py" line="721" /> <source>Save &Copy...</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="726" /> + <location filename="../QScintilla/MiniEditor.py" line="727" /> <source>Save a copy of the current file</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="728" /> + <location filename="../QScintilla/MiniEditor.py" line="729" /> <source><b>Save Copy</b><p>Save a copy of the contents of current editor window. The file can be entered in a file selection dialog.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="738" /> + <location filename="../QScintilla/MiniEditor.py" line="739" /> <source>Close</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="740" /> - <source>&Close</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="741" /> + <source>&Close</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="742" /> <source>Ctrl+W</source> <comment>File|Close</comment> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="746" /> + <location filename="../QScintilla/MiniEditor.py" line="747" /> <source>Close the editor window</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="748" /> + <location filename="../QScintilla/MiniEditor.py" line="749" /> <source><b>Close Window</b><p>Close the current window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="754" /> + <location filename="../QScintilla/MiniEditor.py" line="755" /> <source>Print</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="756" /> - <source>&Print</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="757" /> + <source>&Print</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="758" /> <source>Ctrl+P</source> <comment>File|Print</comment> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="762" /> + <location filename="../QScintilla/MiniEditor.py" line="763" /> <source>Print the current file</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="764" /> + <location filename="../QScintilla/MiniEditor.py" line="765" /> <source><b>Print File</b><p>Print the contents of the current file.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="773" /> + <location filename="../QScintilla/MiniEditor.py" line="774" /> <source>Print Preview</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="781" /> + <location filename="../QScintilla/MiniEditor.py" line="782" /> <source>Print preview of the current file</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="783" /> + <location filename="../QScintilla/MiniEditor.py" line="784" /> <source><b>Print Preview</b><p>Print preview of the current file.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="796" /> + <location filename="../QScintilla/MiniEditor.py" line="797" /> <source>Undo</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="798" /> - <source>&Undo</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="799" /> - <source>Ctrl+Z</source> - <comment>Edit|Undo</comment> + <source>&Undo</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="800" /> + <source>Ctrl+Z</source> + <comment>Edit|Undo</comment> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="801" /> <source>Alt+Backspace</source> <comment>Edit|Undo</comment> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="804" /> + <location filename="../QScintilla/MiniEditor.py" line="805" /> <source>Undo the last change</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="806" /> + <location filename="../QScintilla/MiniEditor.py" line="807" /> <source><b>Undo</b><p>Undo the last change done in the current editor.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="815" /> + <location filename="../QScintilla/MiniEditor.py" line="816" /> <source>Redo</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="817" /> - <source>&Redo</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="818" /> + <source>&Redo</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="819" /> <source>Ctrl+Shift+Z</source> <comment>Edit|Redo</comment> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="823" /> + <location filename="../QScintilla/MiniEditor.py" line="824" /> <source>Redo the last change</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="825" /> + <location filename="../QScintilla/MiniEditor.py" line="826" /> <source><b>Redo</b><p>Redo the last change done in the current editor.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="834" /> + <location filename="../QScintilla/MiniEditor.py" line="835" /> <source>Cut</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="836" /> - <source>Cu&t</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="837" /> - <source>Ctrl+X</source> - <comment>Edit|Cut</comment> + <source>Cu&t</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="838" /> + <source>Ctrl+X</source> + <comment>Edit|Cut</comment> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="839" /> <source>Shift+Del</source> <comment>Edit|Cut</comment> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="842" /> + <location filename="../QScintilla/MiniEditor.py" line="843" /> <source>Cut the selection</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="844" /> + <location filename="../QScintilla/MiniEditor.py" line="845" /> <source><b>Cut</b><p>Cut the selected text of the current editor to the clipboard.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="854" /> + <location filename="../QScintilla/MiniEditor.py" line="855" /> <source>Copy</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="856" /> - <source>&Copy</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="857" /> - <source>Ctrl+C</source> - <comment>Edit|Copy</comment> + <source>&Copy</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="858" /> + <source>Ctrl+C</source> + <comment>Edit|Copy</comment> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="859" /> <source>Ctrl+Ins</source> <comment>Edit|Copy</comment> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="862" /> + <location filename="../QScintilla/MiniEditor.py" line="863" /> <source>Copy the selection</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="864" /> + <location filename="../QScintilla/MiniEditor.py" line="865" /> <source><b>Copy</b><p>Copy the selected text of the current editor to the clipboard.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="874" /> + <location filename="../QScintilla/MiniEditor.py" line="875" /> <source>Paste</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="876" /> - <source>&Paste</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="877" /> - <source>Ctrl+V</source> - <comment>Edit|Paste</comment> + <source>&Paste</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="878" /> + <source>Ctrl+V</source> + <comment>Edit|Paste</comment> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="879" /> <source>Shift+Ins</source> <comment>Edit|Paste</comment> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="882" /> + <location filename="../QScintilla/MiniEditor.py" line="883" /> <source>Paste the last cut/copied text</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="884" /> + <location filename="../QScintilla/MiniEditor.py" line="885" /> <source><b>Paste</b><p>Paste the last cut/copied text from the clipboard to the current editor.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="894" /> + <location filename="../QScintilla/MiniEditor.py" line="895" /> <source>Clear</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="896" /> - <source>Cl&ear</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="897" /> + <source>Cl&ear</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="898" /> <source>Alt+Shift+C</source> <comment>Edit|Clear</comment> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="902" /> + <location filename="../QScintilla/MiniEditor.py" line="903" /> <source>Clear all text</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="904" /> + <location filename="../QScintilla/MiniEditor.py" line="905" /> <source><b>Clear</b><p>Delete all text of the current editor.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2892" /> + <location filename="../QScintilla/MiniEditor.py" line="2893" /> <source>About</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2892" /> + <location filename="../QScintilla/MiniEditor.py" line="2893" /> <source>&About</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2894" /> + <location filename="../QScintilla/MiniEditor.py" line="2895" /> <source>Display information about this software</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2896" /> + <location filename="../QScintilla/MiniEditor.py" line="2897" /> <source><b>About</b><p>Display some information about this software.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2905" /> + <location filename="../QScintilla/MiniEditor.py" line="2906" /> <source>About Qt</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2905" /> + <location filename="../QScintilla/MiniEditor.py" line="2906" /> <source>About &Qt</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2908" /> + <location filename="../QScintilla/MiniEditor.py" line="2909" /> <source>Display information about the Qt toolkit</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2911" /> + <location filename="../QScintilla/MiniEditor.py" line="2912" /> <source><b>About Qt</b><p>Display some information about the Qt toolkit.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2920" /> + <location filename="../QScintilla/MiniEditor.py" line="2921" /> <source>What's This?</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2922" /> - <source>&What's This?</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="2923" /> + <source>&What's This?</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="2924" /> <source>Shift+F1</source> <comment>Help|What's This?'</comment> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2928" /> + <location filename="../QScintilla/MiniEditor.py" line="2929" /> <source>Context sensitive help</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2930" /> + <location filename="../QScintilla/MiniEditor.py" line="2931" /> <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 type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2948" /> + <location filename="../QScintilla/MiniEditor.py" line="2949" /> <source>Preferences</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2950" /> + <location filename="../QScintilla/MiniEditor.py" line="2951" /> <source>&Preferences...</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2956" /> + <location filename="../QScintilla/MiniEditor.py" line="2957" /> <source>Set the prefered configuration</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2958" /> + <location filename="../QScintilla/MiniEditor.py" line="2959" /> <source><b>Preferences</b><p>Set the configuration items of the application with your prefered values.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2972" /> + <location filename="../QScintilla/MiniEditor.py" line="2973" /> <source>&File</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2984" /> + <location filename="../QScintilla/MiniEditor.py" line="2985" /> <source>&Edit</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2994" /> + <location filename="../QScintilla/MiniEditor.py" line="2995" /> <source>&Search</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3004" /> + <location filename="../QScintilla/MiniEditor.py" line="3005" /> <source>&View</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3010" /> + <location filename="../QScintilla/MiniEditor.py" line="3011" /> <source>Se&ttings</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3015" /> + <location filename="../QScintilla/MiniEditor.py" line="3016" /> <source>&Help</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3027" /> + <location filename="../QScintilla/MiniEditor.py" line="3028" /> <source>File</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3039" /> + <location filename="../QScintilla/MiniEditor.py" line="3040" /> <source>Edit</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3048" /> + <location filename="../QScintilla/MiniEditor.py" line="3049" /> <source>Search</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3054" /> + <location filename="../QScintilla/MiniEditor.py" line="3055" /> <source>View</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3060" /> + <location filename="../QScintilla/MiniEditor.py" line="3061" /> <source>Settings</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3063" /> + <location filename="../QScintilla/MiniEditor.py" line="3064" /> <source>Help</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3076" /> + <location filename="../QScintilla/MiniEditor.py" line="3077" /> <source><p>This part of the status bar displays the editor language.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3086" /> + <location filename="../QScintilla/MiniEditor.py" line="3087" /> <source><p>This part of the status bar displays an indication of the editors files writability.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3095" /> + <location filename="../QScintilla/MiniEditor.py" line="3096" /> <source><p>This part of the status bar displays the line number of the editor.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3104" /> + <location filename="../QScintilla/MiniEditor.py" line="3105" /> <source><p>This part of the status bar displays the cursor position of the editor.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3118" /> + <location filename="../QScintilla/MiniEditor.py" line="3119" /> <source><p>This part of the status bar allows zooming the editor.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3125" /> + <location filename="../QScintilla/MiniEditor.py" line="3126" /> <source>Ready</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3201" /> - <source>eric Mini Editor</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="3202" /> + <source>eric Mini Editor</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="3203" /> <source>The document has unsaved changes.</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3231" /> - <source>Open File</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="3232" /> + <source>Open File</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="3233" /> <source><p>The file <b>{0}</b> could not be opened.</p><p>Reason: {1}</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3260" /> + <location filename="../QScintilla/MiniEditor.py" line="3261" /> <source>File loaded</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3341" /> - <source>Save File</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="3342" /> + <source>Save File</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="3343" /> <source><p>The file <b>{0}</b> could not be saved.<br/>Reason: {1}</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3348" /> + <location filename="../QScintilla/MiniEditor.py" line="3349" /> <source>File saved</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3360" /> + <location filename="../QScintilla/MiniEditor.py" line="3361" /> <source>[*] - {0}</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3380" /> - <location filename="../QScintilla/MiniEditor.py" line="3360" /> + <location filename="../QScintilla/MiniEditor.py" line="3381" /> + <location filename="../QScintilla/MiniEditor.py" line="3361" /> <source>Mini Editor</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3735" /> - <location filename="../QScintilla/MiniEditor.py" line="3706" /> - <location filename="../QScintilla/MiniEditor.py" line="3373" /> + <location filename="../QScintilla/MiniEditor.py" line="3736" /> + <location filename="../QScintilla/MiniEditor.py" line="3707" /> + <location filename="../QScintilla/MiniEditor.py" line="3374" /> <source>Untitled</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3380" /> + <location filename="../QScintilla/MiniEditor.py" line="3381" /> <source>{0}[*] - {1}</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3701" /> + <location filename="../QScintilla/MiniEditor.py" line="3702" /> <source>Printing...</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3717" /> + <location filename="../QScintilla/MiniEditor.py" line="3718" /> <source>Printing completed</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3719" /> + <location filename="../QScintilla/MiniEditor.py" line="3720" /> <source>Error while printing</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3722" /> + <location filename="../QScintilla/MiniEditor.py" line="3723" /> <source>Printing aborted</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3777" /> - <source>Select all</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="3778" /> + <source>Select all</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="3779" /> <source>Deselect all</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3792" /> + <location filename="../QScintilla/MiniEditor.py" line="3793" /> <source>Languages</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3795" /> + <location filename="../QScintilla/MiniEditor.py" line="3796" /> <source>No Language</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3816" /> + <location filename="../QScintilla/MiniEditor.py" line="3817" /> <source>Guessed</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3838" /> - <location filename="../QScintilla/MiniEditor.py" line="3820" /> + <location filename="../QScintilla/MiniEditor.py" line="3839" /> + <location filename="../QScintilla/MiniEditor.py" line="3821" /> <source>Alternatives</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3835" /> + <location filename="../QScintilla/MiniEditor.py" line="3836" /> <source>Alternatives ({0})</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3867" /> - <source>Pygments Lexer</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="3868" /> + <source>Pygments Lexer</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="3869" /> <source>Select the Pygments lexer to apply.</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="4413" /> - <source>EditorConfig Properties</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="4414" /> + <source>EditorConfig Properties</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="4415" /> <source><p>The EditorConfig properties for file <b>{0}</b> could not be loaded.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="4601" /> - <source>Save File to Device</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="4602" /> + <source>Save File to Device</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="4603" /> <source>Enter the complete device file path:</source> <translation type="unfinished" /> </message> @@ -55270,499 +55270,504 @@ <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="135" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="134" /> + <source>unnecessary {0} comprehension - rewrite using dict.fromkeys()</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="139" /> <source>sort keys - '{0}' should be before '{1}'</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="140" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="144" /> <source>the number of arguments for property getter method is wrong (should be 1 instead of {0})</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="145" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="149" /> <source>the number of arguments for property setter method is wrong (should be 2 instead of {0})</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="150" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="154" /> <source>the number of arguments for property deleter method is wrong (should be 1 instead of {0})</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="155" /> - <source>the name of the setter method is wrong (should be '{0}' instead of '{1}')</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="159" /> - <source>the name of the deleter method is wrong (should be '{0}' instead of '{1}')</source> + <source>the name of the setter method is wrong (should be '{0}' instead of '{1}')</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="163" /> - <source>the name of the setter decorator is wrong (should be '{0}' instead of '{1}')</source> + <source>the name of the deleter method is wrong (should be '{0}' instead of '{1}')</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="167" /> - <source>the name of the deleter decorator is wrong (should be '{0}' instead of '{1}')</source> + <source>the name of the setter decorator is wrong (should be '{0}' instead of '{1}')</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="171" /> + <source>the name of the deleter decorator is wrong (should be '{0}' instead of '{1}')</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="175" /> <source>multiple decorators were used to declare property '{0}'</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="176" /> - <source>use of 'datetime.datetime()' without 'tzinfo' argument should be avoided</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="180" /> + <source>use of 'datetime.datetime()' without 'tzinfo' argument should be avoided</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="184" /> <source>use of 'datetime.datetime.today()' should be avoided. Use 'datetime.datetime.now(tz=)' instead.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="185" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="189" /> <source>use of 'datetime.datetime.utcnow()' should be avoided. Use 'datetime.datetime.now(tz=datetime.timezone.utc)' instead.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="190" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="194" /> <source>use of 'datetime.datetime.utcfromtimestamp()' should be avoided. Use 'datetime.datetime.fromtimestamp(..., tz=datetime.timezone.utc)' instead.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="195" /> - <source>use of 'datetime.datetime.now()' without 'tz' argument should be avoided</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="199" /> + <source>use of 'datetime.datetime.now()' without 'tz' argument should be avoided</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="203" /> <source>use of 'datetime.datetime.fromtimestamp()' without 'tz' argument should be avoided</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="204" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="208" /> <source>use of 'datetime.datetime.strptime()' should be followed by '.replace(tzinfo=)'</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="209" /> - <source>use of 'datetime.datetime.fromordinal()' should be avoided</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="213" /> + <source>use of 'datetime.datetime.fromordinal()' should be avoided</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="217" /> <source>use of 'datetime.date()' should be avoided. Use 'datetime.datetime(, tzinfo=).date()' instead.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="218" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="222" /> <source>use of 'datetime.date.today()' should be avoided. Use 'datetime.datetime.now(tz=).date()' instead.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="223" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="227" /> <source>use of 'datetime.date.fromtimestamp()' should be avoided. Use 'datetime.datetime.fromtimestamp(tz=).date()' instead.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="228" /> - <source>use of 'datetime.date.fromordinal()' should be avoided</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="232" /> - <source>use of 'datetime.date.fromisoformat()' should be avoided</source> + <source>use of 'datetime.date.fromordinal()' should be avoided</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="236" /> + <source>use of 'datetime.date.fromisoformat()' should be avoided</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="240" /> <source>use of 'datetime.time()' without 'tzinfo' argument should be avoided</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="241" /> - <source>'sys.version[:3]' referenced (Python 3.10), use 'sys.version_info'</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="245" /> - <source>'sys.version[2]' referenced (Python 3.10), use 'sys.version_info'</source> + <source>'sys.version[:3]' referenced (Python 3.10), use 'sys.version_info'</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="249" /> - <source>'sys.version' compared to string (Python 3.10), use 'sys.version_info'</source> + <source>'sys.version[2]' referenced (Python 3.10), use 'sys.version_info'</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="253" /> - <source>'sys.version_info[0] == 3' referenced (Python 4), use '>='</source> + <source>'sys.version' compared to string (Python 3.10), use 'sys.version_info'</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="257" /> - <source>'six.PY3' referenced (Python 4), use 'not six.PY2'</source> + <source>'sys.version_info[0] == 3' referenced (Python 4), use '>='</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="261" /> + <source>'six.PY3' referenced (Python 4), use 'not six.PY2'</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="265" /> <source>'sys.version_info[1]' compared to integer (Python 4), compare 'sys.version_info' to tuple</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="266" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="270" /> <source>'sys.version_info.minor' compared to integer (Python 4), compare 'sys.version_info' to tuple</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="271" /> - <source>'sys.version[0]' referenced (Python 10), use 'sys.version_info'</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="275" /> - <source>'sys.version' compared to string (Python 10), use 'sys.version_info'</source> + <source>'sys.version[0]' referenced (Python 10), use 'sys.version_info'</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="279" /> + <source>'sys.version' compared to string (Python 10), use 'sys.version_info'</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="283" /> <source>'sys.version[:1]' referenced (Python 10), use 'sys.version_info'</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="284" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="288" /> <source>Do not use bare 'except:', it also catches unexpected events like memory errors, interrupts, system exit, and so on. Prefer excepting specific exceptions. If you're sure what you're doing, be explicit and write 'except BaseException:'.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="291" /> - <source>Python does not support the unary prefix increment</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="295" /> + <source>Python does not support the unary prefix increment</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="299" /> <source>assigning to 'os.environ' does not clear the environment - use 'os.environ.clear()'</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="300" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="304" /> <source>using 'hasattr(x, "__call__")' to test if 'x' is callable is unreliable. Use 'callable(x)' for consistent results.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="305" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="309" /> <source>using .strip() with multi-character strings is misleading. Use .replace(), .removeprefix(), .removesuffix(), or regular expressions to remove string fragments.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="311" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="315" /> <source>loop control variable {0} not used within the loop body - start the name with an underscore</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="316" /> - <source>do not call getattr with a constant attribute value</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="320" /> - <source>do not call setattr with a constant attribute value</source> + <source>do not call getattr with a constant attribute value</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="324" /> - <source>do not call assert False since python -O removes these calls</source> + <source>do not call setattr with a constant attribute value</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="328" /> + <source>do not call assert False since python -O removes these calls</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="332" /> <source>return/continue/break inside finally blocks cause exceptions to be silenced. Exceptions should be silenced in except blocks. Control statements can be moved outside the finally block.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="334" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="338" /> <source>A length-one tuple literal is redundant. Write 'except {0}:' instead of 'except ({0},):'.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="339" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="343" /> <source>Redundant exception types in 'except ({0}){1}:'. Write 'except {2}{1}:', which catches exactly the same exceptions.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="344" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="348" /> <source>Result of comparison is not used. This line doesn't do anything. Did you intend to prepend it with assert?</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="349" /> - <source>Cannot raise a literal. Did you intend to return it or raise an Exception?</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="353" /> + <source>Cannot raise a literal. Did you intend to return it or raise an Exception?</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="357" /> <source>'assertRaises(Exception)' and 'pytest.raises(Exception)' should be considered evil. They can lead to your test passing even if the code being tested is never executed due to a typo. Assert for a more specific exception (builtin or custom), or use 'assertRaisesRegex' (if using 'assertRaises'), or add the 'match' keyword argument (if using 'pytest.raises'), or use the context manager form with a target.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="362" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="366" /> <source>Found useless {0} expression. Consider either assigning it to a variable or removing it.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="367" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="371" /> <source>Use of 'functools.lru_cache' or 'functools.cache' on methods can lead to memory leaks. The cache may retain instance references, preventing garbage collection.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="373" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="377" /> <source>Found for loop that reassigns the iterable it is iterating with each iterable value.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="378" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="382" /> <source>f-string used as docstring. This will be interpreted by python as a joined string rather than a docstring.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="383" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="387" /> <source>No arguments passed to 'contextlib.suppress'. No exceptions will be suppressed and therefore this context manager is redundant.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="388" /> - <source>Function definition does not bind loop variable '{0}'.</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="392" /> + <source>Function definition does not bind loop variable '{0}'.</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="396" /> <source>{0} is an abstract base class, but none of the methods it defines are abstract. This is not necessarily an error, but you might have forgotten to add the @abstractmethod decorator, potentially in conjunction with @classmethod, @property and/or @staticmethod.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="399" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="403" /> <source>Exception '{0}' has been caught multiple times. Only the first except will be considered and all other except catches can be safely removed.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="404" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="408" /> <source>Star-arg unpacking after a keyword argument is strongly discouraged, because it only works when the keyword parameter is declared after all parameters supplied by the unpacked sequence, and this change of ordering can surprise and mislead readers.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="411" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="415" /> <source>{0} is an empty method in an abstract base class, but has no abstract decorator. Consider adding @abstractmethod.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="416" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="420" /> <source>No explicit stacklevel argument found. The warn method from the warnings module uses a stacklevel of 1 by default. This will only show a stack trace for the line on which the warn method is called. It is therefore recommended to use a stacklevel of 2 or greater to provide more information to the user.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="424" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="428" /> <source>Using 'except ():' with an empty tuple does not handle/catch anything. Add exceptions to handle.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="429" /> - <source>Except handlers should only be names of exception classes</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="433" /> + <source>Except handlers should only be names of exception classes</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="437" /> <source>Using the generator returned from 'itertools.groupby()' more than once will do nothing on the second usage. Save the result to a list, if the result is needed multiple times.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="439" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="443" /> <source>Possible unintentional type annotation (using ':'). Did you mean to assign (using '=')?</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="444" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="448" /> <source>Set should not contain duplicate item '{0}'. Duplicate items will be replaced with a single item at runtime.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="449" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="453" /> <source>re.{0} should get '{1}' and 'flags' passed as keyword arguments to avoid confusion due to unintuitive argument positions.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="454" /> - <source>Static key in dict comprehension: {0!r}.</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="458" /> - <source>Don't except 'BaseException' unless you plan to re-raise it.</source> + <source>Static key in dict comprehension: {0!r}.</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="462" /> + <source>Don't except 'BaseException' unless you plan to re-raise it.</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="466" /> <source>Class '__init__' methods must not return or yield and any values.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="467" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="471" /> <source>Editing a loop's mutable iterable often leads to unexpected results/bugs.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="472" /> - <source>unncessary f-string</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="476" /> + <source>unncessary f-string</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="480" /> <source>cannot use 'self.__class__' as first argument of 'super()' call</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="481" /> - <source>found {0} formatter</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="485" /> - <source>format string does contain unindexed parameters</source> + <source>found {0} formatter</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="489" /> - <source>docstring does contain unindexed parameters</source> + <source>format string does contain unindexed parameters</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="493" /> - <source>other string does contain unindexed parameters</source> + <source>docstring does contain unindexed parameters</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="497" /> - <source>format call uses too large index ({0})</source> + <source>other string does contain unindexed parameters</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="501" /> - <source>format call uses missing keyword ({0})</source> + <source>format call uses too large index ({0})</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="505" /> - <source>format call uses keyword arguments but no named entries</source> + <source>format call uses missing keyword ({0})</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="509" /> - <source>format call uses variable arguments but no numbered entries</source> + <source>format call uses keyword arguments but no named entries</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="513" /> - <source>format call uses implicit and explicit indexes together</source> + <source>format call uses variable arguments but no numbered entries</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="517" /> - <source>format call provides unused index ({0})</source> + <source>format call uses implicit and explicit indexes together</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="521" /> + <source>format call provides unused index ({0})</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="525" /> <source>format call provides unused keyword ({0})</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="526" /> - <source>expected these __future__ imports: {0}; but only got: {1}</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="530" /> + <source>expected these __future__ imports: {0}; but only got: {1}</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="534" /> <source>expected these __future__ imports: {0}; but got none</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="535" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="539" /> <source>gettext import with alias _ found: {0}</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="540" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="544" /> <source>print statement found</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="545" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="549" /> <source>one element tuple found</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="554" /> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="550" /> - <source>mutable default argument of type {0}</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="558" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="554" /> + <source>mutable default argument of type {0}</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="562" /> <source>mutable default argument of function call '{0}'</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="563" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="567" /> <source>None should not be added at any return if function has no return value except None</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="568" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="572" /> <source>an explicit value at every return should be added if function has a return value except None</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="573" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="577" /> <source>an explicit return at the end of the function should be added if it has a return value except None</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="578" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="582" /> <source>a value should not be assigned to a variable if it will be used as a return value only</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="584" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="588" /> <source>prefer implied line continuation inside parentheses, brackets and braces as opposed to a backslash</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="590" /> - <source>implicitly concatenated string or bytes literals on one line</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="594" /> - <source>implicitly concatenated string or bytes literals over continuation line</source> + <source>implicitly concatenated string or bytes literals on one line</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="598" /> + <source>implicitly concatenated string or bytes literals over continuation line</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="602" /> <source>explicitly concatenated string or bytes should be implicitly concatenated</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="603" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="607" /> <source>commented code lines should be removed</source> <translation type="unfinished" /> </message> @@ -86095,15 +86100,15 @@ <context> <name>Tabview</name> <message> - <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="1132" /> - <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="1067" /> + <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="1134" /> + <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="1069" /> <source>Untitled {0}</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="1532" /> - <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="1143" /> - <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="1088" /> + <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="1534" /> + <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="1145" /> + <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="1090" /> <source>{0} (ro)</source> <translation type="unfinished" /> </message> @@ -90816,7 +90821,7 @@ <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7844" /> + <location filename="../UI/UserInterface.py" line="7860" /> <location filename="../UI/UserInterface.py" line="1946" /> <location filename="../UI/UserInterface.py" line="1939" /> <source>Load session</source> @@ -91907,7 +91912,7 @@ <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6593" /> + <location filename="../UI/UserInterface.py" line="6609" /> <location filename="../UI/UserInterface.py" line="3163" /> <source>Snapshot</source> <translation type="unfinished" /> @@ -92144,8 +92149,8 @@ <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7552" /> - <location filename="../UI/UserInterface.py" line="7533" /> + <location filename="../UI/UserInterface.py" line="7568" /> + <location filename="../UI/UserInterface.py" line="7549" /> <location filename="../UI/UserInterface.py" line="3393" /> <source>Export Keyboard Shortcuts</source> <translation type="unfinished" /> @@ -92166,7 +92171,7 @@ <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7571" /> + <location filename="../UI/UserInterface.py" line="7587" /> <location filename="../UI/UserInterface.py" line="3412" /> <source>Import Keyboard Shortcuts</source> <translation type="unfinished" /> @@ -92575,7 +92580,7 @@ <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6321" /> + <location filename="../UI/UserInterface.py" line="6337" /> <location filename="../UI/UserInterface.py" line="4185" /> <location filename="../UI/UserInterface.py" line="4170" /> <source>Help</source> @@ -92753,313 +92758,313 @@ <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6458" /> - <location filename="../UI/UserInterface.py" line="6447" /> - <location filename="../UI/UserInterface.py" line="6399" /> - <location filename="../UI/UserInterface.py" line="6389" /> - <location filename="../UI/UserInterface.py" line="6210" /> - <location filename="../UI/UserInterface.py" line="6200" /> - <location filename="../UI/UserInterface.py" line="6142" /> - <location filename="../UI/UserInterface.py" line="6132" /> + <location filename="../UI/UserInterface.py" line="6474" /> + <location filename="../UI/UserInterface.py" line="6463" /> + <location filename="../UI/UserInterface.py" line="6415" /> + <location filename="../UI/UserInterface.py" line="6405" /> + <location filename="../UI/UserInterface.py" line="6228" /> + <location filename="../UI/UserInterface.py" line="6218" /> + <location filename="../UI/UserInterface.py" line="6160" /> + <location filename="../UI/UserInterface.py" line="6150" /> <source>Problem</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6459" /> - <location filename="../UI/UserInterface.py" line="6448" /> - <location filename="../UI/UserInterface.py" line="6400" /> - <location filename="../UI/UserInterface.py" line="6390" /> - <location filename="../UI/UserInterface.py" line="6211" /> - <location filename="../UI/UserInterface.py" line="6201" /> - <location filename="../UI/UserInterface.py" line="6143" /> - <location filename="../UI/UserInterface.py" line="6133" /> + <location filename="../UI/UserInterface.py" line="6475" /> + <location filename="../UI/UserInterface.py" line="6464" /> + <location filename="../UI/UserInterface.py" line="6416" /> + <location filename="../UI/UserInterface.py" line="6406" /> + <location filename="../UI/UserInterface.py" line="6229" /> + <location filename="../UI/UserInterface.py" line="6219" /> + <location filename="../UI/UserInterface.py" line="6161" /> + <location filename="../UI/UserInterface.py" line="6151" /> <source><p>The file <b>{0}</b> does not exist or is zero length.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6702" /> - <location filename="../UI/UserInterface.py" line="6613" /> - <location filename="../UI/UserInterface.py" line="6494" /> - <location filename="../UI/UserInterface.py" line="6471" /> - <location filename="../UI/UserInterface.py" line="6412" /> - <location filename="../UI/UserInterface.py" line="6359" /> - <location filename="../UI/UserInterface.py" line="6337" /> - <location filename="../UI/UserInterface.py" line="6286" /> - <location filename="../UI/UserInterface.py" line="6277" /> - <location filename="../UI/UserInterface.py" line="6242" /> - <location filename="../UI/UserInterface.py" line="6233" /> - <location filename="../UI/UserInterface.py" line="6174" /> - <location filename="../UI/UserInterface.py" line="6165" /> + <location filename="../UI/UserInterface.py" line="6718" /> + <location filename="../UI/UserInterface.py" line="6629" /> + <location filename="../UI/UserInterface.py" line="6510" /> + <location filename="../UI/UserInterface.py" line="6487" /> + <location filename="../UI/UserInterface.py" line="6428" /> + <location filename="../UI/UserInterface.py" line="6375" /> + <location filename="../UI/UserInterface.py" line="6353" /> + <location filename="../UI/UserInterface.py" line="6304" /> + <location filename="../UI/UserInterface.py" line="6295" /> + <location filename="../UI/UserInterface.py" line="6260" /> + <location filename="../UI/UserInterface.py" line="6251" /> + <location filename="../UI/UserInterface.py" line="6192" /> + <location filename="../UI/UserInterface.py" line="6183" /> <source>Process Generation Error</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6166" /> + <location filename="../UI/UserInterface.py" line="6184" /> <source><p>Could not start Qt-Designer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6175" /> + <location filename="../UI/UserInterface.py" line="6193" /> <source><p>Could not find the Qt-Designer executable.<br>Ensure that it is installed and optionally configured on the Qt configuration page.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6234" /> + <location filename="../UI/UserInterface.py" line="6252" /> <source><p>Could not start Qt-Linguist.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6243" /> + <location filename="../UI/UserInterface.py" line="6261" /> <source><p>Could not find the Qt-Linguist executable.<br>Ensure that it is installed and optionally configured on the Qt configuration page.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6278" /> + <location filename="../UI/UserInterface.py" line="6296" /> <source><p>Could not start Qt-Assistant.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6287" /> + <location filename="../UI/UserInterface.py" line="6305" /> <source><p>Could not find the Qt-Assistant executable.<br>Ensure that it is installed and optionally configured on the Qt configuration page.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6322" /> - <source>Currently no custom viewer is selected. Please use the preferences dialog to specify one.</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../UI/UserInterface.py" line="6338" /> + <source>Currently no custom viewer is selected. Please use the preferences dialog to specify one.</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="6354" /> <source><p>Could not start custom viewer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6360" /> + <location filename="../UI/UserInterface.py" line="6376" /> <source><p>Could not start the help viewer.<br>Ensure that it is available as <b>hh</b>.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6413" /> + <location filename="../UI/UserInterface.py" line="6429" /> <source><p>Could not start UI Previewer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6472" /> + <location filename="../UI/UserInterface.py" line="6488" /> <source><p>Could not start Translation Previewer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6495" /> + <location filename="../UI/UserInterface.py" line="6511" /> <source><p>Could not start SQL Browser.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6594" /> + <location filename="../UI/UserInterface.py" line="6610" /> <source><p>The snapshot utility is not available for Wayland desktop sessions.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6614" /> + <location filename="../UI/UserInterface.py" line="6630" /> <source><p>Could not start Snapshot tool.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6647" /> - <location filename="../UI/UserInterface.py" line="6637" /> + <location filename="../UI/UserInterface.py" line="6663" /> + <location filename="../UI/UserInterface.py" line="6653" /> <source>External Tools</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6638" /> + <location filename="../UI/UserInterface.py" line="6654" /> <source>No tool entry found for external tool '{0}' in tool group '{1}'.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6648" /> + <location filename="../UI/UserInterface.py" line="6664" /> <source>No toolgroup entry '{0}' found.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6685" /> + <location filename="../UI/UserInterface.py" line="6701" /> <source>Starting process '{0} {1}'. </source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6703" /> + <location filename="../UI/UserInterface.py" line="6719" /> <source><p>Could not start the tool entry <b>{0}</b>.<br>Ensure that it is available as <b>{1}</b>.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6782" /> + <location filename="../UI/UserInterface.py" line="6798" /> <source>Process '{0}' has exited. </source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7069" /> - <location filename="../UI/UserInterface.py" line="7007" /> - <location filename="../UI/UserInterface.py" line="6963" /> - <location filename="../UI/UserInterface.py" line="6889" /> - <location filename="../UI/UserInterface.py" line="6825" /> + <location filename="../UI/UserInterface.py" line="7085" /> + <location filename="../UI/UserInterface.py" line="7023" /> + <location filename="../UI/UserInterface.py" line="6979" /> + <location filename="../UI/UserInterface.py" line="6905" /> + <location filename="../UI/UserInterface.py" line="6841" /> <source>Documentation Missing</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7070" /> - <location filename="../UI/UserInterface.py" line="7008" /> - <location filename="../UI/UserInterface.py" line="6964" /> - <location filename="../UI/UserInterface.py" line="6890" /> - <location filename="../UI/UserInterface.py" line="6826" /> + <location filename="../UI/UserInterface.py" line="7086" /> + <location filename="../UI/UserInterface.py" line="7024" /> + <location filename="../UI/UserInterface.py" line="6980" /> + <location filename="../UI/UserInterface.py" line="6906" /> + <location filename="../UI/UserInterface.py" line="6842" /> <source><p>The documentation starting point "<b>{0}</b>" could not be found.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7051" /> - <location filename="../UI/UserInterface.py" line="6933" /> + <location filename="../UI/UserInterface.py" line="7067" /> + <location filename="../UI/UserInterface.py" line="6949" /> <source>Documentation</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6934" /> + <location filename="../UI/UserInterface.py" line="6950" /> <source><p>The PyQt{0} documentation starting point has not been configured.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7052" /> + <location filename="../UI/UserInterface.py" line="7068" /> <source><p>The PySide{0} documentation starting point has not been configured.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7231" /> - <location filename="../UI/UserInterface.py" line="7167" /> + <location filename="../UI/UserInterface.py" line="7247" /> + <location filename="../UI/UserInterface.py" line="7183" /> <source>Start Web Browser</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7168" /> + <location filename="../UI/UserInterface.py" line="7184" /> <source>The eric web browser could not be started.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7232" /> + <location filename="../UI/UserInterface.py" line="7248" /> <source><p>The eric web browser is not started.</p><p>Reason: {0}</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7278" /> + <location filename="../UI/UserInterface.py" line="7294" /> <source>Open Browser</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7278" /> + <location filename="../UI/UserInterface.py" line="7294" /> <source>Could not start a web browser</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7573" /> - <location filename="../UI/UserInterface.py" line="7535" /> + <location filename="../UI/UserInterface.py" line="7589" /> + <location filename="../UI/UserInterface.py" line="7551" /> <source>Keyboard Shortcuts File (*.ekj)</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7553" /> + <location filename="../UI/UserInterface.py" line="7569" /> <source><p>The keyboard shortcuts file <b>{0}</b> exists already. Overwrite it?</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7757" /> + <location filename="../UI/UserInterface.py" line="7773" /> <source>Load crash session...</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7760" /> + <location filename="../UI/UserInterface.py" line="7776" /> <source>Clean crash sessions...</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7797" /> + <location filename="../UI/UserInterface.py" line="7813" /> <source>Read Session</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7798" /> + <location filename="../UI/UserInterface.py" line="7814" /> <source><p>The session file <b>{0}</b> could not be read.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7821" /> + <location filename="../UI/UserInterface.py" line="7837" /> <source>Save Session</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7846" /> - <location filename="../UI/UserInterface.py" line="7823" /> + <location filename="../UI/UserInterface.py" line="7862" /> + <location filename="../UI/UserInterface.py" line="7839" /> <source>eric Session Files (*.esj)</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7913" /> + <location filename="../UI/UserInterface.py" line="7929" /> <source>Found Crash Sessions</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7914" /> + <location filename="../UI/UserInterface.py" line="7930" /> <source>These crash session files were found. Select the one to open. Select 'Cancel' to not open a crash session.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7987" /> + <location filename="../UI/UserInterface.py" line="8003" /> <source>Clean stale crash sessions</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7988" /> + <location filename="../UI/UserInterface.py" line="8004" /> <source>Do you really want to delete these stale crash session files?</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="8364" /> + <location filename="../UI/UserInterface.py" line="8380" /> <source>Drop Error</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="8365" /> + <location filename="../UI/UserInterface.py" line="8381" /> <source><p><b>{0}</b> is not a file.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="8551" /> + <location filename="../UI/UserInterface.py" line="8567" /> <source>Upgrade available</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="8552" /> + <location filename="../UI/UserInterface.py" line="8568" /> <source><p>A newer version of the <b>eric-ide</b> package is available at <a href="{0}/eric-ide/">PyPI</a>.</p><p>Installed: {1}<br/>Available: <b>{2}</b></p><p>Shall <b>eric-ide</b> be upgraded?</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="8597" /> + <location filename="../UI/UserInterface.py" line="8613" /> <source>First time usage</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="8598" /> + <location filename="../UI/UserInterface.py" line="8614" /> <source>eric has not been configured yet. The configuration dialog will be started.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="8620" /> + <location filename="../UI/UserInterface.py" line="8636" /> <source>Select Workspace Directory</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="8788" /> + <location filename="../UI/UserInterface.py" line="8804" /> <source>Unsaved Data Detected</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="8789" /> + <location filename="../UI/UserInterface.py" line="8805" /> <source>Some editors contain unsaved data. Shall these be saved?</source> <translation type="unfinished" /> </message> @@ -94522,7 +94527,7 @@ <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="775" /> + <location filename="../QScintilla/MiniEditor.py" line="776" /> <location filename="../ViewManager/ViewManager.py" line="913" /> <location filename="../ViewManager/ViewManager.py" line="911" /> <source>Print Preview</source> @@ -95299,8 +95304,8 @@ <translation type="unfinished" /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="926" /> <location filename="../QScintilla/MiniEditor.py" line="925" /> - <location filename="../QScintilla/MiniEditor.py" line="924" /> <location filename="../QScintilla/ShellWindow.py" line="575" /> <location filename="../QScintilla/ShellWindow.py" line="574" /> <location filename="../ViewManager/ViewManager.py" line="1858" /> @@ -95309,22 +95314,22 @@ <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="926" /> + <location filename="../QScintilla/MiniEditor.py" line="927" /> <location filename="../QScintilla/ShellWindow.py" line="576" /> <location filename="../ViewManager/ViewManager.py" line="1859" /> <source>Left</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="934" /> + <location filename="../QScintilla/MiniEditor.py" line="935" /> <location filename="../QScintilla/ShellWindow.py" line="584" /> <location filename="../ViewManager/ViewManager.py" line="1867" /> <source>Meta+B</source> <translation type="unfinished" /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="942" /> <location filename="../QScintilla/MiniEditor.py" line="941" /> - <location filename="../QScintilla/MiniEditor.py" line="940" /> <location filename="../QScintilla/ShellWindow.py" line="591" /> <location filename="../QScintilla/ShellWindow.py" line="590" /> <location filename="../ViewManager/ViewManager.py" line="1874" /> @@ -95333,22 +95338,22 @@ <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="942" /> + <location filename="../QScintilla/MiniEditor.py" line="943" /> <location filename="../QScintilla/ShellWindow.py" line="592" /> <location filename="../ViewManager/ViewManager.py" line="1875" /> <source>Right</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="949" /> + <location filename="../QScintilla/MiniEditor.py" line="950" /> <location filename="../QScintilla/ShellWindow.py" line="599" /> <location filename="../ViewManager/ViewManager.py" line="1882" /> <source>Meta+F</source> <translation type="unfinished" /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="958" /> <location filename="../QScintilla/MiniEditor.py" line="957" /> - <location filename="../QScintilla/MiniEditor.py" line="956" /> <location filename="../QScintilla/ShellWindow.py" line="683" /> <location filename="../QScintilla/ShellWindow.py" line="682" /> <location filename="../ViewManager/ViewManager.py" line="1890" /> @@ -95357,22 +95362,22 @@ <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="958" /> + <location filename="../QScintilla/MiniEditor.py" line="959" /> <location filename="../QScintilla/ShellWindow.py" line="684" /> <location filename="../ViewManager/ViewManager.py" line="1891" /> <source>Up</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="965" /> + <location filename="../QScintilla/MiniEditor.py" line="966" /> <location filename="../QScintilla/ShellWindow.py" line="691" /> <location filename="../ViewManager/ViewManager.py" line="1898" /> <source>Meta+P</source> <translation type="unfinished" /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="974" /> <location filename="../QScintilla/MiniEditor.py" line="973" /> - <location filename="../QScintilla/MiniEditor.py" line="972" /> <location filename="../QScintilla/ShellWindow.py" line="699" /> <location filename="../QScintilla/ShellWindow.py" line="698" /> <location filename="../ViewManager/ViewManager.py" line="1906" /> @@ -95381,30 +95386,30 @@ <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="974" /> + <location filename="../QScintilla/MiniEditor.py" line="975" /> <location filename="../QScintilla/ShellWindow.py" line="700" /> <location filename="../ViewManager/ViewManager.py" line="1907" /> <source>Down</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="981" /> + <location filename="../QScintilla/MiniEditor.py" line="982" /> <location filename="../QScintilla/ShellWindow.py" line="707" /> <location filename="../ViewManager/ViewManager.py" line="1914" /> <source>Meta+N</source> <translation type="unfinished" /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="990" /> <location filename="../QScintilla/MiniEditor.py" line="989" /> - <location filename="../QScintilla/MiniEditor.py" line="988" /> <location filename="../ViewManager/ViewManager.py" line="1922" /> <location filename="../ViewManager/ViewManager.py" line="1921" /> <source>Move left one word part</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1029" /> - <location filename="../QScintilla/MiniEditor.py" line="997" /> + <location filename="../QScintilla/MiniEditor.py" line="1030" /> + <location filename="../QScintilla/MiniEditor.py" line="998" /> <location filename="../QScintilla/ShellWindow.py" line="615" /> <location filename="../ViewManager/ViewManager.py" line="1962" /> <location filename="../ViewManager/ViewManager.py" line="1930" /> @@ -95412,25 +95417,25 @@ <translation type="unfinished" /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1006" /> <location filename="../QScintilla/MiniEditor.py" line="1005" /> - <location filename="../QScintilla/MiniEditor.py" line="1004" /> <location filename="../ViewManager/ViewManager.py" line="1938" /> <location filename="../ViewManager/ViewManager.py" line="1937" /> <source>Move right one word part</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2159" /> - <location filename="../QScintilla/MiniEditor.py" line="1049" /> - <location filename="../QScintilla/MiniEditor.py" line="1013" /> + <location filename="../QScintilla/MiniEditor.py" line="2160" /> + <location filename="../QScintilla/MiniEditor.py" line="1050" /> + <location filename="../QScintilla/MiniEditor.py" line="1014" /> <location filename="../ViewManager/ViewManager.py" line="3071" /> <location filename="../ViewManager/ViewManager.py" line="1946" /> <source>Alt+Right</source> <translation type="unfinished" /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1022" /> <location filename="../QScintilla/MiniEditor.py" line="1021" /> - <location filename="../QScintilla/MiniEditor.py" line="1020" /> <location filename="../QScintilla/ShellWindow.py" line="607" /> <location filename="../QScintilla/ShellWindow.py" line="606" /> <location filename="../ViewManager/ViewManager.py" line="1954" /> @@ -95439,8 +95444,8 @@ <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1089" /> - <location filename="../QScintilla/MiniEditor.py" line="1033" /> + <location filename="../QScintilla/MiniEditor.py" line="1090" /> + <location filename="../QScintilla/MiniEditor.py" line="1034" /> <location filename="../QScintilla/ShellWindow.py" line="619" /> <location filename="../ViewManager/ViewManager.py" line="2018" /> <location filename="../ViewManager/ViewManager.py" line="1966" /> @@ -95448,8 +95453,8 @@ <translation type="unfinished" /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1042" /> <location filename="../QScintilla/MiniEditor.py" line="1041" /> - <location filename="../QScintilla/MiniEditor.py" line="1040" /> <location filename="../QScintilla/ShellWindow.py" line="627" /> <location filename="../QScintilla/ShellWindow.py" line="626" /> <location filename="../ViewManager/ViewManager.py" line="1974" /> @@ -95458,8 +95463,8 @@ <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1843" /> - <location filename="../QScintilla/MiniEditor.py" line="1053" /> + <location filename="../QScintilla/MiniEditor.py" line="1844" /> + <location filename="../QScintilla/MiniEditor.py" line="1054" /> <location filename="../QScintilla/ShellWindow.py" line="635" /> <location filename="../ViewManager/ViewManager.py" line="2755" /> <location filename="../ViewManager/ViewManager.py" line="1982" /> @@ -95467,8 +95472,8 @@ <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1063" /> - <location filename="../QScintilla/MiniEditor.py" line="1060" /> + <location filename="../QScintilla/MiniEditor.py" line="1064" /> + <location filename="../QScintilla/MiniEditor.py" line="1061" /> <location filename="../QScintilla/ShellWindow.py" line="645" /> <location filename="../QScintilla/ShellWindow.py" line="642" /> <location filename="../ViewManager/ViewManager.py" line="1992" /> @@ -95477,8 +95482,8 @@ <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2104" /> - <location filename="../QScintilla/MiniEditor.py" line="1073" /> + <location filename="../QScintilla/MiniEditor.py" line="2105" /> + <location filename="../QScintilla/MiniEditor.py" line="1074" /> <location filename="../QScintilla/ShellWindow.py" line="655" /> <location filename="../ViewManager/ViewManager.py" line="3016" /> <location filename="../ViewManager/ViewManager.py" line="2002" /> @@ -95486,22 +95491,22 @@ <translation type="unfinished" /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1082" /> <location filename="../QScintilla/MiniEditor.py" line="1081" /> - <location filename="../QScintilla/MiniEditor.py" line="1080" /> <location filename="../ViewManager/ViewManager.py" line="2010" /> <location filename="../ViewManager/ViewManager.py" line="2009" /> <source>Move to start of display line</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1093" /> + <location filename="../QScintilla/MiniEditor.py" line="1094" /> <location filename="../ViewManager/ViewManager.py" line="2022" /> <source>Alt+Home</source> <translation type="unfinished" /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1102" /> <location filename="../QScintilla/MiniEditor.py" line="1101" /> - <location filename="../QScintilla/MiniEditor.py" line="1100" /> <location filename="../QScintilla/ShellWindow.py" line="663" /> <location filename="../QScintilla/ShellWindow.py" line="662" /> <location filename="../ViewManager/ViewManager.py" line="2030" /> @@ -95510,15 +95515,15 @@ <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1109" /> + <location filename="../QScintilla/MiniEditor.py" line="1110" /> <location filename="../QScintilla/ShellWindow.py" line="671" /> <location filename="../ViewManager/ViewManager.py" line="2038" /> <source>Meta+E</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2121" /> - <location filename="../QScintilla/MiniEditor.py" line="1113" /> + <location filename="../QScintilla/MiniEditor.py" line="2122" /> + <location filename="../QScintilla/MiniEditor.py" line="1114" /> <location filename="../QScintilla/ShellWindow.py" line="675" /> <location filename="../ViewManager/ViewManager.py" line="3033" /> <location filename="../ViewManager/ViewManager.py" line="2042" /> @@ -95526,16 +95531,16 @@ <translation type="unfinished" /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1122" /> <location filename="../QScintilla/MiniEditor.py" line="1121" /> - <location filename="../QScintilla/MiniEditor.py" line="1120" /> <location filename="../ViewManager/ViewManager.py" line="2050" /> <location filename="../ViewManager/ViewManager.py" line="2049" /> <source>Scroll view down one line</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1225" /> - <location filename="../QScintilla/MiniEditor.py" line="1122" /> + <location filename="../QScintilla/MiniEditor.py" line="1226" /> + <location filename="../QScintilla/MiniEditor.py" line="1123" /> <location filename="../QScintilla/ShellWindow.py" line="716" /> <location filename="../ViewManager/ViewManager.py" line="2154" /> <location filename="../ViewManager/ViewManager.py" line="2051" /> @@ -95543,16 +95548,16 @@ <translation type="unfinished" /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1134" /> <location filename="../QScintilla/MiniEditor.py" line="1133" /> - <location filename="../QScintilla/MiniEditor.py" line="1132" /> <location filename="../ViewManager/ViewManager.py" line="2062" /> <location filename="../ViewManager/ViewManager.py" line="2061" /> <source>Scroll view up one line</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1205" /> - <location filename="../QScintilla/MiniEditor.py" line="1134" /> + <location filename="../QScintilla/MiniEditor.py" line="1206" /> + <location filename="../QScintilla/MiniEditor.py" line="1135" /> <location filename="../QScintilla/ShellWindow.py" line="728" /> <location filename="../ViewManager/ViewManager.py" line="2134" /> <location filename="../ViewManager/ViewManager.py" line="2063" /> @@ -95560,36 +95565,36 @@ <translation type="unfinished" /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1146" /> <location filename="../QScintilla/MiniEditor.py" line="1145" /> - <location filename="../QScintilla/MiniEditor.py" line="1144" /> <location filename="../ViewManager/ViewManager.py" line="2074" /> <location filename="../ViewManager/ViewManager.py" line="2073" /> <source>Move up one paragraph</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1146" /> + <location filename="../QScintilla/MiniEditor.py" line="1147" /> <location filename="../ViewManager/ViewManager.py" line="2075" /> <source>Alt+Up</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1157" /> - <location filename="../QScintilla/MiniEditor.py" line="1156" /> - <location filename="../ViewManager/ViewManager.py" line="2086" /> - <location filename="../ViewManager/ViewManager.py" line="2085" /> - <source>Move down one paragraph</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="1158" /> + <location filename="../QScintilla/MiniEditor.py" line="1157" /> + <location filename="../ViewManager/ViewManager.py" line="2086" /> + <location filename="../ViewManager/ViewManager.py" line="2085" /> + <source>Move down one paragraph</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="1159" /> <location filename="../ViewManager/ViewManager.py" line="2087" /> <source>Alt+Down</source> <translation type="unfinished" /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1170" /> <location filename="../QScintilla/MiniEditor.py" line="1169" /> - <location filename="../QScintilla/MiniEditor.py" line="1168" /> <location filename="../QScintilla/ShellWindow.py" line="739" /> <location filename="../QScintilla/ShellWindow.py" line="738" /> <location filename="../ViewManager/ViewManager.py" line="2098" /> @@ -95598,15 +95603,15 @@ <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1170" /> + <location filename="../QScintilla/MiniEditor.py" line="1171" /> <location filename="../QScintilla/ShellWindow.py" line="740" /> <location filename="../ViewManager/ViewManager.py" line="2099" /> <source>PgUp</source> <translation type="unfinished" /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1182" /> <location filename="../QScintilla/MiniEditor.py" line="1181" /> - <location filename="../QScintilla/MiniEditor.py" line="1180" /> <location filename="../QScintilla/ShellWindow.py" line="751" /> <location filename="../QScintilla/ShellWindow.py" line="750" /> <location filename="../ViewManager/ViewManager.py" line="2110" /> @@ -95615,50 +95620,50 @@ <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1182" /> + <location filename="../QScintilla/MiniEditor.py" line="1183" /> <location filename="../QScintilla/ShellWindow.py" line="752" /> <location filename="../ViewManager/ViewManager.py" line="2111" /> <source>PgDown</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1189" /> + <location filename="../QScintilla/MiniEditor.py" line="1190" /> <location filename="../QScintilla/ShellWindow.py" line="759" /> <location filename="../ViewManager/ViewManager.py" line="2118" /> <source>Meta+V</source> <translation type="unfinished" /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1198" /> <location filename="../QScintilla/MiniEditor.py" line="1197" /> - <location filename="../QScintilla/MiniEditor.py" line="1196" /> <location filename="../ViewManager/ViewManager.py" line="2126" /> <location filename="../ViewManager/ViewManager.py" line="2125" /> <source>Move to start of document</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1209" /> + <location filename="../QScintilla/MiniEditor.py" line="1210" /> <location filename="../ViewManager/ViewManager.py" line="2138" /> <source>Ctrl+Home</source> <translation type="unfinished" /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1218" /> <location filename="../QScintilla/MiniEditor.py" line="1217" /> - <location filename="../QScintilla/MiniEditor.py" line="1216" /> <location filename="../ViewManager/ViewManager.py" line="2146" /> <location filename="../ViewManager/ViewManager.py" line="2145" /> <source>Move to end of document</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1229" /> + <location filename="../QScintilla/MiniEditor.py" line="1230" /> <location filename="../ViewManager/ViewManager.py" line="2158" /> <source>Ctrl+End</source> <translation type="unfinished" /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1238" /> <location filename="../QScintilla/MiniEditor.py" line="1237" /> - <location filename="../QScintilla/MiniEditor.py" line="1236" /> <location filename="../QScintilla/ShellWindow.py" line="453" /> <location filename="../QScintilla/ShellWindow.py" line="452" /> <location filename="../ViewManager/ViewManager.py" line="2166" /> @@ -95667,29 +95672,29 @@ <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1238" /> + <location filename="../QScintilla/MiniEditor.py" line="1239" /> <location filename="../QScintilla/ShellWindow.py" line="454" /> <location filename="../ViewManager/ViewManager.py" line="2167" /> <source>Tab</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1249" /> - <location filename="../QScintilla/MiniEditor.py" line="1248" /> - <location filename="../ViewManager/ViewManager.py" line="2178" /> - <location filename="../ViewManager/ViewManager.py" line="2177" /> - <source>Unindent one level</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="1250" /> + <location filename="../QScintilla/MiniEditor.py" line="1249" /> + <location filename="../ViewManager/ViewManager.py" line="2178" /> + <location filename="../ViewManager/ViewManager.py" line="2177" /> + <source>Unindent one level</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="1251" /> <location filename="../ViewManager/ViewManager.py" line="2179" /> <source>Shift+Tab</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1263" /> - <location filename="../QScintilla/MiniEditor.py" line="1260" /> + <location filename="../QScintilla/MiniEditor.py" line="1264" /> + <location filename="../QScintilla/MiniEditor.py" line="1261" /> <location filename="../QScintilla/ShellWindow.py" line="781" /> <location filename="../QScintilla/ShellWindow.py" line="778" /> <location filename="../ViewManager/ViewManager.py" line="2192" /> @@ -95698,22 +95703,22 @@ <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1266" /> + <location filename="../QScintilla/MiniEditor.py" line="1267" /> <location filename="../QScintilla/ShellWindow.py" line="784" /> <location filename="../ViewManager/ViewManager.py" line="2195" /> <source>Shift+Left</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1273" /> + <location filename="../QScintilla/MiniEditor.py" line="1274" /> <location filename="../QScintilla/ShellWindow.py" line="791" /> <location filename="../ViewManager/ViewManager.py" line="2202" /> <source>Meta+Shift+B</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1283" /> - <location filename="../QScintilla/MiniEditor.py" line="1280" /> + <location filename="../QScintilla/MiniEditor.py" line="1284" /> + <location filename="../QScintilla/MiniEditor.py" line="1281" /> <location filename="../QScintilla/ShellWindow.py" line="801" /> <location filename="../QScintilla/ShellWindow.py" line="798" /> <location filename="../ViewManager/ViewManager.py" line="2212" /> @@ -95722,70 +95727,70 @@ <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1286" /> + <location filename="../QScintilla/MiniEditor.py" line="1287" /> <location filename="../QScintilla/ShellWindow.py" line="804" /> <location filename="../ViewManager/ViewManager.py" line="2215" /> <source>Shift+Right</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1293" /> + <location filename="../QScintilla/MiniEditor.py" line="1294" /> <location filename="../QScintilla/ShellWindow.py" line="811" /> <location filename="../ViewManager/ViewManager.py" line="2222" /> <source>Meta+Shift+F</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1301" /> - <location filename="../QScintilla/MiniEditor.py" line="1300" /> - <location filename="../ViewManager/ViewManager.py" line="2230" /> - <location filename="../ViewManager/ViewManager.py" line="2229" /> - <source>Extend selection up one line</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="1302" /> + <location filename="../QScintilla/MiniEditor.py" line="1301" /> + <location filename="../ViewManager/ViewManager.py" line="2230" /> + <location filename="../ViewManager/ViewManager.py" line="2229" /> + <source>Extend selection up one line</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="1303" /> <location filename="../ViewManager/ViewManager.py" line="2231" /> <source>Shift+Up</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1309" /> + <location filename="../QScintilla/MiniEditor.py" line="1310" /> <location filename="../ViewManager/ViewManager.py" line="2238" /> <source>Meta+Shift+P</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1317" /> - <location filename="../QScintilla/MiniEditor.py" line="1316" /> - <location filename="../ViewManager/ViewManager.py" line="2246" /> - <location filename="../ViewManager/ViewManager.py" line="2245" /> - <source>Extend selection down one line</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="1318" /> + <location filename="../QScintilla/MiniEditor.py" line="1317" /> + <location filename="../ViewManager/ViewManager.py" line="2246" /> + <location filename="../ViewManager/ViewManager.py" line="2245" /> + <source>Extend selection down one line</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="1319" /> <location filename="../ViewManager/ViewManager.py" line="2247" /> <source>Shift+Down</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1325" /> + <location filename="../QScintilla/MiniEditor.py" line="1326" /> <location filename="../ViewManager/ViewManager.py" line="2254" /> <source>Meta+Shift+N</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1335" /> - <location filename="../QScintilla/MiniEditor.py" line="1332" /> + <location filename="../QScintilla/MiniEditor.py" line="1336" /> + <location filename="../QScintilla/MiniEditor.py" line="1333" /> <location filename="../ViewManager/ViewManager.py" line="2264" /> <location filename="../ViewManager/ViewManager.py" line="2261" /> <source>Extend selection left one word part</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1386" /> - <location filename="../QScintilla/MiniEditor.py" line="1346" /> + <location filename="../QScintilla/MiniEditor.py" line="1387" /> + <location filename="../QScintilla/MiniEditor.py" line="1347" /> <location filename="../QScintilla/ShellWindow.py" line="828" /> <location filename="../ViewManager/ViewManager.py" line="2315" /> <location filename="../ViewManager/ViewManager.py" line="2275" /> @@ -95793,17 +95798,17 @@ <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1357" /> - <location filename="../QScintilla/MiniEditor.py" line="1354" /> + <location filename="../QScintilla/MiniEditor.py" line="1358" /> + <location filename="../QScintilla/MiniEditor.py" line="1355" /> <location filename="../ViewManager/ViewManager.py" line="2286" /> <location filename="../ViewManager/ViewManager.py" line="2283" /> <source>Extend selection right one word part</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2181" /> - <location filename="../QScintilla/MiniEditor.py" line="1414" /> - <location filename="../QScintilla/MiniEditor.py" line="1368" /> + <location filename="../QScintilla/MiniEditor.py" line="2182" /> + <location filename="../QScintilla/MiniEditor.py" line="1415" /> + <location filename="../QScintilla/MiniEditor.py" line="1369" /> <location filename="../QScintilla/ShellWindow.py" line="856" /> <location filename="../ViewManager/ViewManager.py" line="3093" /> <location filename="../ViewManager/ViewManager.py" line="2343" /> @@ -95812,8 +95817,8 @@ <translation type="unfinished" /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1378" /> <location filename="../QScintilla/MiniEditor.py" line="1377" /> - <location filename="../QScintilla/MiniEditor.py" line="1376" /> <location filename="../QScintilla/ShellWindow.py" line="819" /> <location filename="../QScintilla/ShellWindow.py" line="818" /> <location filename="../ViewManager/ViewManager.py" line="2306" /> @@ -95822,8 +95827,8 @@ <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2307" /> - <location filename="../QScintilla/MiniEditor.py" line="1392" /> + <location filename="../QScintilla/MiniEditor.py" line="2308" /> + <location filename="../QScintilla/MiniEditor.py" line="1393" /> <location filename="../QScintilla/ShellWindow.py" line="834" /> <location filename="../ViewManager/ViewManager.py" line="3219" /> <location filename="../ViewManager/ViewManager.py" line="2321" /> @@ -95831,8 +95836,8 @@ <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1403" /> - <location filename="../QScintilla/MiniEditor.py" line="1400" /> + <location filename="../QScintilla/MiniEditor.py" line="1404" /> + <location filename="../QScintilla/MiniEditor.py" line="1401" /> <location filename="../QScintilla/ShellWindow.py" line="845" /> <location filename="../QScintilla/ShellWindow.py" line="842" /> <location filename="../ViewManager/ViewManager.py" line="2332" /> @@ -95841,8 +95846,8 @@ <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1868" /> - <location filename="../QScintilla/MiniEditor.py" line="1420" /> + <location filename="../QScintilla/MiniEditor.py" line="1869" /> + <location filename="../QScintilla/MiniEditor.py" line="1421" /> <location filename="../QScintilla/ShellWindow.py" line="862" /> <location filename="../ViewManager/ViewManager.py" line="2780" /> <location filename="../ViewManager/ViewManager.py" line="2349" /> @@ -95850,8 +95855,8 @@ <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1432" /> - <location filename="../QScintilla/MiniEditor.py" line="1428" /> + <location filename="../QScintilla/MiniEditor.py" line="1433" /> + <location filename="../QScintilla/MiniEditor.py" line="1429" /> <location filename="../QScintilla/ShellWindow.py" line="874" /> <location filename="../QScintilla/ShellWindow.py" line="870" /> <location filename="../ViewManager/ViewManager.py" line="2361" /> @@ -95860,15 +95865,15 @@ <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1443" /> + <location filename="../QScintilla/MiniEditor.py" line="1444" /> <location filename="../QScintilla/ShellWindow.py" line="885" /> <location filename="../ViewManager/ViewManager.py" line="2372" /> <source>Shift+Home</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1453" /> - <location filename="../QScintilla/MiniEditor.py" line="1450" /> + <location filename="../QScintilla/MiniEditor.py" line="1454" /> + <location filename="../QScintilla/MiniEditor.py" line="1451" /> <location filename="../QScintilla/ShellWindow.py" line="895" /> <location filename="../QScintilla/ShellWindow.py" line="892" /> <location filename="../ViewManager/ViewManager.py" line="2382" /> @@ -95877,124 +95882,124 @@ <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1463" /> + <location filename="../QScintilla/MiniEditor.py" line="1464" /> <location filename="../QScintilla/ShellWindow.py" line="905" /> <location filename="../ViewManager/ViewManager.py" line="2392" /> <source>Meta+Shift+E</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1467" /> + <location filename="../QScintilla/MiniEditor.py" line="1468" /> <location filename="../QScintilla/ShellWindow.py" line="909" /> <location filename="../ViewManager/ViewManager.py" line="2396" /> <source>Shift+End</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1477" /> - <location filename="../QScintilla/MiniEditor.py" line="1474" /> + <location filename="../QScintilla/MiniEditor.py" line="1478" /> + <location filename="../QScintilla/MiniEditor.py" line="1475" /> <location filename="../ViewManager/ViewManager.py" line="2406" /> <location filename="../ViewManager/ViewManager.py" line="2403" /> <source>Extend selection up one paragraph</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1480" /> + <location filename="../QScintilla/MiniEditor.py" line="1481" /> <location filename="../ViewManager/ViewManager.py" line="2409" /> <source>Alt+Shift+Up</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1493" /> - <location filename="../QScintilla/MiniEditor.py" line="1490" /> + <location filename="../QScintilla/MiniEditor.py" line="1494" /> + <location filename="../QScintilla/MiniEditor.py" line="1491" /> <location filename="../ViewManager/ViewManager.py" line="2422" /> <location filename="../ViewManager/ViewManager.py" line="2419" /> <source>Extend selection down one paragraph</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1496" /> + <location filename="../QScintilla/MiniEditor.py" line="1497" /> <location filename="../ViewManager/ViewManager.py" line="2425" /> <source>Alt+Shift+Down</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1507" /> - <location filename="../QScintilla/MiniEditor.py" line="1506" /> - <location filename="../ViewManager/ViewManager.py" line="2436" /> - <location filename="../ViewManager/ViewManager.py" line="2435" /> - <source>Extend selection up one page</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="1508" /> + <location filename="../QScintilla/MiniEditor.py" line="1507" /> + <location filename="../ViewManager/ViewManager.py" line="2436" /> + <location filename="../ViewManager/ViewManager.py" line="2435" /> + <source>Extend selection up one page</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="1509" /> <location filename="../ViewManager/ViewManager.py" line="2437" /> <source>Shift+PgUp</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1519" /> - <location filename="../QScintilla/MiniEditor.py" line="1518" /> - <location filename="../ViewManager/ViewManager.py" line="2448" /> - <location filename="../ViewManager/ViewManager.py" line="2447" /> - <source>Extend selection down one page</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="1520" /> + <location filename="../QScintilla/MiniEditor.py" line="1519" /> + <location filename="../ViewManager/ViewManager.py" line="2448" /> + <location filename="../ViewManager/ViewManager.py" line="2447" /> + <source>Extend selection down one page</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="1521" /> <location filename="../ViewManager/ViewManager.py" line="2449" /> <source>Shift+PgDown</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1527" /> + <location filename="../QScintilla/MiniEditor.py" line="1528" /> <location filename="../ViewManager/ViewManager.py" line="2456" /> <source>Meta+Shift+V</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1537" /> - <location filename="../QScintilla/MiniEditor.py" line="1534" /> + <location filename="../QScintilla/MiniEditor.py" line="1538" /> + <location filename="../QScintilla/MiniEditor.py" line="1535" /> <location filename="../ViewManager/ViewManager.py" line="2466" /> <location filename="../ViewManager/ViewManager.py" line="2463" /> <source>Extend selection to start of document</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1547" /> + <location filename="../QScintilla/MiniEditor.py" line="1548" /> <location filename="../ViewManager/ViewManager.py" line="2476" /> <source>Ctrl+Shift+Up</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1552" /> + <location filename="../QScintilla/MiniEditor.py" line="1553" /> <location filename="../ViewManager/ViewManager.py" line="2481" /> <source>Ctrl+Shift+Home</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1563" /> - <location filename="../QScintilla/MiniEditor.py" line="1560" /> + <location filename="../QScintilla/MiniEditor.py" line="1564" /> + <location filename="../QScintilla/MiniEditor.py" line="1561" /> <location filename="../ViewManager/ViewManager.py" line="2492" /> <location filename="../ViewManager/ViewManager.py" line="2489" /> <source>Extend selection to end of document</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1574" /> + <location filename="../QScintilla/MiniEditor.py" line="1575" /> <location filename="../ViewManager/ViewManager.py" line="2503" /> <source>Ctrl+Shift+Down</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1580" /> + <location filename="../QScintilla/MiniEditor.py" line="1581" /> <location filename="../ViewManager/ViewManager.py" line="2509" /> <source>Ctrl+Shift+End</source> <translation type="unfinished" /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1590" /> <location filename="../QScintilla/MiniEditor.py" line="1589" /> - <location filename="../QScintilla/MiniEditor.py" line="1588" /> <location filename="../QScintilla/ShellWindow.py" line="477" /> <location filename="../QScintilla/ShellWindow.py" line="476" /> <location filename="../ViewManager/ViewManager.py" line="2518" /> @@ -96003,37 +96008,37 @@ <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1590" /> + <location filename="../QScintilla/MiniEditor.py" line="1591" /> <location filename="../QScintilla/ShellWindow.py" line="478" /> <location filename="../ViewManager/ViewManager.py" line="2519" /> <source>Backspace</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1597" /> + <location filename="../QScintilla/MiniEditor.py" line="1598" /> <location filename="../QScintilla/ShellWindow.py" line="485" /> <location filename="../ViewManager/ViewManager.py" line="2526" /> <source>Meta+H</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1602" /> + <location filename="../QScintilla/MiniEditor.py" line="1603" /> <location filename="../QScintilla/ShellWindow.py" line="490" /> <location filename="../ViewManager/ViewManager.py" line="2531" /> <source>Shift+Backspace</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1613" /> - <location filename="../QScintilla/MiniEditor.py" line="1610" /> + <location filename="../QScintilla/MiniEditor.py" line="1614" /> + <location filename="../QScintilla/MiniEditor.py" line="1611" /> <location filename="../ViewManager/ViewManager.py" line="2542" /> <location filename="../ViewManager/ViewManager.py" line="2539" /> <source>Delete previous character if not at start of line</source> <translation type="unfinished" /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1628" /> <location filename="../QScintilla/MiniEditor.py" line="1627" /> - <location filename="../QScintilla/MiniEditor.py" line="1626" /> <location filename="../QScintilla/ShellWindow.py" line="499" /> <location filename="../QScintilla/ShellWindow.py" line="498" /> <location filename="../ViewManager/ViewManager.py" line="2556" /> @@ -96042,22 +96047,22 @@ <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1628" /> + <location filename="../QScintilla/MiniEditor.py" line="1629" /> <location filename="../QScintilla/ShellWindow.py" line="500" /> <location filename="../ViewManager/ViewManager.py" line="2557" /> <source>Del</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1635" /> + <location filename="../QScintilla/MiniEditor.py" line="1636" /> <location filename="../QScintilla/ShellWindow.py" line="507" /> <location filename="../ViewManager/ViewManager.py" line="2564" /> <source>Meta+D</source> <translation type="unfinished" /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1644" /> <location filename="../QScintilla/MiniEditor.py" line="1643" /> - <location filename="../QScintilla/MiniEditor.py" line="1642" /> <location filename="../QScintilla/ShellWindow.py" line="515" /> <location filename="../QScintilla/ShellWindow.py" line="514" /> <location filename="../ViewManager/ViewManager.py" line="2572" /> @@ -96066,15 +96071,15 @@ <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1644" /> + <location filename="../QScintilla/MiniEditor.py" line="1645" /> <location filename="../QScintilla/ShellWindow.py" line="516" /> <location filename="../ViewManager/ViewManager.py" line="2573" /> <source>Ctrl+Backspace</source> <translation type="unfinished" /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1656" /> <location filename="../QScintilla/MiniEditor.py" line="1655" /> - <location filename="../QScintilla/MiniEditor.py" line="1654" /> <location filename="../QScintilla/ShellWindow.py" line="527" /> <location filename="../QScintilla/ShellWindow.py" line="526" /> <location filename="../ViewManager/ViewManager.py" line="2584" /> @@ -96083,15 +96088,15 @@ <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1656" /> + <location filename="../QScintilla/MiniEditor.py" line="1657" /> <location filename="../QScintilla/ShellWindow.py" line="528" /> <location filename="../ViewManager/ViewManager.py" line="2585" /> <source>Ctrl+Del</source> <translation type="unfinished" /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1668" /> <location filename="../QScintilla/MiniEditor.py" line="1667" /> - <location filename="../QScintilla/MiniEditor.py" line="1666" /> <location filename="../QScintilla/ShellWindow.py" line="539" /> <location filename="../QScintilla/ShellWindow.py" line="538" /> <location filename="../ViewManager/ViewManager.py" line="2596" /> @@ -96100,15 +96105,15 @@ <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1669" /> + <location filename="../QScintilla/MiniEditor.py" line="1670" /> <location filename="../QScintilla/ShellWindow.py" line="541" /> <location filename="../ViewManager/ViewManager.py" line="2598" /> <source>Ctrl+Shift+Backspace</source> <translation type="unfinished" /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1682" /> <location filename="../QScintilla/MiniEditor.py" line="1681" /> - <location filename="../QScintilla/MiniEditor.py" line="1680" /> <location filename="../QScintilla/ShellWindow.py" line="553" /> <location filename="../QScintilla/ShellWindow.py" line="552" /> <location filename="../ViewManager/ViewManager.py" line="2610" /> @@ -96117,22 +96122,22 @@ <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1689" /> + <location filename="../QScintilla/MiniEditor.py" line="1690" /> <location filename="../QScintilla/ShellWindow.py" line="561" /> <location filename="../ViewManager/ViewManager.py" line="2618" /> <source>Meta+K</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1694" /> + <location filename="../QScintilla/MiniEditor.py" line="1695" /> <location filename="../QScintilla/ShellWindow.py" line="566" /> <location filename="../ViewManager/ViewManager.py" line="2623" /> <source>Ctrl+Shift+Del</source> <translation type="unfinished" /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1704" /> <location filename="../QScintilla/MiniEditor.py" line="1703" /> - <location filename="../QScintilla/MiniEditor.py" line="1702" /> <location filename="../QScintilla/ShellWindow.py" line="465" /> <location filename="../QScintilla/ShellWindow.py" line="464" /> <location filename="../ViewManager/ViewManager.py" line="2632" /> @@ -96141,14 +96146,14 @@ <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1704" /> + <location filename="../QScintilla/MiniEditor.py" line="1705" /> <location filename="../QScintilla/ShellWindow.py" line="466" /> <location filename="../ViewManager/ViewManager.py" line="2633" /> <source>Return</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1705" /> + <location filename="../QScintilla/MiniEditor.py" line="1706" /> <location filename="../QScintilla/ShellWindow.py" line="467" /> <location filename="../ViewManager/ViewManager.py" line="2634" /> <source>Enter</source> @@ -96171,8 +96176,8 @@ <translation type="unfinished" /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1716" /> <location filename="../QScintilla/MiniEditor.py" line="1715" /> - <location filename="../QScintilla/MiniEditor.py" line="1714" /> <location filename="../QScintilla/ShellWindow.py" line="441" /> <location filename="../QScintilla/ShellWindow.py" line="440" /> <location filename="../ViewManager/ViewManager.py" line="2659" /> @@ -96181,129 +96186,129 @@ <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1716" /> + <location filename="../QScintilla/MiniEditor.py" line="1717" /> <location filename="../QScintilla/ShellWindow.py" line="442" /> <location filename="../ViewManager/ViewManager.py" line="2660" /> <source>Ctrl+Shift+L</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1727" /> - <location filename="../QScintilla/MiniEditor.py" line="1726" /> - <location filename="../ViewManager/ViewManager.py" line="2671" /> - <location filename="../ViewManager/ViewManager.py" line="2670" /> - <source>Duplicate current line</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="1728" /> + <location filename="../QScintilla/MiniEditor.py" line="1727" /> + <location filename="../ViewManager/ViewManager.py" line="2671" /> + <location filename="../ViewManager/ViewManager.py" line="2670" /> + <source>Duplicate current line</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="1729" /> <location filename="../ViewManager/ViewManager.py" line="2672" /> <source>Ctrl+D</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1741" /> - <location filename="../QScintilla/MiniEditor.py" line="1738" /> + <location filename="../QScintilla/MiniEditor.py" line="1742" /> + <location filename="../QScintilla/MiniEditor.py" line="1739" /> <location filename="../ViewManager/ViewManager.py" line="2685" /> <location filename="../ViewManager/ViewManager.py" line="2682" /> <source>Swap current and previous lines</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1744" /> + <location filename="../QScintilla/MiniEditor.py" line="1745" /> <location filename="../ViewManager/ViewManager.py" line="2688" /> <source>Ctrl+T</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1755" /> - <location filename="../QScintilla/MiniEditor.py" line="1754" /> - <location filename="../ViewManager/ViewManager.py" line="2699" /> - <location filename="../ViewManager/ViewManager.py" line="2698" /> - <source>Reverse selected lines</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="1756" /> + <location filename="../QScintilla/MiniEditor.py" line="1755" /> + <location filename="../ViewManager/ViewManager.py" line="2699" /> + <location filename="../ViewManager/ViewManager.py" line="2698" /> + <source>Reverse selected lines</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="1757" /> <location filename="../ViewManager/ViewManager.py" line="2700" /> <source>Meta+Alt+R</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1767" /> - <location filename="../QScintilla/MiniEditor.py" line="1766" /> - <location filename="../ViewManager/ViewManager.py" line="2711" /> - <location filename="../ViewManager/ViewManager.py" line="2710" /> - <source>Cut current line</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="1768" /> + <location filename="../QScintilla/MiniEditor.py" line="1767" /> + <location filename="../ViewManager/ViewManager.py" line="2711" /> + <location filename="../ViewManager/ViewManager.py" line="2710" /> + <source>Cut current line</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="1769" /> <location filename="../ViewManager/ViewManager.py" line="2712" /> <source>Alt+Shift+L</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1779" /> - <location filename="../QScintilla/MiniEditor.py" line="1778" /> - <location filename="../ViewManager/ViewManager.py" line="2723" /> - <location filename="../ViewManager/ViewManager.py" line="2722" /> - <source>Copy current line</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="1780" /> + <location filename="../QScintilla/MiniEditor.py" line="1779" /> + <location filename="../ViewManager/ViewManager.py" line="2723" /> + <location filename="../ViewManager/ViewManager.py" line="2722" /> + <source>Copy current line</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="1781" /> <location filename="../ViewManager/ViewManager.py" line="2724" /> <source>Ctrl+Shift+T</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1791" /> - <location filename="../QScintilla/MiniEditor.py" line="1790" /> - <location filename="../ViewManager/ViewManager.py" line="2735" /> - <location filename="../ViewManager/ViewManager.py" line="2734" /> - <source>Toggle insert/overtype</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="1792" /> + <location filename="../QScintilla/MiniEditor.py" line="1791" /> + <location filename="../ViewManager/ViewManager.py" line="2735" /> + <location filename="../ViewManager/ViewManager.py" line="2734" /> + <source>Toggle insert/overtype</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="1793" /> <location filename="../ViewManager/ViewManager.py" line="2736" /> <source>Ins</source> <translation type="unfinished" /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1836" /> <location filename="../QScintilla/MiniEditor.py" line="1835" /> - <location filename="../QScintilla/MiniEditor.py" line="1834" /> <location filename="../ViewManager/ViewManager.py" line="2747" /> <location filename="../ViewManager/ViewManager.py" line="2746" /> <source>Move to end of display line</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1847" /> + <location filename="../QScintilla/MiniEditor.py" line="1848" /> <location filename="../ViewManager/ViewManager.py" line="2759" /> <source>Alt+End</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1857" /> - <location filename="../QScintilla/MiniEditor.py" line="1854" /> + <location filename="../QScintilla/MiniEditor.py" line="1858" /> + <location filename="../QScintilla/MiniEditor.py" line="1855" /> <location filename="../ViewManager/ViewManager.py" line="2769" /> <location filename="../ViewManager/ViewManager.py" line="2766" /> <source>Extend selection to end of display line</source> <translation type="unfinished" /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1878" /> <location filename="../QScintilla/MiniEditor.py" line="1877" /> - <location filename="../QScintilla/MiniEditor.py" line="1876" /> <location filename="../ViewManager/ViewManager.py" line="2789" /> <location filename="../ViewManager/ViewManager.py" line="2788" /> <source>Formfeed</source> <translation type="unfinished" /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1890" /> <location filename="../QScintilla/MiniEditor.py" line="1889" /> - <location filename="../QScintilla/MiniEditor.py" line="1888" /> <location filename="../QScintilla/ShellWindow.py" line="767" /> <location filename="../QScintilla/ShellWindow.py" line="766" /> <location filename="../ViewManager/ViewManager.py" line="2801" /> @@ -96312,423 +96317,423 @@ <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1890" /> + <location filename="../QScintilla/MiniEditor.py" line="1891" /> <location filename="../QScintilla/ShellWindow.py" line="768" /> <location filename="../ViewManager/ViewManager.py" line="2802" /> <source>Esc</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1903" /> - <location filename="../QScintilla/MiniEditor.py" line="1900" /> + <location filename="../QScintilla/MiniEditor.py" line="1904" /> + <location filename="../QScintilla/MiniEditor.py" line="1901" /> <location filename="../ViewManager/ViewManager.py" line="2815" /> <location filename="../ViewManager/ViewManager.py" line="2812" /> <source>Extend rectangular selection down one line</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1906" /> + <location filename="../QScintilla/MiniEditor.py" line="1907" /> <location filename="../ViewManager/ViewManager.py" line="2818" /> <source>Alt+Ctrl+Down</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1914" /> + <location filename="../QScintilla/MiniEditor.py" line="1915" /> <location filename="../ViewManager/ViewManager.py" line="2826" /> <source>Meta+Alt+Shift+N</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1925" /> - <location filename="../QScintilla/MiniEditor.py" line="1922" /> + <location filename="../QScintilla/MiniEditor.py" line="1926" /> + <location filename="../QScintilla/MiniEditor.py" line="1923" /> <location filename="../ViewManager/ViewManager.py" line="2837" /> <location filename="../ViewManager/ViewManager.py" line="2834" /> <source>Extend rectangular selection up one line</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1928" /> + <location filename="../QScintilla/MiniEditor.py" line="1929" /> <location filename="../ViewManager/ViewManager.py" line="2840" /> <source>Alt+Ctrl+Up</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1936" /> + <location filename="../QScintilla/MiniEditor.py" line="1937" /> <location filename="../ViewManager/ViewManager.py" line="2848" /> <source>Meta+Alt+Shift+P</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1947" /> - <location filename="../QScintilla/MiniEditor.py" line="1944" /> + <location filename="../QScintilla/MiniEditor.py" line="1948" /> + <location filename="../QScintilla/MiniEditor.py" line="1945" /> <location filename="../ViewManager/ViewManager.py" line="2859" /> <location filename="../ViewManager/ViewManager.py" line="2856" /> <source>Extend rectangular selection left one character</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1950" /> + <location filename="../QScintilla/MiniEditor.py" line="1951" /> <location filename="../ViewManager/ViewManager.py" line="2862" /> <source>Alt+Ctrl+Left</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1958" /> + <location filename="../QScintilla/MiniEditor.py" line="1959" /> <location filename="../ViewManager/ViewManager.py" line="2870" /> <source>Meta+Alt+Shift+B</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1969" /> - <location filename="../QScintilla/MiniEditor.py" line="1966" /> + <location filename="../QScintilla/MiniEditor.py" line="1970" /> + <location filename="../QScintilla/MiniEditor.py" line="1967" /> <location filename="../ViewManager/ViewManager.py" line="2881" /> <location filename="../ViewManager/ViewManager.py" line="2878" /> <source>Extend rectangular selection right one character</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1972" /> + <location filename="../QScintilla/MiniEditor.py" line="1973" /> <location filename="../ViewManager/ViewManager.py" line="2884" /> <source>Alt+Ctrl+Right</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1980" /> + <location filename="../QScintilla/MiniEditor.py" line="1981" /> <location filename="../ViewManager/ViewManager.py" line="2892" /> <source>Meta+Alt+Shift+F</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1993" /> - <location filename="../QScintilla/MiniEditor.py" line="1988" /> + <location filename="../QScintilla/MiniEditor.py" line="1994" /> + <location filename="../QScintilla/MiniEditor.py" line="1989" /> <location filename="../ViewManager/ViewManager.py" line="2905" /> <location filename="../ViewManager/ViewManager.py" line="2900" /> <source>Extend rectangular selection to first visible character in document line</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2006" /> + <location filename="../QScintilla/MiniEditor.py" line="2007" /> <location filename="../ViewManager/ViewManager.py" line="2918" /> <source>Alt+Shift+Home</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2017" /> - <location filename="../QScintilla/MiniEditor.py" line="2014" /> + <location filename="../QScintilla/MiniEditor.py" line="2018" /> + <location filename="../QScintilla/MiniEditor.py" line="2015" /> <location filename="../ViewManager/ViewManager.py" line="2929" /> <location filename="../ViewManager/ViewManager.py" line="2926" /> <source>Extend rectangular selection to end of document line</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2028" /> + <location filename="../QScintilla/MiniEditor.py" line="2029" /> <location filename="../ViewManager/ViewManager.py" line="2940" /> <source>Meta+Alt+Shift+E</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2033" /> + <location filename="../QScintilla/MiniEditor.py" line="2034" /> <location filename="../ViewManager/ViewManager.py" line="2945" /> <source>Alt+Shift+End</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2043" /> - <location filename="../QScintilla/MiniEditor.py" line="2040" /> + <location filename="../QScintilla/MiniEditor.py" line="2044" /> + <location filename="../QScintilla/MiniEditor.py" line="2041" /> <location filename="../ViewManager/ViewManager.py" line="2955" /> <location filename="../ViewManager/ViewManager.py" line="2952" /> <source>Extend rectangular selection up one page</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2046" /> + <location filename="../QScintilla/MiniEditor.py" line="2047" /> <location filename="../ViewManager/ViewManager.py" line="2958" /> <source>Alt+Shift+PgUp</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2059" /> - <location filename="../QScintilla/MiniEditor.py" line="2056" /> + <location filename="../QScintilla/MiniEditor.py" line="2060" /> + <location filename="../QScintilla/MiniEditor.py" line="2057" /> <location filename="../ViewManager/ViewManager.py" line="2971" /> <location filename="../ViewManager/ViewManager.py" line="2968" /> <source>Extend rectangular selection down one page</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2062" /> + <location filename="../QScintilla/MiniEditor.py" line="2063" /> <location filename="../ViewManager/ViewManager.py" line="2974" /> <source>Alt+Shift+PgDown</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2070" /> + <location filename="../QScintilla/MiniEditor.py" line="2071" /> <location filename="../ViewManager/ViewManager.py" line="2982" /> <source>Meta+Alt+Shift+V</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2545" /> - <location filename="../QScintilla/MiniEditor.py" line="2544" /> - <location filename="../QScintilla/MiniEditor.py" line="2079" /> - <location filename="../QScintilla/MiniEditor.py" line="2078" /> - <location filename="../ViewManager/ViewManager.py" line="2991" /> - <location filename="../ViewManager/ViewManager.py" line="2990" /> - <source>Duplicate current selection</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="2546" /> + <location filename="../QScintilla/MiniEditor.py" line="2545" /> <location filename="../QScintilla/MiniEditor.py" line="2080" /> + <location filename="../QScintilla/MiniEditor.py" line="2079" /> + <location filename="../ViewManager/ViewManager.py" line="2991" /> + <location filename="../ViewManager/ViewManager.py" line="2990" /> + <source>Duplicate current selection</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="2547" /> + <location filename="../QScintilla/MiniEditor.py" line="2081" /> <location filename="../ViewManager/ViewManager.py" line="2992" /> <source>Ctrl+Shift+D</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2094" /> - <location filename="../QScintilla/MiniEditor.py" line="2091" /> + <location filename="../QScintilla/MiniEditor.py" line="2095" /> + <location filename="../QScintilla/MiniEditor.py" line="2092" /> <location filename="../ViewManager/ViewManager.py" line="3006" /> <location filename="../ViewManager/ViewManager.py" line="3003" /> <source>Scroll to start of document</source> <translation type="unfinished" /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="2114" /> <location filename="../QScintilla/MiniEditor.py" line="2113" /> - <location filename="../QScintilla/MiniEditor.py" line="2112" /> <location filename="../ViewManager/ViewManager.py" line="3025" /> <location filename="../ViewManager/ViewManager.py" line="3024" /> <source>Scroll to end of document</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2132" /> - <location filename="../QScintilla/MiniEditor.py" line="2129" /> + <location filename="../QScintilla/MiniEditor.py" line="2133" /> + <location filename="../QScintilla/MiniEditor.py" line="2130" /> <location filename="../ViewManager/ViewManager.py" line="3044" /> <location filename="../ViewManager/ViewManager.py" line="3041" /> <source>Scroll vertically to center current line</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2142" /> + <location filename="../QScintilla/MiniEditor.py" line="2143" /> <location filename="../ViewManager/ViewManager.py" line="3054" /> <source>Meta+L</source> <translation type="unfinished" /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="2152" /> <location filename="../QScintilla/MiniEditor.py" line="2151" /> - <location filename="../QScintilla/MiniEditor.py" line="2150" /> <location filename="../ViewManager/ViewManager.py" line="3063" /> <location filename="../ViewManager/ViewManager.py" line="3062" /> <source>Move to end of next word</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2170" /> - <location filename="../QScintilla/MiniEditor.py" line="2167" /> + <location filename="../QScintilla/MiniEditor.py" line="2171" /> + <location filename="../QScintilla/MiniEditor.py" line="2168" /> <location filename="../ViewManager/ViewManager.py" line="3082" /> <location filename="../ViewManager/ViewManager.py" line="3079" /> <source>Extend selection to end of next word</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2193" /> - <location filename="../QScintilla/MiniEditor.py" line="2190" /> + <location filename="../QScintilla/MiniEditor.py" line="2194" /> + <location filename="../QScintilla/MiniEditor.py" line="2191" /> <location filename="../ViewManager/ViewManager.py" line="3105" /> <location filename="../ViewManager/ViewManager.py" line="3102" /> <source>Move to end of previous word</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2210" /> - <location filename="../QScintilla/MiniEditor.py" line="2207" /> + <location filename="../QScintilla/MiniEditor.py" line="2211" /> + <location filename="../QScintilla/MiniEditor.py" line="2208" /> <location filename="../ViewManager/ViewManager.py" line="3122" /> <location filename="../ViewManager/ViewManager.py" line="3119" /> <source>Extend selection to end of previous word</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2227" /> - <location filename="../QScintilla/MiniEditor.py" line="2224" /> + <location filename="../QScintilla/MiniEditor.py" line="2228" /> + <location filename="../QScintilla/MiniEditor.py" line="2225" /> <location filename="../ViewManager/ViewManager.py" line="3139" /> <location filename="../ViewManager/ViewManager.py" line="3136" /> <source>Move to start of document line</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2237" /> + <location filename="../QScintilla/MiniEditor.py" line="2238" /> <location filename="../ViewManager/ViewManager.py" line="3149" /> <source>Meta+A</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2248" /> - <location filename="../QScintilla/MiniEditor.py" line="2245" /> + <location filename="../QScintilla/MiniEditor.py" line="2249" /> + <location filename="../QScintilla/MiniEditor.py" line="2246" /> <location filename="../ViewManager/ViewManager.py" line="3160" /> <location filename="../ViewManager/ViewManager.py" line="3157" /> <source>Extend selection to start of document line</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2259" /> + <location filename="../QScintilla/MiniEditor.py" line="2260" /> <location filename="../ViewManager/ViewManager.py" line="3171" /> <source>Meta+Shift+A</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2272" /> - <location filename="../QScintilla/MiniEditor.py" line="2268" /> + <location filename="../QScintilla/MiniEditor.py" line="2273" /> + <location filename="../QScintilla/MiniEditor.py" line="2269" /> <location filename="../ViewManager/ViewManager.py" line="3184" /> <location filename="../ViewManager/ViewManager.py" line="3180" /> <source>Extend rectangular selection to start of document line</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2284" /> + <location filename="../QScintilla/MiniEditor.py" line="2285" /> <location filename="../ViewManager/ViewManager.py" line="3196" /> <source>Meta+Alt+Shift+A</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2296" /> - <location filename="../QScintilla/MiniEditor.py" line="2293" /> + <location filename="../QScintilla/MiniEditor.py" line="2297" /> + <location filename="../QScintilla/MiniEditor.py" line="2294" /> <location filename="../ViewManager/ViewManager.py" line="3208" /> <location filename="../ViewManager/ViewManager.py" line="3205" /> <source>Extend selection to start of display line</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2319" /> - <location filename="../QScintilla/MiniEditor.py" line="2316" /> + <location filename="../QScintilla/MiniEditor.py" line="2320" /> + <location filename="../QScintilla/MiniEditor.py" line="2317" /> <location filename="../ViewManager/ViewManager.py" line="3231" /> <location filename="../ViewManager/ViewManager.py" line="3228" /> <source>Move to start of display or document line</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2337" /> - <location filename="../QScintilla/MiniEditor.py" line="2333" /> + <location filename="../QScintilla/MiniEditor.py" line="2338" /> + <location filename="../QScintilla/MiniEditor.py" line="2334" /> <location filename="../ViewManager/ViewManager.py" line="3249" /> <location filename="../ViewManager/ViewManager.py" line="3245" /> <source>Extend selection to start of display or document line</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2356" /> - <location filename="../QScintilla/MiniEditor.py" line="2352" /> + <location filename="../QScintilla/MiniEditor.py" line="2357" /> + <location filename="../QScintilla/MiniEditor.py" line="2353" /> <location filename="../ViewManager/ViewManager.py" line="3268" /> <location filename="../ViewManager/ViewManager.py" line="3264" /> <source>Move to first visible character in display or document line</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2376" /> - <location filename="../QScintilla/MiniEditor.py" line="2371" /> + <location filename="../QScintilla/MiniEditor.py" line="2377" /> + <location filename="../QScintilla/MiniEditor.py" line="2372" /> <location filename="../ViewManager/ViewManager.py" line="3288" /> <location filename="../ViewManager/ViewManager.py" line="3283" /> <source>Extend selection to first visible character in display or document line</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2395" /> - <location filename="../QScintilla/MiniEditor.py" line="2392" /> + <location filename="../QScintilla/MiniEditor.py" line="2396" /> + <location filename="../QScintilla/MiniEditor.py" line="2393" /> <location filename="../ViewManager/ViewManager.py" line="3307" /> <location filename="../ViewManager/ViewManager.py" line="3304" /> <source>Move to end of display or document line</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2412" /> - <location filename="../QScintilla/MiniEditor.py" line="2409" /> + <location filename="../QScintilla/MiniEditor.py" line="2413" /> + <location filename="../QScintilla/MiniEditor.py" line="2410" /> <location filename="../ViewManager/ViewManager.py" line="3324" /> <location filename="../ViewManager/ViewManager.py" line="3321" /> <source>Extend selection to end of display or document line</source> <translation type="unfinished" /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="2428" /> <location filename="../QScintilla/MiniEditor.py" line="2427" /> - <location filename="../QScintilla/MiniEditor.py" line="2426" /> <location filename="../ViewManager/ViewManager.py" line="3339" /> <location filename="../ViewManager/ViewManager.py" line="3338" /> <source>Stuttered move up one page</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2442" /> - <location filename="../QScintilla/MiniEditor.py" line="2439" /> + <location filename="../QScintilla/MiniEditor.py" line="2443" /> + <location filename="../QScintilla/MiniEditor.py" line="2440" /> <location filename="../ViewManager/ViewManager.py" line="3354" /> <location filename="../ViewManager/ViewManager.py" line="3351" /> <source>Stuttered extend selection up one page</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2459" /> - <location filename="../QScintilla/MiniEditor.py" line="2456" /> + <location filename="../QScintilla/MiniEditor.py" line="2460" /> + <location filename="../QScintilla/MiniEditor.py" line="2457" /> <location filename="../ViewManager/ViewManager.py" line="3371" /> <location filename="../ViewManager/ViewManager.py" line="3368" /> <source>Stuttered move down one page</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2476" /> - <location filename="../QScintilla/MiniEditor.py" line="2473" /> + <location filename="../QScintilla/MiniEditor.py" line="2477" /> + <location filename="../QScintilla/MiniEditor.py" line="2474" /> <location filename="../ViewManager/ViewManager.py" line="3388" /> <location filename="../ViewManager/ViewManager.py" line="3385" /> <source>Stuttered extend selection down one page</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2493" /> - <location filename="../QScintilla/MiniEditor.py" line="2490" /> + <location filename="../QScintilla/MiniEditor.py" line="2494" /> + <location filename="../QScintilla/MiniEditor.py" line="2491" /> <location filename="../ViewManager/ViewManager.py" line="3405" /> <location filename="../ViewManager/ViewManager.py" line="3402" /> <source>Delete right to end of next word</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2503" /> + <location filename="../QScintilla/MiniEditor.py" line="2504" /> <location filename="../ViewManager/ViewManager.py" line="3415" /> <source>Alt+Del</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2514" /> - <location filename="../QScintilla/MiniEditor.py" line="2511" /> + <location filename="../QScintilla/MiniEditor.py" line="2515" /> + <location filename="../QScintilla/MiniEditor.py" line="2512" /> <location filename="../ViewManager/ViewManager.py" line="3426" /> <location filename="../ViewManager/ViewManager.py" line="3423" /> <source>Move selected lines up one line</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2531" /> - <location filename="../QScintilla/MiniEditor.py" line="2528" /> + <location filename="../QScintilla/MiniEditor.py" line="2532" /> + <location filename="../QScintilla/MiniEditor.py" line="2529" /> <location filename="../ViewManager/ViewManager.py" line="3443" /> <location filename="../ViewManager/ViewManager.py" line="3440" /> <source>Move selected lines down one line</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1805" /> - <location filename="../QScintilla/MiniEditor.py" line="1802" /> + <location filename="../QScintilla/MiniEditor.py" line="1806" /> + <location filename="../QScintilla/MiniEditor.py" line="1803" /> <location filename="../ViewManager/ViewManager.py" line="3461" /> <location filename="../ViewManager/ViewManager.py" line="3458" /> <source>Convert selection to lower case</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1808" /> + <location filename="../QScintilla/MiniEditor.py" line="1809" /> <location filename="../ViewManager/ViewManager.py" line="3464" /> <source>Alt+Shift+U</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1821" /> - <location filename="../QScintilla/MiniEditor.py" line="1818" /> + <location filename="../QScintilla/MiniEditor.py" line="1822" /> + <location filename="../QScintilla/MiniEditor.py" line="1819" /> <location filename="../ViewManager/ViewManager.py" line="3477" /> <location filename="../ViewManager/ViewManager.py" line="3474" /> <source>Convert selection to upper case</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1824" /> + <location filename="../QScintilla/MiniEditor.py" line="1825" /> <location filename="../ViewManager/ViewManager.py" line="3480" /> <source>Ctrl+Shift+U</source> <translation type="unfinished" /> @@ -96745,7 +96750,7 @@ <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2563" /> + <location filename="../QScintilla/MiniEditor.py" line="2564" /> <location filename="../QScintilla/ShellWindow.py" line="923" /> <location filename="../ViewManager/ViewManager.py" line="4167" /> <location filename="../ViewManager/ViewManager.py" line="4165" /> @@ -96754,14 +96759,14 @@ <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2565" /> + <location filename="../QScintilla/MiniEditor.py" line="2566" /> <location filename="../QScintilla/ShellWindow.py" line="925" /> <location filename="../ViewManager/ViewManager.py" line="3600" /> <source>&Search...</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2567" /> + <location filename="../QScintilla/MiniEditor.py" line="2568" /> <location filename="../QScintilla/ShellWindow.py" line="927" /> <location filename="../ViewManager/ViewManager.py" line="3602" /> <source>Ctrl+F</source> @@ -96769,34 +96774,34 @@ <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2574" /> + <location filename="../QScintilla/MiniEditor.py" line="2575" /> <location filename="../QScintilla/ShellWindow.py" line="934" /> <location filename="../ViewManager/ViewManager.py" line="3609" /> <source>Search for a text</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2577" /> + <location filename="../QScintilla/MiniEditor.py" line="2578" /> <location filename="../ViewManager/ViewManager.py" line="3612" /> <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 type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2589" /> + <location filename="../QScintilla/MiniEditor.py" line="2590" /> <location filename="../QScintilla/ShellWindow.py" line="949" /> <location filename="../ViewManager/ViewManager.py" line="3624" /> <source>Search next</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2591" /> + <location filename="../QScintilla/MiniEditor.py" line="2592" /> <location filename="../QScintilla/ShellWindow.py" line="951" /> <location filename="../ViewManager/ViewManager.py" line="3626" /> <source>Search &next</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2593" /> + <location filename="../QScintilla/MiniEditor.py" line="2594" /> <location filename="../QScintilla/ShellWindow.py" line="953" /> <location filename="../ViewManager/ViewManager.py" line="3628" /> <source>F3</source> @@ -96804,34 +96809,34 @@ <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2600" /> + <location filename="../QScintilla/MiniEditor.py" line="2601" /> <location filename="../QScintilla/ShellWindow.py" line="960" /> <location filename="../ViewManager/ViewManager.py" line="3635" /> <source>Search next occurrence of text</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2603" /> + <location filename="../QScintilla/MiniEditor.py" line="2604" /> <location filename="../ViewManager/ViewManager.py" line="3638" /> <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 type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2615" /> + <location filename="../QScintilla/MiniEditor.py" line="2616" /> <location filename="../QScintilla/ShellWindow.py" line="977" /> <location filename="../ViewManager/ViewManager.py" line="3650" /> <source>Search previous</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2617" /> + <location filename="../QScintilla/MiniEditor.py" line="2618" /> <location filename="../QScintilla/ShellWindow.py" line="979" /> <location filename="../ViewManager/ViewManager.py" line="3652" /> <source>Search &previous</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2619" /> + <location filename="../QScintilla/MiniEditor.py" line="2620" /> <location filename="../QScintilla/ShellWindow.py" line="981" /> <location filename="../ViewManager/ViewManager.py" line="3654" /> <source>Shift+F3</source> @@ -96839,41 +96844,41 @@ <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2628" /> + <location filename="../QScintilla/MiniEditor.py" line="2629" /> <location filename="../QScintilla/ShellWindow.py" line="990" /> <location filename="../ViewManager/ViewManager.py" line="3663" /> <source>Search previous occurrence of text</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2633" /> + <location filename="../QScintilla/MiniEditor.py" line="2634" /> <location filename="../ViewManager/ViewManager.py" line="3668" /> <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 type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2647" /> - <location filename="../QScintilla/MiniEditor.py" line="2645" /> + <location filename="../QScintilla/MiniEditor.py" line="2648" /> + <location filename="../QScintilla/MiniEditor.py" line="2646" /> <location filename="../ViewManager/ViewManager.py" line="3682" /> <location filename="../ViewManager/ViewManager.py" line="3680" /> <source>Clear search markers</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2649" /> + <location filename="../QScintilla/MiniEditor.py" line="2650" /> <location filename="../ViewManager/ViewManager.py" line="3684" /> <source>Ctrl+3</source> <comment>Search|Clear search markers</comment> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2658" /> + <location filename="../QScintilla/MiniEditor.py" line="2659" /> <location filename="../ViewManager/ViewManager.py" line="3693" /> <source>Clear all displayed search markers</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2663" /> + <location filename="../QScintilla/MiniEditor.py" line="2664" /> <location filename="../ViewManager/ViewManager.py" line="3698" /> <source><b>Clear search markers</b><p>Clear all displayed search markers.</p></source> <translation type="unfinished" /> @@ -96923,113 +96928,113 @@ <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2673" /> + <location filename="../QScintilla/MiniEditor.py" line="2674" /> <location filename="../ViewManager/ViewManager.py" line="3766" /> <source>Replace</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2674" /> + <location filename="../QScintilla/MiniEditor.py" line="2675" /> <location filename="../ViewManager/ViewManager.py" line="3767" /> <source>&Replace...</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2676" /> + <location filename="../QScintilla/MiniEditor.py" line="2677" /> <location filename="../ViewManager/ViewManager.py" line="3769" /> <source>Ctrl+R</source> <comment>Search|Replace</comment> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2683" /> + <location filename="../QScintilla/MiniEditor.py" line="2684" /> <location filename="../ViewManager/ViewManager.py" line="3776" /> <source>Replace some text</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2686" /> + <location filename="../QScintilla/MiniEditor.py" line="2687" /> <location filename="../ViewManager/ViewManager.py" line="3779" /> <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 type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2700" /> - <location filename="../QScintilla/MiniEditor.py" line="2698" /> + <location filename="../QScintilla/MiniEditor.py" line="2701" /> + <location filename="../QScintilla/MiniEditor.py" line="2699" /> <location filename="../ViewManager/ViewManager.py" line="3793" /> <location filename="../ViewManager/ViewManager.py" line="3791" /> <source>Replace and Search</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2702" /> + <location filename="../QScintilla/MiniEditor.py" line="2703" /> <location filename="../ViewManager/ViewManager.py" line="3795" /> <source>Meta+R</source> <comment>Search|Replace and Search</comment> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2711" /> + <location filename="../QScintilla/MiniEditor.py" line="2712" /> <location filename="../ViewManager/ViewManager.py" line="3804" /> <source>Replace the found text and search the next occurrence</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2716" /> + <location filename="../QScintilla/MiniEditor.py" line="2717" /> <location filename="../ViewManager/ViewManager.py" line="3809" /> <source><b>Replace and Search</b><p>Replace the found occurrence of text in the current editor and search for the next one. The previously entered search text and options are reused.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2732" /> - <location filename="../QScintilla/MiniEditor.py" line="2730" /> + <location filename="../QScintilla/MiniEditor.py" line="2733" /> + <location filename="../QScintilla/MiniEditor.py" line="2731" /> <location filename="../ViewManager/ViewManager.py" line="3825" /> <location filename="../ViewManager/ViewManager.py" line="3823" /> <source>Replace Occurrence</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2734" /> + <location filename="../QScintilla/MiniEditor.py" line="2735" /> <location filename="../ViewManager/ViewManager.py" line="3827" /> <source>Ctrl+Meta+R</source> <comment>Search|Replace Occurrence</comment> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2743" /> + <location filename="../QScintilla/MiniEditor.py" line="2744" /> <location filename="../ViewManager/ViewManager.py" line="3836" /> <source>Replace the found text</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2746" /> + <location filename="../QScintilla/MiniEditor.py" line="2747" /> <location filename="../ViewManager/ViewManager.py" line="3839" /> <source><b>Replace Occurrence</b><p>Replace the found occurrence of the search text in the current editor.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2759" /> - <location filename="../QScintilla/MiniEditor.py" line="2757" /> + <location filename="../QScintilla/MiniEditor.py" line="2760" /> + <location filename="../QScintilla/MiniEditor.py" line="2758" /> <location filename="../ViewManager/ViewManager.py" line="3852" /> <location filename="../ViewManager/ViewManager.py" line="3850" /> <source>Replace All</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2761" /> + <location filename="../QScintilla/MiniEditor.py" line="2762" /> <location filename="../ViewManager/ViewManager.py" line="3854" /> <source>Shift+Meta+R</source> <comment>Search|Replace All</comment> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2770" /> + <location filename="../QScintilla/MiniEditor.py" line="2771" /> <location filename="../ViewManager/ViewManager.py" line="3863" /> <source>Replace search text occurrences</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2773" /> + <location filename="../QScintilla/MiniEditor.py" line="2774" /> <location filename="../ViewManager/ViewManager.py" line="3866" /> <source><b>Replace All</b><p>Replace all occurrences of the search text in the current editor.</p></source> <translation type="unfinished" /> @@ -97254,21 +97259,21 @@ <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2788" /> + <location filename="../QScintilla/MiniEditor.py" line="2789" /> <location filename="../QScintilla/ShellWindow.py" line="1016" /> <location filename="../ViewManager/ViewManager.py" line="4208" /> <source>Zoom in</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2790" /> + <location filename="../QScintilla/MiniEditor.py" line="2791" /> <location filename="../QScintilla/ShellWindow.py" line="1018" /> <location filename="../ViewManager/ViewManager.py" line="4210" /> <source>Zoom &in</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2792" /> + <location filename="../QScintilla/MiniEditor.py" line="2793" /> <location filename="../QScintilla/ShellWindow.py" line="1020" /> <location filename="../ViewManager/ViewManager.py" line="4212" /> <source>Ctrl++</source> @@ -97276,7 +97281,7 @@ <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2795" /> + <location filename="../QScintilla/MiniEditor.py" line="2796" /> <location filename="../QScintilla/ShellWindow.py" line="1023" /> <location filename="../ViewManager/ViewManager.py" line="4215" /> <source>Zoom In</source> @@ -97284,35 +97289,35 @@ <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2801" /> + <location filename="../QScintilla/MiniEditor.py" line="2802" /> <location filename="../QScintilla/ShellWindow.py" line="1029" /> <location filename="../ViewManager/ViewManager.py" line="4221" /> <source>Zoom in on the text</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2804" /> + <location filename="../QScintilla/MiniEditor.py" line="2805" /> <location filename="../QScintilla/ShellWindow.py" line="1032" /> <location filename="../ViewManager/ViewManager.py" line="4224" /> <source><b>Zoom in</b><p>Zoom in on the text. This makes the text bigger.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2814" /> + <location filename="../QScintilla/MiniEditor.py" line="2815" /> <location filename="../QScintilla/ShellWindow.py" line="1042" /> <location filename="../ViewManager/ViewManager.py" line="4234" /> <source>Zoom out</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2816" /> + <location filename="../QScintilla/MiniEditor.py" line="2817" /> <location filename="../QScintilla/ShellWindow.py" line="1044" /> <location filename="../ViewManager/ViewManager.py" line="4236" /> <source>Zoom &out</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2818" /> + <location filename="../QScintilla/MiniEditor.py" line="2819" /> <location filename="../QScintilla/ShellWindow.py" line="1046" /> <location filename="../ViewManager/ViewManager.py" line="4238" /> <source>Ctrl+-</source> @@ -97320,7 +97325,7 @@ <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2821" /> + <location filename="../QScintilla/MiniEditor.py" line="2822" /> <location filename="../QScintilla/ShellWindow.py" line="1049" /> <location filename="../ViewManager/ViewManager.py" line="4241" /> <source>Zoom Out</source> @@ -97328,35 +97333,35 @@ <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2827" /> + <location filename="../QScintilla/MiniEditor.py" line="2828" /> <location filename="../QScintilla/ShellWindow.py" line="1055" /> <location filename="../ViewManager/ViewManager.py" line="4247" /> <source>Zoom out on the text</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2830" /> + <location filename="../QScintilla/MiniEditor.py" line="2831" /> <location filename="../QScintilla/ShellWindow.py" line="1058" /> <location filename="../ViewManager/ViewManager.py" line="4250" /> <source><b>Zoom out</b><p>Zoom out on the text. This makes the text smaller.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2840" /> + <location filename="../QScintilla/MiniEditor.py" line="2841" /> <location filename="../QScintilla/ShellWindow.py" line="1068" /> <location filename="../ViewManager/ViewManager.py" line="4260" /> <source>Zoom reset</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2842" /> + <location filename="../QScintilla/MiniEditor.py" line="2843" /> <location filename="../QScintilla/ShellWindow.py" line="1070" /> <location filename="../ViewManager/ViewManager.py" line="4262" /> <source>Zoom &reset</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2844" /> + <location filename="../QScintilla/MiniEditor.py" line="2845" /> <location filename="../QScintilla/ShellWindow.py" line="1072" /> <location filename="../ViewManager/ViewManager.py" line="4264" /> <source>Ctrl+0</source> @@ -97364,42 +97369,42 @@ <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2851" /> + <location filename="../QScintilla/MiniEditor.py" line="2852" /> <location filename="../QScintilla/ShellWindow.py" line="1079" /> <location filename="../ViewManager/ViewManager.py" line="4271" /> <source>Reset the zoom of the text</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2854" /> + <location filename="../QScintilla/MiniEditor.py" line="2855" /> <location filename="../QScintilla/ShellWindow.py" line="1082" /> <location filename="../ViewManager/ViewManager.py" line="4274" /> <source><b>Zoom reset</b><p>Reset the zoom of the text. This sets the zoom factor to 100%.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2865" /> + <location filename="../QScintilla/MiniEditor.py" line="2866" /> <location filename="../QScintilla/ShellWindow.py" line="1093" /> <location filename="../ViewManager/ViewManager.py" line="4285" /> <source>Zoom</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2867" /> + <location filename="../QScintilla/MiniEditor.py" line="2868" /> <location filename="../QScintilla/ShellWindow.py" line="1095" /> <location filename="../ViewManager/ViewManager.py" line="4287" /> <source>&Zoom</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2874" /> + <location filename="../QScintilla/MiniEditor.py" line="2875" /> <location filename="../QScintilla/ShellWindow.py" line="1102" /> <location filename="../ViewManager/ViewManager.py" line="4294" /> <source>Zoom the text</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2877" /> + <location filename="../QScintilla/MiniEditor.py" line="2878" /> <location filename="../QScintilla/ShellWindow.py" line="1105" /> <location filename="../ViewManager/ViewManager.py" line="4297" /> <source><b>Zoom</b><p>Zoom the text. This opens a dialog where the desired size can be entered.</p></source> @@ -98164,65 +98169,65 @@ <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6077" /> + <location filename="../ViewManager/ViewManager.py" line="6078" /> <source>Line: {0:5}</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6083" /> + <location filename="../ViewManager/ViewManager.py" line="6084" /> <source>Pos: {0:5}</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6103" /> + <location filename="../ViewManager/ViewManager.py" line="6104" /> <source>Language: {0}</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6112" /> + <location filename="../ViewManager/ViewManager.py" line="6113" /> <source>EOL Mode: {0}</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6640" /> - <location filename="../ViewManager/ViewManager.py" line="6597" /> + <location filename="../ViewManager/ViewManager.py" line="6641" /> + <location filename="../ViewManager/ViewManager.py" line="6598" /> <source>&Clear</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6634" /> + <location filename="../ViewManager/ViewManager.py" line="6635" /> <source>&Add</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6637" /> + <location filename="../ViewManager/ViewManager.py" line="6638" /> <source>&Edit...</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="7707" /> - <location filename="../ViewManager/ViewManager.py" line="7693" /> - <location filename="../ViewManager/ViewManager.py" line="7661" /> + <location filename="../ViewManager/ViewManager.py" line="7708" /> + <location filename="../ViewManager/ViewManager.py" line="7694" /> + <location filename="../ViewManager/ViewManager.py" line="7662" /> <source>Edit Spelling Dictionary</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="7664" /> + <location filename="../ViewManager/ViewManager.py" line="7665" /> <source><p>The spelling dictionary file <b>{0}</b> could not be read.</p><p>Reason: {1}</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="7680" /> + <location filename="../ViewManager/ViewManager.py" line="7681" /> <source>Editing {0}</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="7696" /> + <location filename="../ViewManager/ViewManager.py" line="7697" /> <source><p>The spelling dictionary file <b>{0}</b> could not be written.</p><p>Reason: {1}</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="7710" /> + <location filename="../ViewManager/ViewManager.py" line="7711" /> <source>The spelling dictionary was saved successfully.</source> <translation type="unfinished" /> </message> @@ -98232,28 +98237,28 @@ <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6819" /> + <location filename="../ViewManager/ViewManager.py" line="6820" /> <source>Clear Editor</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6820" /> + <location filename="../ViewManager/ViewManager.py" line="6821" /> <source>Do you really want to delete all text of the current editor?</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="8240" /> - <location filename="../ViewManager/ViewManager.py" line="8223" /> - <source>File System Watcher Error</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="8224" /> - <source><p>The operating system resources for file system watches are exhausted. This limit should be increased. On a Linux system you should <ul><li>sudo nano /etc/sysctl.conf</li><li>add to the bottom "fs.inotify.max_user_instances = 1024"</li><li>save and close the editor</li><li>sudo sysctl -p</li></ul></p><p>Error Message: {0}</p></source> - <translation type="unfinished" /> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="8241" /> + <location filename="../ViewManager/ViewManager.py" line="8224" /> + <source>File System Watcher Error</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="8225" /> + <source><p>The operating system resources for file system watches are exhausted. This limit should be increased. On a Linux system you should <ul><li>sudo nano /etc/sysctl.conf</li><li>add to the bottom "fs.inotify.max_user_instances = 1024"</li><li>save and close the editor</li><li>sudo sysctl -p</li></ul></p><p>Error Message: {0}</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="8242" /> <source>The file system watcher reported an error with code <b>{0}</b>.</p><p>Error Message: {1}</p></source> <translation type="unfinished" /> </message> @@ -105638,301 +105643,306 @@ <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="95" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="96" /> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="94" /> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="93" /> <source>whitespace before '{0}'</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="96" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="95" /> + <source>whitespace after decorator '@'</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="97" /> <source>multiple spaces before operator</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="99" /> - <source>multiple spaces after operator</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="100" /> - <source>tab before operator</source> + <source>multiple spaces after operator</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="101" /> - <source>tab after operator</source> + <source>tab before operator</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="102" /> + <source>tab after operator</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="103" /> <source>missing whitespace around operator</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="105" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="106" /> <source>missing whitespace around arithmetic operator</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="108" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="109" /> <source>missing whitespace around bitwise or shift operator</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="111" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="112" /> <source>missing whitespace around modulo operator</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="114" /> - <source>missing whitespace after '{0}'</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="115" /> - <source>multiple spaces after '{0}'</source> + <source>missing whitespace after '{0}'</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="116" /> - <source>tab after '{0}'</source> + <source>multiple spaces after '{0}'</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="117" /> + <source>tab after '{0}'</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="118" /> <source>unexpected spaces around keyword / parameter equals</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="120" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="121" /> <source>missing whitespace around parameter equals</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="123" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="124" /> <source>at least two spaces before inline comment</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="126" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="127" /> <source>inline comment should start with '# '</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="129" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="130" /> <source>block comment should start with '# '</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="132" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="133" /> <source>too many leading '#' for block comment</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="135" /> - <source>multiple spaces after keyword</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="136" /> - <source>multiple spaces before keyword</source> + <source>multiple spaces after keyword</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="137" /> - <source>tab after keyword</source> + <source>multiple spaces before keyword</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="138" /> - <source>tab before keyword</source> + <source>tab after keyword</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="139" /> + <source>tab before keyword</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="140" /> <source>missing whitespace after keyword</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="145" /> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="142" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="146" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="143" /> <source>expected {0} blank lines, found {1}</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="148" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="149" /> <source>too many blank lines ({0}), expected {1}</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="151" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="152" /> <source>blank lines found after function decorator</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="154" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="155" /> <source>expected {0} blank lines after class or function definition, found {1}</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="158" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="159" /> <source>expected {0} blank lines before a nested definition, found {1}</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="161" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="162" /> <source>too many blank lines ({0}) before a nested definition, expected {1}</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="165" /> - <source>too many blank lines ({0})</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="166" /> - <source>multiple imports on one line</source> + <source>too many blank lines ({0})</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="167" /> + <source>multiple imports on one line</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="168" /> <source>module level import not at top of file</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="170" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="171" /> <source>line too long ({0} > {1} characters)</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="173" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="174" /> <source>the backslash is redundant between brackets</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="176" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="177" /> <source>multiple statements on one line (colon)</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="179" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="180" /> <source>multiple statements on one line (semicolon)</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="182" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="183" /> <source>statement ends with a semicolon</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="185" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="186" /> <source>multiple statements on one line (def)</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="191" /> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="188" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="192" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="189" /> <source>comparison to {0} should be {1}</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="194" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="195" /> <source>test for membership should be 'not in'</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="197" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="198" /> <source>test for object identity should be 'is not'</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="200" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="201" /> <source>do not compare types, for exact checks use 'is' / 'is not', for instance checks use 'isinstance()'</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="205" /> - <source>do not use bare except</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="206" /> + <source>do not use bare except</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="207" /> <source>do not assign a lambda expression, use a def</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="209" /> - <source>ambiguous variable name '{0}'</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="210" /> + <source>ambiguous variable name '{0}'</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="211" /> <source>ambiguous class definition '{0}'</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="213" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="214" /> <source>ambiguous function definition '{0}'</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="216" /> - <source>{0}: {1}</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="217" /> + <source>{0}: {1}</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="218" /> <source>{0}</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="225" /> - <source>indentation contains tabs</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="226" /> - <source>trailing whitespace</source> + <source>indentation contains tabs</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="227" /> - <source>no newline at end of file</source> + <source>trailing whitespace</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="228" /> - <source>blank line contains whitespace</source> + <source>no newline at end of file</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="229" /> - <source>blank line at end of file</source> + <source>blank line contains whitespace</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="230" /> + <source>blank line at end of file</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="231" /> <source>line break before binary operator</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="233" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="234" /> <source>line break after binary operator</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="236" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="237" /> <source>doc line too long ({0} > {1} characters)</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="239" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="240" /> <source>invalid escape sequence '\{0}'</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="242" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="243" /> <source>'async' and 'await' are reserved keywords starting with Python 3.7</source> <translation type="unfinished" /> </message>
--- a/src/eric7/i18n/eric7_en.ts Mon Jul 29 14:43:59 2024 +0200 +++ b/src/eric7/i18n/eric7_en.ts Sat Aug 31 10:54:21 2024 +0200 @@ -5091,7 +5091,7 @@ <context> <name>CodeStyleChecker</name> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="515" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="516" /> <source>No message defined for code '{0}'.</source> <translation type="unfinished" /> </message> @@ -6231,146 +6231,146 @@ <context> <name>CodeStyleFixer</name> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="253" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="254" /> <source>Triple single quotes converted to triple double quotes.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="256" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="257" /> <source>Introductory quotes corrected to be {0}"""</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="259" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="260" /> <source>Single line docstring put on one line.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="262" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="263" /> <source>Period added to summary line.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="289" /> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="265" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="290" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="266" /> <source>Blank line before function/method docstring removed.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="268" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="269" /> <source>Blank line inserted before class docstring.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="271" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="272" /> <source>Blank line inserted after class docstring.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="274" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="275" /> <source>Blank line inserted after docstring summary.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="277" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="278" /> <source>Blank line inserted after last paragraph of docstring.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="280" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="281" /> <source>Leading quotes put on separate line.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="283" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="284" /> <source>Trailing quotes put on separate line.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="286" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="287" /> <source>Blank line before class docstring removed.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="292" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="293" /> <source>Blank line after class docstring removed.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="295" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="296" /> <source>Blank line after function/method docstring removed.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="298" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="299" /> <source>Blank line after last paragraph removed.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="301" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="302" /> <source>Tab converted to 4 spaces.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="304" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="305" /> <source>Indentation adjusted to be a multiple of four.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="307" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="308" /> <source>Indentation of continuation line corrected.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="310" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="311" /> <source>Indentation of closing bracket corrected.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="313" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="314" /> <source>Missing indentation of continuation line corrected.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="316" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="317" /> <source>Closing bracket aligned to opening bracket.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="319" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="320" /> <source>Indentation level changed.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="322" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="323" /> <source>Indentation level of hanging indentation changed.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="325" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="326" /> <source>Visual indentation corrected.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="340" /> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="334" /> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="328" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="341" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="335" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="329" /> <source>Extraneous whitespace removed.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="337" /> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="331" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="338" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="332" /> <source>Missing whitespace added.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="343" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="344" /> <source>Whitespace around comment sign corrected.</source> <translation type="unfinished" /> </message> <message numerus="yes"> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="346" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="347" /> <source>%n blank line(s) inserted.</source> <translation> <numerusform>%n blank line inserted.</numerusform> @@ -6378,7 +6378,7 @@ </translation> </message> <message numerus="yes"> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="349" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="350" /> <source>%n superfluous lines removed</source> <translation> <numerusform>%n superfluous line removed</numerusform> @@ -6386,73 +6386,73 @@ </translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="352" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="353" /> <source>Superfluous blank lines removed.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="355" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="356" /> <source>Superfluous blank lines after function decorator removed.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="358" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="359" /> <source>Imports were put on separate lines.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="361" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="362" /> <source>Long lines have been shortened.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="364" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="365" /> <source>Redundant backslash in brackets removed.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="370" /> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="367" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="371" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="368" /> <source>Compound statement corrected.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="373" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="374" /> <source>Comparison to None/True/False corrected.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="376" /> - <source>'{0}' argument added.</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="377" /> - <source>'{0}' argument removed.</source> + <source>'{0}' argument added.</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="378" /> + <source>'{0}' argument removed.</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="379" /> <source>Whitespace stripped from end of line.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="381" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="382" /> <source>newline added to end of file.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="384" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="385" /> <source>Superfluous trailing blank lines removed from end of file.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="387" /> - <source>'<>' replaced by '!='.</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="388" /> + <source>'<>' replaced by '!='.</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="389" /> <source>Could not save the file! Skipping it. Reason: {0}</source> <translation type="unfinished" /> </message> @@ -20641,45 +20641,45 @@ <context> <name>EricToolBarDialog</name> <message> - <location filename="../EricWidgets/EricToolBarDialog.py" line="89" /> + <location filename="../EricWidgets/EricToolBarDialog.py" line="90" /> <source>--Separator--</source> <translation type="unfinished" /> </message> <message> - <location filename="../EricWidgets/EricToolBarDialog.py" line="169" /> - <location filename="../EricWidgets/EricToolBarDialog.py" line="160" /> + <location filename="../EricWidgets/EricToolBarDialog.py" line="164" /> + <location filename="../EricWidgets/EricToolBarDialog.py" line="155" /> <source>New Toolbar</source> <translation type="unfinished" /> </message> <message> - <location filename="../EricWidgets/EricToolBarDialog.py" line="161" /> + <location filename="../EricWidgets/EricToolBarDialog.py" line="156" /> <source>Toolbar Name:</source> <translation type="unfinished" /> </message> <message> - <location filename="../EricWidgets/EricToolBarDialog.py" line="238" /> - <location filename="../EricWidgets/EricToolBarDialog.py" line="170" /> + <location filename="../EricWidgets/EricToolBarDialog.py" line="233" /> + <location filename="../EricWidgets/EricToolBarDialog.py" line="165" /> <source>A toolbar with the name <b>{0}</b> already exists.</source> <translation type="unfinished" /> </message> <message> - <location filename="../EricWidgets/EricToolBarDialog.py" line="197" /> + <location filename="../EricWidgets/EricToolBarDialog.py" line="192" /> <source>Remove Toolbar</source> <translation type="unfinished" /> </message> <message> - <location filename="../EricWidgets/EricToolBarDialog.py" line="198" /> + <location filename="../EricWidgets/EricToolBarDialog.py" line="193" /> <source>Should the toolbar <b>{0}</b> really be removed?</source> <translation type="unfinished" /> </message> <message> - <location filename="../EricWidgets/EricToolBarDialog.py" line="237" /> - <location filename="../EricWidgets/EricToolBarDialog.py" line="225" /> + <location filename="../EricWidgets/EricToolBarDialog.py" line="232" /> + <location filename="../EricWidgets/EricToolBarDialog.py" line="220" /> <source>Rename Toolbar</source> <translation type="unfinished" /> </message> <message> - <location filename="../EricWidgets/EricToolBarDialog.py" line="226" /> + <location filename="../EricWidgets/EricToolBarDialog.py" line="221" /> <source>New Toolbar Name:</source> <translation type="unfinished" /> </message> @@ -54387,723 +54387,723 @@ <context> <name>MiniEditor</name> <message> - <location filename="../QScintilla/MiniEditor.py" line="492" /> + <location filename="../QScintilla/MiniEditor.py" line="493" /> <source>About eric Mini Editor</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="493" /> + <location filename="../QScintilla/MiniEditor.py" line="494" /> <source>The eric 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 type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="562" /> + <location filename="../QScintilla/MiniEditor.py" line="563" /> <source>Line: {0:5}</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="566" /> + <location filename="../QScintilla/MiniEditor.py" line="567" /> <source>Pos: {0:5}</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="580" /> + <location filename="../QScintilla/MiniEditor.py" line="581" /> <source>Language: {0}</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="644" /> + <location filename="../QScintilla/MiniEditor.py" line="645" /> <source>New</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="646" /> - <source>&New</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="647" /> + <source>&New</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="648" /> <source>Ctrl+N</source> <comment>File|New</comment> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="652" /> + <location filename="../QScintilla/MiniEditor.py" line="653" /> <source>Open an empty editor window</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="654" /> + <location filename="../QScintilla/MiniEditor.py" line="655" /> <source><b>New</b><p>An empty editor window will be created.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="660" /> + <location filename="../QScintilla/MiniEditor.py" line="661" /> <source>Open</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="662" /> - <source>&Open...</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="663" /> + <source>&Open...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="664" /> <source>Ctrl+O</source> <comment>File|Open</comment> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="668" /> + <location filename="../QScintilla/MiniEditor.py" line="669" /> <source>Open a file</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="670" /> + <location filename="../QScintilla/MiniEditor.py" line="671" /> <source><b>Open a file</b><p>You will be asked for the name of a file to be opened.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="679" /> + <location filename="../QScintilla/MiniEditor.py" line="680" /> <source>Save</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="681" /> - <source>&Save</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="682" /> + <source>&Save</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="683" /> <source>Ctrl+S</source> <comment>File|Save</comment> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="687" /> + <location filename="../QScintilla/MiniEditor.py" line="688" /> <source>Save the current file</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="689" /> + <location filename="../QScintilla/MiniEditor.py" line="690" /> <source><b>Save File</b><p>Save the contents of current editor window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="698" /> + <location filename="../QScintilla/MiniEditor.py" line="699" /> <source>Save as</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="700" /> - <source>Save &as...</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="701" /> + <source>Save &as...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="702" /> <source>Shift+Ctrl+S</source> <comment>File|Save As</comment> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="706" /> + <location filename="../QScintilla/MiniEditor.py" line="707" /> <source>Save the current file to a new one</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="708" /> + <location filename="../QScintilla/MiniEditor.py" line="709" /> <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 type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="718" /> + <location filename="../QScintilla/MiniEditor.py" line="719" /> <source>Save Copy</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="720" /> + <location filename="../QScintilla/MiniEditor.py" line="721" /> <source>Save &Copy...</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="726" /> + <location filename="../QScintilla/MiniEditor.py" line="727" /> <source>Save a copy of the current file</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="728" /> + <location filename="../QScintilla/MiniEditor.py" line="729" /> <source><b>Save Copy</b><p>Save a copy of the contents of current editor window. The file can be entered in a file selection dialog.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="738" /> + <location filename="../QScintilla/MiniEditor.py" line="739" /> <source>Close</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="740" /> - <source>&Close</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="741" /> + <source>&Close</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="742" /> <source>Ctrl+W</source> <comment>File|Close</comment> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="746" /> + <location filename="../QScintilla/MiniEditor.py" line="747" /> <source>Close the editor window</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="748" /> + <location filename="../QScintilla/MiniEditor.py" line="749" /> <source><b>Close Window</b><p>Close the current window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="754" /> + <location filename="../QScintilla/MiniEditor.py" line="755" /> <source>Print</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="756" /> - <source>&Print</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="757" /> + <source>&Print</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="758" /> <source>Ctrl+P</source> <comment>File|Print</comment> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="762" /> + <location filename="../QScintilla/MiniEditor.py" line="763" /> <source>Print the current file</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="764" /> + <location filename="../QScintilla/MiniEditor.py" line="765" /> <source><b>Print File</b><p>Print the contents of the current file.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="773" /> + <location filename="../QScintilla/MiniEditor.py" line="774" /> <source>Print Preview</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="781" /> + <location filename="../QScintilla/MiniEditor.py" line="782" /> <source>Print preview of the current file</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="783" /> + <location filename="../QScintilla/MiniEditor.py" line="784" /> <source><b>Print Preview</b><p>Print preview of the current file.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="796" /> + <location filename="../QScintilla/MiniEditor.py" line="797" /> <source>Undo</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="798" /> - <source>&Undo</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="799" /> - <source>Ctrl+Z</source> - <comment>Edit|Undo</comment> + <source>&Undo</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="800" /> + <source>Ctrl+Z</source> + <comment>Edit|Undo</comment> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="801" /> <source>Alt+Backspace</source> <comment>Edit|Undo</comment> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="804" /> + <location filename="../QScintilla/MiniEditor.py" line="805" /> <source>Undo the last change</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="806" /> + <location filename="../QScintilla/MiniEditor.py" line="807" /> <source><b>Undo</b><p>Undo the last change done in the current editor.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="815" /> + <location filename="../QScintilla/MiniEditor.py" line="816" /> <source>Redo</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="817" /> - <source>&Redo</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="818" /> + <source>&Redo</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="819" /> <source>Ctrl+Shift+Z</source> <comment>Edit|Redo</comment> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="823" /> + <location filename="../QScintilla/MiniEditor.py" line="824" /> <source>Redo the last change</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="825" /> + <location filename="../QScintilla/MiniEditor.py" line="826" /> <source><b>Redo</b><p>Redo the last change done in the current editor.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="834" /> + <location filename="../QScintilla/MiniEditor.py" line="835" /> <source>Cut</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="836" /> - <source>Cu&t</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="837" /> - <source>Ctrl+X</source> - <comment>Edit|Cut</comment> + <source>Cu&t</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="838" /> + <source>Ctrl+X</source> + <comment>Edit|Cut</comment> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="839" /> <source>Shift+Del</source> <comment>Edit|Cut</comment> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="842" /> + <location filename="../QScintilla/MiniEditor.py" line="843" /> <source>Cut the selection</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="844" /> + <location filename="../QScintilla/MiniEditor.py" line="845" /> <source><b>Cut</b><p>Cut the selected text of the current editor to the clipboard.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="854" /> + <location filename="../QScintilla/MiniEditor.py" line="855" /> <source>Copy</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="856" /> - <source>&Copy</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="857" /> - <source>Ctrl+C</source> - <comment>Edit|Copy</comment> + <source>&Copy</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="858" /> + <source>Ctrl+C</source> + <comment>Edit|Copy</comment> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="859" /> <source>Ctrl+Ins</source> <comment>Edit|Copy</comment> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="862" /> + <location filename="../QScintilla/MiniEditor.py" line="863" /> <source>Copy the selection</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="864" /> + <location filename="../QScintilla/MiniEditor.py" line="865" /> <source><b>Copy</b><p>Copy the selected text of the current editor to the clipboard.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="874" /> + <location filename="../QScintilla/MiniEditor.py" line="875" /> <source>Paste</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="876" /> - <source>&Paste</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="877" /> - <source>Ctrl+V</source> - <comment>Edit|Paste</comment> + <source>&Paste</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="878" /> + <source>Ctrl+V</source> + <comment>Edit|Paste</comment> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="879" /> <source>Shift+Ins</source> <comment>Edit|Paste</comment> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="882" /> + <location filename="../QScintilla/MiniEditor.py" line="883" /> <source>Paste the last cut/copied text</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="884" /> + <location filename="../QScintilla/MiniEditor.py" line="885" /> <source><b>Paste</b><p>Paste the last cut/copied text from the clipboard to the current editor.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="894" /> + <location filename="../QScintilla/MiniEditor.py" line="895" /> <source>Clear</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="896" /> - <source>Cl&ear</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="897" /> + <source>Cl&ear</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="898" /> <source>Alt+Shift+C</source> <comment>Edit|Clear</comment> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="902" /> + <location filename="../QScintilla/MiniEditor.py" line="903" /> <source>Clear all text</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="904" /> + <location filename="../QScintilla/MiniEditor.py" line="905" /> <source><b>Clear</b><p>Delete all text of the current editor.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2892" /> + <location filename="../QScintilla/MiniEditor.py" line="2893" /> <source>About</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2892" /> + <location filename="../QScintilla/MiniEditor.py" line="2893" /> <source>&About</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2894" /> + <location filename="../QScintilla/MiniEditor.py" line="2895" /> <source>Display information about this software</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2896" /> + <location filename="../QScintilla/MiniEditor.py" line="2897" /> <source><b>About</b><p>Display some information about this software.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2905" /> + <location filename="../QScintilla/MiniEditor.py" line="2906" /> <source>About Qt</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2905" /> + <location filename="../QScintilla/MiniEditor.py" line="2906" /> <source>About &Qt</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2908" /> + <location filename="../QScintilla/MiniEditor.py" line="2909" /> <source>Display information about the Qt toolkit</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2911" /> + <location filename="../QScintilla/MiniEditor.py" line="2912" /> <source><b>About Qt</b><p>Display some information about the Qt toolkit.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2920" /> + <location filename="../QScintilla/MiniEditor.py" line="2921" /> <source>What's This?</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2922" /> - <source>&What's This?</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="2923" /> + <source>&What's This?</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="2924" /> <source>Shift+F1</source> <comment>Help|What's This?'</comment> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2928" /> + <location filename="../QScintilla/MiniEditor.py" line="2929" /> <source>Context sensitive help</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2930" /> + <location filename="../QScintilla/MiniEditor.py" line="2931" /> <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 type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2948" /> + <location filename="../QScintilla/MiniEditor.py" line="2949" /> <source>Preferences</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2950" /> + <location filename="../QScintilla/MiniEditor.py" line="2951" /> <source>&Preferences...</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2956" /> + <location filename="../QScintilla/MiniEditor.py" line="2957" /> <source>Set the prefered configuration</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2958" /> + <location filename="../QScintilla/MiniEditor.py" line="2959" /> <source><b>Preferences</b><p>Set the configuration items of the application with your prefered values.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2972" /> + <location filename="../QScintilla/MiniEditor.py" line="2973" /> <source>&File</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2984" /> + <location filename="../QScintilla/MiniEditor.py" line="2985" /> <source>&Edit</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2994" /> + <location filename="../QScintilla/MiniEditor.py" line="2995" /> <source>&Search</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3004" /> + <location filename="../QScintilla/MiniEditor.py" line="3005" /> <source>&View</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3010" /> + <location filename="../QScintilla/MiniEditor.py" line="3011" /> <source>Se&ttings</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3015" /> + <location filename="../QScintilla/MiniEditor.py" line="3016" /> <source>&Help</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3027" /> + <location filename="../QScintilla/MiniEditor.py" line="3028" /> <source>File</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3039" /> + <location filename="../QScintilla/MiniEditor.py" line="3040" /> <source>Edit</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3048" /> + <location filename="../QScintilla/MiniEditor.py" line="3049" /> <source>Search</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3054" /> + <location filename="../QScintilla/MiniEditor.py" line="3055" /> <source>View</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3060" /> + <location filename="../QScintilla/MiniEditor.py" line="3061" /> <source>Settings</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3063" /> + <location filename="../QScintilla/MiniEditor.py" line="3064" /> <source>Help</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3076" /> + <location filename="../QScintilla/MiniEditor.py" line="3077" /> <source><p>This part of the status bar displays the editor language.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3086" /> + <location filename="../QScintilla/MiniEditor.py" line="3087" /> <source><p>This part of the status bar displays an indication of the editors files writability.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3095" /> + <location filename="../QScintilla/MiniEditor.py" line="3096" /> <source><p>This part of the status bar displays the line number of the editor.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3104" /> + <location filename="../QScintilla/MiniEditor.py" line="3105" /> <source><p>This part of the status bar displays the cursor position of the editor.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3118" /> + <location filename="../QScintilla/MiniEditor.py" line="3119" /> <source><p>This part of the status bar allows zooming the editor.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3125" /> + <location filename="../QScintilla/MiniEditor.py" line="3126" /> <source>Ready</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3201" /> - <source>eric Mini Editor</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="3202" /> + <source>eric Mini Editor</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="3203" /> <source>The document has unsaved changes.</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3231" /> - <source>Open File</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="3232" /> + <source>Open File</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="3233" /> <source><p>The file <b>{0}</b> could not be opened.</p><p>Reason: {1}</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3260" /> + <location filename="../QScintilla/MiniEditor.py" line="3261" /> <source>File loaded</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3341" /> - <source>Save File</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="3342" /> + <source>Save File</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="3343" /> <source><p>The file <b>{0}</b> could not be saved.<br/>Reason: {1}</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3348" /> + <location filename="../QScintilla/MiniEditor.py" line="3349" /> <source>File saved</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3360" /> + <location filename="../QScintilla/MiniEditor.py" line="3361" /> <source>[*] - {0}</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3380" /> - <location filename="../QScintilla/MiniEditor.py" line="3360" /> + <location filename="../QScintilla/MiniEditor.py" line="3381" /> + <location filename="../QScintilla/MiniEditor.py" line="3361" /> <source>Mini Editor</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3735" /> - <location filename="../QScintilla/MiniEditor.py" line="3706" /> - <location filename="../QScintilla/MiniEditor.py" line="3373" /> + <location filename="../QScintilla/MiniEditor.py" line="3736" /> + <location filename="../QScintilla/MiniEditor.py" line="3707" /> + <location filename="../QScintilla/MiniEditor.py" line="3374" /> <source>Untitled</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3380" /> + <location filename="../QScintilla/MiniEditor.py" line="3381" /> <source>{0}[*] - {1}</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3701" /> + <location filename="../QScintilla/MiniEditor.py" line="3702" /> <source>Printing...</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3717" /> + <location filename="../QScintilla/MiniEditor.py" line="3718" /> <source>Printing completed</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3719" /> + <location filename="../QScintilla/MiniEditor.py" line="3720" /> <source>Error while printing</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3722" /> + <location filename="../QScintilla/MiniEditor.py" line="3723" /> <source>Printing aborted</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3777" /> - <source>Select all</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="3778" /> + <source>Select all</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="3779" /> <source>Deselect all</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3792" /> + <location filename="../QScintilla/MiniEditor.py" line="3793" /> <source>Languages</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3795" /> + <location filename="../QScintilla/MiniEditor.py" line="3796" /> <source>No Language</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3816" /> + <location filename="../QScintilla/MiniEditor.py" line="3817" /> <source>Guessed</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3838" /> - <location filename="../QScintilla/MiniEditor.py" line="3820" /> + <location filename="../QScintilla/MiniEditor.py" line="3839" /> + <location filename="../QScintilla/MiniEditor.py" line="3821" /> <source>Alternatives</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3835" /> + <location filename="../QScintilla/MiniEditor.py" line="3836" /> <source>Alternatives ({0})</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3867" /> - <source>Pygments Lexer</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="3868" /> + <source>Pygments Lexer</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="3869" /> <source>Select the Pygments lexer to apply.</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="4413" /> - <source>EditorConfig Properties</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="4414" /> + <source>EditorConfig Properties</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="4415" /> <source><p>The EditorConfig properties for file <b>{0}</b> could not be loaded.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="4601" /> - <source>Save File to Device</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="4602" /> + <source>Save File to Device</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="4603" /> <source>Enter the complete device file path:</source> <translation type="unfinished" /> </message> @@ -55320,499 +55320,504 @@ <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="135" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="134" /> + <source>unnecessary {0} comprehension - rewrite using dict.fromkeys()</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="139" /> <source>sort keys - '{0}' should be before '{1}'</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="140" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="144" /> <source>the number of arguments for property getter method is wrong (should be 1 instead of {0})</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="145" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="149" /> <source>the number of arguments for property setter method is wrong (should be 2 instead of {0})</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="150" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="154" /> <source>the number of arguments for property deleter method is wrong (should be 1 instead of {0})</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="155" /> - <source>the name of the setter method is wrong (should be '{0}' instead of '{1}')</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="159" /> - <source>the name of the deleter method is wrong (should be '{0}' instead of '{1}')</source> + <source>the name of the setter method is wrong (should be '{0}' instead of '{1}')</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="163" /> - <source>the name of the setter decorator is wrong (should be '{0}' instead of '{1}')</source> + <source>the name of the deleter method is wrong (should be '{0}' instead of '{1}')</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="167" /> - <source>the name of the deleter decorator is wrong (should be '{0}' instead of '{1}')</source> + <source>the name of the setter decorator is wrong (should be '{0}' instead of '{1}')</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="171" /> + <source>the name of the deleter decorator is wrong (should be '{0}' instead of '{1}')</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="175" /> <source>multiple decorators were used to declare property '{0}'</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="176" /> - <source>use of 'datetime.datetime()' without 'tzinfo' argument should be avoided</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="180" /> + <source>use of 'datetime.datetime()' without 'tzinfo' argument should be avoided</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="184" /> <source>use of 'datetime.datetime.today()' should be avoided. Use 'datetime.datetime.now(tz=)' instead.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="185" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="189" /> <source>use of 'datetime.datetime.utcnow()' should be avoided. Use 'datetime.datetime.now(tz=datetime.timezone.utc)' instead.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="190" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="194" /> <source>use of 'datetime.datetime.utcfromtimestamp()' should be avoided. Use 'datetime.datetime.fromtimestamp(..., tz=datetime.timezone.utc)' instead.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="195" /> - <source>use of 'datetime.datetime.now()' without 'tz' argument should be avoided</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="199" /> + <source>use of 'datetime.datetime.now()' without 'tz' argument should be avoided</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="203" /> <source>use of 'datetime.datetime.fromtimestamp()' without 'tz' argument should be avoided</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="204" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="208" /> <source>use of 'datetime.datetime.strptime()' should be followed by '.replace(tzinfo=)'</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="209" /> - <source>use of 'datetime.datetime.fromordinal()' should be avoided</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="213" /> + <source>use of 'datetime.datetime.fromordinal()' should be avoided</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="217" /> <source>use of 'datetime.date()' should be avoided. Use 'datetime.datetime(, tzinfo=).date()' instead.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="218" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="222" /> <source>use of 'datetime.date.today()' should be avoided. Use 'datetime.datetime.now(tz=).date()' instead.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="223" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="227" /> <source>use of 'datetime.date.fromtimestamp()' should be avoided. Use 'datetime.datetime.fromtimestamp(tz=).date()' instead.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="228" /> - <source>use of 'datetime.date.fromordinal()' should be avoided</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="232" /> - <source>use of 'datetime.date.fromisoformat()' should be avoided</source> + <source>use of 'datetime.date.fromordinal()' should be avoided</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="236" /> + <source>use of 'datetime.date.fromisoformat()' should be avoided</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="240" /> <source>use of 'datetime.time()' without 'tzinfo' argument should be avoided</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="241" /> - <source>'sys.version[:3]' referenced (Python 3.10), use 'sys.version_info'</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="245" /> - <source>'sys.version[2]' referenced (Python 3.10), use 'sys.version_info'</source> + <source>'sys.version[:3]' referenced (Python 3.10), use 'sys.version_info'</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="249" /> - <source>'sys.version' compared to string (Python 3.10), use 'sys.version_info'</source> + <source>'sys.version[2]' referenced (Python 3.10), use 'sys.version_info'</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="253" /> - <source>'sys.version_info[0] == 3' referenced (Python 4), use '>='</source> + <source>'sys.version' compared to string (Python 3.10), use 'sys.version_info'</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="257" /> - <source>'six.PY3' referenced (Python 4), use 'not six.PY2'</source> + <source>'sys.version_info[0] == 3' referenced (Python 4), use '>='</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="261" /> + <source>'six.PY3' referenced (Python 4), use 'not six.PY2'</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="265" /> <source>'sys.version_info[1]' compared to integer (Python 4), compare 'sys.version_info' to tuple</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="266" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="270" /> <source>'sys.version_info.minor' compared to integer (Python 4), compare 'sys.version_info' to tuple</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="271" /> - <source>'sys.version[0]' referenced (Python 10), use 'sys.version_info'</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="275" /> - <source>'sys.version' compared to string (Python 10), use 'sys.version_info'</source> + <source>'sys.version[0]' referenced (Python 10), use 'sys.version_info'</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="279" /> + <source>'sys.version' compared to string (Python 10), use 'sys.version_info'</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="283" /> <source>'sys.version[:1]' referenced (Python 10), use 'sys.version_info'</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="284" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="288" /> <source>Do not use bare 'except:', it also catches unexpected events like memory errors, interrupts, system exit, and so on. Prefer excepting specific exceptions. If you're sure what you're doing, be explicit and write 'except BaseException:'.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="291" /> - <source>Python does not support the unary prefix increment</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="295" /> + <source>Python does not support the unary prefix increment</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="299" /> <source>assigning to 'os.environ' does not clear the environment - use 'os.environ.clear()'</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="300" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="304" /> <source>using 'hasattr(x, "__call__")' to test if 'x' is callable is unreliable. Use 'callable(x)' for consistent results.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="305" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="309" /> <source>using .strip() with multi-character strings is misleading. Use .replace(), .removeprefix(), .removesuffix(), or regular expressions to remove string fragments.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="311" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="315" /> <source>loop control variable {0} not used within the loop body - start the name with an underscore</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="316" /> - <source>do not call getattr with a constant attribute value</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="320" /> - <source>do not call setattr with a constant attribute value</source> + <source>do not call getattr with a constant attribute value</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="324" /> - <source>do not call assert False since python -O removes these calls</source> + <source>do not call setattr with a constant attribute value</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="328" /> + <source>do not call assert False since python -O removes these calls</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="332" /> <source>return/continue/break inside finally blocks cause exceptions to be silenced. Exceptions should be silenced in except blocks. Control statements can be moved outside the finally block.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="334" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="338" /> <source>A length-one tuple literal is redundant. Write 'except {0}:' instead of 'except ({0},):'.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="339" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="343" /> <source>Redundant exception types in 'except ({0}){1}:'. Write 'except {2}{1}:', which catches exactly the same exceptions.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="344" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="348" /> <source>Result of comparison is not used. This line doesn't do anything. Did you intend to prepend it with assert?</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="349" /> - <source>Cannot raise a literal. Did you intend to return it or raise an Exception?</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="353" /> + <source>Cannot raise a literal. Did you intend to return it or raise an Exception?</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="357" /> <source>'assertRaises(Exception)' and 'pytest.raises(Exception)' should be considered evil. They can lead to your test passing even if the code being tested is never executed due to a typo. Assert for a more specific exception (builtin or custom), or use 'assertRaisesRegex' (if using 'assertRaises'), or add the 'match' keyword argument (if using 'pytest.raises'), or use the context manager form with a target.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="362" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="366" /> <source>Found useless {0} expression. Consider either assigning it to a variable or removing it.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="367" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="371" /> <source>Use of 'functools.lru_cache' or 'functools.cache' on methods can lead to memory leaks. The cache may retain instance references, preventing garbage collection.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="373" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="377" /> <source>Found for loop that reassigns the iterable it is iterating with each iterable value.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="378" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="382" /> <source>f-string used as docstring. This will be interpreted by python as a joined string rather than a docstring.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="383" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="387" /> <source>No arguments passed to 'contextlib.suppress'. No exceptions will be suppressed and therefore this context manager is redundant.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="388" /> - <source>Function definition does not bind loop variable '{0}'.</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="392" /> + <source>Function definition does not bind loop variable '{0}'.</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="396" /> <source>{0} is an abstract base class, but none of the methods it defines are abstract. This is not necessarily an error, but you might have forgotten to add the @abstractmethod decorator, potentially in conjunction with @classmethod, @property and/or @staticmethod.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="399" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="403" /> <source>Exception '{0}' has been caught multiple times. Only the first except will be considered and all other except catches can be safely removed.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="404" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="408" /> <source>Star-arg unpacking after a keyword argument is strongly discouraged, because it only works when the keyword parameter is declared after all parameters supplied by the unpacked sequence, and this change of ordering can surprise and mislead readers.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="411" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="415" /> <source>{0} is an empty method in an abstract base class, but has no abstract decorator. Consider adding @abstractmethod.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="416" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="420" /> <source>No explicit stacklevel argument found. The warn method from the warnings module uses a stacklevel of 1 by default. This will only show a stack trace for the line on which the warn method is called. It is therefore recommended to use a stacklevel of 2 or greater to provide more information to the user.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="424" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="428" /> <source>Using 'except ():' with an empty tuple does not handle/catch anything. Add exceptions to handle.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="429" /> - <source>Except handlers should only be names of exception classes</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="433" /> + <source>Except handlers should only be names of exception classes</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="437" /> <source>Using the generator returned from 'itertools.groupby()' more than once will do nothing on the second usage. Save the result to a list, if the result is needed multiple times.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="439" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="443" /> <source>Possible unintentional type annotation (using ':'). Did you mean to assign (using '=')?</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="444" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="448" /> <source>Set should not contain duplicate item '{0}'. Duplicate items will be replaced with a single item at runtime.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="449" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="453" /> <source>re.{0} should get '{1}' and 'flags' passed as keyword arguments to avoid confusion due to unintuitive argument positions.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="454" /> - <source>Static key in dict comprehension: {0!r}.</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="458" /> - <source>Don't except 'BaseException' unless you plan to re-raise it.</source> + <source>Static key in dict comprehension: {0!r}.</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="462" /> + <source>Don't except 'BaseException' unless you plan to re-raise it.</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="466" /> <source>Class '__init__' methods must not return or yield and any values.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="467" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="471" /> <source>Editing a loop's mutable iterable often leads to unexpected results/bugs.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="472" /> - <source>unncessary f-string</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="476" /> + <source>unncessary f-string</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="480" /> <source>cannot use 'self.__class__' as first argument of 'super()' call</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="481" /> - <source>found {0} formatter</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="485" /> - <source>format string does contain unindexed parameters</source> + <source>found {0} formatter</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="489" /> - <source>docstring does contain unindexed parameters</source> + <source>format string does contain unindexed parameters</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="493" /> - <source>other string does contain unindexed parameters</source> + <source>docstring does contain unindexed parameters</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="497" /> - <source>format call uses too large index ({0})</source> + <source>other string does contain unindexed parameters</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="501" /> - <source>format call uses missing keyword ({0})</source> + <source>format call uses too large index ({0})</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="505" /> - <source>format call uses keyword arguments but no named entries</source> + <source>format call uses missing keyword ({0})</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="509" /> - <source>format call uses variable arguments but no numbered entries</source> + <source>format call uses keyword arguments but no named entries</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="513" /> - <source>format call uses implicit and explicit indexes together</source> + <source>format call uses variable arguments but no numbered entries</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="517" /> - <source>format call provides unused index ({0})</source> + <source>format call uses implicit and explicit indexes together</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="521" /> + <source>format call provides unused index ({0})</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="525" /> <source>format call provides unused keyword ({0})</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="526" /> - <source>expected these __future__ imports: {0}; but only got: {1}</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="530" /> + <source>expected these __future__ imports: {0}; but only got: {1}</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="534" /> <source>expected these __future__ imports: {0}; but got none</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="535" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="539" /> <source>gettext import with alias _ found: {0}</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="540" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="544" /> <source>print statement found</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="545" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="549" /> <source>one element tuple found</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="554" /> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="550" /> - <source>mutable default argument of type {0}</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="558" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="554" /> + <source>mutable default argument of type {0}</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="562" /> <source>mutable default argument of function call '{0}'</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="563" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="567" /> <source>None should not be added at any return if function has no return value except None</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="568" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="572" /> <source>an explicit value at every return should be added if function has a return value except None</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="573" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="577" /> <source>an explicit return at the end of the function should be added if it has a return value except None</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="578" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="582" /> <source>a value should not be assigned to a variable if it will be used as a return value only</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="584" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="588" /> <source>prefer implied line continuation inside parentheses, brackets and braces as opposed to a backslash</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="590" /> - <source>implicitly concatenated string or bytes literals on one line</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="594" /> - <source>implicitly concatenated string or bytes literals over continuation line</source> + <source>implicitly concatenated string or bytes literals on one line</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="598" /> + <source>implicitly concatenated string or bytes literals over continuation line</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="602" /> <source>explicitly concatenated string or bytes should be implicitly concatenated</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="603" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="607" /> <source>commented code lines should be removed</source> <translation type="unfinished" /> </message> @@ -86151,15 +86156,15 @@ <context> <name>Tabview</name> <message> - <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="1132" /> - <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="1067" /> + <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="1134" /> + <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="1069" /> <source>Untitled {0}</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="1532" /> - <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="1143" /> - <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="1088" /> + <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="1534" /> + <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="1145" /> + <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="1090" /> <source>{0} (ro)</source> <translation type="unfinished" /> </message> @@ -90877,7 +90882,7 @@ <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7844" /> + <location filename="../UI/UserInterface.py" line="7860" /> <location filename="../UI/UserInterface.py" line="1946" /> <location filename="../UI/UserInterface.py" line="1939" /> <source>Load session</source> @@ -91968,7 +91973,7 @@ <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6593" /> + <location filename="../UI/UserInterface.py" line="6609" /> <location filename="../UI/UserInterface.py" line="3163" /> <source>Snapshot</source> <translation type="unfinished" /> @@ -92205,8 +92210,8 @@ <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7552" /> - <location filename="../UI/UserInterface.py" line="7533" /> + <location filename="../UI/UserInterface.py" line="7568" /> + <location filename="../UI/UserInterface.py" line="7549" /> <location filename="../UI/UserInterface.py" line="3393" /> <source>Export Keyboard Shortcuts</source> <translation type="unfinished" /> @@ -92227,7 +92232,7 @@ <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7571" /> + <location filename="../UI/UserInterface.py" line="7587" /> <location filename="../UI/UserInterface.py" line="3412" /> <source>Import Keyboard Shortcuts</source> <translation type="unfinished" /> @@ -92636,7 +92641,7 @@ <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6321" /> + <location filename="../UI/UserInterface.py" line="6337" /> <location filename="../UI/UserInterface.py" line="4185" /> <location filename="../UI/UserInterface.py" line="4170" /> <source>Help</source> @@ -92814,313 +92819,313 @@ <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6458" /> - <location filename="../UI/UserInterface.py" line="6447" /> - <location filename="../UI/UserInterface.py" line="6399" /> - <location filename="../UI/UserInterface.py" line="6389" /> - <location filename="../UI/UserInterface.py" line="6210" /> - <location filename="../UI/UserInterface.py" line="6200" /> - <location filename="../UI/UserInterface.py" line="6142" /> - <location filename="../UI/UserInterface.py" line="6132" /> + <location filename="../UI/UserInterface.py" line="6474" /> + <location filename="../UI/UserInterface.py" line="6463" /> + <location filename="../UI/UserInterface.py" line="6415" /> + <location filename="../UI/UserInterface.py" line="6405" /> + <location filename="../UI/UserInterface.py" line="6228" /> + <location filename="../UI/UserInterface.py" line="6218" /> + <location filename="../UI/UserInterface.py" line="6160" /> + <location filename="../UI/UserInterface.py" line="6150" /> <source>Problem</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6459" /> - <location filename="../UI/UserInterface.py" line="6448" /> - <location filename="../UI/UserInterface.py" line="6400" /> - <location filename="../UI/UserInterface.py" line="6390" /> - <location filename="../UI/UserInterface.py" line="6211" /> - <location filename="../UI/UserInterface.py" line="6201" /> - <location filename="../UI/UserInterface.py" line="6143" /> - <location filename="../UI/UserInterface.py" line="6133" /> + <location filename="../UI/UserInterface.py" line="6475" /> + <location filename="../UI/UserInterface.py" line="6464" /> + <location filename="../UI/UserInterface.py" line="6416" /> + <location filename="../UI/UserInterface.py" line="6406" /> + <location filename="../UI/UserInterface.py" line="6229" /> + <location filename="../UI/UserInterface.py" line="6219" /> + <location filename="../UI/UserInterface.py" line="6161" /> + <location filename="../UI/UserInterface.py" line="6151" /> <source><p>The file <b>{0}</b> does not exist or is zero length.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6702" /> - <location filename="../UI/UserInterface.py" line="6613" /> - <location filename="../UI/UserInterface.py" line="6494" /> - <location filename="../UI/UserInterface.py" line="6471" /> - <location filename="../UI/UserInterface.py" line="6412" /> - <location filename="../UI/UserInterface.py" line="6359" /> - <location filename="../UI/UserInterface.py" line="6337" /> - <location filename="../UI/UserInterface.py" line="6286" /> - <location filename="../UI/UserInterface.py" line="6277" /> - <location filename="../UI/UserInterface.py" line="6242" /> - <location filename="../UI/UserInterface.py" line="6233" /> - <location filename="../UI/UserInterface.py" line="6174" /> - <location filename="../UI/UserInterface.py" line="6165" /> + <location filename="../UI/UserInterface.py" line="6718" /> + <location filename="../UI/UserInterface.py" line="6629" /> + <location filename="../UI/UserInterface.py" line="6510" /> + <location filename="../UI/UserInterface.py" line="6487" /> + <location filename="../UI/UserInterface.py" line="6428" /> + <location filename="../UI/UserInterface.py" line="6375" /> + <location filename="../UI/UserInterface.py" line="6353" /> + <location filename="../UI/UserInterface.py" line="6304" /> + <location filename="../UI/UserInterface.py" line="6295" /> + <location filename="../UI/UserInterface.py" line="6260" /> + <location filename="../UI/UserInterface.py" line="6251" /> + <location filename="../UI/UserInterface.py" line="6192" /> + <location filename="../UI/UserInterface.py" line="6183" /> <source>Process Generation Error</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6166" /> + <location filename="../UI/UserInterface.py" line="6184" /> <source><p>Could not start Qt-Designer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6175" /> + <location filename="../UI/UserInterface.py" line="6193" /> <source><p>Could not find the Qt-Designer executable.<br>Ensure that it is installed and optionally configured on the Qt configuration page.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6234" /> + <location filename="../UI/UserInterface.py" line="6252" /> <source><p>Could not start Qt-Linguist.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6243" /> + <location filename="../UI/UserInterface.py" line="6261" /> <source><p>Could not find the Qt-Linguist executable.<br>Ensure that it is installed and optionally configured on the Qt configuration page.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6278" /> + <location filename="../UI/UserInterface.py" line="6296" /> <source><p>Could not start Qt-Assistant.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6287" /> + <location filename="../UI/UserInterface.py" line="6305" /> <source><p>Could not find the Qt-Assistant executable.<br>Ensure that it is installed and optionally configured on the Qt configuration page.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6322" /> - <source>Currently no custom viewer is selected. Please use the preferences dialog to specify one.</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../UI/UserInterface.py" line="6338" /> + <source>Currently no custom viewer is selected. Please use the preferences dialog to specify one.</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/UserInterface.py" line="6354" /> <source><p>Could not start custom viewer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6360" /> + <location filename="../UI/UserInterface.py" line="6376" /> <source><p>Could not start the help viewer.<br>Ensure that it is available as <b>hh</b>.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6413" /> + <location filename="../UI/UserInterface.py" line="6429" /> <source><p>Could not start UI Previewer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6472" /> + <location filename="../UI/UserInterface.py" line="6488" /> <source><p>Could not start Translation Previewer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6495" /> + <location filename="../UI/UserInterface.py" line="6511" /> <source><p>Could not start SQL Browser.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6594" /> + <location filename="../UI/UserInterface.py" line="6610" /> <source><p>The snapshot utility is not available for Wayland desktop sessions.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6614" /> + <location filename="../UI/UserInterface.py" line="6630" /> <source><p>Could not start Snapshot tool.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6647" /> - <location filename="../UI/UserInterface.py" line="6637" /> + <location filename="../UI/UserInterface.py" line="6663" /> + <location filename="../UI/UserInterface.py" line="6653" /> <source>External Tools</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6638" /> + <location filename="../UI/UserInterface.py" line="6654" /> <source>No tool entry found for external tool '{0}' in tool group '{1}'.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6648" /> + <location filename="../UI/UserInterface.py" line="6664" /> <source>No toolgroup entry '{0}' found.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6685" /> + <location filename="../UI/UserInterface.py" line="6701" /> <source>Starting process '{0} {1}'. </source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6703" /> + <location filename="../UI/UserInterface.py" line="6719" /> <source><p>Could not start the tool entry <b>{0}</b>.<br>Ensure that it is available as <b>{1}</b>.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6782" /> + <location filename="../UI/UserInterface.py" line="6798" /> <source>Process '{0}' has exited. </source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7069" /> - <location filename="../UI/UserInterface.py" line="7007" /> - <location filename="../UI/UserInterface.py" line="6963" /> - <location filename="../UI/UserInterface.py" line="6889" /> - <location filename="../UI/UserInterface.py" line="6825" /> + <location filename="../UI/UserInterface.py" line="7085" /> + <location filename="../UI/UserInterface.py" line="7023" /> + <location filename="../UI/UserInterface.py" line="6979" /> + <location filename="../UI/UserInterface.py" line="6905" /> + <location filename="../UI/UserInterface.py" line="6841" /> <source>Documentation Missing</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7070" /> - <location filename="../UI/UserInterface.py" line="7008" /> - <location filename="../UI/UserInterface.py" line="6964" /> - <location filename="../UI/UserInterface.py" line="6890" /> - <location filename="../UI/UserInterface.py" line="6826" /> + <location filename="../UI/UserInterface.py" line="7086" /> + <location filename="../UI/UserInterface.py" line="7024" /> + <location filename="../UI/UserInterface.py" line="6980" /> + <location filename="../UI/UserInterface.py" line="6906" /> + <location filename="../UI/UserInterface.py" line="6842" /> <source><p>The documentation starting point "<b>{0}</b>" could not be found.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7051" /> - <location filename="../UI/UserInterface.py" line="6933" /> + <location filename="../UI/UserInterface.py" line="7067" /> + <location filename="../UI/UserInterface.py" line="6949" /> <source>Documentation</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6934" /> + <location filename="../UI/UserInterface.py" line="6950" /> <source><p>The PyQt{0} documentation starting point has not been configured.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7052" /> + <location filename="../UI/UserInterface.py" line="7068" /> <source><p>The PySide{0} documentation starting point has not been configured.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7231" /> - <location filename="../UI/UserInterface.py" line="7167" /> + <location filename="../UI/UserInterface.py" line="7247" /> + <location filename="../UI/UserInterface.py" line="7183" /> <source>Start Web Browser</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7168" /> + <location filename="../UI/UserInterface.py" line="7184" /> <source>The eric web browser could not be started.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7232" /> + <location filename="../UI/UserInterface.py" line="7248" /> <source><p>The eric web browser is not started.</p><p>Reason: {0}</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7278" /> + <location filename="../UI/UserInterface.py" line="7294" /> <source>Open Browser</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7278" /> + <location filename="../UI/UserInterface.py" line="7294" /> <source>Could not start a web browser</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7573" /> - <location filename="../UI/UserInterface.py" line="7535" /> + <location filename="../UI/UserInterface.py" line="7589" /> + <location filename="../UI/UserInterface.py" line="7551" /> <source>Keyboard Shortcuts File (*.ekj)</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7553" /> + <location filename="../UI/UserInterface.py" line="7569" /> <source><p>The keyboard shortcuts file <b>{0}</b> exists already. Overwrite it?</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7757" /> + <location filename="../UI/UserInterface.py" line="7773" /> <source>Load crash session...</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7760" /> + <location filename="../UI/UserInterface.py" line="7776" /> <source>Clean crash sessions...</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7797" /> + <location filename="../UI/UserInterface.py" line="7813" /> <source>Read Session</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7798" /> + <location filename="../UI/UserInterface.py" line="7814" /> <source><p>The session file <b>{0}</b> could not be read.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7821" /> + <location filename="../UI/UserInterface.py" line="7837" /> <source>Save Session</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7846" /> - <location filename="../UI/UserInterface.py" line="7823" /> + <location filename="../UI/UserInterface.py" line="7862" /> + <location filename="../UI/UserInterface.py" line="7839" /> <source>eric Session Files (*.esj)</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7913" /> + <location filename="../UI/UserInterface.py" line="7929" /> <source>Found Crash Sessions</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7914" /> + <location filename="../UI/UserInterface.py" line="7930" /> <source>These crash session files were found. Select the one to open. Select 'Cancel' to not open a crash session.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7987" /> + <location filename="../UI/UserInterface.py" line="8003" /> <source>Clean stale crash sessions</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7988" /> + <location filename="../UI/UserInterface.py" line="8004" /> <source>Do you really want to delete these stale crash session files?</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="8364" /> + <location filename="../UI/UserInterface.py" line="8380" /> <source>Drop Error</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="8365" /> + <location filename="../UI/UserInterface.py" line="8381" /> <source><p><b>{0}</b> is not a file.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="8551" /> + <location filename="../UI/UserInterface.py" line="8567" /> <source>Upgrade available</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="8552" /> + <location filename="../UI/UserInterface.py" line="8568" /> <source><p>A newer version of the <b>eric-ide</b> package is available at <a href="{0}/eric-ide/">PyPI</a>.</p><p>Installed: {1}<br/>Available: <b>{2}</b></p><p>Shall <b>eric-ide</b> be upgraded?</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="8597" /> + <location filename="../UI/UserInterface.py" line="8613" /> <source>First time usage</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="8598" /> + <location filename="../UI/UserInterface.py" line="8614" /> <source>eric has not been configured yet. The configuration dialog will be started.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="8620" /> + <location filename="../UI/UserInterface.py" line="8636" /> <source>Select Workspace Directory</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="8788" /> + <location filename="../UI/UserInterface.py" line="8804" /> <source>Unsaved Data Detected</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="8789" /> + <location filename="../UI/UserInterface.py" line="8805" /> <source>Some editors contain unsaved data. Shall these be saved?</source> <translation type="unfinished" /> </message> @@ -94583,7 +94588,7 @@ <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="775" /> + <location filename="../QScintilla/MiniEditor.py" line="776" /> <location filename="../ViewManager/ViewManager.py" line="913" /> <location filename="../ViewManager/ViewManager.py" line="911" /> <source>Print Preview</source> @@ -95360,8 +95365,8 @@ <translation type="unfinished" /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="926" /> <location filename="../QScintilla/MiniEditor.py" line="925" /> - <location filename="../QScintilla/MiniEditor.py" line="924" /> <location filename="../QScintilla/ShellWindow.py" line="575" /> <location filename="../QScintilla/ShellWindow.py" line="574" /> <location filename="../ViewManager/ViewManager.py" line="1858" /> @@ -95370,22 +95375,22 @@ <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="926" /> + <location filename="../QScintilla/MiniEditor.py" line="927" /> <location filename="../QScintilla/ShellWindow.py" line="576" /> <location filename="../ViewManager/ViewManager.py" line="1859" /> <source>Left</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="934" /> + <location filename="../QScintilla/MiniEditor.py" line="935" /> <location filename="../QScintilla/ShellWindow.py" line="584" /> <location filename="../ViewManager/ViewManager.py" line="1867" /> <source>Meta+B</source> <translation type="unfinished" /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="942" /> <location filename="../QScintilla/MiniEditor.py" line="941" /> - <location filename="../QScintilla/MiniEditor.py" line="940" /> <location filename="../QScintilla/ShellWindow.py" line="591" /> <location filename="../QScintilla/ShellWindow.py" line="590" /> <location filename="../ViewManager/ViewManager.py" line="1874" /> @@ -95394,22 +95399,22 @@ <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="942" /> + <location filename="../QScintilla/MiniEditor.py" line="943" /> <location filename="../QScintilla/ShellWindow.py" line="592" /> <location filename="../ViewManager/ViewManager.py" line="1875" /> <source>Right</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="949" /> + <location filename="../QScintilla/MiniEditor.py" line="950" /> <location filename="../QScintilla/ShellWindow.py" line="599" /> <location filename="../ViewManager/ViewManager.py" line="1882" /> <source>Meta+F</source> <translation type="unfinished" /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="958" /> <location filename="../QScintilla/MiniEditor.py" line="957" /> - <location filename="../QScintilla/MiniEditor.py" line="956" /> <location filename="../QScintilla/ShellWindow.py" line="683" /> <location filename="../QScintilla/ShellWindow.py" line="682" /> <location filename="../ViewManager/ViewManager.py" line="1890" /> @@ -95418,22 +95423,22 @@ <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="958" /> + <location filename="../QScintilla/MiniEditor.py" line="959" /> <location filename="../QScintilla/ShellWindow.py" line="684" /> <location filename="../ViewManager/ViewManager.py" line="1891" /> <source>Up</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="965" /> + <location filename="../QScintilla/MiniEditor.py" line="966" /> <location filename="../QScintilla/ShellWindow.py" line="691" /> <location filename="../ViewManager/ViewManager.py" line="1898" /> <source>Meta+P</source> <translation type="unfinished" /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="974" /> <location filename="../QScintilla/MiniEditor.py" line="973" /> - <location filename="../QScintilla/MiniEditor.py" line="972" /> <location filename="../QScintilla/ShellWindow.py" line="699" /> <location filename="../QScintilla/ShellWindow.py" line="698" /> <location filename="../ViewManager/ViewManager.py" line="1906" /> @@ -95442,30 +95447,30 @@ <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="974" /> + <location filename="../QScintilla/MiniEditor.py" line="975" /> <location filename="../QScintilla/ShellWindow.py" line="700" /> <location filename="../ViewManager/ViewManager.py" line="1907" /> <source>Down</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="981" /> + <location filename="../QScintilla/MiniEditor.py" line="982" /> <location filename="../QScintilla/ShellWindow.py" line="707" /> <location filename="../ViewManager/ViewManager.py" line="1914" /> <source>Meta+N</source> <translation type="unfinished" /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="990" /> <location filename="../QScintilla/MiniEditor.py" line="989" /> - <location filename="../QScintilla/MiniEditor.py" line="988" /> <location filename="../ViewManager/ViewManager.py" line="1922" /> <location filename="../ViewManager/ViewManager.py" line="1921" /> <source>Move left one word part</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1029" /> - <location filename="../QScintilla/MiniEditor.py" line="997" /> + <location filename="../QScintilla/MiniEditor.py" line="1030" /> + <location filename="../QScintilla/MiniEditor.py" line="998" /> <location filename="../QScintilla/ShellWindow.py" line="615" /> <location filename="../ViewManager/ViewManager.py" line="1962" /> <location filename="../ViewManager/ViewManager.py" line="1930" /> @@ -95473,25 +95478,25 @@ <translation type="unfinished" /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1006" /> <location filename="../QScintilla/MiniEditor.py" line="1005" /> - <location filename="../QScintilla/MiniEditor.py" line="1004" /> <location filename="../ViewManager/ViewManager.py" line="1938" /> <location filename="../ViewManager/ViewManager.py" line="1937" /> <source>Move right one word part</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2159" /> - <location filename="../QScintilla/MiniEditor.py" line="1049" /> - <location filename="../QScintilla/MiniEditor.py" line="1013" /> + <location filename="../QScintilla/MiniEditor.py" line="2160" /> + <location filename="../QScintilla/MiniEditor.py" line="1050" /> + <location filename="../QScintilla/MiniEditor.py" line="1014" /> <location filename="../ViewManager/ViewManager.py" line="3071" /> <location filename="../ViewManager/ViewManager.py" line="1946" /> <source>Alt+Right</source> <translation type="unfinished" /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1022" /> <location filename="../QScintilla/MiniEditor.py" line="1021" /> - <location filename="../QScintilla/MiniEditor.py" line="1020" /> <location filename="../QScintilla/ShellWindow.py" line="607" /> <location filename="../QScintilla/ShellWindow.py" line="606" /> <location filename="../ViewManager/ViewManager.py" line="1954" /> @@ -95500,8 +95505,8 @@ <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1089" /> - <location filename="../QScintilla/MiniEditor.py" line="1033" /> + <location filename="../QScintilla/MiniEditor.py" line="1090" /> + <location filename="../QScintilla/MiniEditor.py" line="1034" /> <location filename="../QScintilla/ShellWindow.py" line="619" /> <location filename="../ViewManager/ViewManager.py" line="2018" /> <location filename="../ViewManager/ViewManager.py" line="1966" /> @@ -95509,8 +95514,8 @@ <translation type="unfinished" /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1042" /> <location filename="../QScintilla/MiniEditor.py" line="1041" /> - <location filename="../QScintilla/MiniEditor.py" line="1040" /> <location filename="../QScintilla/ShellWindow.py" line="627" /> <location filename="../QScintilla/ShellWindow.py" line="626" /> <location filename="../ViewManager/ViewManager.py" line="1974" /> @@ -95519,8 +95524,8 @@ <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1843" /> - <location filename="../QScintilla/MiniEditor.py" line="1053" /> + <location filename="../QScintilla/MiniEditor.py" line="1844" /> + <location filename="../QScintilla/MiniEditor.py" line="1054" /> <location filename="../QScintilla/ShellWindow.py" line="635" /> <location filename="../ViewManager/ViewManager.py" line="2755" /> <location filename="../ViewManager/ViewManager.py" line="1982" /> @@ -95528,8 +95533,8 @@ <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1063" /> - <location filename="../QScintilla/MiniEditor.py" line="1060" /> + <location filename="../QScintilla/MiniEditor.py" line="1064" /> + <location filename="../QScintilla/MiniEditor.py" line="1061" /> <location filename="../QScintilla/ShellWindow.py" line="645" /> <location filename="../QScintilla/ShellWindow.py" line="642" /> <location filename="../ViewManager/ViewManager.py" line="1992" /> @@ -95538,8 +95543,8 @@ <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2104" /> - <location filename="../QScintilla/MiniEditor.py" line="1073" /> + <location filename="../QScintilla/MiniEditor.py" line="2105" /> + <location filename="../QScintilla/MiniEditor.py" line="1074" /> <location filename="../QScintilla/ShellWindow.py" line="655" /> <location filename="../ViewManager/ViewManager.py" line="3016" /> <location filename="../ViewManager/ViewManager.py" line="2002" /> @@ -95547,22 +95552,22 @@ <translation type="unfinished" /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1082" /> <location filename="../QScintilla/MiniEditor.py" line="1081" /> - <location filename="../QScintilla/MiniEditor.py" line="1080" /> <location filename="../ViewManager/ViewManager.py" line="2010" /> <location filename="../ViewManager/ViewManager.py" line="2009" /> <source>Move to start of display line</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1093" /> + <location filename="../QScintilla/MiniEditor.py" line="1094" /> <location filename="../ViewManager/ViewManager.py" line="2022" /> <source>Alt+Home</source> <translation type="unfinished" /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1102" /> <location filename="../QScintilla/MiniEditor.py" line="1101" /> - <location filename="../QScintilla/MiniEditor.py" line="1100" /> <location filename="../QScintilla/ShellWindow.py" line="663" /> <location filename="../QScintilla/ShellWindow.py" line="662" /> <location filename="../ViewManager/ViewManager.py" line="2030" /> @@ -95571,15 +95576,15 @@ <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1109" /> + <location filename="../QScintilla/MiniEditor.py" line="1110" /> <location filename="../QScintilla/ShellWindow.py" line="671" /> <location filename="../ViewManager/ViewManager.py" line="2038" /> <source>Meta+E</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2121" /> - <location filename="../QScintilla/MiniEditor.py" line="1113" /> + <location filename="../QScintilla/MiniEditor.py" line="2122" /> + <location filename="../QScintilla/MiniEditor.py" line="1114" /> <location filename="../QScintilla/ShellWindow.py" line="675" /> <location filename="../ViewManager/ViewManager.py" line="3033" /> <location filename="../ViewManager/ViewManager.py" line="2042" /> @@ -95587,16 +95592,16 @@ <translation type="unfinished" /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1122" /> <location filename="../QScintilla/MiniEditor.py" line="1121" /> - <location filename="../QScintilla/MiniEditor.py" line="1120" /> <location filename="../ViewManager/ViewManager.py" line="2050" /> <location filename="../ViewManager/ViewManager.py" line="2049" /> <source>Scroll view down one line</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1225" /> - <location filename="../QScintilla/MiniEditor.py" line="1122" /> + <location filename="../QScintilla/MiniEditor.py" line="1226" /> + <location filename="../QScintilla/MiniEditor.py" line="1123" /> <location filename="../QScintilla/ShellWindow.py" line="716" /> <location filename="../ViewManager/ViewManager.py" line="2154" /> <location filename="../ViewManager/ViewManager.py" line="2051" /> @@ -95604,16 +95609,16 @@ <translation type="unfinished" /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1134" /> <location filename="../QScintilla/MiniEditor.py" line="1133" /> - <location filename="../QScintilla/MiniEditor.py" line="1132" /> <location filename="../ViewManager/ViewManager.py" line="2062" /> <location filename="../ViewManager/ViewManager.py" line="2061" /> <source>Scroll view up one line</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1205" /> - <location filename="../QScintilla/MiniEditor.py" line="1134" /> + <location filename="../QScintilla/MiniEditor.py" line="1206" /> + <location filename="../QScintilla/MiniEditor.py" line="1135" /> <location filename="../QScintilla/ShellWindow.py" line="728" /> <location filename="../ViewManager/ViewManager.py" line="2134" /> <location filename="../ViewManager/ViewManager.py" line="2063" /> @@ -95621,36 +95626,36 @@ <translation type="unfinished" /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1146" /> <location filename="../QScintilla/MiniEditor.py" line="1145" /> - <location filename="../QScintilla/MiniEditor.py" line="1144" /> <location filename="../ViewManager/ViewManager.py" line="2074" /> <location filename="../ViewManager/ViewManager.py" line="2073" /> <source>Move up one paragraph</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1146" /> + <location filename="../QScintilla/MiniEditor.py" line="1147" /> <location filename="../ViewManager/ViewManager.py" line="2075" /> <source>Alt+Up</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1157" /> - <location filename="../QScintilla/MiniEditor.py" line="1156" /> - <location filename="../ViewManager/ViewManager.py" line="2086" /> - <location filename="../ViewManager/ViewManager.py" line="2085" /> - <source>Move down one paragraph</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="1158" /> + <location filename="../QScintilla/MiniEditor.py" line="1157" /> + <location filename="../ViewManager/ViewManager.py" line="2086" /> + <location filename="../ViewManager/ViewManager.py" line="2085" /> + <source>Move down one paragraph</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="1159" /> <location filename="../ViewManager/ViewManager.py" line="2087" /> <source>Alt+Down</source> <translation type="unfinished" /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1170" /> <location filename="../QScintilla/MiniEditor.py" line="1169" /> - <location filename="../QScintilla/MiniEditor.py" line="1168" /> <location filename="../QScintilla/ShellWindow.py" line="739" /> <location filename="../QScintilla/ShellWindow.py" line="738" /> <location filename="../ViewManager/ViewManager.py" line="2098" /> @@ -95659,15 +95664,15 @@ <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1170" /> + <location filename="../QScintilla/MiniEditor.py" line="1171" /> <location filename="../QScintilla/ShellWindow.py" line="740" /> <location filename="../ViewManager/ViewManager.py" line="2099" /> <source>PgUp</source> <translation type="unfinished" /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1182" /> <location filename="../QScintilla/MiniEditor.py" line="1181" /> - <location filename="../QScintilla/MiniEditor.py" line="1180" /> <location filename="../QScintilla/ShellWindow.py" line="751" /> <location filename="../QScintilla/ShellWindow.py" line="750" /> <location filename="../ViewManager/ViewManager.py" line="2110" /> @@ -95676,50 +95681,50 @@ <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1182" /> + <location filename="../QScintilla/MiniEditor.py" line="1183" /> <location filename="../QScintilla/ShellWindow.py" line="752" /> <location filename="../ViewManager/ViewManager.py" line="2111" /> <source>PgDown</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1189" /> + <location filename="../QScintilla/MiniEditor.py" line="1190" /> <location filename="../QScintilla/ShellWindow.py" line="759" /> <location filename="../ViewManager/ViewManager.py" line="2118" /> <source>Meta+V</source> <translation type="unfinished" /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1198" /> <location filename="../QScintilla/MiniEditor.py" line="1197" /> - <location filename="../QScintilla/MiniEditor.py" line="1196" /> <location filename="../ViewManager/ViewManager.py" line="2126" /> <location filename="../ViewManager/ViewManager.py" line="2125" /> <source>Move to start of document</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1209" /> + <location filename="../QScintilla/MiniEditor.py" line="1210" /> <location filename="../ViewManager/ViewManager.py" line="2138" /> <source>Ctrl+Home</source> <translation type="unfinished" /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1218" /> <location filename="../QScintilla/MiniEditor.py" line="1217" /> - <location filename="../QScintilla/MiniEditor.py" line="1216" /> <location filename="../ViewManager/ViewManager.py" line="2146" /> <location filename="../ViewManager/ViewManager.py" line="2145" /> <source>Move to end of document</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1229" /> + <location filename="../QScintilla/MiniEditor.py" line="1230" /> <location filename="../ViewManager/ViewManager.py" line="2158" /> <source>Ctrl+End</source> <translation type="unfinished" /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1238" /> <location filename="../QScintilla/MiniEditor.py" line="1237" /> - <location filename="../QScintilla/MiniEditor.py" line="1236" /> <location filename="../QScintilla/ShellWindow.py" line="453" /> <location filename="../QScintilla/ShellWindow.py" line="452" /> <location filename="../ViewManager/ViewManager.py" line="2166" /> @@ -95728,29 +95733,29 @@ <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1238" /> + <location filename="../QScintilla/MiniEditor.py" line="1239" /> <location filename="../QScintilla/ShellWindow.py" line="454" /> <location filename="../ViewManager/ViewManager.py" line="2167" /> <source>Tab</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1249" /> - <location filename="../QScintilla/MiniEditor.py" line="1248" /> - <location filename="../ViewManager/ViewManager.py" line="2178" /> - <location filename="../ViewManager/ViewManager.py" line="2177" /> - <source>Unindent one level</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="1250" /> + <location filename="../QScintilla/MiniEditor.py" line="1249" /> + <location filename="../ViewManager/ViewManager.py" line="2178" /> + <location filename="../ViewManager/ViewManager.py" line="2177" /> + <source>Unindent one level</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="1251" /> <location filename="../ViewManager/ViewManager.py" line="2179" /> <source>Shift+Tab</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1263" /> - <location filename="../QScintilla/MiniEditor.py" line="1260" /> + <location filename="../QScintilla/MiniEditor.py" line="1264" /> + <location filename="../QScintilla/MiniEditor.py" line="1261" /> <location filename="../QScintilla/ShellWindow.py" line="781" /> <location filename="../QScintilla/ShellWindow.py" line="778" /> <location filename="../ViewManager/ViewManager.py" line="2192" /> @@ -95759,22 +95764,22 @@ <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1266" /> + <location filename="../QScintilla/MiniEditor.py" line="1267" /> <location filename="../QScintilla/ShellWindow.py" line="784" /> <location filename="../ViewManager/ViewManager.py" line="2195" /> <source>Shift+Left</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1273" /> + <location filename="../QScintilla/MiniEditor.py" line="1274" /> <location filename="../QScintilla/ShellWindow.py" line="791" /> <location filename="../ViewManager/ViewManager.py" line="2202" /> <source>Meta+Shift+B</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1283" /> - <location filename="../QScintilla/MiniEditor.py" line="1280" /> + <location filename="../QScintilla/MiniEditor.py" line="1284" /> + <location filename="../QScintilla/MiniEditor.py" line="1281" /> <location filename="../QScintilla/ShellWindow.py" line="801" /> <location filename="../QScintilla/ShellWindow.py" line="798" /> <location filename="../ViewManager/ViewManager.py" line="2212" /> @@ -95783,70 +95788,70 @@ <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1286" /> + <location filename="../QScintilla/MiniEditor.py" line="1287" /> <location filename="../QScintilla/ShellWindow.py" line="804" /> <location filename="../ViewManager/ViewManager.py" line="2215" /> <source>Shift+Right</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1293" /> + <location filename="../QScintilla/MiniEditor.py" line="1294" /> <location filename="../QScintilla/ShellWindow.py" line="811" /> <location filename="../ViewManager/ViewManager.py" line="2222" /> <source>Meta+Shift+F</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1301" /> - <location filename="../QScintilla/MiniEditor.py" line="1300" /> - <location filename="../ViewManager/ViewManager.py" line="2230" /> - <location filename="../ViewManager/ViewManager.py" line="2229" /> - <source>Extend selection up one line</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="1302" /> + <location filename="../QScintilla/MiniEditor.py" line="1301" /> + <location filename="../ViewManager/ViewManager.py" line="2230" /> + <location filename="../ViewManager/ViewManager.py" line="2229" /> + <source>Extend selection up one line</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="1303" /> <location filename="../ViewManager/ViewManager.py" line="2231" /> <source>Shift+Up</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1309" /> + <location filename="../QScintilla/MiniEditor.py" line="1310" /> <location filename="../ViewManager/ViewManager.py" line="2238" /> <source>Meta+Shift+P</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1317" /> - <location filename="../QScintilla/MiniEditor.py" line="1316" /> - <location filename="../ViewManager/ViewManager.py" line="2246" /> - <location filename="../ViewManager/ViewManager.py" line="2245" /> - <source>Extend selection down one line</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="1318" /> + <location filename="../QScintilla/MiniEditor.py" line="1317" /> + <location filename="../ViewManager/ViewManager.py" line="2246" /> + <location filename="../ViewManager/ViewManager.py" line="2245" /> + <source>Extend selection down one line</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="1319" /> <location filename="../ViewManager/ViewManager.py" line="2247" /> <source>Shift+Down</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1325" /> + <location filename="../QScintilla/MiniEditor.py" line="1326" /> <location filename="../ViewManager/ViewManager.py" line="2254" /> <source>Meta+Shift+N</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1335" /> - <location filename="../QScintilla/MiniEditor.py" line="1332" /> + <location filename="../QScintilla/MiniEditor.py" line="1336" /> + <location filename="../QScintilla/MiniEditor.py" line="1333" /> <location filename="../ViewManager/ViewManager.py" line="2264" /> <location filename="../ViewManager/ViewManager.py" line="2261" /> <source>Extend selection left one word part</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1386" /> - <location filename="../QScintilla/MiniEditor.py" line="1346" /> + <location filename="../QScintilla/MiniEditor.py" line="1387" /> + <location filename="../QScintilla/MiniEditor.py" line="1347" /> <location filename="../QScintilla/ShellWindow.py" line="828" /> <location filename="../ViewManager/ViewManager.py" line="2315" /> <location filename="../ViewManager/ViewManager.py" line="2275" /> @@ -95854,17 +95859,17 @@ <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1357" /> - <location filename="../QScintilla/MiniEditor.py" line="1354" /> + <location filename="../QScintilla/MiniEditor.py" line="1358" /> + <location filename="../QScintilla/MiniEditor.py" line="1355" /> <location filename="../ViewManager/ViewManager.py" line="2286" /> <location filename="../ViewManager/ViewManager.py" line="2283" /> <source>Extend selection right one word part</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2181" /> - <location filename="../QScintilla/MiniEditor.py" line="1414" /> - <location filename="../QScintilla/MiniEditor.py" line="1368" /> + <location filename="../QScintilla/MiniEditor.py" line="2182" /> + <location filename="../QScintilla/MiniEditor.py" line="1415" /> + <location filename="../QScintilla/MiniEditor.py" line="1369" /> <location filename="../QScintilla/ShellWindow.py" line="856" /> <location filename="../ViewManager/ViewManager.py" line="3093" /> <location filename="../ViewManager/ViewManager.py" line="2343" /> @@ -95873,8 +95878,8 @@ <translation type="unfinished" /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1378" /> <location filename="../QScintilla/MiniEditor.py" line="1377" /> - <location filename="../QScintilla/MiniEditor.py" line="1376" /> <location filename="../QScintilla/ShellWindow.py" line="819" /> <location filename="../QScintilla/ShellWindow.py" line="818" /> <location filename="../ViewManager/ViewManager.py" line="2306" /> @@ -95883,8 +95888,8 @@ <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2307" /> - <location filename="../QScintilla/MiniEditor.py" line="1392" /> + <location filename="../QScintilla/MiniEditor.py" line="2308" /> + <location filename="../QScintilla/MiniEditor.py" line="1393" /> <location filename="../QScintilla/ShellWindow.py" line="834" /> <location filename="../ViewManager/ViewManager.py" line="3219" /> <location filename="../ViewManager/ViewManager.py" line="2321" /> @@ -95892,8 +95897,8 @@ <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1403" /> - <location filename="../QScintilla/MiniEditor.py" line="1400" /> + <location filename="../QScintilla/MiniEditor.py" line="1404" /> + <location filename="../QScintilla/MiniEditor.py" line="1401" /> <location filename="../QScintilla/ShellWindow.py" line="845" /> <location filename="../QScintilla/ShellWindow.py" line="842" /> <location filename="../ViewManager/ViewManager.py" line="2332" /> @@ -95902,8 +95907,8 @@ <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1868" /> - <location filename="../QScintilla/MiniEditor.py" line="1420" /> + <location filename="../QScintilla/MiniEditor.py" line="1869" /> + <location filename="../QScintilla/MiniEditor.py" line="1421" /> <location filename="../QScintilla/ShellWindow.py" line="862" /> <location filename="../ViewManager/ViewManager.py" line="2780" /> <location filename="../ViewManager/ViewManager.py" line="2349" /> @@ -95911,8 +95916,8 @@ <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1432" /> - <location filename="../QScintilla/MiniEditor.py" line="1428" /> + <location filename="../QScintilla/MiniEditor.py" line="1433" /> + <location filename="../QScintilla/MiniEditor.py" line="1429" /> <location filename="../QScintilla/ShellWindow.py" line="874" /> <location filename="../QScintilla/ShellWindow.py" line="870" /> <location filename="../ViewManager/ViewManager.py" line="2361" /> @@ -95921,15 +95926,15 @@ <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1443" /> + <location filename="../QScintilla/MiniEditor.py" line="1444" /> <location filename="../QScintilla/ShellWindow.py" line="885" /> <location filename="../ViewManager/ViewManager.py" line="2372" /> <source>Shift+Home</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1453" /> - <location filename="../QScintilla/MiniEditor.py" line="1450" /> + <location filename="../QScintilla/MiniEditor.py" line="1454" /> + <location filename="../QScintilla/MiniEditor.py" line="1451" /> <location filename="../QScintilla/ShellWindow.py" line="895" /> <location filename="../QScintilla/ShellWindow.py" line="892" /> <location filename="../ViewManager/ViewManager.py" line="2382" /> @@ -95938,124 +95943,124 @@ <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1463" /> + <location filename="../QScintilla/MiniEditor.py" line="1464" /> <location filename="../QScintilla/ShellWindow.py" line="905" /> <location filename="../ViewManager/ViewManager.py" line="2392" /> <source>Meta+Shift+E</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1467" /> + <location filename="../QScintilla/MiniEditor.py" line="1468" /> <location filename="../QScintilla/ShellWindow.py" line="909" /> <location filename="../ViewManager/ViewManager.py" line="2396" /> <source>Shift+End</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1477" /> - <location filename="../QScintilla/MiniEditor.py" line="1474" /> + <location filename="../QScintilla/MiniEditor.py" line="1478" /> + <location filename="../QScintilla/MiniEditor.py" line="1475" /> <location filename="../ViewManager/ViewManager.py" line="2406" /> <location filename="../ViewManager/ViewManager.py" line="2403" /> <source>Extend selection up one paragraph</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1480" /> + <location filename="../QScintilla/MiniEditor.py" line="1481" /> <location filename="../ViewManager/ViewManager.py" line="2409" /> <source>Alt+Shift+Up</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1493" /> - <location filename="../QScintilla/MiniEditor.py" line="1490" /> + <location filename="../QScintilla/MiniEditor.py" line="1494" /> + <location filename="../QScintilla/MiniEditor.py" line="1491" /> <location filename="../ViewManager/ViewManager.py" line="2422" /> <location filename="../ViewManager/ViewManager.py" line="2419" /> <source>Extend selection down one paragraph</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1496" /> + <location filename="../QScintilla/MiniEditor.py" line="1497" /> <location filename="../ViewManager/ViewManager.py" line="2425" /> <source>Alt+Shift+Down</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1507" /> - <location filename="../QScintilla/MiniEditor.py" line="1506" /> - <location filename="../ViewManager/ViewManager.py" line="2436" /> - <location filename="../ViewManager/ViewManager.py" line="2435" /> - <source>Extend selection up one page</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="1508" /> + <location filename="../QScintilla/MiniEditor.py" line="1507" /> + <location filename="../ViewManager/ViewManager.py" line="2436" /> + <location filename="../ViewManager/ViewManager.py" line="2435" /> + <source>Extend selection up one page</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="1509" /> <location filename="../ViewManager/ViewManager.py" line="2437" /> <source>Shift+PgUp</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1519" /> - <location filename="../QScintilla/MiniEditor.py" line="1518" /> - <location filename="../ViewManager/ViewManager.py" line="2448" /> - <location filename="../ViewManager/ViewManager.py" line="2447" /> - <source>Extend selection down one page</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="1520" /> + <location filename="../QScintilla/MiniEditor.py" line="1519" /> + <location filename="../ViewManager/ViewManager.py" line="2448" /> + <location filename="../ViewManager/ViewManager.py" line="2447" /> + <source>Extend selection down one page</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="1521" /> <location filename="../ViewManager/ViewManager.py" line="2449" /> <source>Shift+PgDown</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1527" /> + <location filename="../QScintilla/MiniEditor.py" line="1528" /> <location filename="../ViewManager/ViewManager.py" line="2456" /> <source>Meta+Shift+V</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1537" /> - <location filename="../QScintilla/MiniEditor.py" line="1534" /> + <location filename="../QScintilla/MiniEditor.py" line="1538" /> + <location filename="../QScintilla/MiniEditor.py" line="1535" /> <location filename="../ViewManager/ViewManager.py" line="2466" /> <location filename="../ViewManager/ViewManager.py" line="2463" /> <source>Extend selection to start of document</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1547" /> + <location filename="../QScintilla/MiniEditor.py" line="1548" /> <location filename="../ViewManager/ViewManager.py" line="2476" /> <source>Ctrl+Shift+Up</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1552" /> + <location filename="../QScintilla/MiniEditor.py" line="1553" /> <location filename="../ViewManager/ViewManager.py" line="2481" /> <source>Ctrl+Shift+Home</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1563" /> - <location filename="../QScintilla/MiniEditor.py" line="1560" /> + <location filename="../QScintilla/MiniEditor.py" line="1564" /> + <location filename="../QScintilla/MiniEditor.py" line="1561" /> <location filename="../ViewManager/ViewManager.py" line="2492" /> <location filename="../ViewManager/ViewManager.py" line="2489" /> <source>Extend selection to end of document</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1574" /> + <location filename="../QScintilla/MiniEditor.py" line="1575" /> <location filename="../ViewManager/ViewManager.py" line="2503" /> <source>Ctrl+Shift+Down</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1580" /> + <location filename="../QScintilla/MiniEditor.py" line="1581" /> <location filename="../ViewManager/ViewManager.py" line="2509" /> <source>Ctrl+Shift+End</source> <translation type="unfinished" /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1590" /> <location filename="../QScintilla/MiniEditor.py" line="1589" /> - <location filename="../QScintilla/MiniEditor.py" line="1588" /> <location filename="../QScintilla/ShellWindow.py" line="477" /> <location filename="../QScintilla/ShellWindow.py" line="476" /> <location filename="../ViewManager/ViewManager.py" line="2518" /> @@ -96064,37 +96069,37 @@ <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1590" /> + <location filename="../QScintilla/MiniEditor.py" line="1591" /> <location filename="../QScintilla/ShellWindow.py" line="478" /> <location filename="../ViewManager/ViewManager.py" line="2519" /> <source>Backspace</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1597" /> + <location filename="../QScintilla/MiniEditor.py" line="1598" /> <location filename="../QScintilla/ShellWindow.py" line="485" /> <location filename="../ViewManager/ViewManager.py" line="2526" /> <source>Meta+H</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1602" /> + <location filename="../QScintilla/MiniEditor.py" line="1603" /> <location filename="../QScintilla/ShellWindow.py" line="490" /> <location filename="../ViewManager/ViewManager.py" line="2531" /> <source>Shift+Backspace</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1613" /> - <location filename="../QScintilla/MiniEditor.py" line="1610" /> + <location filename="../QScintilla/MiniEditor.py" line="1614" /> + <location filename="../QScintilla/MiniEditor.py" line="1611" /> <location filename="../ViewManager/ViewManager.py" line="2542" /> <location filename="../ViewManager/ViewManager.py" line="2539" /> <source>Delete previous character if not at start of line</source> <translation type="unfinished" /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1628" /> <location filename="../QScintilla/MiniEditor.py" line="1627" /> - <location filename="../QScintilla/MiniEditor.py" line="1626" /> <location filename="../QScintilla/ShellWindow.py" line="499" /> <location filename="../QScintilla/ShellWindow.py" line="498" /> <location filename="../ViewManager/ViewManager.py" line="2556" /> @@ -96103,22 +96108,22 @@ <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1628" /> + <location filename="../QScintilla/MiniEditor.py" line="1629" /> <location filename="../QScintilla/ShellWindow.py" line="500" /> <location filename="../ViewManager/ViewManager.py" line="2557" /> <source>Del</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1635" /> + <location filename="../QScintilla/MiniEditor.py" line="1636" /> <location filename="../QScintilla/ShellWindow.py" line="507" /> <location filename="../ViewManager/ViewManager.py" line="2564" /> <source>Meta+D</source> <translation type="unfinished" /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1644" /> <location filename="../QScintilla/MiniEditor.py" line="1643" /> - <location filename="../QScintilla/MiniEditor.py" line="1642" /> <location filename="../QScintilla/ShellWindow.py" line="515" /> <location filename="../QScintilla/ShellWindow.py" line="514" /> <location filename="../ViewManager/ViewManager.py" line="2572" /> @@ -96127,15 +96132,15 @@ <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1644" /> + <location filename="../QScintilla/MiniEditor.py" line="1645" /> <location filename="../QScintilla/ShellWindow.py" line="516" /> <location filename="../ViewManager/ViewManager.py" line="2573" /> <source>Ctrl+Backspace</source> <translation type="unfinished" /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1656" /> <location filename="../QScintilla/MiniEditor.py" line="1655" /> - <location filename="../QScintilla/MiniEditor.py" line="1654" /> <location filename="../QScintilla/ShellWindow.py" line="527" /> <location filename="../QScintilla/ShellWindow.py" line="526" /> <location filename="../ViewManager/ViewManager.py" line="2584" /> @@ -96144,15 +96149,15 @@ <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1656" /> + <location filename="../QScintilla/MiniEditor.py" line="1657" /> <location filename="../QScintilla/ShellWindow.py" line="528" /> <location filename="../ViewManager/ViewManager.py" line="2585" /> <source>Ctrl+Del</source> <translation type="unfinished" /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1668" /> <location filename="../QScintilla/MiniEditor.py" line="1667" /> - <location filename="../QScintilla/MiniEditor.py" line="1666" /> <location filename="../QScintilla/ShellWindow.py" line="539" /> <location filename="../QScintilla/ShellWindow.py" line="538" /> <location filename="../ViewManager/ViewManager.py" line="2596" /> @@ -96161,15 +96166,15 @@ <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1669" /> + <location filename="../QScintilla/MiniEditor.py" line="1670" /> <location filename="../QScintilla/ShellWindow.py" line="541" /> <location filename="../ViewManager/ViewManager.py" line="2598" /> <source>Ctrl+Shift+Backspace</source> <translation type="unfinished" /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1682" /> <location filename="../QScintilla/MiniEditor.py" line="1681" /> - <location filename="../QScintilla/MiniEditor.py" line="1680" /> <location filename="../QScintilla/ShellWindow.py" line="553" /> <location filename="../QScintilla/ShellWindow.py" line="552" /> <location filename="../ViewManager/ViewManager.py" line="2610" /> @@ -96178,22 +96183,22 @@ <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1689" /> + <location filename="../QScintilla/MiniEditor.py" line="1690" /> <location filename="../QScintilla/ShellWindow.py" line="561" /> <location filename="../ViewManager/ViewManager.py" line="2618" /> <source>Meta+K</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1694" /> + <location filename="../QScintilla/MiniEditor.py" line="1695" /> <location filename="../QScintilla/ShellWindow.py" line="566" /> <location filename="../ViewManager/ViewManager.py" line="2623" /> <source>Ctrl+Shift+Del</source> <translation type="unfinished" /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1704" /> <location filename="../QScintilla/MiniEditor.py" line="1703" /> - <location filename="../QScintilla/MiniEditor.py" line="1702" /> <location filename="../QScintilla/ShellWindow.py" line="465" /> <location filename="../QScintilla/ShellWindow.py" line="464" /> <location filename="../ViewManager/ViewManager.py" line="2632" /> @@ -96202,14 +96207,14 @@ <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1704" /> + <location filename="../QScintilla/MiniEditor.py" line="1705" /> <location filename="../QScintilla/ShellWindow.py" line="466" /> <location filename="../ViewManager/ViewManager.py" line="2633" /> <source>Return</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1705" /> + <location filename="../QScintilla/MiniEditor.py" line="1706" /> <location filename="../QScintilla/ShellWindow.py" line="467" /> <location filename="../ViewManager/ViewManager.py" line="2634" /> <source>Enter</source> @@ -96232,8 +96237,8 @@ <translation type="unfinished" /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1716" /> <location filename="../QScintilla/MiniEditor.py" line="1715" /> - <location filename="../QScintilla/MiniEditor.py" line="1714" /> <location filename="../QScintilla/ShellWindow.py" line="441" /> <location filename="../QScintilla/ShellWindow.py" line="440" /> <location filename="../ViewManager/ViewManager.py" line="2659" /> @@ -96242,129 +96247,129 @@ <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1716" /> + <location filename="../QScintilla/MiniEditor.py" line="1717" /> <location filename="../QScintilla/ShellWindow.py" line="442" /> <location filename="../ViewManager/ViewManager.py" line="2660" /> <source>Ctrl+Shift+L</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1727" /> - <location filename="../QScintilla/MiniEditor.py" line="1726" /> - <location filename="../ViewManager/ViewManager.py" line="2671" /> - <location filename="../ViewManager/ViewManager.py" line="2670" /> - <source>Duplicate current line</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="1728" /> + <location filename="../QScintilla/MiniEditor.py" line="1727" /> + <location filename="../ViewManager/ViewManager.py" line="2671" /> + <location filename="../ViewManager/ViewManager.py" line="2670" /> + <source>Duplicate current line</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="1729" /> <location filename="../ViewManager/ViewManager.py" line="2672" /> <source>Ctrl+D</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1741" /> - <location filename="../QScintilla/MiniEditor.py" line="1738" /> + <location filename="../QScintilla/MiniEditor.py" line="1742" /> + <location filename="../QScintilla/MiniEditor.py" line="1739" /> <location filename="../ViewManager/ViewManager.py" line="2685" /> <location filename="../ViewManager/ViewManager.py" line="2682" /> <source>Swap current and previous lines</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1744" /> + <location filename="../QScintilla/MiniEditor.py" line="1745" /> <location filename="../ViewManager/ViewManager.py" line="2688" /> <source>Ctrl+T</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1755" /> - <location filename="../QScintilla/MiniEditor.py" line="1754" /> - <location filename="../ViewManager/ViewManager.py" line="2699" /> - <location filename="../ViewManager/ViewManager.py" line="2698" /> - <source>Reverse selected lines</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="1756" /> + <location filename="../QScintilla/MiniEditor.py" line="1755" /> + <location filename="../ViewManager/ViewManager.py" line="2699" /> + <location filename="../ViewManager/ViewManager.py" line="2698" /> + <source>Reverse selected lines</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="1757" /> <location filename="../ViewManager/ViewManager.py" line="2700" /> <source>Meta+Alt+R</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1767" /> - <location filename="../QScintilla/MiniEditor.py" line="1766" /> - <location filename="../ViewManager/ViewManager.py" line="2711" /> - <location filename="../ViewManager/ViewManager.py" line="2710" /> - <source>Cut current line</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="1768" /> + <location filename="../QScintilla/MiniEditor.py" line="1767" /> + <location filename="../ViewManager/ViewManager.py" line="2711" /> + <location filename="../ViewManager/ViewManager.py" line="2710" /> + <source>Cut current line</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="1769" /> <location filename="../ViewManager/ViewManager.py" line="2712" /> <source>Alt+Shift+L</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1779" /> - <location filename="../QScintilla/MiniEditor.py" line="1778" /> - <location filename="../ViewManager/ViewManager.py" line="2723" /> - <location filename="../ViewManager/ViewManager.py" line="2722" /> - <source>Copy current line</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="1780" /> + <location filename="../QScintilla/MiniEditor.py" line="1779" /> + <location filename="../ViewManager/ViewManager.py" line="2723" /> + <location filename="../ViewManager/ViewManager.py" line="2722" /> + <source>Copy current line</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="1781" /> <location filename="../ViewManager/ViewManager.py" line="2724" /> <source>Ctrl+Shift+T</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1791" /> - <location filename="../QScintilla/MiniEditor.py" line="1790" /> - <location filename="../ViewManager/ViewManager.py" line="2735" /> - <location filename="../ViewManager/ViewManager.py" line="2734" /> - <source>Toggle insert/overtype</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="1792" /> + <location filename="../QScintilla/MiniEditor.py" line="1791" /> + <location filename="../ViewManager/ViewManager.py" line="2735" /> + <location filename="../ViewManager/ViewManager.py" line="2734" /> + <source>Toggle insert/overtype</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="1793" /> <location filename="../ViewManager/ViewManager.py" line="2736" /> <source>Ins</source> <translation type="unfinished" /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1836" /> <location filename="../QScintilla/MiniEditor.py" line="1835" /> - <location filename="../QScintilla/MiniEditor.py" line="1834" /> <location filename="../ViewManager/ViewManager.py" line="2747" /> <location filename="../ViewManager/ViewManager.py" line="2746" /> <source>Move to end of display line</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1847" /> + <location filename="../QScintilla/MiniEditor.py" line="1848" /> <location filename="../ViewManager/ViewManager.py" line="2759" /> <source>Alt+End</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1857" /> - <location filename="../QScintilla/MiniEditor.py" line="1854" /> + <location filename="../QScintilla/MiniEditor.py" line="1858" /> + <location filename="../QScintilla/MiniEditor.py" line="1855" /> <location filename="../ViewManager/ViewManager.py" line="2769" /> <location filename="../ViewManager/ViewManager.py" line="2766" /> <source>Extend selection to end of display line</source> <translation type="unfinished" /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1878" /> <location filename="../QScintilla/MiniEditor.py" line="1877" /> - <location filename="../QScintilla/MiniEditor.py" line="1876" /> <location filename="../ViewManager/ViewManager.py" line="2789" /> <location filename="../ViewManager/ViewManager.py" line="2788" /> <source>Formfeed</source> <translation type="unfinished" /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1890" /> <location filename="../QScintilla/MiniEditor.py" line="1889" /> - <location filename="../QScintilla/MiniEditor.py" line="1888" /> <location filename="../QScintilla/ShellWindow.py" line="767" /> <location filename="../QScintilla/ShellWindow.py" line="766" /> <location filename="../ViewManager/ViewManager.py" line="2801" /> @@ -96373,423 +96378,423 @@ <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1890" /> + <location filename="../QScintilla/MiniEditor.py" line="1891" /> <location filename="../QScintilla/ShellWindow.py" line="768" /> <location filename="../ViewManager/ViewManager.py" line="2802" /> <source>Esc</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1903" /> - <location filename="../QScintilla/MiniEditor.py" line="1900" /> + <location filename="../QScintilla/MiniEditor.py" line="1904" /> + <location filename="../QScintilla/MiniEditor.py" line="1901" /> <location filename="../ViewManager/ViewManager.py" line="2815" /> <location filename="../ViewManager/ViewManager.py" line="2812" /> <source>Extend rectangular selection down one line</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1906" /> + <location filename="../QScintilla/MiniEditor.py" line="1907" /> <location filename="../ViewManager/ViewManager.py" line="2818" /> <source>Alt+Ctrl+Down</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1914" /> + <location filename="../QScintilla/MiniEditor.py" line="1915" /> <location filename="../ViewManager/ViewManager.py" line="2826" /> <source>Meta+Alt+Shift+N</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1925" /> - <location filename="../QScintilla/MiniEditor.py" line="1922" /> + <location filename="../QScintilla/MiniEditor.py" line="1926" /> + <location filename="../QScintilla/MiniEditor.py" line="1923" /> <location filename="../ViewManager/ViewManager.py" line="2837" /> <location filename="../ViewManager/ViewManager.py" line="2834" /> <source>Extend rectangular selection up one line</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1928" /> + <location filename="../QScintilla/MiniEditor.py" line="1929" /> <location filename="../ViewManager/ViewManager.py" line="2840" /> <source>Alt+Ctrl+Up</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1936" /> + <location filename="../QScintilla/MiniEditor.py" line="1937" /> <location filename="../ViewManager/ViewManager.py" line="2848" /> <source>Meta+Alt+Shift+P</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1947" /> - <location filename="../QScintilla/MiniEditor.py" line="1944" /> + <location filename="../QScintilla/MiniEditor.py" line="1948" /> + <location filename="../QScintilla/MiniEditor.py" line="1945" /> <location filename="../ViewManager/ViewManager.py" line="2859" /> <location filename="../ViewManager/ViewManager.py" line="2856" /> <source>Extend rectangular selection left one character</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1950" /> + <location filename="../QScintilla/MiniEditor.py" line="1951" /> <location filename="../ViewManager/ViewManager.py" line="2862" /> <source>Alt+Ctrl+Left</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1958" /> + <location filename="../QScintilla/MiniEditor.py" line="1959" /> <location filename="../ViewManager/ViewManager.py" line="2870" /> <source>Meta+Alt+Shift+B</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1969" /> - <location filename="../QScintilla/MiniEditor.py" line="1966" /> + <location filename="../QScintilla/MiniEditor.py" line="1970" /> + <location filename="../QScintilla/MiniEditor.py" line="1967" /> <location filename="../ViewManager/ViewManager.py" line="2881" /> <location filename="../ViewManager/ViewManager.py" line="2878" /> <source>Extend rectangular selection right one character</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1972" /> + <location filename="../QScintilla/MiniEditor.py" line="1973" /> <location filename="../ViewManager/ViewManager.py" line="2884" /> <source>Alt+Ctrl+Right</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1980" /> + <location filename="../QScintilla/MiniEditor.py" line="1981" /> <location filename="../ViewManager/ViewManager.py" line="2892" /> <source>Meta+Alt+Shift+F</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1993" /> - <location filename="../QScintilla/MiniEditor.py" line="1988" /> + <location filename="../QScintilla/MiniEditor.py" line="1994" /> + <location filename="../QScintilla/MiniEditor.py" line="1989" /> <location filename="../ViewManager/ViewManager.py" line="2905" /> <location filename="../ViewManager/ViewManager.py" line="2900" /> <source>Extend rectangular selection to first visible character in document line</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2006" /> + <location filename="../QScintilla/MiniEditor.py" line="2007" /> <location filename="../ViewManager/ViewManager.py" line="2918" /> <source>Alt+Shift+Home</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2017" /> - <location filename="../QScintilla/MiniEditor.py" line="2014" /> + <location filename="../QScintilla/MiniEditor.py" line="2018" /> + <location filename="../QScintilla/MiniEditor.py" line="2015" /> <location filename="../ViewManager/ViewManager.py" line="2929" /> <location filename="../ViewManager/ViewManager.py" line="2926" /> <source>Extend rectangular selection to end of document line</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2028" /> + <location filename="../QScintilla/MiniEditor.py" line="2029" /> <location filename="../ViewManager/ViewManager.py" line="2940" /> <source>Meta+Alt+Shift+E</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2033" /> + <location filename="../QScintilla/MiniEditor.py" line="2034" /> <location filename="../ViewManager/ViewManager.py" line="2945" /> <source>Alt+Shift+End</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2043" /> - <location filename="../QScintilla/MiniEditor.py" line="2040" /> + <location filename="../QScintilla/MiniEditor.py" line="2044" /> + <location filename="../QScintilla/MiniEditor.py" line="2041" /> <location filename="../ViewManager/ViewManager.py" line="2955" /> <location filename="../ViewManager/ViewManager.py" line="2952" /> <source>Extend rectangular selection up one page</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2046" /> + <location filename="../QScintilla/MiniEditor.py" line="2047" /> <location filename="../ViewManager/ViewManager.py" line="2958" /> <source>Alt+Shift+PgUp</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2059" /> - <location filename="../QScintilla/MiniEditor.py" line="2056" /> + <location filename="../QScintilla/MiniEditor.py" line="2060" /> + <location filename="../QScintilla/MiniEditor.py" line="2057" /> <location filename="../ViewManager/ViewManager.py" line="2971" /> <location filename="../ViewManager/ViewManager.py" line="2968" /> <source>Extend rectangular selection down one page</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2062" /> + <location filename="../QScintilla/MiniEditor.py" line="2063" /> <location filename="../ViewManager/ViewManager.py" line="2974" /> <source>Alt+Shift+PgDown</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2070" /> + <location filename="../QScintilla/MiniEditor.py" line="2071" /> <location filename="../ViewManager/ViewManager.py" line="2982" /> <source>Meta+Alt+Shift+V</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2545" /> - <location filename="../QScintilla/MiniEditor.py" line="2544" /> - <location filename="../QScintilla/MiniEditor.py" line="2079" /> - <location filename="../QScintilla/MiniEditor.py" line="2078" /> - <location filename="../ViewManager/ViewManager.py" line="2991" /> - <location filename="../ViewManager/ViewManager.py" line="2990" /> - <source>Duplicate current selection</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="2546" /> + <location filename="../QScintilla/MiniEditor.py" line="2545" /> <location filename="../QScintilla/MiniEditor.py" line="2080" /> + <location filename="../QScintilla/MiniEditor.py" line="2079" /> + <location filename="../ViewManager/ViewManager.py" line="2991" /> + <location filename="../ViewManager/ViewManager.py" line="2990" /> + <source>Duplicate current selection</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="2547" /> + <location filename="../QScintilla/MiniEditor.py" line="2081" /> <location filename="../ViewManager/ViewManager.py" line="2992" /> <source>Ctrl+Shift+D</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2094" /> - <location filename="../QScintilla/MiniEditor.py" line="2091" /> + <location filename="../QScintilla/MiniEditor.py" line="2095" /> + <location filename="../QScintilla/MiniEditor.py" line="2092" /> <location filename="../ViewManager/ViewManager.py" line="3006" /> <location filename="../ViewManager/ViewManager.py" line="3003" /> <source>Scroll to start of document</source> <translation type="unfinished" /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="2114" /> <location filename="../QScintilla/MiniEditor.py" line="2113" /> - <location filename="../QScintilla/MiniEditor.py" line="2112" /> <location filename="../ViewManager/ViewManager.py" line="3025" /> <location filename="../ViewManager/ViewManager.py" line="3024" /> <source>Scroll to end of document</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2132" /> - <location filename="../QScintilla/MiniEditor.py" line="2129" /> + <location filename="../QScintilla/MiniEditor.py" line="2133" /> + <location filename="../QScintilla/MiniEditor.py" line="2130" /> <location filename="../ViewManager/ViewManager.py" line="3044" /> <location filename="../ViewManager/ViewManager.py" line="3041" /> <source>Scroll vertically to center current line</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2142" /> + <location filename="../QScintilla/MiniEditor.py" line="2143" /> <location filename="../ViewManager/ViewManager.py" line="3054" /> <source>Meta+L</source> <translation type="unfinished" /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="2152" /> <location filename="../QScintilla/MiniEditor.py" line="2151" /> - <location filename="../QScintilla/MiniEditor.py" line="2150" /> <location filename="../ViewManager/ViewManager.py" line="3063" /> <location filename="../ViewManager/ViewManager.py" line="3062" /> <source>Move to end of next word</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2170" /> - <location filename="../QScintilla/MiniEditor.py" line="2167" /> + <location filename="../QScintilla/MiniEditor.py" line="2171" /> + <location filename="../QScintilla/MiniEditor.py" line="2168" /> <location filename="../ViewManager/ViewManager.py" line="3082" /> <location filename="../ViewManager/ViewManager.py" line="3079" /> <source>Extend selection to end of next word</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2193" /> - <location filename="../QScintilla/MiniEditor.py" line="2190" /> + <location filename="../QScintilla/MiniEditor.py" line="2194" /> + <location filename="../QScintilla/MiniEditor.py" line="2191" /> <location filename="../ViewManager/ViewManager.py" line="3105" /> <location filename="../ViewManager/ViewManager.py" line="3102" /> <source>Move to end of previous word</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2210" /> - <location filename="../QScintilla/MiniEditor.py" line="2207" /> + <location filename="../QScintilla/MiniEditor.py" line="2211" /> + <location filename="../QScintilla/MiniEditor.py" line="2208" /> <location filename="../ViewManager/ViewManager.py" line="3122" /> <location filename="../ViewManager/ViewManager.py" line="3119" /> <source>Extend selection to end of previous word</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2227" /> - <location filename="../QScintilla/MiniEditor.py" line="2224" /> + <location filename="../QScintilla/MiniEditor.py" line="2228" /> + <location filename="../QScintilla/MiniEditor.py" line="2225" /> <location filename="../ViewManager/ViewManager.py" line="3139" /> <location filename="../ViewManager/ViewManager.py" line="3136" /> <source>Move to start of document line</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2237" /> + <location filename="../QScintilla/MiniEditor.py" line="2238" /> <location filename="../ViewManager/ViewManager.py" line="3149" /> <source>Meta+A</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2248" /> - <location filename="../QScintilla/MiniEditor.py" line="2245" /> + <location filename="../QScintilla/MiniEditor.py" line="2249" /> + <location filename="../QScintilla/MiniEditor.py" line="2246" /> <location filename="../ViewManager/ViewManager.py" line="3160" /> <location filename="../ViewManager/ViewManager.py" line="3157" /> <source>Extend selection to start of document line</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2259" /> + <location filename="../QScintilla/MiniEditor.py" line="2260" /> <location filename="../ViewManager/ViewManager.py" line="3171" /> <source>Meta+Shift+A</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2272" /> - <location filename="../QScintilla/MiniEditor.py" line="2268" /> + <location filename="../QScintilla/MiniEditor.py" line="2273" /> + <location filename="../QScintilla/MiniEditor.py" line="2269" /> <location filename="../ViewManager/ViewManager.py" line="3184" /> <location filename="../ViewManager/ViewManager.py" line="3180" /> <source>Extend rectangular selection to start of document line</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2284" /> + <location filename="../QScintilla/MiniEditor.py" line="2285" /> <location filename="../ViewManager/ViewManager.py" line="3196" /> <source>Meta+Alt+Shift+A</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2296" /> - <location filename="../QScintilla/MiniEditor.py" line="2293" /> + <location filename="../QScintilla/MiniEditor.py" line="2297" /> + <location filename="../QScintilla/MiniEditor.py" line="2294" /> <location filename="../ViewManager/ViewManager.py" line="3208" /> <location filename="../ViewManager/ViewManager.py" line="3205" /> <source>Extend selection to start of display line</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2319" /> - <location filename="../QScintilla/MiniEditor.py" line="2316" /> + <location filename="../QScintilla/MiniEditor.py" line="2320" /> + <location filename="../QScintilla/MiniEditor.py" line="2317" /> <location filename="../ViewManager/ViewManager.py" line="3231" /> <location filename="../ViewManager/ViewManager.py" line="3228" /> <source>Move to start of display or document line</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2337" /> - <location filename="../QScintilla/MiniEditor.py" line="2333" /> + <location filename="../QScintilla/MiniEditor.py" line="2338" /> + <location filename="../QScintilla/MiniEditor.py" line="2334" /> <location filename="../ViewManager/ViewManager.py" line="3249" /> <location filename="../ViewManager/ViewManager.py" line="3245" /> <source>Extend selection to start of display or document line</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2356" /> - <location filename="../QScintilla/MiniEditor.py" line="2352" /> + <location filename="../QScintilla/MiniEditor.py" line="2357" /> + <location filename="../QScintilla/MiniEditor.py" line="2353" /> <location filename="../ViewManager/ViewManager.py" line="3268" /> <location filename="../ViewManager/ViewManager.py" line="3264" /> <source>Move to first visible character in display or document line</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2376" /> - <location filename="../QScintilla/MiniEditor.py" line="2371" /> + <location filename="../QScintilla/MiniEditor.py" line="2377" /> + <location filename="../QScintilla/MiniEditor.py" line="2372" /> <location filename="../ViewManager/ViewManager.py" line="3288" /> <location filename="../ViewManager/ViewManager.py" line="3283" /> <source>Extend selection to first visible character in display or document line</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2395" /> - <location filename="../QScintilla/MiniEditor.py" line="2392" /> + <location filename="../QScintilla/MiniEditor.py" line="2396" /> + <location filename="../QScintilla/MiniEditor.py" line="2393" /> <location filename="../ViewManager/ViewManager.py" line="3307" /> <location filename="../ViewManager/ViewManager.py" line="3304" /> <source>Move to end of display or document line</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2412" /> - <location filename="../QScintilla/MiniEditor.py" line="2409" /> + <location filename="../QScintilla/MiniEditor.py" line="2413" /> + <location filename="../QScintilla/MiniEditor.py" line="2410" /> <location filename="../ViewManager/ViewManager.py" line="3324" /> <location filename="../ViewManager/ViewManager.py" line="3321" /> <source>Extend selection to end of display or document line</source> <translation type="unfinished" /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="2428" /> <location filename="../QScintilla/MiniEditor.py" line="2427" /> - <location filename="../QScintilla/MiniEditor.py" line="2426" /> <location filename="../ViewManager/ViewManager.py" line="3339" /> <location filename="../ViewManager/ViewManager.py" line="3338" /> <source>Stuttered move up one page</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2442" /> - <location filename="../QScintilla/MiniEditor.py" line="2439" /> + <location filename="../QScintilla/MiniEditor.py" line="2443" /> + <location filename="../QScintilla/MiniEditor.py" line="2440" /> <location filename="../ViewManager/ViewManager.py" line="3354" /> <location filename="../ViewManager/ViewManager.py" line="3351" /> <source>Stuttered extend selection up one page</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2459" /> - <location filename="../QScintilla/MiniEditor.py" line="2456" /> + <location filename="../QScintilla/MiniEditor.py" line="2460" /> + <location filename="../QScintilla/MiniEditor.py" line="2457" /> <location filename="../ViewManager/ViewManager.py" line="3371" /> <location filename="../ViewManager/ViewManager.py" line="3368" /> <source>Stuttered move down one page</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2476" /> - <location filename="../QScintilla/MiniEditor.py" line="2473" /> + <location filename="../QScintilla/MiniEditor.py" line="2477" /> + <location filename="../QScintilla/MiniEditor.py" line="2474" /> <location filename="../ViewManager/ViewManager.py" line="3388" /> <location filename="../ViewManager/ViewManager.py" line="3385" /> <source>Stuttered extend selection down one page</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2493" /> - <location filename="../QScintilla/MiniEditor.py" line="2490" /> + <location filename="../QScintilla/MiniEditor.py" line="2494" /> + <location filename="../QScintilla/MiniEditor.py" line="2491" /> <location filename="../ViewManager/ViewManager.py" line="3405" /> <location filename="../ViewManager/ViewManager.py" line="3402" /> <source>Delete right to end of next word</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2503" /> + <location filename="../QScintilla/MiniEditor.py" line="2504" /> <location filename="../ViewManager/ViewManager.py" line="3415" /> <source>Alt+Del</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2514" /> - <location filename="../QScintilla/MiniEditor.py" line="2511" /> + <location filename="../QScintilla/MiniEditor.py" line="2515" /> + <location filename="../QScintilla/MiniEditor.py" line="2512" /> <location filename="../ViewManager/ViewManager.py" line="3426" /> <location filename="../ViewManager/ViewManager.py" line="3423" /> <source>Move selected lines up one line</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2531" /> - <location filename="../QScintilla/MiniEditor.py" line="2528" /> + <location filename="../QScintilla/MiniEditor.py" line="2532" /> + <location filename="../QScintilla/MiniEditor.py" line="2529" /> <location filename="../ViewManager/ViewManager.py" line="3443" /> <location filename="../ViewManager/ViewManager.py" line="3440" /> <source>Move selected lines down one line</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1805" /> - <location filename="../QScintilla/MiniEditor.py" line="1802" /> + <location filename="../QScintilla/MiniEditor.py" line="1806" /> + <location filename="../QScintilla/MiniEditor.py" line="1803" /> <location filename="../ViewManager/ViewManager.py" line="3461" /> <location filename="../ViewManager/ViewManager.py" line="3458" /> <source>Convert selection to lower case</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1808" /> + <location filename="../QScintilla/MiniEditor.py" line="1809" /> <location filename="../ViewManager/ViewManager.py" line="3464" /> <source>Alt+Shift+U</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1821" /> - <location filename="../QScintilla/MiniEditor.py" line="1818" /> + <location filename="../QScintilla/MiniEditor.py" line="1822" /> + <location filename="../QScintilla/MiniEditor.py" line="1819" /> <location filename="../ViewManager/ViewManager.py" line="3477" /> <location filename="../ViewManager/ViewManager.py" line="3474" /> <source>Convert selection to upper case</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1824" /> + <location filename="../QScintilla/MiniEditor.py" line="1825" /> <location filename="../ViewManager/ViewManager.py" line="3480" /> <source>Ctrl+Shift+U</source> <translation type="unfinished" /> @@ -96806,7 +96811,7 @@ <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2563" /> + <location filename="../QScintilla/MiniEditor.py" line="2564" /> <location filename="../QScintilla/ShellWindow.py" line="923" /> <location filename="../ViewManager/ViewManager.py" line="4167" /> <location filename="../ViewManager/ViewManager.py" line="4165" /> @@ -96815,14 +96820,14 @@ <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2565" /> + <location filename="../QScintilla/MiniEditor.py" line="2566" /> <location filename="../QScintilla/ShellWindow.py" line="925" /> <location filename="../ViewManager/ViewManager.py" line="3600" /> <source>&Search...</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2567" /> + <location filename="../QScintilla/MiniEditor.py" line="2568" /> <location filename="../QScintilla/ShellWindow.py" line="927" /> <location filename="../ViewManager/ViewManager.py" line="3602" /> <source>Ctrl+F</source> @@ -96830,34 +96835,34 @@ <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2574" /> + <location filename="../QScintilla/MiniEditor.py" line="2575" /> <location filename="../QScintilla/ShellWindow.py" line="934" /> <location filename="../ViewManager/ViewManager.py" line="3609" /> <source>Search for a text</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2577" /> + <location filename="../QScintilla/MiniEditor.py" line="2578" /> <location filename="../ViewManager/ViewManager.py" line="3612" /> <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 type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2589" /> + <location filename="../QScintilla/MiniEditor.py" line="2590" /> <location filename="../QScintilla/ShellWindow.py" line="949" /> <location filename="../ViewManager/ViewManager.py" line="3624" /> <source>Search next</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2591" /> + <location filename="../QScintilla/MiniEditor.py" line="2592" /> <location filename="../QScintilla/ShellWindow.py" line="951" /> <location filename="../ViewManager/ViewManager.py" line="3626" /> <source>Search &next</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2593" /> + <location filename="../QScintilla/MiniEditor.py" line="2594" /> <location filename="../QScintilla/ShellWindow.py" line="953" /> <location filename="../ViewManager/ViewManager.py" line="3628" /> <source>F3</source> @@ -96865,34 +96870,34 @@ <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2600" /> + <location filename="../QScintilla/MiniEditor.py" line="2601" /> <location filename="../QScintilla/ShellWindow.py" line="960" /> <location filename="../ViewManager/ViewManager.py" line="3635" /> <source>Search next occurrence of text</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2603" /> + <location filename="../QScintilla/MiniEditor.py" line="2604" /> <location filename="../ViewManager/ViewManager.py" line="3638" /> <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 type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2615" /> + <location filename="../QScintilla/MiniEditor.py" line="2616" /> <location filename="../QScintilla/ShellWindow.py" line="977" /> <location filename="../ViewManager/ViewManager.py" line="3650" /> <source>Search previous</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2617" /> + <location filename="../QScintilla/MiniEditor.py" line="2618" /> <location filename="../QScintilla/ShellWindow.py" line="979" /> <location filename="../ViewManager/ViewManager.py" line="3652" /> <source>Search &previous</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2619" /> + <location filename="../QScintilla/MiniEditor.py" line="2620" /> <location filename="../QScintilla/ShellWindow.py" line="981" /> <location filename="../ViewManager/ViewManager.py" line="3654" /> <source>Shift+F3</source> @@ -96900,41 +96905,41 @@ <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2628" /> + <location filename="../QScintilla/MiniEditor.py" line="2629" /> <location filename="../QScintilla/ShellWindow.py" line="990" /> <location filename="../ViewManager/ViewManager.py" line="3663" /> <source>Search previous occurrence of text</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2633" /> + <location filename="../QScintilla/MiniEditor.py" line="2634" /> <location filename="../ViewManager/ViewManager.py" line="3668" /> <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 type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2647" /> - <location filename="../QScintilla/MiniEditor.py" line="2645" /> + <location filename="../QScintilla/MiniEditor.py" line="2648" /> + <location filename="../QScintilla/MiniEditor.py" line="2646" /> <location filename="../ViewManager/ViewManager.py" line="3682" /> <location filename="../ViewManager/ViewManager.py" line="3680" /> <source>Clear search markers</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2649" /> + <location filename="../QScintilla/MiniEditor.py" line="2650" /> <location filename="../ViewManager/ViewManager.py" line="3684" /> <source>Ctrl+3</source> <comment>Search|Clear search markers</comment> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2658" /> + <location filename="../QScintilla/MiniEditor.py" line="2659" /> <location filename="../ViewManager/ViewManager.py" line="3693" /> <source>Clear all displayed search markers</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2663" /> + <location filename="../QScintilla/MiniEditor.py" line="2664" /> <location filename="../ViewManager/ViewManager.py" line="3698" /> <source><b>Clear search markers</b><p>Clear all displayed search markers.</p></source> <translation type="unfinished" /> @@ -96984,113 +96989,113 @@ <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2673" /> + <location filename="../QScintilla/MiniEditor.py" line="2674" /> <location filename="../ViewManager/ViewManager.py" line="3766" /> <source>Replace</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2674" /> + <location filename="../QScintilla/MiniEditor.py" line="2675" /> <location filename="../ViewManager/ViewManager.py" line="3767" /> <source>&Replace...</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2676" /> + <location filename="../QScintilla/MiniEditor.py" line="2677" /> <location filename="../ViewManager/ViewManager.py" line="3769" /> <source>Ctrl+R</source> <comment>Search|Replace</comment> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2683" /> + <location filename="../QScintilla/MiniEditor.py" line="2684" /> <location filename="../ViewManager/ViewManager.py" line="3776" /> <source>Replace some text</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2686" /> + <location filename="../QScintilla/MiniEditor.py" line="2687" /> <location filename="../ViewManager/ViewManager.py" line="3779" /> <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 type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2700" /> - <location filename="../QScintilla/MiniEditor.py" line="2698" /> + <location filename="../QScintilla/MiniEditor.py" line="2701" /> + <location filename="../QScintilla/MiniEditor.py" line="2699" /> <location filename="../ViewManager/ViewManager.py" line="3793" /> <location filename="../ViewManager/ViewManager.py" line="3791" /> <source>Replace and Search</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2702" /> + <location filename="../QScintilla/MiniEditor.py" line="2703" /> <location filename="../ViewManager/ViewManager.py" line="3795" /> <source>Meta+R</source> <comment>Search|Replace and Search</comment> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2711" /> + <location filename="../QScintilla/MiniEditor.py" line="2712" /> <location filename="../ViewManager/ViewManager.py" line="3804" /> <source>Replace the found text and search the next occurrence</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2716" /> + <location filename="../QScintilla/MiniEditor.py" line="2717" /> <location filename="../ViewManager/ViewManager.py" line="3809" /> <source><b>Replace and Search</b><p>Replace the found occurrence of text in the current editor and search for the next one. The previously entered search text and options are reused.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2732" /> - <location filename="../QScintilla/MiniEditor.py" line="2730" /> + <location filename="../QScintilla/MiniEditor.py" line="2733" /> + <location filename="../QScintilla/MiniEditor.py" line="2731" /> <location filename="../ViewManager/ViewManager.py" line="3825" /> <location filename="../ViewManager/ViewManager.py" line="3823" /> <source>Replace Occurrence</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2734" /> + <location filename="../QScintilla/MiniEditor.py" line="2735" /> <location filename="../ViewManager/ViewManager.py" line="3827" /> <source>Ctrl+Meta+R</source> <comment>Search|Replace Occurrence</comment> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2743" /> + <location filename="../QScintilla/MiniEditor.py" line="2744" /> <location filename="../ViewManager/ViewManager.py" line="3836" /> <source>Replace the found text</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2746" /> + <location filename="../QScintilla/MiniEditor.py" line="2747" /> <location filename="../ViewManager/ViewManager.py" line="3839" /> <source><b>Replace Occurrence</b><p>Replace the found occurrence of the search text in the current editor.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2759" /> - <location filename="../QScintilla/MiniEditor.py" line="2757" /> + <location filename="../QScintilla/MiniEditor.py" line="2760" /> + <location filename="../QScintilla/MiniEditor.py" line="2758" /> <location filename="../ViewManager/ViewManager.py" line="3852" /> <location filename="../ViewManager/ViewManager.py" line="3850" /> <source>Replace All</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2761" /> + <location filename="../QScintilla/MiniEditor.py" line="2762" /> <location filename="../ViewManager/ViewManager.py" line="3854" /> <source>Shift+Meta+R</source> <comment>Search|Replace All</comment> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2770" /> + <location filename="../QScintilla/MiniEditor.py" line="2771" /> <location filename="../ViewManager/ViewManager.py" line="3863" /> <source>Replace search text occurrences</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2773" /> + <location filename="../QScintilla/MiniEditor.py" line="2774" /> <location filename="../ViewManager/ViewManager.py" line="3866" /> <source><b>Replace All</b><p>Replace all occurrences of the search text in the current editor.</p></source> <translation type="unfinished" /> @@ -97315,21 +97320,21 @@ <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2788" /> + <location filename="../QScintilla/MiniEditor.py" line="2789" /> <location filename="../QScintilla/ShellWindow.py" line="1016" /> <location filename="../ViewManager/ViewManager.py" line="4208" /> <source>Zoom in</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2790" /> + <location filename="../QScintilla/MiniEditor.py" line="2791" /> <location filename="../QScintilla/ShellWindow.py" line="1018" /> <location filename="../ViewManager/ViewManager.py" line="4210" /> <source>Zoom &in</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2792" /> + <location filename="../QScintilla/MiniEditor.py" line="2793" /> <location filename="../QScintilla/ShellWindow.py" line="1020" /> <location filename="../ViewManager/ViewManager.py" line="4212" /> <source>Ctrl++</source> @@ -97337,7 +97342,7 @@ <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2795" /> + <location filename="../QScintilla/MiniEditor.py" line="2796" /> <location filename="../QScintilla/ShellWindow.py" line="1023" /> <location filename="../ViewManager/ViewManager.py" line="4215" /> <source>Zoom In</source> @@ -97345,35 +97350,35 @@ <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2801" /> + <location filename="../QScintilla/MiniEditor.py" line="2802" /> <location filename="../QScintilla/ShellWindow.py" line="1029" /> <location filename="../ViewManager/ViewManager.py" line="4221" /> <source>Zoom in on the text</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2804" /> + <location filename="../QScintilla/MiniEditor.py" line="2805" /> <location filename="../QScintilla/ShellWindow.py" line="1032" /> <location filename="../ViewManager/ViewManager.py" line="4224" /> <source><b>Zoom in</b><p>Zoom in on the text. This makes the text bigger.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2814" /> + <location filename="../QScintilla/MiniEditor.py" line="2815" /> <location filename="../QScintilla/ShellWindow.py" line="1042" /> <location filename="../ViewManager/ViewManager.py" line="4234" /> <source>Zoom out</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2816" /> + <location filename="../QScintilla/MiniEditor.py" line="2817" /> <location filename="../QScintilla/ShellWindow.py" line="1044" /> <location filename="../ViewManager/ViewManager.py" line="4236" /> <source>Zoom &out</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2818" /> + <location filename="../QScintilla/MiniEditor.py" line="2819" /> <location filename="../QScintilla/ShellWindow.py" line="1046" /> <location filename="../ViewManager/ViewManager.py" line="4238" /> <source>Ctrl+-</source> @@ -97381,7 +97386,7 @@ <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2821" /> + <location filename="../QScintilla/MiniEditor.py" line="2822" /> <location filename="../QScintilla/ShellWindow.py" line="1049" /> <location filename="../ViewManager/ViewManager.py" line="4241" /> <source>Zoom Out</source> @@ -97389,35 +97394,35 @@ <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2827" /> + <location filename="../QScintilla/MiniEditor.py" line="2828" /> <location filename="../QScintilla/ShellWindow.py" line="1055" /> <location filename="../ViewManager/ViewManager.py" line="4247" /> <source>Zoom out on the text</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2830" /> + <location filename="../QScintilla/MiniEditor.py" line="2831" /> <location filename="../QScintilla/ShellWindow.py" line="1058" /> <location filename="../ViewManager/ViewManager.py" line="4250" /> <source><b>Zoom out</b><p>Zoom out on the text. This makes the text smaller.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2840" /> + <location filename="../QScintilla/MiniEditor.py" line="2841" /> <location filename="../QScintilla/ShellWindow.py" line="1068" /> <location filename="../ViewManager/ViewManager.py" line="4260" /> <source>Zoom reset</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2842" /> + <location filename="../QScintilla/MiniEditor.py" line="2843" /> <location filename="../QScintilla/ShellWindow.py" line="1070" /> <location filename="../ViewManager/ViewManager.py" line="4262" /> <source>Zoom &reset</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2844" /> + <location filename="../QScintilla/MiniEditor.py" line="2845" /> <location filename="../QScintilla/ShellWindow.py" line="1072" /> <location filename="../ViewManager/ViewManager.py" line="4264" /> <source>Ctrl+0</source> @@ -97425,42 +97430,42 @@ <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2851" /> + <location filename="../QScintilla/MiniEditor.py" line="2852" /> <location filename="../QScintilla/ShellWindow.py" line="1079" /> <location filename="../ViewManager/ViewManager.py" line="4271" /> <source>Reset the zoom of the text</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2854" /> + <location filename="../QScintilla/MiniEditor.py" line="2855" /> <location filename="../QScintilla/ShellWindow.py" line="1082" /> <location filename="../ViewManager/ViewManager.py" line="4274" /> <source><b>Zoom reset</b><p>Reset the zoom of the text. This sets the zoom factor to 100%.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2865" /> + <location filename="../QScintilla/MiniEditor.py" line="2866" /> <location filename="../QScintilla/ShellWindow.py" line="1093" /> <location filename="../ViewManager/ViewManager.py" line="4285" /> <source>Zoom</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2867" /> + <location filename="../QScintilla/MiniEditor.py" line="2868" /> <location filename="../QScintilla/ShellWindow.py" line="1095" /> <location filename="../ViewManager/ViewManager.py" line="4287" /> <source>&Zoom</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2874" /> + <location filename="../QScintilla/MiniEditor.py" line="2875" /> <location filename="../QScintilla/ShellWindow.py" line="1102" /> <location filename="../ViewManager/ViewManager.py" line="4294" /> <source>Zoom the text</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2877" /> + <location filename="../QScintilla/MiniEditor.py" line="2878" /> <location filename="../QScintilla/ShellWindow.py" line="1105" /> <location filename="../ViewManager/ViewManager.py" line="4297" /> <source><b>Zoom</b><p>Zoom the text. This opens a dialog where the desired size can be entered.</p></source> @@ -98225,65 +98230,65 @@ <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6077" /> + <location filename="../ViewManager/ViewManager.py" line="6078" /> <source>Line: {0:5}</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6083" /> + <location filename="../ViewManager/ViewManager.py" line="6084" /> <source>Pos: {0:5}</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6103" /> + <location filename="../ViewManager/ViewManager.py" line="6104" /> <source>Language: {0}</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6112" /> + <location filename="../ViewManager/ViewManager.py" line="6113" /> <source>EOL Mode: {0}</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6640" /> - <location filename="../ViewManager/ViewManager.py" line="6597" /> + <location filename="../ViewManager/ViewManager.py" line="6641" /> + <location filename="../ViewManager/ViewManager.py" line="6598" /> <source>&Clear</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6634" /> + <location filename="../ViewManager/ViewManager.py" line="6635" /> <source>&Add</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6637" /> + <location filename="../ViewManager/ViewManager.py" line="6638" /> <source>&Edit...</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="7707" /> - <location filename="../ViewManager/ViewManager.py" line="7693" /> - <location filename="../ViewManager/ViewManager.py" line="7661" /> + <location filename="../ViewManager/ViewManager.py" line="7708" /> + <location filename="../ViewManager/ViewManager.py" line="7694" /> + <location filename="../ViewManager/ViewManager.py" line="7662" /> <source>Edit Spelling Dictionary</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="7664" /> + <location filename="../ViewManager/ViewManager.py" line="7665" /> <source><p>The spelling dictionary file <b>{0}</b> could not be read.</p><p>Reason: {1}</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="7680" /> + <location filename="../ViewManager/ViewManager.py" line="7681" /> <source>Editing {0}</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="7696" /> + <location filename="../ViewManager/ViewManager.py" line="7697" /> <source><p>The spelling dictionary file <b>{0}</b> could not be written.</p><p>Reason: {1}</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="7710" /> + <location filename="../ViewManager/ViewManager.py" line="7711" /> <source>The spelling dictionary was saved successfully.</source> <translation type="unfinished" /> </message> @@ -98293,28 +98298,28 @@ <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6819" /> + <location filename="../ViewManager/ViewManager.py" line="6820" /> <source>Clear Editor</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6820" /> + <location filename="../ViewManager/ViewManager.py" line="6821" /> <source>Do you really want to delete all text of the current editor?</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="8240" /> - <location filename="../ViewManager/ViewManager.py" line="8223" /> - <source>File System Watcher Error</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="8224" /> - <source><p>The operating system resources for file system watches are exhausted. This limit should be increased. On a Linux system you should <ul><li>sudo nano /etc/sysctl.conf</li><li>add to the bottom "fs.inotify.max_user_instances = 1024"</li><li>save and close the editor</li><li>sudo sysctl -p</li></ul></p><p>Error Message: {0}</p></source> - <translation type="unfinished" /> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="8241" /> + <location filename="../ViewManager/ViewManager.py" line="8224" /> + <source>File System Watcher Error</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="8225" /> + <source><p>The operating system resources for file system watches are exhausted. This limit should be increased. On a Linux system you should <ul><li>sudo nano /etc/sysctl.conf</li><li>add to the bottom "fs.inotify.max_user_instances = 1024"</li><li>save and close the editor</li><li>sudo sysctl -p</li></ul></p><p>Error Message: {0}</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="8242" /> <source>The file system watcher reported an error with code <b>{0}</b>.</p><p>Error Message: {1}</p></source> <translation type="unfinished" /> </message> @@ -105704,301 +105709,306 @@ <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="95" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="96" /> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="94" /> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="93" /> <source>whitespace before '{0}'</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="96" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="95" /> + <source>whitespace after decorator '@'</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="97" /> <source>multiple spaces before operator</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="99" /> - <source>multiple spaces after operator</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="100" /> - <source>tab before operator</source> + <source>multiple spaces after operator</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="101" /> - <source>tab after operator</source> + <source>tab before operator</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="102" /> + <source>tab after operator</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="103" /> <source>missing whitespace around operator</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="105" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="106" /> <source>missing whitespace around arithmetic operator</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="108" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="109" /> <source>missing whitespace around bitwise or shift operator</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="111" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="112" /> <source>missing whitespace around modulo operator</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="114" /> - <source>missing whitespace after '{0}'</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="115" /> - <source>multiple spaces after '{0}'</source> + <source>missing whitespace after '{0}'</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="116" /> - <source>tab after '{0}'</source> + <source>multiple spaces after '{0}'</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="117" /> + <source>tab after '{0}'</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="118" /> <source>unexpected spaces around keyword / parameter equals</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="120" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="121" /> <source>missing whitespace around parameter equals</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="123" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="124" /> <source>at least two spaces before inline comment</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="126" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="127" /> <source>inline comment should start with '# '</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="129" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="130" /> <source>block comment should start with '# '</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="132" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="133" /> <source>too many leading '#' for block comment</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="135" /> - <source>multiple spaces after keyword</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="136" /> - <source>multiple spaces before keyword</source> + <source>multiple spaces after keyword</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="137" /> - <source>tab after keyword</source> + <source>multiple spaces before keyword</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="138" /> - <source>tab before keyword</source> + <source>tab after keyword</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="139" /> + <source>tab before keyword</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="140" /> <source>missing whitespace after keyword</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="145" /> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="142" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="146" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="143" /> <source>expected {0} blank lines, found {1}</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="148" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="149" /> <source>too many blank lines ({0}), expected {1}</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="151" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="152" /> <source>blank lines found after function decorator</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="154" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="155" /> <source>expected {0} blank lines after class or function definition, found {1}</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="158" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="159" /> <source>expected {0} blank lines before a nested definition, found {1}</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="161" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="162" /> <source>too many blank lines ({0}) before a nested definition, expected {1}</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="165" /> - <source>too many blank lines ({0})</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="166" /> - <source>multiple imports on one line</source> + <source>too many blank lines ({0})</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="167" /> + <source>multiple imports on one line</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="168" /> <source>module level import not at top of file</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="170" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="171" /> <source>line too long ({0} > {1} characters)</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="173" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="174" /> <source>the backslash is redundant between brackets</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="176" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="177" /> <source>multiple statements on one line (colon)</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="179" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="180" /> <source>multiple statements on one line (semicolon)</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="182" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="183" /> <source>statement ends with a semicolon</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="185" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="186" /> <source>multiple statements on one line (def)</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="191" /> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="188" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="192" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="189" /> <source>comparison to {0} should be {1}</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="194" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="195" /> <source>test for membership should be 'not in'</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="197" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="198" /> <source>test for object identity should be 'is not'</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="200" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="201" /> <source>do not compare types, for exact checks use 'is' / 'is not', for instance checks use 'isinstance()'</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="205" /> - <source>do not use bare except</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="206" /> + <source>do not use bare except</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="207" /> <source>do not assign a lambda expression, use a def</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="209" /> - <source>ambiguous variable name '{0}'</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="210" /> + <source>ambiguous variable name '{0}'</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="211" /> <source>ambiguous class definition '{0}'</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="213" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="214" /> <source>ambiguous function definition '{0}'</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="216" /> - <source>{0}: {1}</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="217" /> + <source>{0}: {1}</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="218" /> <source>{0}</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="225" /> - <source>indentation contains tabs</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="226" /> - <source>trailing whitespace</source> + <source>indentation contains tabs</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="227" /> - <source>no newline at end of file</source> + <source>trailing whitespace</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="228" /> - <source>blank line contains whitespace</source> + <source>no newline at end of file</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="229" /> - <source>blank line at end of file</source> + <source>blank line contains whitespace</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="230" /> + <source>blank line at end of file</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="231" /> <source>line break before binary operator</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="233" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="234" /> <source>line break after binary operator</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="236" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="237" /> <source>doc line too long ({0} > {1} characters)</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="239" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="240" /> <source>invalid escape sequence '\{0}'</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="242" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="243" /> <source>'async' and 'await' are reserved keywords starting with Python 3.7</source> <translation type="unfinished" /> </message>
--- a/src/eric7/i18n/eric7_es.ts Mon Jul 29 14:43:59 2024 +0200 +++ b/src/eric7/i18n/eric7_es.ts Sat Aug 31 10:54:21 2024 +0200 @@ -5128,7 +5128,7 @@ <context> <name>CodeStyleChecker</name> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="515" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="516" /> <source>No message defined for code '{0}'.</source> <translation>No hay mensaje definido para el código '{0}'.</translation> </message> @@ -6270,146 +6270,146 @@ <context> <name>CodeStyleFixer</name> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="253" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="254" /> <source>Triple single quotes converted to triple double quotes.</source> <translation>Triple comilla simple convertida a triple comilla doble.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="256" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="257" /> <source>Introductory quotes corrected to be {0}"""</source> <translation>Comillas introductorias corregidas para ser {0}"""</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="259" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="260" /> <source>Single line docstring put on one line.</source> <translation>Docstrings de una sola línea puestos en una sola línea.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="262" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="263" /> <source>Period added to summary line.</source> <translation>Coma añadida a la línea de resumen.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="289" /> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="265" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="290" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="266" /> <source>Blank line before function/method docstring removed.</source> <translation>Línea en blanco antes de docstring de función/método eliminada.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="268" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="269" /> <source>Blank line inserted before class docstring.</source> <translation>Linea en blanco insertada delante de docstring de clase.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="271" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="272" /> <source>Blank line inserted after class docstring.</source> <translation>Linea en blanco insertada detrás de docstring.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="274" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="275" /> <source>Blank line inserted after docstring summary.</source> <translation>Linea en blanco insertada detrás de docstring de resumen.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="277" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="278" /> <source>Blank line inserted after last paragraph of docstring.</source> <translation>Linea en blanco insertada detrás de último párrafo de docstring.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="280" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="281" /> <source>Leading quotes put on separate line.</source> <translation>Comillas iniciales puestas en línea separada.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="283" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="284" /> <source>Trailing quotes put on separate line.</source> <translation>Comillas finales puestas en línea separada.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="286" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="287" /> <source>Blank line before class docstring removed.</source> <translation>Línea en blanco antes de docstring de clase eliminada.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="292" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="293" /> <source>Blank line after class docstring removed.</source> <translation>Línea en blanco detrás de docstring eliminada.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="295" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="296" /> <source>Blank line after function/method docstring removed.</source> <translation>Línea en blanco detrás de docstring de función/método eliminada.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="298" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="299" /> <source>Blank line after last paragraph removed.</source> <translation>Linea en blanco detrás de último párrafo eliminada.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="301" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="302" /> <source>Tab converted to 4 spaces.</source> <translation>Tabulador convertido a 4 espacios.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="304" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="305" /> <source>Indentation adjusted to be a multiple of four.</source> <translation>Indentación ajustada para ser un múltiplo de cuatro.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="307" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="308" /> <source>Indentation of continuation line corrected.</source> <translation>Indentación de línea de continuación corregida.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="310" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="311" /> <source>Indentation of closing bracket corrected.</source> <translation>Indentación de llave de cierre corregida.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="313" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="314" /> <source>Missing indentation of continuation line corrected.</source> <translation>Indentación inexistente en línea de continuación corregida.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="316" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="317" /> <source>Closing bracket aligned to opening bracket.</source> <translation>Llave de cierre alineada a llave de apertura.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="319" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="320" /> <source>Indentation level changed.</source> <translation>Nivel de indentación corregida.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="322" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="323" /> <source>Indentation level of hanging indentation changed.</source> <translation>Nivel de indentación de indentación colgante corregida.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="325" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="326" /> <source>Visual indentation corrected.</source> <translation>Indentación visual corregida.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="340" /> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="334" /> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="328" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="341" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="335" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="329" /> <source>Extraneous whitespace removed.</source> <translation>Eliminado espacio en blanco extraño.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="337" /> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="331" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="338" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="332" /> <source>Missing whitespace added.</source> <translation>Añadido espacio en blanco que faltaba.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="343" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="344" /> <source>Whitespace around comment sign corrected.</source> <translation>Espacio en blanco alrededor de signo de comentario corregido.</translation> </message> <message numerus="yes"> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="346" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="347" /> <source>%n blank line(s) inserted.</source> <translation> <numerusform>Insertada %n línea en blanco.</numerusform> @@ -6417,7 +6417,7 @@ </translation> </message> <message numerus="yes"> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="349" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="350" /> <source>%n superfluous lines removed</source> <translation> <numerusform>Eliminada %n línea en blanco sobrante</numerusform> @@ -6425,73 +6425,73 @@ </translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="352" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="353" /> <source>Superfluous blank lines removed.</source> <translation>Eliminadas líneas en blanco sobrantes.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="355" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="356" /> <source>Superfluous blank lines after function decorator removed.</source> <translation>Eliminadas líneas en blanco sobrantes después de decorador de función.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="358" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="359" /> <source>Imports were put on separate lines.</source> <translation>Imports estaban puestos en líneas separadas.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="361" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="362" /> <source>Long lines have been shortened.</source> <translation>Líneas largas se han acortado.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="364" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="365" /> <source>Redundant backslash in brackets removed.</source> <translation>Backslash redundante en llaves eliminado.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="370" /> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="367" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="371" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="368" /> <source>Compound statement corrected.</source> <translation>Sentencia compuesta corregida.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="373" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="374" /> <source>Comparison to None/True/False corrected.</source> <translation>Comparación a None/True/False corregida.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="376" /> - <source>'{0}' argument added.</source> - <translation>Añadido el argumento '{0}'.</translation> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="377" /> - <source>'{0}' argument removed.</source> - <translation>Eliminado el argumento '{0}'.</translation> + <source>'{0}' argument added.</source> + <translation>Añadido el argumento '{0}'.</translation> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="378" /> + <source>'{0}' argument removed.</source> + <translation>Eliminado el argumento '{0}'.</translation> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="379" /> <source>Whitespace stripped from end of line.</source> <translation>Espacio eliminado del final de la línea.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="381" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="382" /> <source>newline added to end of file.</source> <translation>Carácter de nueva línea añadido al final del archivo.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="384" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="385" /> <source>Superfluous trailing blank lines removed from end of file.</source> <translation>Eliminadas líneas en blanco sobrantes de final de archivo.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="387" /> - <source>'<>' replaced by '!='.</source> - <translation>'<>' reemplazado por '!='.</translation> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="388" /> + <source>'<>' replaced by '!='.</source> + <translation>'<>' reemplazado por '!='.</translation> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="389" /> <source>Could not save the file! Skipping it. Reason: {0}</source> <translation>¡No se ha podido guardar el archivo! Va a ser omitido. Razón: {0}</translation> </message> @@ -54601,723 +54601,723 @@ <context> <name>MiniEditor</name> <message> - <location filename="../QScintilla/MiniEditor.py" line="492" /> + <location filename="../QScintilla/MiniEditor.py" line="493" /> <source>About eric Mini Editor</source> <translation>Acerca del Mini Editor de eric</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="493" /> + <location filename="../QScintilla/MiniEditor.py" line="494" /> <source>The eric 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>El Mini Editor de eric es un componente de edición basado en QScintilla. Puede utilizarse para tareas simples de edición que no necesitan la potencia de un editor más completo.</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="562" /> + <location filename="../QScintilla/MiniEditor.py" line="563" /> <source>Line: {0:5}</source> <translation>Línea: {0:5}</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="566" /> + <location filename="../QScintilla/MiniEditor.py" line="567" /> <source>Pos: {0:5}</source> <translation>Pos: {0:5}</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="580" /> + <location filename="../QScintilla/MiniEditor.py" line="581" /> <source>Language: {0}</source> <translation>Lenguaje: {0}</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="644" /> + <location filename="../QScintilla/MiniEditor.py" line="645" /> <source>New</source> <translation>Nuevo</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="646" /> - <source>&New</source> - <translation>&Nuevo</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="647" /> + <source>&New</source> + <translation>&Nuevo</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="648" /> <source>Ctrl+N</source> <comment>File|New</comment> <translation>Ctrl+N</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="652" /> + <location filename="../QScintilla/MiniEditor.py" line="653" /> <source>Open an empty editor window</source> <translation>Abre una ventana vacia en el editor</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="654" /> + <location filename="../QScintilla/MiniEditor.py" line="655" /> <source><b>New</b><p>An empty editor window will be created.</p></source> <translation><b>Nuevo</b><p>Se creará una ventana vacia en el editor.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="660" /> + <location filename="../QScintilla/MiniEditor.py" line="661" /> <source>Open</source> <translation>Abrir</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="662" /> - <source>&Open...</source> - <translation>&Abrir...</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="663" /> + <source>&Open...</source> + <translation>&Abrir...</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="664" /> <source>Ctrl+O</source> <comment>File|Open</comment> <translation>Ctrl+O</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="668" /> + <location filename="../QScintilla/MiniEditor.py" line="669" /> <source>Open a file</source> <translation>Abrir un archivo</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="670" /> + <location filename="../QScintilla/MiniEditor.py" line="671" /> <source><b>Open a file</b><p>You will be asked for the name of a file to be opened.</p></source> <translation><b>Abrir un archivo</b><p>Le preguntará el nombre del archivo para ser abierto en el editor.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="679" /> + <location filename="../QScintilla/MiniEditor.py" line="680" /> <source>Save</source> <translation>Guardar</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="681" /> - <source>&Save</source> - <translation>&Guardar</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="682" /> + <source>&Save</source> + <translation>&Guardar</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="683" /> <source>Ctrl+S</source> <comment>File|Save</comment> <translation>Ctrl+S</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="687" /> + <location filename="../QScintilla/MiniEditor.py" line="688" /> <source>Save the current file</source> <translation>Guarda el archivo actual</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="689" /> + <location filename="../QScintilla/MiniEditor.py" line="690" /> <source><b>Save File</b><p>Save the contents of current editor window.</p></source> <translation><b>Guardar archivo</b><p>Almacena el contenido de la ventana de edición actual.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="698" /> + <location filename="../QScintilla/MiniEditor.py" line="699" /> <source>Save as</source> <translation>Guardar como</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="700" /> - <source>Save &as...</source> - <translation>Guardar co&mo...</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="701" /> + <source>Save &as...</source> + <translation>Guardar co&mo...</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="702" /> <source>Shift+Ctrl+S</source> <comment>File|Save As</comment> <translation>Shift+Ctrl+S</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="706" /> + <location filename="../QScintilla/MiniEditor.py" line="707" /> <source>Save the current file to a new one</source> <translation>Guarda el archivo actual en uno nuevo</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="708" /> + <location filename="../QScintilla/MiniEditor.py" line="709" /> <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>Guardar archivo como</b><p>Guarda el contenido del archivo actual en uno nuevo. El archivo puede ser introducido en el cuadro de selección de archivos.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="718" /> + <location filename="../QScintilla/MiniEditor.py" line="719" /> <source>Save Copy</source> <translation>Guardar Copia</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="720" /> + <location filename="../QScintilla/MiniEditor.py" line="721" /> <source>Save &Copy...</source> <translation>Guardar &Copia...</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="726" /> + <location filename="../QScintilla/MiniEditor.py" line="727" /> <source>Save a copy of the current file</source> <translation>Guardar una copia del archivo actual</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="728" /> + <location filename="../QScintilla/MiniEditor.py" line="729" /> <source><b>Save Copy</b><p>Save a copy of the contents of current editor window. The file can be entered in a file selection dialog.</p></source> <translation><b>Guardar Copia</b><p>Guardar una copia del contenido de la ventana de editor actual. El archivo puede ser introducido usando un diálogo de selección de archivo.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="738" /> + <location filename="../QScintilla/MiniEditor.py" line="739" /> <source>Close</source> <translation>Cerrar</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="740" /> - <source>&Close</source> - <translation>&Cerrar</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="741" /> + <source>&Close</source> + <translation>&Cerrar</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="742" /> <source>Ctrl+W</source> <comment>File|Close</comment> <translation>Ctrl+W</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="746" /> + <location filename="../QScintilla/MiniEditor.py" line="747" /> <source>Close the editor window</source> <translation>Cierra la ventanas del editor</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="748" /> + <location filename="../QScintilla/MiniEditor.py" line="749" /> <source><b>Close Window</b><p>Close the current window.</p></source> <translation><b>Cierra la ventana</b><p>Cierra la ventana actual.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="754" /> + <location filename="../QScintilla/MiniEditor.py" line="755" /> <source>Print</source> <translation>Imprimir</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="756" /> - <source>&Print</source> - <translation>Im&primir</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="757" /> + <source>&Print</source> + <translation>Im&primir</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="758" /> <source>Ctrl+P</source> <comment>File|Print</comment> <translation>Ctrl+P</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="762" /> + <location filename="../QScintilla/MiniEditor.py" line="763" /> <source>Print the current file</source> <translation>Imprime el archivo actual</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="764" /> + <location filename="../QScintilla/MiniEditor.py" line="765" /> <source><b>Print File</b><p>Print the contents of the current file.</p></source> <translation><b>Imprimir Archivo</b><p>Imprime el contenido del archivo en edición.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="773" /> + <location filename="../QScintilla/MiniEditor.py" line="774" /> <source>Print Preview</source> <translation>Presentación preliminar</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="781" /> + <location filename="../QScintilla/MiniEditor.py" line="782" /> <source>Print preview of the current file</source> <translation>Impirmir la selección del archivo actual</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="783" /> + <location filename="../QScintilla/MiniEditor.py" line="784" /> <source><b>Print Preview</b><p>Print preview of the current file.</p></source> <translation><b>Presentación Preliminar</b><p>Presentación preliminar del texto de ayuda mostrado.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="796" /> + <location filename="../QScintilla/MiniEditor.py" line="797" /> <source>Undo</source> <translation>Deshacer</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="798" /> - <source>&Undo</source> - <translation>&Deshacer</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="799" /> + <source>&Undo</source> + <translation>&Deshacer</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="800" /> <source>Ctrl+Z</source> <comment>Edit|Undo</comment> <translation>Ctrl+Z</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="800" /> + <location filename="../QScintilla/MiniEditor.py" line="801" /> <source>Alt+Backspace</source> <comment>Edit|Undo</comment> <translation>Alt+Backspace</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="804" /> + <location filename="../QScintilla/MiniEditor.py" line="805" /> <source>Undo the last change</source> <translation>Revierte el último cambio</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="806" /> + <location filename="../QScintilla/MiniEditor.py" line="807" /> <source><b>Undo</b><p>Undo the last change done in the current editor.</p></source> <translation><b>Deshacer</b><p>Deshace el último cambio hecho en el editor.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="815" /> + <location filename="../QScintilla/MiniEditor.py" line="816" /> <source>Redo</source> <translation>Rehacer</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="817" /> - <source>&Redo</source> - <translation>&Rehacer</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="818" /> + <source>&Redo</source> + <translation>&Rehacer</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="819" /> <source>Ctrl+Shift+Z</source> <comment>Edit|Redo</comment> <translation>Ctrl+Shift+Z</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="823" /> + <location filename="../QScintilla/MiniEditor.py" line="824" /> <source>Redo the last change</source> <translation>Rehace el último cambio</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="825" /> + <location filename="../QScintilla/MiniEditor.py" line="826" /> <source><b>Redo</b><p>Redo the last change done in the current editor.</p></source> <translation><b>Rehacer</b><p>Rehace el último cambio hecho en el editor.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="834" /> + <location filename="../QScintilla/MiniEditor.py" line="835" /> <source>Cut</source> <translation>Cortar</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="836" /> - <source>Cu&t</source> - <translation>Cor&tar</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="837" /> + <source>Cu&t</source> + <translation>Cor&tar</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="838" /> <source>Ctrl+X</source> <comment>Edit|Cut</comment> <translation>Ctrl+X</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="838" /> + <location filename="../QScintilla/MiniEditor.py" line="839" /> <source>Shift+Del</source> <comment>Edit|Cut</comment> <translation>Shift+Del</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="842" /> + <location filename="../QScintilla/MiniEditor.py" line="843" /> <source>Cut the selection</source> <translation>Corta la selección</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="844" /> + <location filename="../QScintilla/MiniEditor.py" line="845" /> <source><b>Cut</b><p>Cut the selected text of the current editor to the clipboard.</p></source> <translation><b>Cortar</b><p>Cortar el texto seleccionado y lo envia al portapapeles.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="854" /> + <location filename="../QScintilla/MiniEditor.py" line="855" /> <source>Copy</source> <translation>Copiar</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="856" /> - <source>&Copy</source> - <translation>&Copiar</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="857" /> + <source>&Copy</source> + <translation>&Copiar</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="858" /> <source>Ctrl+C</source> <comment>Edit|Copy</comment> <translation>Ctrl+C</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="858" /> + <location filename="../QScintilla/MiniEditor.py" line="859" /> <source>Ctrl+Ins</source> <comment>Edit|Copy</comment> <translation>Ctrl+Ins</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="862" /> + <location filename="../QScintilla/MiniEditor.py" line="863" /> <source>Copy the selection</source> <translation>Copia lo seleccionado</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="864" /> + <location filename="../QScintilla/MiniEditor.py" line="865" /> <source><b>Copy</b><p>Copy the selected text of the current editor to the clipboard.</p></source> <translation><b>Copiar</b><p>Copiar el texto seleccionado al portapapeles.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="874" /> + <location filename="../QScintilla/MiniEditor.py" line="875" /> <source>Paste</source> <translation>Pegar</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="876" /> - <source>&Paste</source> - <translation>&Pegar</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="877" /> + <source>&Paste</source> + <translation>&Pegar</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="878" /> <source>Ctrl+V</source> <comment>Edit|Paste</comment> <translation>Ctrl+V</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="878" /> + <location filename="../QScintilla/MiniEditor.py" line="879" /> <source>Shift+Ins</source> <comment>Edit|Paste</comment> <translation>Shift+Ins</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="882" /> + <location filename="../QScintilla/MiniEditor.py" line="883" /> <source>Paste the last cut/copied text</source> <translation>Pega el último texto copiado/cortado</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="884" /> + <location filename="../QScintilla/MiniEditor.py" line="885" /> <source><b>Paste</b><p>Paste the last cut/copied text from the clipboard to the current editor.</p></source> <translation><b>Pegar</b><p>Pegar el contenido del portapapeles en el editor.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="894" /> + <location filename="../QScintilla/MiniEditor.py" line="895" /> <source>Clear</source> <translation>Borrar</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="896" /> - <source>Cl&ear</source> - <translation>&Borrar</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="897" /> + <source>Cl&ear</source> + <translation>&Borrar</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="898" /> <source>Alt+Shift+C</source> <comment>Edit|Clear</comment> <translation>Alt+Shift+C</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="902" /> + <location filename="../QScintilla/MiniEditor.py" line="903" /> <source>Clear all text</source> <translation>Borra todo el texto</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="904" /> + <location filename="../QScintilla/MiniEditor.py" line="905" /> <source><b>Clear</b><p>Delete all text of the current editor.</p></source> <translation><b>Borrar</b><p>Borra todo el texto del editor.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2892" /> + <location filename="../QScintilla/MiniEditor.py" line="2893" /> <source>About</source> <translation>Acerca de</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2892" /> + <location filename="../QScintilla/MiniEditor.py" line="2893" /> <source>&About</source> <translation>&Acerca de</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2894" /> + <location filename="../QScintilla/MiniEditor.py" line="2895" /> <source>Display information about this software</source> <translation>Muestra información acerca de este software</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2896" /> + <location filename="../QScintilla/MiniEditor.py" line="2897" /> <source><b>About</b><p>Display some information about this software.</p></source> <translation><b>Acerca de</b><p>Muestra información acerca de este software.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2905" /> + <location filename="../QScintilla/MiniEditor.py" line="2906" /> <source>About Qt</source> <translation>Acerca de Qt</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2905" /> + <location filename="../QScintilla/MiniEditor.py" line="2906" /> <source>About &Qt</source> <translation>Acerca de &Qt</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2908" /> + <location filename="../QScintilla/MiniEditor.py" line="2909" /> <source>Display information about the Qt toolkit</source> <translation>Muestra información sobre las herramientas Qt</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2911" /> + <location filename="../QScintilla/MiniEditor.py" line="2912" /> <source><b>About Qt</b><p>Display some information about the Qt toolkit.</p></source> <translation><b>Acerca de Qt</b><p>Muestra información sobre las herramientas Qt.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2920" /> + <location filename="../QScintilla/MiniEditor.py" line="2921" /> <source>What's This?</source> <translation>¿Qué es esto?</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2922" /> - <source>&What's This?</source> - <translation>¿&Qué es esto?</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="2923" /> + <source>&What's This?</source> + <translation>¿&Qué es esto?</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="2924" /> <source>Shift+F1</source> <comment>Help|What's This?'</comment> <translation>Shift+F1</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2928" /> + <location filename="../QScintilla/MiniEditor.py" line="2929" /> <source>Context sensitive help</source> <translation>Ayuda sensible al contexto</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2930" /> + <location filename="../QScintilla/MiniEditor.py" line="2931" /> <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>Mostrar ayuda sensible al contexto</b><p>En modo ¿Qué es esto? el puntero del ratón muestra una flecha con un interrogante, y se puede hacer click en elementos de la interfaz gráfica para obtener una descripción corta de lo que hacen y de cómo se utilizan. En los diálogos, se puede acceder a esta característica utilizando el botón de ayuda de contexto en la barra de título.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2948" /> + <location filename="../QScintilla/MiniEditor.py" line="2949" /> <source>Preferences</source> <translation>Preferencias</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2950" /> + <location filename="../QScintilla/MiniEditor.py" line="2951" /> <source>&Preferences...</source> <translation>&Preferencias...</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2956" /> + <location filename="../QScintilla/MiniEditor.py" line="2957" /> <source>Set the prefered configuration</source> <translation>Establecer la configuración preferida</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2958" /> + <location filename="../QScintilla/MiniEditor.py" line="2959" /> <source><b>Preferences</b><p>Set the configuration items of the application with your prefered values.</p></source> <translation><b>Preferencias</b><p>Establecezca los elementos de configuración de la aplicación con sus valores preferidos.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2972" /> + <location filename="../QScintilla/MiniEditor.py" line="2973" /> <source>&File</source> <translation>&Archivo</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2984" /> + <location filename="../QScintilla/MiniEditor.py" line="2985" /> <source>&Edit</source> <translation>&Editar</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2994" /> + <location filename="../QScintilla/MiniEditor.py" line="2995" /> <source>&Search</source> <translation>&Buscar</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3004" /> + <location filename="../QScintilla/MiniEditor.py" line="3005" /> <source>&View</source> <translation>&Ver</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3010" /> + <location filename="../QScintilla/MiniEditor.py" line="3011" /> <source>Se&ttings</source> <translation>Con&figuración</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3015" /> + <location filename="../QScintilla/MiniEditor.py" line="3016" /> <source>&Help</source> <translation>A&yuda</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3027" /> + <location filename="../QScintilla/MiniEditor.py" line="3028" /> <source>File</source> <translation>Archivo</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3039" /> + <location filename="../QScintilla/MiniEditor.py" line="3040" /> <source>Edit</source> <translation>Editar</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3048" /> + <location filename="../QScintilla/MiniEditor.py" line="3049" /> <source>Search</source> <translation>Buscar</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3054" /> + <location filename="../QScintilla/MiniEditor.py" line="3055" /> <source>View</source> <translation>Ver</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3060" /> + <location filename="../QScintilla/MiniEditor.py" line="3061" /> <source>Settings</source> <translation>Ajustes</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3063" /> + <location filename="../QScintilla/MiniEditor.py" line="3064" /> <source>Help</source> <translation>Ayuda</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3076" /> + <location filename="../QScintilla/MiniEditor.py" line="3077" /> <source><p>This part of the status bar displays the editor language.</p></source> <translation><p>Esta zona de la barra de estado muestra el lenguaje del editor.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3086" /> + <location filename="../QScintilla/MiniEditor.py" line="3087" /> <source><p>This part of the status bar displays an indication of the editors files writability.</p></source> <translation><p>Esta zona de la barra de estado muestra una indicación de las propiedades de escritura de los archivos del editor.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3095" /> + <location filename="../QScintilla/MiniEditor.py" line="3096" /> <source><p>This part of the status bar displays the line number of the editor.</p></source> <translation><p>Esta zona de la barra de estado muestra el número de línea en el editor.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3104" /> + <location filename="../QScintilla/MiniEditor.py" line="3105" /> <source><p>This part of the status bar displays the cursor position of the editor.</p></source> <translation><p>Esta zona de la barra de estado muestra la posición del cursor en el editor.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3118" /> + <location filename="../QScintilla/MiniEditor.py" line="3119" /> <source><p>This part of the status bar allows zooming the editor.</p></source> <translation><p>Esta zona de la barra de estado permite hacer zoom sobre el editor.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3125" /> + <location filename="../QScintilla/MiniEditor.py" line="3126" /> <source>Ready</source> <translation>Listo</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3201" /> - <source>eric Mini Editor</source> - <translation>Mini Editor de eric</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="3202" /> + <source>eric Mini Editor</source> + <translation>Mini Editor de eric</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="3203" /> <source>The document has unsaved changes.</source> <translation>El documento tiene cambios sin guardar.</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3231" /> - <source>Open File</source> - <translation>Abrir archivo</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="3232" /> + <source>Open File</source> + <translation>Abrir archivo</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="3233" /> <source><p>The file <b>{0}</b> could not be opened.</p><p>Reason: {1}</p></source> <translation><p>El archivo<b>{0}</b> no puede ser abierto.<br />Causa: {1}</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3260" /> + <location filename="../QScintilla/MiniEditor.py" line="3261" /> <source>File loaded</source> <translation>Archivo cargado</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3341" /> - <source>Save File</source> - <translation>Guardar archivo</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="3342" /> + <source>Save File</source> + <translation>Guardar archivo</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="3343" /> <source><p>The file <b>{0}</b> could not be saved.<br/>Reason: {1}</p></source> <translation><p>El archivo <b>{0}</b> no puede ser guardado.<br>Causa: {1}</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3348" /> + <location filename="../QScintilla/MiniEditor.py" line="3349" /> <source>File saved</source> <translation>Archivo guardado</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3360" /> + <location filename="../QScintilla/MiniEditor.py" line="3361" /> <source>[*] - {0}</source> <translation>[*] - {0}</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3380" /> - <location filename="../QScintilla/MiniEditor.py" line="3360" /> + <location filename="../QScintilla/MiniEditor.py" line="3381" /> + <location filename="../QScintilla/MiniEditor.py" line="3361" /> <source>Mini Editor</source> <translation>Mini Editor</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3735" /> - <location filename="../QScintilla/MiniEditor.py" line="3706" /> - <location filename="../QScintilla/MiniEditor.py" line="3373" /> + <location filename="../QScintilla/MiniEditor.py" line="3736" /> + <location filename="../QScintilla/MiniEditor.py" line="3707" /> + <location filename="../QScintilla/MiniEditor.py" line="3374" /> <source>Untitled</source> <translation>Sin título</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3380" /> + <location filename="../QScintilla/MiniEditor.py" line="3381" /> <source>{0}[*] - {1}</source> <translation>{0}[*] - {1}</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3701" /> + <location filename="../QScintilla/MiniEditor.py" line="3702" /> <source>Printing...</source> <translation>Imprimiendo...</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3717" /> + <location filename="../QScintilla/MiniEditor.py" line="3718" /> <source>Printing completed</source> <translation>Impresión completa</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3719" /> + <location filename="../QScintilla/MiniEditor.py" line="3720" /> <source>Error while printing</source> <translation>Error mientras se imprimía</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3722" /> + <location filename="../QScintilla/MiniEditor.py" line="3723" /> <source>Printing aborted</source> <translation>Impresión cancelada</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3777" /> - <source>Select all</source> - <translation>Seleccionar todo</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="3778" /> + <source>Select all</source> + <translation>Seleccionar todo</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="3779" /> <source>Deselect all</source> <translation>Deseleccionar todo</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3792" /> + <location filename="../QScintilla/MiniEditor.py" line="3793" /> <source>Languages</source> <translation>Lenguajes</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3795" /> + <location filename="../QScintilla/MiniEditor.py" line="3796" /> <source>No Language</source> <translation>Ningún Lenguaje</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3816" /> + <location filename="../QScintilla/MiniEditor.py" line="3817" /> <source>Guessed</source> <translation>Suposición</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3838" /> - <location filename="../QScintilla/MiniEditor.py" line="3820" /> + <location filename="../QScintilla/MiniEditor.py" line="3839" /> + <location filename="../QScintilla/MiniEditor.py" line="3821" /> <source>Alternatives</source> <translation>Alternativas</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3835" /> + <location filename="../QScintilla/MiniEditor.py" line="3836" /> <source>Alternatives ({0})</source> <translation>Alternativas ({0})</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3867" /> - <source>Pygments Lexer</source> - <translation>Analizador Léxico de Pygments</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="3868" /> + <source>Pygments Lexer</source> + <translation>Analizador Léxico de Pygments</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="3869" /> <source>Select the Pygments lexer to apply.</source> <translation>Seleccionar el Analizador Léxico de Pygments a aplicar.</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="4413" /> - <source>EditorConfig Properties</source> - <translation>Propiedades de EditorConfig</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="4414" /> + <source>EditorConfig Properties</source> + <translation>Propiedades de EditorConfig</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="4415" /> <source><p>The EditorConfig properties for file <b>{0}</b> could not be loaded.</p></source> <translation><p>Las propiedades de EditorConfig para el archivo <b>{0}</b> no se ha podido cargar.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="4601" /> - <source>Save File to Device</source> - <translation>Guardar Archivo en Dispositivo</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="4602" /> + <source>Save File to Device</source> + <translation>Guardar Archivo en Dispositivo</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="4603" /> <source>Enter the complete device file path:</source> <translation>Introducir la ruta completa de archivo del dispositivo:</translation> </message> @@ -55536,505 +55536,510 @@ <translation>lista de comprehensión innecesaria pasada a {0}() impidiendo corotocircuito - reescribir como un generator</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="135" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="134" /> + <source>unnecessary {0} comprehension - rewrite using dict.fromkeys()</source> + <translation>comprehensión {0} innecesaria - reescribir usando dict.fromkeys()</translation> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="139" /> <source>sort keys - '{0}' should be before '{1}'</source> <translation>ordenar claves - '{0}' debeía ser antes de '{1}'</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="140" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="144" /> <source>the number of arguments for property getter method is wrong (should be 1 instead of {0})</source> <translation>el número de argumentos para el método del property getter es erróneo (debería ser 1 en lugar de {0})</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="145" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="149" /> <source>the number of arguments for property setter method is wrong (should be 2 instead of {0})</source> <translation>el número de argumentos para el método del property setter es erróneo (debería ser 2 en lugar de {0})</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="150" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="154" /> <source>the number of arguments for property deleter method is wrong (should be 1 instead of {0})</source> <translation>el número de argumentos para el método del property deleter es erróneo (debería ser 1 en lugar de {0})</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="155" /> - <source>the name of the setter method is wrong (should be '{0}' instead of '{1}')</source> - <translation>el nombre del método setter es erróneo (debería ser '{0}' en lugar de '{1}')</translation> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="159" /> - <source>the name of the deleter method is wrong (should be '{0}' instead of '{1}')</source> - <translation>el nombre del método deleter es erróneo (debería ser '{0}' en lugar de '{1}')</translation> + <source>the name of the setter method is wrong (should be '{0}' instead of '{1}')</source> + <translation>el nombre del método setter es erróneo (debería ser '{0}' en lugar de '{1}')</translation> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="163" /> - <source>the name of the setter decorator is wrong (should be '{0}' instead of '{1}')</source> - <translation>el nombre del setter decorator es erróneo (debería ser '{0}' en lugar de '{1}')</translation> + <source>the name of the deleter method is wrong (should be '{0}' instead of '{1}')</source> + <translation>el nombre del método deleter es erróneo (debería ser '{0}' en lugar de '{1}')</translation> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="167" /> - <source>the name of the deleter decorator is wrong (should be '{0}' instead of '{1}')</source> - <translation>el nombre del deleter decorator es erróneo (debería ser '{0}' en lugar de '{1}')</translation> + <source>the name of the setter decorator is wrong (should be '{0}' instead of '{1}')</source> + <translation>el nombre del setter decorator es erróneo (debería ser '{0}' en lugar de '{1}')</translation> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="171" /> + <source>the name of the deleter decorator is wrong (should be '{0}' instead of '{1}')</source> + <translation>el nombre del deleter decorator es erróneo (debería ser '{0}' en lugar de '{1}')</translation> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="175" /> <source>multiple decorators were used to declare property '{0}'</source> <translation>se han utilizado multiples decorators para declarar la propiedad '{0}'</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="176" /> - <source>use of 'datetime.datetime()' without 'tzinfo' argument should be avoided</source> - <translation>debe evitarse el uso de 'datetime.datetime()' sin argumento 'tzinfo'</translation> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="180" /> + <source>use of 'datetime.datetime()' without 'tzinfo' argument should be avoided</source> + <translation>debe evitarse el uso de 'datetime.datetime()' sin argumento 'tzinfo'</translation> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="184" /> <source>use of 'datetime.datetime.today()' should be avoided. Use 'datetime.datetime.now(tz=)' instead.</source> <translation>debe evitarse el uso de 'datetime.datetime.today()'. Usar 'datetime.datetime.now(tz=)' en su lugar.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="185" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="189" /> <source>use of 'datetime.datetime.utcnow()' should be avoided. Use 'datetime.datetime.now(tz=datetime.timezone.utc)' instead.</source> <translation>el uso de 'datetime.datetime.utcnow()' se debería evitar. Usar 'datetime.datetime.now(tz=datetime.timezone.utc)' en su lugar.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="190" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="194" /> <source>use of 'datetime.datetime.utcfromtimestamp()' should be avoided. Use 'datetime.datetime.fromtimestamp(..., tz=datetime.timezone.utc)' instead.</source> <translation>el uso de 'datetime.datetime.utcfromtimestamp()' se debería evitar. Usar 'datetime.datetime.fromtimestamp(..., tz=datetime.timezone.utc)' en su lugar.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="195" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="199" /> <source>use of 'datetime.datetime.now()' without 'tz' argument should be avoided</source> <translation>debe evitarse el uso de 'datetime.datetime.now()' sin argumento 'tz'</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="199" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="203" /> <source>use of 'datetime.datetime.fromtimestamp()' without 'tz' argument should be avoided</source> <translation>debe evitarse el uso de 'datetime.datetime.fromtimestamp()' sin argumento 'tz'</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="204" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="208" /> <source>use of 'datetime.datetime.strptime()' should be followed by '.replace(tzinfo=)'</source> <translation>el uso de 'datetime.datetime.strptime()' debe ser continuado con '.replace(tzinfo=)'</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="209" /> - <source>use of 'datetime.datetime.fromordinal()' should be avoided</source> - <translation>debe evitarse el uso de 'datetime.datetime.fromordinal()'</translation> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="213" /> + <source>use of 'datetime.datetime.fromordinal()' should be avoided</source> + <translation>debe evitarse el uso de 'datetime.datetime.fromordinal()'</translation> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="217" /> <source>use of 'datetime.date()' should be avoided. Use 'datetime.datetime(, tzinfo=).date()' instead.</source> <translation>debe evitarse el uso de 'datetime.date()'. Usar 'datetime.datetime(, tzinfo=).date()' en su lugar.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="218" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="222" /> <source>use of 'datetime.date.today()' should be avoided. Use 'datetime.datetime.now(tz=).date()' instead.</source> <translation>debe evitarse el uso de 'datetime.date.today()'. Usar 'datetime.datetime.now(tz=).date()' en su lugar.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="223" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="227" /> <source>use of 'datetime.date.fromtimestamp()' should be avoided. Use 'datetime.datetime.fromtimestamp(tz=).date()' instead.</source> <translation>debe evitarse el uso de 'datetime.date.fromtimestamp()'. Usar 'datetime.datetime.fromtimestamp(tz=).date()' en su lugar.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="228" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="232" /> <source>use of 'datetime.date.fromordinal()' should be avoided</source> <translation>debe evitarse el uso de 'datetime.date.fromordinal()'</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="232" /> - <source>use of 'datetime.date.fromisoformat()' should be avoided</source> - <translation>debe evitarse el uso de 'datetime.date.fromisoformat()'</translation> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="236" /> + <source>use of 'datetime.date.fromisoformat()' should be avoided</source> + <translation>debe evitarse el uso de 'datetime.date.fromisoformat()'</translation> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="240" /> <source>use of 'datetime.time()' without 'tzinfo' argument should be avoided</source> <translation>debe evitarse el uso de 'datetime.time()' sin argumento 'tzinfo'</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="241" /> - <source>'sys.version[:3]' referenced (Python 3.10), use 'sys.version_info'</source> - <translation>'sys.version[:3]' referenciado (Python 3.10), usar 'sys.version_info'</translation> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="245" /> - <source>'sys.version[2]' referenced (Python 3.10), use 'sys.version_info'</source> - <translation>'sys.version[2]' referenciado (Python 3.10), usar 'sys.version_info'</translation> + <source>'sys.version[:3]' referenced (Python 3.10), use 'sys.version_info'</source> + <translation>'sys.version[:3]' referenciado (Python 3.10), usar 'sys.version_info'</translation> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="249" /> - <source>'sys.version' compared to string (Python 3.10), use 'sys.version_info'</source> - <translation>'sys.version' comparado a cadena (Python 3.10), usar 'sys.version_info'</translation> + <source>'sys.version[2]' referenced (Python 3.10), use 'sys.version_info'</source> + <translation>'sys.version[2]' referenciado (Python 3.10), usar 'sys.version_info'</translation> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="253" /> - <source>'sys.version_info[0] == 3' referenced (Python 4), use '>='</source> - <translation>'sys.version_info[0] == 3' referenciado (Python 4), usar '>='</translation> + <source>'sys.version' compared to string (Python 3.10), use 'sys.version_info'</source> + <translation>'sys.version' comparado a cadena (Python 3.10), usar 'sys.version_info'</translation> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="257" /> - <source>'six.PY3' referenced (Python 4), use 'not six.PY2'</source> - <translation>'six.PY3' referencicado (Python 4), usar 'not six.PY2'</translation> + <source>'sys.version_info[0] == 3' referenced (Python 4), use '>='</source> + <translation>'sys.version_info[0] == 3' referenciado (Python 4), usar '>='</translation> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="261" /> + <source>'six.PY3' referenced (Python 4), use 'not six.PY2'</source> + <translation>'six.PY3' referencicado (Python 4), usar 'not six.PY2'</translation> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="265" /> <source>'sys.version_info[1]' compared to integer (Python 4), compare 'sys.version_info' to tuple</source> <translation>'sys.version_info[1]' comparado a entero (Python 4), comparar 'sys.version_info' con tupla</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="266" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="270" /> <source>'sys.version_info.minor' compared to integer (Python 4), compare 'sys.version_info' to tuple</source> <translation>'sys.version_info.minor' comparado a entero (Python 4), comparar 'sys.version_info' con tupla</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="271" /> - <source>'sys.version[0]' referenced (Python 10), use 'sys.version_info'</source> - <translation>'sys.version[0]' referenciado (Python 10), usar 'sys.version_info'</translation> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="275" /> - <source>'sys.version' compared to string (Python 10), use 'sys.version_info'</source> - <translation>'sys.version' comparado a cadena (Python 10), usar 'sys.version_info'</translation> + <source>'sys.version[0]' referenced (Python 10), use 'sys.version_info'</source> + <translation>'sys.version[0]' referenciado (Python 10), usar 'sys.version_info'</translation> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="279" /> + <source>'sys.version' compared to string (Python 10), use 'sys.version_info'</source> + <translation>'sys.version' comparado a cadena (Python 10), usar 'sys.version_info'</translation> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="283" /> <source>'sys.version[:1]' referenced (Python 10), use 'sys.version_info'</source> <translation>'sys.version[:1]' referenciado (Python 10), usar 'sys.version_info'</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="284" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="288" /> <source>Do not use bare 'except:', it also catches unexpected events like memory errors, interrupts, system exit, and so on. Prefer excepting specific exceptions. If you're sure what you're doing, be explicit and write 'except BaseException:'.</source> <translation>No utilizar 'except:' a secas, también captura elementos inesperados como errores de memoria, interrupciones, salidas de sistema, etc. Son preferibles excepciones específicas. Si se está seguro de lo que se está haciendo es mejor ser explícito y escribir 'except BaseException:'.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="291" /> - <source>Python does not support the unary prefix increment</source> - <translation>Python no soporta el prefijo unario de incremento</translation> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="295" /> + <source>Python does not support the unary prefix increment</source> + <translation>Python no soporta el prefijo unario de incremento</translation> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="299" /> <source>assigning to 'os.environ' does not clear the environment - use 'os.environ.clear()'</source> <translation>asignaciones a 'os.environ' no limpian el entorno - usar 'os.environ.clear()'</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="300" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="304" /> <source>using 'hasattr(x, "__call__")' to test if 'x' is callable is unreliable. Use 'callable(x)' for consistent results.</source> <translation>el uso de 'hasattr(x, "__call__")' para comprobar si 'x' es invocable no es fiable. Usar 'callable(x)' para resultados consistentes.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="305" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="309" /> <source>using .strip() with multi-character strings is misleading. Use .replace(), .removeprefix(), .removesuffix(), or regular expressions to remove string fragments.</source> <translation>utilizar .strip() con cadenas de múltiples caracteres puede causar confusión. Utilizar .replace(), .removeprefix(), .removesuffix(), o expresiones regulares para eliminar fragmentos de una cadena.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="311" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="315" /> <source>loop control variable {0} not used within the loop body - start the name with an underscore</source> <translation>variable de control de bucle {0} no usada dentro del cuerpo del bucle - iniciar nombre con guión bajo</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="316" /> - <source>do not call getattr with a constant attribute value</source> - <translation>no invocar getattr con un valor de atributo constante</translation> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="320" /> - <source>do not call setattr with a constant attribute value</source> - <translation>no invocar setattr con un valor de atributo constante</translation> + <source>do not call getattr with a constant attribute value</source> + <translation>no invocar getattr con un valor de atributo constante</translation> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="324" /> - <source>do not call assert False since python -O removes these calls</source> - <translation>no llamar assert False dado que python -O elimina dichas llamadas</translation> + <source>do not call setattr with a constant attribute value</source> + <translation>no invocar setattr con un valor de atributo constante</translation> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="328" /> + <source>do not call assert False since python -O removes these calls</source> + <translation>no llamar assert False dado que python -O elimina dichas llamadas</translation> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="332" /> <source>return/continue/break inside finally blocks cause exceptions to be silenced. Exceptions should be silenced in except blocks. Control statements can be moved outside the finally block.</source> <translation>return/continue/break dentro de bloques finally hace que las excepciones se silencien. Las excepciones se deben silenciar en bloques except. Las sentencias de control se pueden extraer a un bloque finally.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="334" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="338" /> <source>A length-one tuple literal is redundant. Write 'except {0}:' instead of 'except ({0},):'.</source> <translation>Un literal de tupla de longitud uno es redundante. Escribir 'except {0}:' en lugar de 'except ({0},):'.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="339" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="343" /> <source>Redundant exception types in 'except ({0}){1}:'. Write 'except {2}{1}:', which catches exactly the same exceptions.</source> <translation>Tipos de excepcion redundantes en 'except ({0}){1}:'. Escribir 'except {2}{1}:', que captura exactamente las mismas excepciones.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="344" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="348" /> <source>Result of comparison is not used. This line doesn't do anything. Did you intend to prepend it with assert?</source> <translation>El resultado de la comparación no se usa. Esta línea no hace nada. ¿Trataba de preceerla con assert?</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="349" /> - <source>Cannot raise a literal. Did you intend to return it or raise an Exception?</source> - <translation>No se puede lanzar un literal. ¿Se intentaba retornarlo, o lanzar una Exception?</translation> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="353" /> + <source>Cannot raise a literal. Did you intend to return it or raise an Exception?</source> + <translation>No se puede lanzar un literal. ¿Se intentaba retornarlo, o lanzar una Exception?</translation> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="357" /> <source>'assertRaises(Exception)' and 'pytest.raises(Exception)' should be considered evil. They can lead to your test passing even if the code being tested is never executed due to a typo. Assert for a more specific exception (builtin or custom), or use 'assertRaisesRegex' (if using 'assertRaises'), or add the 'match' keyword argument (if using 'pytest.raises'), or use the context manager form with a target.</source> <translation>'assertRaises(Exception)' y 'pytest.raises(Exception)' debe ser considerado dañino. Pueden conducir a tests que pasan aunque el código en testeo nunca se ejecute debido a un error de tecleo. Usar Assert para excepciones más específicas (nativas o personalizadas), o usar 'assertRaisesRegex' (en caso de usar 'assertRaises'), o añadir el argumento clave 'match' (en caso de usar 'pytest.raises'), o usar la forma de gestión de contexto con un objetivo.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="362" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="366" /> <source>Found useless {0} expression. Consider either assigning it to a variable or removing it.</source> <translation>Encontrada expresión {0} sin uso. Considerar bien su asignación a una variable o su eliminación.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="367" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="371" /> <source>Use of 'functools.lru_cache' or 'functools.cache' on methods can lead to memory leaks. The cache may retain instance references, preventing garbage collection.</source> <translation>El uso de 'functools.lru_cache' o 'functools.cache' en métodos puede conducir a fugas de memoria. La cache puede retener referencias a instancias, imposibilitando la garbage collection.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="373" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="377" /> <source>Found for loop that reassigns the iterable it is iterating with each iterable value.</source> <translation>Encontrado bucle for que reasigna el iterable en iteracion con cada valor del iterable.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="378" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="382" /> <source>f-string used as docstring. This will be interpreted by python as a joined string rather than a docstring.</source> <translation>f-string usada como docstring. Python interpretara eso como una cadena unida en lugar de una docstring.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="383" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="387" /> <source>No arguments passed to 'contextlib.suppress'. No exceptions will be suppressed and therefore this context manager is redundant.</source> <translation>No se han pasado argumentos a 'contextlib.suppress'. No se suprimiran excepciones y por tanto este gestor de contexto es redundante.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="388" /> - <source>Function definition does not bind loop variable '{0}'.</source> - <translation>La definicion de function no esta unida a la variable del bucle '{0}'.</translation> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="392" /> + <source>Function definition does not bind loop variable '{0}'.</source> + <translation>La definicion de function no esta unida a la variable del bucle '{0}'.</translation> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="396" /> <source>{0} is an abstract base class, but none of the methods it defines are abstract. This is not necessarily an error, but you might have forgotten to add the @abstractmethod decorator, potentially in conjunction with @classmethod, @property and/or @staticmethod.</source> <translation>{0} es una clase base abstracta, pero ninguno de los métodos que define es abstracto. Esto no es necesariamente un error pero podría haber olvidado añadir @abstractmethod decorator, potentialmente en conjunción con @classmethod, @property y/o @staticmethod.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="399" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="403" /> <source>Exception '{0}' has been caught multiple times. Only the first except will be considered and all other except catches can be safely removed.</source> <translation>La excepción '{0}' se ha capturado múltiples veces. Solamente la primera sera tomada en consideracion y todas las demas capturas de excepcion se pueden eliminar de modo seguro.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="404" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="408" /> <source>Star-arg unpacking after a keyword argument is strongly discouraged, because it only works when the keyword parameter is declared after all parameters supplied by the unpacked sequence, and this change of ordering can surprise and mislead readers.</source> <translation>El desempaquetado de asterisco después de un argumento de palabra clave está decididamente desaconsejado, puesto que solo funciona si el parámetro de palabra clave se declara detrás de todos los parámetros proporcionados por la secuencia desempaquetada, y este cambio en el orden puede sorprender y resultar engañoso al leerlo.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="411" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="415" /> <source>{0} is an empty method in an abstract base class, but has no abstract decorator. Consider adding @abstractmethod.</source> <translation>{0} es un método vacío en una clase base abstracta, pero no tiene decorador. Considerar la adición de @abstractmethod.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="416" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="420" /> <source>No explicit stacklevel argument found. The warn method from the warnings module uses a stacklevel of 1 by default. This will only show a stack trace for the line on which the warn method is called. It is therefore recommended to use a stacklevel of 2 or greater to provide more information to the user.</source> <translation>No se ha encontrado un argumento stacklevel explícito. El método warn del módulo warnings usa un stacklevel de 1 por defecto. Esto mostrará solamente una stack trace para la línea en la que el método warn es invocado. Se recomienda por lo tanto utilizar un stacklevel de 2 o mayor, para proporcionar más información al usuario.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="424" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="428" /> <source>Using 'except ():' with an empty tuple does not handle/catch anything. Add exceptions to handle.</source> <translation>El uso de 'except ():' con una tupla vacía no gestiona/captura nada. Añadir excepciones a gestionar.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="429" /> - <source>Except handlers should only be names of exception classes</source> - <translation>Los manejadores Except deberían ser solamente nombres de clases de excepción</translation> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="433" /> + <source>Except handlers should only be names of exception classes</source> + <translation>Los manejadores Except deberían ser solamente nombres de clases de excepción</translation> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="437" /> <source>Using the generator returned from 'itertools.groupby()' more than once will do nothing on the second usage. Save the result to a list, if the result is needed multiple times.</source> <translation>Usar el generador retornado por 'itertools.groupby()' más de una vez no hará nada en el segundo uso. Guardar los resultados en una lista, si se necesita múltiples veces.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="439" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="443" /> <source>Possible unintentional type annotation (using ':'). Did you mean to assign (using '=')?</source> <translation>Posible anotación de tipo no intencional (using ':'). ¿Olvidó la asignación (using '=')?</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="444" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="448" /> <source>Set should not contain duplicate item '{0}'. Duplicate items will be replaced with a single item at runtime.</source> <translation>Set no debería contener elementos duplicados'{0}'. Los elementos duplicados se reemplazaran con un único elemento en tiempo de ejecución.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="449" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="453" /> <source>re.{0} should get '{1}' and 'flags' passed as keyword arguments to avoid confusion due to unintuitive argument positions.</source> <translation>re.{0} debería tener '{1}' y 'flags' pasado como argumentos de palabra clave para evitar confusión, debido a las posiciones poco intuitivas de los argumentos.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="454" /> - <source>Static key in dict comprehension: {0!r}.</source> - <translation>Clave Estática en dict comprehension: {0!r}.</translation> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="458" /> - <source>Don't except 'BaseException' unless you plan to re-raise it.</source> - <translation>No capturar 'BaseException' a menos que se planee lanzarla.</translation> + <source>Static key in dict comprehension: {0!r}.</source> + <translation>Clave Estática en dict comprehension: {0!r}.</translation> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="462" /> + <source>Don't except 'BaseException' unless you plan to re-raise it.</source> + <translation>No capturar 'BaseException' a menos que se planee lanzarla.</translation> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="466" /> <source>Class '__init__' methods must not return or yield and any values.</source> <translation>Los métodos '__init__' de clase no deben retornar (o hacer yield) de ningún valor.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="467" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="471" /> <source>Editing a loop's mutable iterable often leads to unexpected results/bugs.</source> <translation>Editar un mutable iterable de un bucle a menudo conduce a resultados inesperados/errores.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="472" /> - <source>unncessary f-string</source> - <translation>f-string innecesaria</translation> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="476" /> + <source>unncessary f-string</source> + <translation>f-string innecesaria</translation> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="480" /> <source>cannot use 'self.__class__' as first argument of 'super()' call</source> <translation>no se puede usar 'self.__class__' como primer argumento de la llamada 'super()'</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="481" /> - <source>found {0} formatter</source> - <translation>encontrado formateador {0}</translation> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="485" /> - <source>format string does contain unindexed parameters</source> - <translation>cadena de formato que contiene parámetros sin indexar</translation> + <source>found {0} formatter</source> + <translation>encontrado formateador {0}</translation> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="489" /> - <source>docstring does contain unindexed parameters</source> - <translation>docstring cque contiene parámetros sin indexar</translation> + <source>format string does contain unindexed parameters</source> + <translation>cadena de formato que contiene parámetros sin indexar</translation> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="493" /> - <source>other string does contain unindexed parameters</source> - <translation>otra cadena contiene parámetros sin indexar</translation> + <source>docstring does contain unindexed parameters</source> + <translation>docstring cque contiene parámetros sin indexar</translation> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="497" /> - <source>format call uses too large index ({0})</source> - <translation>llamada de formato usa un índice demasiado largo ({0})</translation> + <source>other string does contain unindexed parameters</source> + <translation>otra cadena contiene parámetros sin indexar</translation> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="501" /> - <source>format call uses missing keyword ({0})</source> - <translation>llamada de formato usa una palabra clave desaparecida ({0})</translation> + <source>format call uses too large index ({0})</source> + <translation>llamada de formato usa un índice demasiado largo ({0})</translation> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="505" /> - <source>format call uses keyword arguments but no named entries</source> - <translation>llamada de formato usa argumentos de palabra clave pero sin entradas con nombre</translation> + <source>format call uses missing keyword ({0})</source> + <translation>llamada de formato usa una palabra clave desaparecida ({0})</translation> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="509" /> - <source>format call uses variable arguments but no numbered entries</source> - <translation>llamada de formato usa argumentos de variable pero sin entradas numeradas</translation> + <source>format call uses keyword arguments but no named entries</source> + <translation>llamada de formato usa argumentos de palabra clave pero sin entradas con nombre</translation> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="513" /> - <source>format call uses implicit and explicit indexes together</source> - <translation>llamada de formato usa juntos índices implícitos y explícitos</translation> + <source>format call uses variable arguments but no numbered entries</source> + <translation>llamada de formato usa argumentos de variable pero sin entradas numeradas</translation> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="517" /> - <source>format call provides unused index ({0})</source> - <translation>llamada de formato proporciona índice que no se usa ({0})</translation> + <source>format call uses implicit and explicit indexes together</source> + <translation>llamada de formato usa juntos índices implícitos y explícitos</translation> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="521" /> + <source>format call provides unused index ({0})</source> + <translation>llamada de formato proporciona índice que no se usa ({0})</translation> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="525" /> <source>format call provides unused keyword ({0})</source> <translation>llamada de formato proporciona palabra clave que no se usa ({0})</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="526" /> - <source>expected these __future__ imports: {0}; but only got: {1}</source> - <translation>se esperaban estos __future__ imports: {0} pero solamente hay: {1}</translation> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="530" /> + <source>expected these __future__ imports: {0}; but only got: {1}</source> + <translation>se esperaban estos __future__ imports: {0} pero solamente hay: {1}</translation> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="534" /> <source>expected these __future__ imports: {0}; but got none</source> <translation>se esperaban estos __future__ imports: {0}; but no hay ninguno</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="535" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="539" /> <source>gettext import with alias _ found: {0}</source> <translation>encontrado gettext import con alias _ : {0}</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="540" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="544" /> <source>print statement found</source> <translation>encontrada sentencia print</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="545" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="549" /> <source>one element tuple found</source> <translation>tupla de un elemento encontrada</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="554" /> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="550" /> - <source>mutable default argument of type {0}</source> - <translation>argumento por defecto mutable de tipo {0}</translation> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="558" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="554" /> + <source>mutable default argument of type {0}</source> + <translation>argumento por defecto mutable de tipo {0}</translation> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="562" /> <source>mutable default argument of function call '{0}'</source> <translation>argumento por defecto mutable de llamada a función {0}</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="563" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="567" /> <source>None should not be added at any return if function has no return value except None</source> <translation>None no se debería añadir a ningún return si la función no tiene valor de retorno excepto None</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="568" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="572" /> <source>an explicit value at every return should be added if function has a return value except None</source> <translation>un valor explícito se debería añadir a cada return si la función tiene un valor de retorno excepto None</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="573" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="577" /> <source>an explicit return at the end of the function should be added if it has a return value except None</source> <translation>un return explícito se debería añadir al final de cada función si tiene un valor de retorno excepto None</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="578" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="582" /> <source>a value should not be assigned to a variable if it will be used as a return value only</source> <translation>no se debería añadir un valor a una variable si se va a usar como valor de retorno solamente</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="584" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="588" /> <source>prefer implied line continuation inside parentheses, brackets and braces as opposed to a backslash</source> <translation>es preferible la continuación implícita de la línea entre paréntesis, corchetes y llaves al uso de la barra invertida</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="590" /> - <source>implicitly concatenated string or bytes literals on one line</source> - <translation>cadena o literales de bytes implícitamente concatenados en una línea</translation> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="594" /> - <source>implicitly concatenated string or bytes literals over continuation line</source> - <translation>cadena o literales de bytes implícitamente concatenados sobre línea de continuación</translation> + <source>implicitly concatenated string or bytes literals on one line</source> + <translation>cadena o literales de bytes implícitamente concatenados en una línea</translation> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="598" /> + <source>implicitly concatenated string or bytes literals over continuation line</source> + <translation>cadena o literales de bytes implícitamente concatenados sobre línea de continuación</translation> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="602" /> <source>explicitly concatenated string or bytes should be implicitly concatenated</source> <translation>cadena o literales de bytes explícitamente concatenados deben estar conectados implícitamente</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="603" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="607" /> <source>commented code lines should be removed</source> <translation>las líneas de código comentadas se deberían eliminar</translation> </message> @@ -62993,333 +62998,333 @@ <translation>Todos los archivos (*)</translation> </message> <message> - <location filename="../Project/Project.py" line="1331" /> + <location filename="../Project/Project.py" line="1332" /> <source>Read Project Session</source> <translation>Leer Sesion de Proyecto</translation> </message> <message> - <location filename="../Project/Project.py" line="1577" /> - <location filename="../Project/Project.py" line="1551" /> - <location filename="../Project/Project.py" line="1515" /> - <location filename="../Project/Project.py" line="1433" /> - <location filename="../Project/Project.py" line="1394" /> - <location filename="../Project/Project.py" line="1369" /> - <location filename="../Project/Project.py" line="1332" /> + <location filename="../Project/Project.py" line="1578" /> + <location filename="../Project/Project.py" line="1552" /> + <location filename="../Project/Project.py" line="1516" /> + <location filename="../Project/Project.py" line="1434" /> + <location filename="../Project/Project.py" line="1395" /> + <location filename="../Project/Project.py" line="1370" /> + <location filename="../Project/Project.py" line="1333" /> <source>Please save the project first.</source> <translation>Por favor guarde primero el proyecto.</translation> </message> <message> - <location filename="../Project/Project.py" line="1368" /> + <location filename="../Project/Project.py" line="1369" /> <source>Save Project Session</source> <translation>Guardar Sesion de Proyecto</translation> </message> <message> - <location filename="../Project/Project.py" line="1410" /> - <location filename="../Project/Project.py" line="1393" /> + <location filename="../Project/Project.py" line="1411" /> + <location filename="../Project/Project.py" line="1394" /> <source>Delete Project Session</source> <translation>Borrar Sesión de Proyecto</translation> </message> <message> - <location filename="../Project/Project.py" line="1400" /> + <location filename="../Project/Project.py" line="1401" /> <source>Delete Remote Project Session</source> <translation>Borrar Sesión de Proyecto Remoto</translation> </message> <message> - <location filename="../Project/Project.py" line="1419" /> + <location filename="../Project/Project.py" line="1420" /> <source><p>The project session file <b>{0}</b> could not be deleted.</p></source> <translation><p>El archivo de sesión de proyecto <b>{0}</b> no ha podido borrarse.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="1432" /> + <location filename="../Project/Project.py" line="1433" /> <source>Read Tasks</source> <translation>Leer Tareas</translation> </message> <message> - <location filename="../Project/Project.py" line="1514" /> + <location filename="../Project/Project.py" line="1515" /> <source>Read Debugger Properties</source> <translation>Leer Propiedades del Depurador</translation> </message> <message> - <location filename="../Project/Project.py" line="1550" /> + <location filename="../Project/Project.py" line="1551" /> <source>Save Debugger Properties</source> <translation>Guardar Propiedades del Depurador</translation> </message> <message> - <location filename="../Project/Project.py" line="1593" /> - <location filename="../Project/Project.py" line="1576" /> + <location filename="../Project/Project.py" line="1594" /> + <location filename="../Project/Project.py" line="1577" /> <source>Delete Debugger Properties</source> <translation>Borrar Propiedades del Depurador</translation> </message> <message> - <location filename="../Project/Project.py" line="1583" /> + <location filename="../Project/Project.py" line="1584" /> <source>Delete Remote Debugger Properties</source> <translation>Borrar Propiedades del Depurador Remoto</translation> </message> <message> - <location filename="../Project/Project.py" line="1602" /> + <location filename="../Project/Project.py" line="1603" /> <source><p>The project debugger properties file <b>{0}</b> could not be deleted.</p></source> <translation><p>El archivo de propiedades del depurador del proyecto <b>{0}</b> no pudo ser borrado.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="1773" /> - <source>Add Language</source> - <translation>Añadir lenguaje</translation> - </message> - <message> <location filename="../Project/Project.py" line="1774" /> + <source>Add Language</source> + <translation>Añadir lenguaje</translation> + </message> + <message> + <location filename="../Project/Project.py" line="1775" /> <source>You have to specify a translation pattern first.</source> <translation>Debe especificar primero un patrón de traducción.</translation> </message> <message> - <location filename="../Project/Project.py" line="1915" /> + <location filename="../Project/Project.py" line="1916" /> <source>Delete Translation</source> <translation>Borrar Traducción</translation> </message> <message> + <location filename="../Project/Project.py" line="1943" /> + <location filename="../Project/Project.py" line="1917" /> + <source><p>The selected translation file <b>{0}</b> could not be deleted.</p><p>Reason: {1}</p></source> + <translation><p>El archivo de traducción seleccionado <b>{0}</b> no se ha podido borrar.</p><p>Razón: {1}</p></translation> + </message> + <message> <location filename="../Project/Project.py" line="1942" /> - <location filename="../Project/Project.py" line="1916" /> - <source><p>The selected translation file <b>{0}</b> could not be deleted.</p><p>Reason: {1}</p></source> - <translation><p>El archivo de traducción seleccionado <b>{0}</b> no se ha podido borrar.</p><p>Razón: {1}</p></translation> - </message> - <message> - <location filename="../Project/Project.py" line="1941" /> <source>Delete translation</source> <translation>Borrar traducción</translation> </message> <message> - <location filename="../Project/Project.py" line="2092" /> - <location filename="../Project/Project.py" line="2075" /> + <location filename="../Project/Project.py" line="2093" /> + <location filename="../Project/Project.py" line="2076" /> <source>Add File</source> <translation>Añadir archivo</translation> </message> <message> + <location filename="../Project/Project.py" line="2195" /> + <location filename="../Project/Project.py" line="2077" /> + <source><p>The file <b>{0}</b> already exists.</p><p>Overwrite it?</p></source> + <translation><p>El archivo <b>{0}</b> ya existe.</p><p>¿Desea sobreescribirlo?</p></translation> + </message> + <message> + <location filename="../Project/Project.py" line="2094" /> + <source><p>The selected file <b>{0}</b> could not be added to <b>{1}</b>.</p><p>Reason: {2}</p></source> + <translation><p>El archivo seleccionado <b>{0}</b> no ha podido se añadido a <b>{1}</b>.</p><p>Razón: {2}</p></translation> + </message> + <message> + <location filename="../Project/Project.py" line="2106" /> + <source>Add file</source> + <translation>Agregar archivo</translation> + </message> + <message> + <location filename="../Project/Project.py" line="2289" /> + <location filename="../Project/Project.py" line="2107" /> + <source>The target directory must not be empty.</source> + <translation>El directorio de destino no puede estar vacío.</translation> + </message> + <message> <location filename="../Project/Project.py" line="2194" /> - <location filename="../Project/Project.py" line="2076" /> - <source><p>The file <b>{0}</b> already exists.</p><p>Overwrite it?</p></source> - <translation><p>El archivo <b>{0}</b> ya existe.</p><p>¿Desea sobreescribirlo?</p></translation> - </message> - <message> - <location filename="../Project/Project.py" line="2093" /> - <source><p>The selected file <b>{0}</b> could not be added to <b>{1}</b>.</p><p>Reason: {2}</p></source> - <translation><p>El archivo seleccionado <b>{0}</b> no ha podido se añadido a <b>{1}</b>.</p><p>Razón: {2}</p></translation> - </message> - <message> - <location filename="../Project/Project.py" line="2105" /> - <source>Add file</source> - <translation>Agregar archivo</translation> - </message> - <message> - <location filename="../Project/Project.py" line="2288" /> - <location filename="../Project/Project.py" line="2106" /> - <source>The target directory must not be empty.</source> - <translation>El directorio de destino no puede estar vacío.</translation> - </message> - <message> - <location filename="../Project/Project.py" line="2193" /> - <location filename="../Project/Project.py" line="2166" /> - <location filename="../Project/Project.py" line="2146" /> + <location filename="../Project/Project.py" line="2167" /> + <location filename="../Project/Project.py" line="2147" /> <source>Add Directory</source> <translation>Añadir Directorio</translation> </message> <message> - <location filename="../Project/Project.py" line="2147" /> + <location filename="../Project/Project.py" line="2148" /> <source><p>The source directory doesn't contain any files belonging to the selected category.</p></source> <translation><p>El directorio de origen no contiene archivos que pertenezcan a la categoría seleccionada.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="2167" /> + <location filename="../Project/Project.py" line="2168" /> <source><p>The target directory <b>{0}</b> could not be created.</p><p>Reason: {1}</p></source> <translation><p>El directorio de destino <b>{0}</b> no ha podido ser creado.</p><p>Razón: {1}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="2299" /> - <location filename="../Project/Project.py" line="2287" /> - <source>Add directory</source> - <translation>Añadir directorio</translation> - </message> - <message> <location filename="../Project/Project.py" line="2300" /> + <location filename="../Project/Project.py" line="2288" /> + <source>Add directory</source> + <translation>Añadir directorio</translation> + </message> + <message> + <location filename="../Project/Project.py" line="2301" /> <source>The source directory must not be empty.</source> <translation>El directorio de origen no puede estar vacío.</translation> </message> <message> - <location filename="../Project/Project.py" line="2414" /> - <location filename="../Project/Project.py" line="2396" /> - <location filename="../Project/Project.py" line="2380" /> - <location filename="../Project/Project.py" line="2373" /> - <source>Rename File</source> - <translation>Renombrar Archivo</translation> - </message> - <message> - <location filename="../Project/Project.py" line="8049" /> - <location filename="../Project/Project.py" line="3900" /> - <location filename="../Project/Project.py" line="2397" /> - <source><p>The file <b>{0}</b> already exists. Overwrite it?</p></source> - <translation><p>El archivo <b>{0}</b> ya existe.</p><p>¿Desea sobreescribirlo?</p></translation> - </message> - <message> <location filename="../Project/Project.py" line="2415" /> + <location filename="../Project/Project.py" line="2397" /> + <location filename="../Project/Project.py" line="2381" /> + <location filename="../Project/Project.py" line="2374" /> + <source>Rename File</source> + <translation>Renombrar Archivo</translation> + </message> + <message> + <location filename="../Project/Project.py" line="8050" /> + <location filename="../Project/Project.py" line="3901" /> + <location filename="../Project/Project.py" line="2398" /> + <source><p>The file <b>{0}</b> already exists. Overwrite it?</p></source> + <translation><p>El archivo <b>{0}</b> ya existe.</p><p>¿Desea sobreescribirlo?</p></translation> + </message> + <message> + <location filename="../Project/Project.py" line="2416" /> <source><p>The file <b>{0}</b> could not be renamed.<br />Reason: {1}</p></source> <translation><p>El archivo <b>{0}</b> no puede ser renombrado.<br />Causa: {1}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="2682" /> - <source>Delete File</source> - <translation>Borrar Archivo</translation> - </message> - <message> <location filename="../Project/Project.py" line="2683" /> + <source>Delete File</source> + <translation>Borrar Archivo</translation> + </message> + <message> + <location filename="../Project/Project.py" line="2684" /> <source><p>The selected file <b>{0}</b> could not be deleted.</p><p>Reason: {1}</p></source> <translation><p>El archivo seleccionado <b>{0}</b> no se ha podido borrar.</p><p>Razón: {1}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="2711" /> - <source>Delete Directory</source> - <translation>Borrar Directorio</translation> - </message> - <message> <location filename="../Project/Project.py" line="2712" /> + <source>Delete Directory</source> + <translation>Borrar Directorio</translation> + </message> + <message> + <location filename="../Project/Project.py" line="2713" /> <source><p>The selected directory <b>{0}</b> could not be deleted.</p><p>Reason: {1}</p></source> <translation><p>El directorio seleccionado <b>{0}</b> no se ha podido borrar.</p><p>Razón: {1}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="2845" /> - <source>Create project directory</source> - <translation>Crear directorio de proyecto</translation> - </message> - <message> <location filename="../Project/Project.py" line="2846" /> + <source>Create project directory</source> + <translation>Crear directorio de proyecto</translation> + </message> + <message> + <location filename="../Project/Project.py" line="2847" /> <source><p>The project directory <b>{0}</b> could not be created.</p></source> <translation><p>El directorio de proyecto <b>{0}</b> no pudo ser creado.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3670" /> - <location filename="../Project/Project.py" line="2946" /> - <source>Create project management directory</source> - <translation>Crear directorio de gestión del proyecto</translation> - </message> - <message> <location filename="../Project/Project.py" line="3671" /> <location filename="../Project/Project.py" line="2947" /> + <source>Create project management directory</source> + <translation>Crear directorio de gestión del proyecto</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3672" /> + <location filename="../Project/Project.py" line="2948" /> <source><p>The project directory <b>{0}</b> is not writable.</p></source> <translation><p>El directorio del proyecto <b>{0}</b> no se puede escribir.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="2987" /> - <source>Create main script</source> - <translation>Crear script principal</translation> - </message> - <message> <location filename="../Project/Project.py" line="2988" /> + <source>Create main script</source> + <translation>Crear script principal</translation> + </message> + <message> + <location filename="../Project/Project.py" line="2989" /> <source><p>The main script <b>{0}</b> could not be created.<br/>Reason: {1}</p></source> <translation><p>El script principal <b>{0}</b> no se ha podido crear.<br/>Razón: {1}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3453" /> - <location filename="../Project/Project.py" line="3012" /> - <source>Create Makefile</source> - <translation>Crear Makefile</translation> - </message> - <message> <location filename="../Project/Project.py" line="3454" /> <location filename="../Project/Project.py" line="3013" /> + <source>Create Makefile</source> + <translation>Crear Makefile</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3455" /> + <location filename="../Project/Project.py" line="3014" /> <source><p>The makefile <b>{0}</b> could not be created.<br/>Reason: {1}</p></source> <translation><p>El makefile <b>{0}</b> no se ha podido crear.<br/>Razón: {1}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3700" /> - <location filename="../Project/Project.py" line="3163" /> - <location filename="../Project/Project.py" line="3134" /> - <location filename="../Project/Project.py" line="3102" /> - <location filename="../Project/Project.py" line="3086" /> - <location filename="../Project/Project.py" line="3061" /> - <location filename="../Project/Project.py" line="3023" /> - <source>New Project</source> - <translation>Proyecto nuevo</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3024" /> - <source>Add existing files to the project?</source> - <translation>¿Agregar archivos existentes al proyecto?</translation> - </message> - <message> <location filename="../Project/Project.py" line="3701" /> + <location filename="../Project/Project.py" line="3164" /> + <location filename="../Project/Project.py" line="3135" /> + <location filename="../Project/Project.py" line="3103" /> + <location filename="../Project/Project.py" line="3087" /> <location filename="../Project/Project.py" line="3062" /> + <location filename="../Project/Project.py" line="3024" /> + <source>New Project</source> + <translation>Proyecto nuevo</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3025" /> + <source>Add existing files to the project?</source> + <translation>¿Agregar archivos existentes al proyecto?</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3702" /> + <location filename="../Project/Project.py" line="3063" /> <source>Select Version Control System</source> <translation>Seleccion el Sistema de control de versiones (VCS)</translation> </message> <message> - <location filename="../Project/Project.py" line="3164" /> - <location filename="../Project/Project.py" line="3087" /> + <location filename="../Project/Project.py" line="3165" /> + <location filename="../Project/Project.py" line="3088" /> <source>Would you like to edit the VCS command options?</source> <translation>¿Le gustaría editar las opciones de comando para VCS?</translation> </message> <message> - <location filename="../Project/Project.py" line="3103" /> + <location filename="../Project/Project.py" line="3104" /> <source>Shall the project file be added to the repository?</source> <translation>¿Debe añadirse el archivo de proyecto al repositorio?</translation> </message> <message> - <location filename="../Project/Project.py" line="3140" /> - <location filename="../Project/Project.py" line="3129" /> + <location filename="../Project/Project.py" line="3141" /> + <location filename="../Project/Project.py" line="3130" /> <source>None</source> <translation>Ninguno</translation> </message> <message> - <location filename="../Project/Project.py" line="3135" /> + <location filename="../Project/Project.py" line="3136" /> <source>Select version control system for the project</source> <translation>Seleccione el sistema de control de versiones para el proyecto</translation> </message> <message> - <location filename="../Project/Project.py" line="3346" /> - <source>Translation Pattern</source> - <translation>Patrón de Traducción</translation> - </message> - <message> <location filename="../Project/Project.py" line="3347" /> + <source>Translation Pattern</source> + <translation>Patrón de Traducción</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3348" /> <source>Enter the path pattern for translation files (use '%language%' in place of the language code):</source> <translation>Introduzca el patrón de ruta para los archivos de traducción (use '%language%' in lugar del código de idioma):</translation> </message> <message> - <location filename="../Project/Project.py" line="3649" /> + <location filename="../Project/Project.py" line="3650" /> <source>Open Project</source> <translation>Abrir proyecto</translation> </message> <message> - <location filename="../Project/Project.py" line="8035" /> - <location filename="../Project/Project.py" line="8029" /> - <location filename="../Project/Project.py" line="8019" /> - <location filename="../Project/Project.py" line="3885" /> - <location filename="../Project/Project.py" line="3875" /> - <location filename="../Project/Project.py" line="3651" /> + <location filename="../Project/Project.py" line="8036" /> + <location filename="../Project/Project.py" line="8030" /> + <location filename="../Project/Project.py" line="8020" /> + <location filename="../Project/Project.py" line="3886" /> + <location filename="../Project/Project.py" line="3876" /> + <location filename="../Project/Project.py" line="3652" /> <source>Project Files (*.epj)</source> <translation>Archivos de proyecto (*.epj)</translation> </message> <message> - <location filename="../Project/Project.py" line="3899" /> - <location filename="../Project/Project.py" line="3883" /> + <location filename="../Project/Project.py" line="3900" /> + <location filename="../Project/Project.py" line="3884" /> <source>Save Project</source> <translation>Guardar Proyecto</translation> </message> <message> - <location filename="../Project/Project.py" line="3938" /> - <source>Close Project</source> - <translation>Cerrar Proyecto</translation> - </message> - <message> <location filename="../Project/Project.py" line="3939" /> + <source>Close Project</source> + <translation>Cerrar Proyecto</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3940" /> <source>The current project has unsaved changes.</source> <translation>El proyecto actual tiene cambios sin guardar.</translation> </message> <message> - <location filename="../Project/Project.py" line="4139" /> - <location filename="../Project/Project.py" line="4103" /> + <location filename="../Project/Project.py" line="4140" /> + <location filename="../Project/Project.py" line="4104" /> <source>Syntax Errors Detected</source> <translation>Detectados Errores Sintácticos</translation> </message> <message numerus="yes"> - <location filename="../Project/Project.py" line="4140" /> - <location filename="../Project/Project.py" line="4104" /> + <location filename="../Project/Project.py" line="4141" /> + <location filename="../Project/Project.py" line="4105" /> <source>The project contains %n file(s) with syntax errors.</source> <translation> <numerusform>El archivo contiene %n archivo(s) con errores de sintaxis.</numerusform> @@ -63327,1268 +63332,1268 @@ </translation> </message> <message> - <location filename="../Project/Project.py" line="4798" /> + <location filename="../Project/Project.py" line="4799" /> <source>New project</source> <translation>Proyecto nuevo</translation> </message> <message> - <location filename="../Project/Project.py" line="4800" /> + <location filename="../Project/Project.py" line="4801" /> <source>&New...</source> <translation>&Nuevo...</translation> </message> <message> - <location filename="../Project/Project.py" line="4806" /> + <location filename="../Project/Project.py" line="4807" /> <source>Generate a new project</source> <translation>Generar un nuevo proyecto</translation> </message> <message> - <location filename="../Project/Project.py" line="4808" /> + <location filename="../Project/Project.py" line="4809" /> <source><b>New...</b><p>This opens a dialog for entering the info for a new project.</p></source> <translation><b>Nuevo...</b><p>Abre un diálogo para introducir la información para un nuevo proyecto.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4818" /> + <location filename="../Project/Project.py" line="4819" /> <source>Open project</source> <translation>Abrir proyecto</translation> </message> <message> - <location filename="../Project/Project.py" line="4820" /> + <location filename="../Project/Project.py" line="4821" /> <source>&Open...</source> <translation>&Abrir...</translation> </message> <message> - <location filename="../Project/Project.py" line="4826" /> + <location filename="../Project/Project.py" line="4827" /> <source>Open an existing project</source> <translation>Abrir un proyecto existente</translation> </message> <message> - <location filename="../Project/Project.py" line="4828" /> + <location filename="../Project/Project.py" line="4829" /> <source><b>Open...</b><p>This opens an existing project.</p></source> <translation><b>Abrir...</b><p>Abre un proyecto existente..</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4834" /> + <location filename="../Project/Project.py" line="4835" /> <source>Open remote project</source> <translation>Abrir proyecto remoto</translation> </message> <message> - <location filename="../Project/Project.py" line="4836" /> + <location filename="../Project/Project.py" line="4837" /> <source>Open (Remote)...</source> <translation>Abrir (Remoto)...</translation> </message> <message> - <location filename="../Project/Project.py" line="4842" /> + <location filename="../Project/Project.py" line="4843" /> <source>Open an existing remote project</source> <translation>Abrir un proyecto remoto existente</translation> </message> <message> - <location filename="../Project/Project.py" line="4844" /> + <location filename="../Project/Project.py" line="4845" /> <source><b>Open (Remote)...</b><p>This opens an existing remote project.</p></source> <translation><b>Abrir (Remoto)...</b><p>Esto abre un proyecto remoto existente..</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4853" /> + <location filename="../Project/Project.py" line="4854" /> <source>Reload project</source> <translation>Recargar proyecto</translation> </message> <message> - <location filename="../Project/Project.py" line="4855" /> + <location filename="../Project/Project.py" line="4856" /> <source>Re&load</source> <translation>Re&cargar</translation> </message> <message> - <location filename="../Project/Project.py" line="4861" /> + <location filename="../Project/Project.py" line="4862" /> <source>Reload the current project</source> <translation>Regargar el proyecto actual</translation> </message> <message> - <location filename="../Project/Project.py" line="4863" /> + <location filename="../Project/Project.py" line="4864" /> <source><b>Reload</b><p>This reloads the current project.</p></source> <translation><b>Recargar</b><p>Esto recarga el proyecto actual.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4869" /> + <location filename="../Project/Project.py" line="4870" /> <source>Close project</source> <translation>Cerrar proyecto</translation> </message> <message> - <location filename="../Project/Project.py" line="4871" /> + <location filename="../Project/Project.py" line="4872" /> <source>&Close</source> <translation>&Cerrar</translation> </message> <message> - <location filename="../Project/Project.py" line="4877" /> + <location filename="../Project/Project.py" line="4878" /> <source>Close the current project</source> <translation>Cierra el proyecto actual</translation> </message> <message> - <location filename="../Project/Project.py" line="4879" /> + <location filename="../Project/Project.py" line="4880" /> <source><b>Close</b><p>This closes the current project.</p></source> <translation><b>Cerrar</b><p>Cierra el proyecto actualt.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4885" /> + <location filename="../Project/Project.py" line="4886" /> <source>Save project</source> <translation>Guardar proyecto</translation> </message> <message> - <location filename="../Project/Project.py" line="5182" /> - <location filename="../Project/Project.py" line="4887" /> + <location filename="../Project/Project.py" line="5183" /> + <location filename="../Project/Project.py" line="4888" /> <source>&Save</source> <translation>&Guardar</translation> </message> <message> - <location filename="../Project/Project.py" line="4893" /> + <location filename="../Project/Project.py" line="4894" /> <source>Save the current project</source> <translation>Guarda el proyecto actual</translation> </message> <message> - <location filename="../Project/Project.py" line="4895" /> + <location filename="../Project/Project.py" line="4896" /> <source><b>Save</b><p>This saves the current project.</p></source> <translation><b>Guardar</b><p>Guarda el proyecto actual.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4901" /> + <location filename="../Project/Project.py" line="4902" /> <source>Save project as</source> <translation>Guardar proyecto como</translation> </message> <message> - <location filename="../Project/Project.py" line="4903" /> + <location filename="../Project/Project.py" line="4904" /> <source>Save &as...</source> <translation>Guardar co&mo...</translation> </message> <message> - <location filename="../Project/Project.py" line="4909" /> + <location filename="../Project/Project.py" line="4910" /> <source>Save the current project to a new file</source> <translation>Guardar el proyecto actual en un nuevo archivo</translation> </message> <message> - <location filename="../Project/Project.py" line="4911" /> + <location filename="../Project/Project.py" line="4912" /> <source><b>Save as</b><p>This saves the current project to a new file.</p></source> <translation><b>Guardar como</b><p>Guarda el proyecto en otro archivo.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4920" /> + <location filename="../Project/Project.py" line="4921" /> <source>Save project as (Remote)</source> <translation>Guardar proyecto como (Remoto)</translation> </message> <message> - <location filename="../Project/Project.py" line="4922" /> + <location filename="../Project/Project.py" line="4923" /> <source>Save as (Remote)...</source> <translation>Guardar como (Remoto)...</translation> </message> <message> - <location filename="../Project/Project.py" line="4929" /> + <location filename="../Project/Project.py" line="4930" /> <source>Save the current project to a new remote file</source> <translation>Guardar el proyecto actual a un nuevo archivo remoto</translation> </message> <message> - <location filename="../Project/Project.py" line="4932" /> + <location filename="../Project/Project.py" line="4933" /> <source><b>Save as (Remote)</b><p>This saves the current project to a new remote file.</p></source> <translation><b>Guardar como (Remoto)</b><p>Esto guarda el proyecto actual en un nuevo archivo remoto.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4948" /> + <location filename="../Project/Project.py" line="4949" /> <source>Add files to project</source> <translation>Agregar archivos al proyecto</translation> </message> <message> - <location filename="../Project/Project.py" line="4950" /> + <location filename="../Project/Project.py" line="4951" /> <source>Add &files...</source> <translation>&Agregar archivos...</translation> </message> <message> - <location filename="../Project/Project.py" line="4956" /> + <location filename="../Project/Project.py" line="4957" /> <source>Add files to the current project</source> <translation>Añadir archivos al proyecto actual</translation> </message> <message> - <location filename="../Project/Project.py" line="4958" /> + <location filename="../Project/Project.py" line="4959" /> <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>Añadir archivos...</b><p>Abre un diálogo para añadir archivos al proyecto actual. El lugar donde se van a añadir es determinado por la extensión del nombre de archivo.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4969" /> + <location filename="../Project/Project.py" line="4970" /> <source>Add directory to project</source> <translation>Agregar directorio al proyecto</translation> </message> <message> - <location filename="../Project/Project.py" line="4971" /> + <location filename="../Project/Project.py" line="4972" /> <source>Add directory...</source> <translation>Agregar directorio...</translation> </message> <message> - <location filename="../Project/Project.py" line="4978" /> + <location filename="../Project/Project.py" line="4979" /> <source>Add a directory to the current project</source> <translation>Agregar directorio al proyecto actual</translation> </message> <message> - <location filename="../Project/Project.py" line="4981" /> + <location filename="../Project/Project.py" line="4982" /> <source><b>Add directory...</b><p>This opens a dialog for adding a directory to the current project.</p></source> <translation><b>Añadir directorio...</b><p>Abre un diálogo para añadir un directorio al proyecto actual.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4991" /> + <location filename="../Project/Project.py" line="4992" /> <source>Add translation to project</source> <translation>Añadir traducción al proyecto</translation> </message> <message> - <location filename="../Project/Project.py" line="4993" /> + <location filename="../Project/Project.py" line="4994" /> <source>Add &translation...</source> <translation>Añadir &Traducción...</translation> </message> <message> - <location filename="../Project/Project.py" line="5000" /> + <location filename="../Project/Project.py" line="5001" /> <source>Add a translation to the current project</source> <translation>Añadir una traducción al proyecto actual</translation> </message> <message> - <location filename="../Project/Project.py" line="5003" /> + <location filename="../Project/Project.py" line="5004" /> <source><b>Add translation...</b><p>This opens a dialog for add a translation to the current project.</p></source> <translation><b>Añadir traducción...</b><p>Abre un diálogo para añadir una traducción al proyecto actual.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5013" /> - <source>Search new files</source> - <translation>Buscar archivos nuevos</translation> - </message> - <message> <location filename="../Project/Project.py" line="5014" /> + <source>Search new files</source> + <translation>Buscar archivos nuevos</translation> + </message> + <message> + <location filename="../Project/Project.py" line="5015" /> <source>Searc&h new files...</source> <translation>Bus&car archivos nuevos...</translation> </message> <message> - <location filename="../Project/Project.py" line="5020" /> + <location filename="../Project/Project.py" line="5021" /> <source>Search new files in the project directory.</source> <translation>Bucar nuevos archivos en el directorio de proyecto.</translation> </message> <message> - <location filename="../Project/Project.py" line="5022" /> + <location filename="../Project/Project.py" line="5023" /> <source><b>Search new files...</b><p>This searches for new files (sources, forms, ...) in the project directory and registered subdirectories.</p></source> <translation><b>Buscar nuevos archivos...</b><p>Busca nuevos archivos (fuentes, forms, ...) en el directorio del proyecto y en los subdirectorios registrados.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5032" /> - <source>Search Project File</source> - <translation>Buscar Archivo en Proyecto</translation> - </message> - <message> <location filename="../Project/Project.py" line="5033" /> - <source>Search Project File...</source> - <translation>Buscar Archivo en Proyecto...</translation> + <source>Search Project File</source> + <translation>Buscar Archivo en Proyecto</translation> </message> <message> <location filename="../Project/Project.py" line="5034" /> + <source>Search Project File...</source> + <translation>Buscar Archivo en Proyecto...</translation> + </message> + <message> + <location filename="../Project/Project.py" line="5035" /> <source>Alt+Ctrl+P</source> <comment>Project|Search Project File</comment> <translation>Alt+Ctrl+P</translation> </message> <message> - <location filename="../Project/Project.py" line="5039" /> + <location filename="../Project/Project.py" line="5040" /> <source>Search for a file in the project list of files.</source> <translation>Bucar un archivo en el listado de archivos del proyecto.</translation> </message> <message> - <location filename="../Project/Project.py" line="5041" /> + <location filename="../Project/Project.py" line="5042" /> <source><b>Search Project File</b><p>This searches for a file in the project list of files.</p></source> <translation><b>Buscar Archivo en el Proyecto</b><p>Busca un archivo en el listado de archivos del proyecto.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5050" /> + <location filename="../Project/Project.py" line="5051" /> <source>Project properties</source> <translation>Propiedades del proyecto</translation> </message> <message> - <location filename="../Project/Project.py" line="5052" /> + <location filename="../Project/Project.py" line="5053" /> <source>&Properties...</source> <translation>&Propiedades...</translation> </message> <message> - <location filename="../Project/Project.py" line="5058" /> + <location filename="../Project/Project.py" line="5059" /> <source>Show the project properties</source> <translation>Ver las propiedades del proyecto</translation> </message> <message> - <location filename="../Project/Project.py" line="5060" /> + <location filename="../Project/Project.py" line="5061" /> <source><b>Properties...</b><p>This shows a dialog to edit the project properties.</p></source> <translation><b>Propiedades...</b><p>Muestra un diálogo para editar las propiedades del proyecto.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5069" /> + <location filename="../Project/Project.py" line="5070" /> <source>User project properties</source> <translation>Propiedades del usuario del proyecto</translation> </message> <message> - <location filename="../Project/Project.py" line="5071" /> + <location filename="../Project/Project.py" line="5072" /> <source>&User Properties...</source> <translation>Propiedades del &Usuario...</translation> </message> <message> - <location filename="../Project/Project.py" line="5078" /> + <location filename="../Project/Project.py" line="5079" /> <source>Show the user specific project properties</source> <translation>Muestra propiedades del proyecto específicas del usuario</translation> </message> <message> - <location filename="../Project/Project.py" line="5081" /> + <location filename="../Project/Project.py" line="5082" /> <source><b>User Properties...</b><p>This shows a dialog to edit the user specific project properties.</p></source> <translation><b>Propiedades del Usuario...</b><p>Abre un diálogo par editar las propiedades del proyecto específicas del usuario.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5091" /> - <source>Filetype Associations</source> - <translation>Asociación de tipos de archivo</translation> - </message> - <message> <location filename="../Project/Project.py" line="5092" /> + <source>Filetype Associations</source> + <translation>Asociación de tipos de archivo</translation> + </message> + <message> + <location filename="../Project/Project.py" line="5093" /> <source>Filetype Associations...</source> <translation>Asociación de tipos de archivo...</translation> </message> <message> - <location filename="../Project/Project.py" line="5099" /> + <location filename="../Project/Project.py" line="5100" /> <source>Show the project file type associations</source> <translation>Mostrar asociaciones de tipo de archivo del proyecto</translation> </message> <message> - <location filename="../Project/Project.py" line="5102" /> + <location filename="../Project/Project.py" line="5103" /> <source><b>Filetype Associations...</b><p>This shows a dialog to edit the file type associations of the project. These associations determine the type (source, form, interface, protocol 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>Asociaciones de tipos de archivo...</b><p>Muestra un diálogo para editar asociaciones de tipos de archivo del proyecto. Estas asociaciones determinan el tipo (fuentes, formulario, interfaces, protocolos u otros) con un patrón de nombre de archivo. Se usan al añadir archivos al proyecto y al realizar una búsqueda de nuevos archivos.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5115" /> - <source>Lexer Associations</source> - <translation>Asociaciones de Analizador Léxico</translation> - </message> - <message> <location filename="../Project/Project.py" line="5116" /> + <source>Lexer Associations</source> + <translation>Asociaciones de Analizador Léxico</translation> + </message> + <message> + <location filename="../Project/Project.py" line="5117" /> <source>Lexer Associations...</source> <translation>Asociaciones de Analizador Léxico...</translation> </message> <message> - <location filename="../Project/Project.py" line="5123" /> + <location filename="../Project/Project.py" line="5124" /> <source>Show the project lexer associations (overriding defaults)</source> <translation>Ver las asociaciones de analizador léxico del proyecto (sobreescribiendo valores por defecto)</translation> </message> <message> - <location filename="../Project/Project.py" line="5126" /> + <location filename="../Project/Project.py" line="5127" /> <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>Asociaciones de Analizador Léxico ...</b><p>Muestra un diálogo para editar las asociaciones de analizador léxico del proyecto. Estas asociaciones sobreescriben las asociaciones de analizador léxico globales. Los analizadores léxicos se utilizan para resaltar el texto en el editor.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5144" /> - <source>Debugger Properties</source> - <translation>Propiedades del depurador</translation> - </message> - <message> <location filename="../Project/Project.py" line="5145" /> + <source>Debugger Properties</source> + <translation>Propiedades del depurador</translation> + </message> + <message> + <location filename="../Project/Project.py" line="5146" /> <source>Debugger &Properties...</source> <translation>&Propiedades del depurador...</translation> </message> <message> - <location filename="../Project/Project.py" line="5151" /> + <location filename="../Project/Project.py" line="5152" /> <source>Show the debugger properties</source> <translation>Muestra las propiedades del depurador</translation> </message> <message> - <location filename="../Project/Project.py" line="5153" /> + <location filename="../Project/Project.py" line="5154" /> <source><b>Debugger Properties...</b><p>This shows a dialog to edit project specific debugger settings.</p></source> <translation><b>Propiedades del Depurador...</b><p>Abre un diálogo par editar las propiedades del depurador específicas del proyecto.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5163" /> - <source>Load</source> - <translation>Cargar</translation> - </message> - <message> <location filename="../Project/Project.py" line="5164" /> + <source>Load</source> + <translation>Cargar</translation> + </message> + <message> + <location filename="../Project/Project.py" line="5165" /> <source>&Load</source> <translation>&Cargar</translation> </message> <message> - <location filename="../Project/Project.py" line="5170" /> + <location filename="../Project/Project.py" line="5171" /> <source>Load the debugger properties</source> <translation>Cargar las propiedades del depurador</translation> </message> <message> - <location filename="../Project/Project.py" line="5172" /> + <location filename="../Project/Project.py" line="5173" /> <source><b>Load Debugger Properties</b><p>This loads the project specific debugger settings.</p></source> <translation><b>Cargar Propiedades del Depurador</b><p>Carga las opciones de configuración del depurador específicas del proyecto.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5181" /> + <location filename="../Project/Project.py" line="5182" /> <source>Save</source> <translation>Guardar</translation> </message> <message> - <location filename="../Project/Project.py" line="5188" /> + <location filename="../Project/Project.py" line="5189" /> <source>Save the debugger properties</source> <translation>Guardar propiedades del depurador</translation> </message> <message> - <location filename="../Project/Project.py" line="5190" /> + <location filename="../Project/Project.py" line="5191" /> <source><b>Save Debugger Properties</b><p>This saves the project specific debugger settings.</p></source> <translation><b>Guardar Propiedades del Depurador</b><p>Guarda las opciones de configuración del depurador específicas del proyecto.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5199" /> - <source>Delete</source> - <translation>Borrar</translation> - </message> - <message> <location filename="../Project/Project.py" line="5200" /> + <source>Delete</source> + <translation>Borrar</translation> + </message> + <message> + <location filename="../Project/Project.py" line="5201" /> <source>&Delete</source> <translation>&Borrar</translation> </message> <message> - <location filename="../Project/Project.py" line="5206" /> + <location filename="../Project/Project.py" line="5207" /> <source>Delete the debugger properties</source> <translation>Borrar las propiedades del depurador</translation> </message> <message> - <location filename="../Project/Project.py" line="5208" /> + <location filename="../Project/Project.py" line="5209" /> <source><b>Delete Debugger Properties</b><p>This deletes the file containing the project specific debugger settings.</p></source> <translation><b>Borrar Propiedades del Depurador</b><p>Borra el archivo que contiene las opciones de configuración del depurador específicas del proyecto.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5218" /> - <source>Reset</source> - <translation>Reiniciar</translation> - </message> - <message> <location filename="../Project/Project.py" line="5219" /> + <source>Reset</source> + <translation>Reiniciar</translation> + </message> + <message> + <location filename="../Project/Project.py" line="5220" /> <source>&Reset</source> <translation>&Reiniciar</translation> </message> <message> - <location filename="../Project/Project.py" line="5225" /> + <location filename="../Project/Project.py" line="5226" /> <source>Reset the debugger properties</source> <translation>Restablecer las propiedades del depurador</translation> </message> <message> - <location filename="../Project/Project.py" line="5227" /> + <location filename="../Project/Project.py" line="5228" /> <source><b>Reset Debugger Properties</b><p>This resets the project specific debugger settings.</p></source> <translation><b>Restablecer Propiedades del Depurador</b><p>Restablece las opciones de configuración del depurador específicas del proyecto.</p></translation> </message> <message> + <location filename="../Project/Project.py" line="5244" /> <location filename="../Project/Project.py" line="5243" /> - <location filename="../Project/Project.py" line="5242" /> <source>Load session</source> <translation>Cargar sesión</translation> </message> <message> - <location filename="../Project/Project.py" line="5249" /> + <location filename="../Project/Project.py" line="5250" /> <source>Load the projects session file.</source> <translation>Cargar archivo de sesión de proyectos.</translation> </message> <message> - <location filename="../Project/Project.py" line="5251" /> + <location filename="../Project/Project.py" line="5252" /> <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>Cargar sesión</b><p>Carga el archivo de sesión de proyecto. La sesión consiste en los datos siguientes.<br>- todos los archivos de fuentes abiertos<br>- todos los puntos de interrupción<br>- todos los argumentos de línea de comandos<br>- el directorio de trabajo<br>- el flag de reporte de excepciones</p></translation> </message> <message> + <location filename="../Project/Project.py" line="5268" /> <location filename="../Project/Project.py" line="5267" /> - <location filename="../Project/Project.py" line="5266" /> <source>Save session</source> <translation>Guardar sesión</translation> </message> <message> - <location filename="../Project/Project.py" line="5273" /> + <location filename="../Project/Project.py" line="5274" /> <source>Save the projects session file.</source> <translation>Guardar archivos de sessión de proyecto.</translation> </message> <message> - <location filename="../Project/Project.py" line="5275" /> + <location filename="../Project/Project.py" line="5276" /> <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>Guardar sesión</b><p>Guarda el archivo de sesión de proyecto. La sesión consiste en los datos siguientes.<br>- todos los archivos de fuentes abiertos<br>- todos los puntos de interrupción<br>- todos los argumentos de línea de comandos<br>- el directorio de trabajo<br>- el flag de reporte de excepciones</p></translation> </message> <message> + <location filename="../Project/Project.py" line="5292" /> <location filename="../Project/Project.py" line="5291" /> - <location filename="../Project/Project.py" line="5290" /> <source>Delete session</source> <translation>Borrar sesión</translation> </message> <message> - <location filename="../Project/Project.py" line="5297" /> + <location filename="../Project/Project.py" line="5298" /> <source>Delete the projects session file.</source> <translation>Borrar el archivo de sesión de proyecto.</translation> </message> <message> - <location filename="../Project/Project.py" line="5299" /> + <location filename="../Project/Project.py" line="5300" /> <source><b>Delete session</b><p>This deletes the projects session file</p></source> <translation><b>Borrar sesión</b><p>Borra el archivo de sesión del proyecto</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5314" /> - <source>Code Metrics</source> - <translation>Métricas de código</translation> - </message> - <message> <location filename="../Project/Project.py" line="5315" /> + <source>Code Metrics</source> + <translation>Métricas de código</translation> + </message> + <message> + <location filename="../Project/Project.py" line="5316" /> <source>&Code Metrics...</source> <translation>Métricas de &código...</translation> </message> <message> - <location filename="../Project/Project.py" line="5322" /> + <location filename="../Project/Project.py" line="5323" /> <source>Show some code metrics for the project.</source> <translation>Muestra algunas métricas del código para este proyecto.</translation> </message> <message> - <location filename="../Project/Project.py" line="5325" /> + <location filename="../Project/Project.py" line="5326" /> <source><b>Code Metrics...</b><p>This shows some code metrics for all Python files in the project.</p></source> <translation><b>Métricas de Código...</b><p>Muestra algunas métricas de código para todos los archivos Python en el proyecto.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5335" /> - <source>Python Code Coverage</source> - <translation>Cobertura de Código Python</translation> - </message> - <message> <location filename="../Project/Project.py" line="5336" /> + <source>Python Code Coverage</source> + <translation>Cobertura de Código Python</translation> + </message> + <message> + <location filename="../Project/Project.py" line="5337" /> <source>Code Co&verage...</source> <translation>Co&bertura de código...</translation> </message> <message> - <location filename="../Project/Project.py" line="5343" /> + <location filename="../Project/Project.py" line="5344" /> <source>Show code coverage information for the project.</source> <translation>Muestra información de cobertura de código para el proyecto.</translation> </message> <message> - <location filename="../Project/Project.py" line="5346" /> + <location filename="../Project/Project.py" line="5347" /> <source><b>Code Coverage...</b><p>This shows the code coverage information for all Python files in the project.</p></source> <translation><b>Cobertura de Código...</b><p>Muestra la información de cobertura de código para todos los archivos Python en el proyecto.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="6780" /> - <location filename="../Project/Project.py" line="6767" /> - <location filename="../Project/Project.py" line="5356" /> + <location filename="../Project/Project.py" line="6781" /> + <location filename="../Project/Project.py" line="6768" /> + <location filename="../Project/Project.py" line="5357" /> <source>Profile Data</source> <translation>Datos de perfil</translation> </message> <message> - <location filename="../Project/Project.py" line="5357" /> + <location filename="../Project/Project.py" line="5358" /> <source>&Profile Data...</source> <translation>Datos de &pefil...</translation> </message> <message> - <location filename="../Project/Project.py" line="5364" /> + <location filename="../Project/Project.py" line="5365" /> <source>Show profiling data for the project.</source> <translation>Mostrar datos de profiling para el proyecto.</translation> </message> <message> - <location filename="../Project/Project.py" line="5367" /> + <location filename="../Project/Project.py" line="5368" /> <source><b>Profile Data...</b><p>This shows the profiling data for the project.</p></source> <translation><b>Datos de Profiling...</b><p>Muestra datos de profiling para el proyecto.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="6832" /> - <location filename="../Project/Project.py" line="5382" /> + <location filename="../Project/Project.py" line="6833" /> + <location filename="../Project/Project.py" line="5383" /> <source>Application Diagram</source> <translation>Diagrama de Aplicación</translation> </message> <message> - <location filename="../Project/Project.py" line="5383" /> + <location filename="../Project/Project.py" line="5384" /> <source>&Application Diagram...</source> <translation>Diagrama de &Aplicación...</translation> </message> <message> - <location filename="../Project/Project.py" line="5390" /> + <location filename="../Project/Project.py" line="5391" /> <source>Show a diagram of the project.</source> <translation>Mostrar diagrama del proyecto.</translation> </message> <message> - <location filename="../Project/Project.py" line="5393" /> + <location filename="../Project/Project.py" line="5394" /> <source><b>Application Diagram...</b><p>This shows a diagram of the project.</p></source> <translation><b>Diagrama de Aplicación...</b><p>Muestra un diagrama del proyecto.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5402" /> - <source>Load Diagram</source> - <translation>Cargar Diagrama</translation> - </message> - <message> <location filename="../Project/Project.py" line="5403" /> + <source>Load Diagram</source> + <translation>Cargar Diagrama</translation> + </message> + <message> + <location filename="../Project/Project.py" line="5404" /> <source>&Load Diagram...</source> <translation>&Cargar Diagrama...</translation> </message> <message> - <location filename="../Project/Project.py" line="5409" /> + <location filename="../Project/Project.py" line="5410" /> <source>Load a diagram from file.</source> <translation>CArgar diagrama desde archivo.</translation> </message> <message> - <location filename="../Project/Project.py" line="5411" /> + <location filename="../Project/Project.py" line="5412" /> <source><b>Load Diagram...</b><p>This loads a diagram from file.</p></source> <translation><b>Cargar Diagrama...</b><p>Carga un diagrama desde un archivo.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="7000" /> - <location filename="../Project/Project.py" line="6945" /> - <location filename="../Project/Project.py" line="5426" /> + <location filename="../Project/Project.py" line="7001" /> + <location filename="../Project/Project.py" line="6946" /> + <location filename="../Project/Project.py" line="5427" /> <source>Create Package List</source> <translation>Crear Lista del Paquete</translation> </message> <message> - <location filename="../Project/Project.py" line="5428" /> + <location filename="../Project/Project.py" line="5429" /> <source>Create &Package List</source> <translation>Crear &Package List</translation> </message> <message> - <location filename="../Project/Project.py" line="5435" /> + <location filename="../Project/Project.py" line="5436" /> <source>Create an initial PKGLIST file for an eric plugin.</source> <translation>Crear un archivo inicial PKGLIST para un plugin para eric.</translation> </message> <message> - <location filename="../Project/Project.py" line="5438" /> + <location filename="../Project/Project.py" line="5439" /> <source><b>Create Package List</b><p>This creates an initial list of files to include in an eric plugin archive. The list is created from the project file.</p></source> <translation><b>Crear Package List</b><p>Crea una lista inicial de archivos para incluir en un archivo de plugin para eric. Esta lista se crea a partir del archivo de proyecto.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="7070" /> - <location filename="../Project/Project.py" line="5449" /> + <location filename="../Project/Project.py" line="7071" /> + <location filename="../Project/Project.py" line="5450" /> <source>Create Plugin Archives</source> <translation>Crear Archivos de Plugin</translation> </message> <message> - <location filename="../Project/Project.py" line="5451" /> + <location filename="../Project/Project.py" line="5452" /> <source>Create Plugin &Archives</source> <translation>Crear &Archivos de Plugin</translation> </message> <message> - <location filename="../Project/Project.py" line="5457" /> + <location filename="../Project/Project.py" line="5458" /> <source>Create eric plugin archive files.</source> <translation>Crear ficheros para archivo de plugin de eric.</translation> </message> <message> - <location filename="../Project/Project.py" line="5459" /> + <location filename="../Project/Project.py" line="5460" /> <source><b>Create Plugin Archives</b><p>This creates eric plugin archive files using the list of files given in a PKGLIST* file. The archive name is built from the main script name if not designated in the package list file.</p></source> <translation><b>Crear Archivo de Plugin</b><p>Crea ficheros para archivo de plugin de eric utilizando el listado de ficheros proporcionados en un archivo PKGLIST*. El nombre de archivo se crea a partir del nombre del script principal si no se desinga uno en el archivo de lista de package.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5471" /> + <location filename="../Project/Project.py" line="5472" /> <source>Create Plugin Archives (Snapshot)</source> <translation>Crear Archivos de Plugin (Snapshot)</translation> </message> <message> - <location filename="../Project/Project.py" line="5473" /> + <location filename="../Project/Project.py" line="5474" /> <source>Create Plugin Archives (&Snapshot)</source> <translation>Crear Archivos de Plugin (&Snapshot)</translation> </message> <message> - <location filename="../Project/Project.py" line="5480" /> + <location filename="../Project/Project.py" line="5481" /> <source>Create eric plugin archive files (snapshot releases).</source> <translation>Crear ficheros para archivo de plugin de eric (snapshot releases).</translation> </message> <message> - <location filename="../Project/Project.py" line="5483" /> + <location filename="../Project/Project.py" line="5484" /> <source><b>Create Plugin Archives (Snapshot)</b><p>This creates eric plugin archive files using the list of files given in the PKGLIST* file. The archive name is built from the main script name if not designated in the package list file. The version entry of the main script is modified to reflect a snapshot release.</p></source> <translation><b>Crear Archivos de Plugin (Snapshot)</b><p>Crea ficheros para archivo de plugin de eric usando el listado de ficheros dado en un archivo PKGLIST*. El nombre del archivo se construye a partir del nombre del script principal si no se designa uno en el archivo de package list. La entrada de versión del script principal se modifica para reflejar una snapshot release.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="7512" /> - <location filename="../Project/Project.py" line="7483" /> - <location filename="../Project/Project.py" line="7437" /> - <location filename="../Project/Project.py" line="7389" /> - <location filename="../Project/Project.py" line="5502" /> + <location filename="../Project/Project.py" line="7513" /> + <location filename="../Project/Project.py" line="7484" /> + <location filename="../Project/Project.py" line="7438" /> + <location filename="../Project/Project.py" line="7390" /> + <location filename="../Project/Project.py" line="5503" /> <source>Execute Make</source> <translation>Ejecutar Make</translation> </message> <message> - <location filename="../Project/Project.py" line="5503" /> + <location filename="../Project/Project.py" line="5504" /> <source>&Execute Make</source> <translation>&Ejecutar Make</translation> </message> <message> - <location filename="../Project/Project.py" line="5509" /> + <location filename="../Project/Project.py" line="5510" /> <source>Perform a 'make' run.</source> <translation>Ejecutar un 'make'.</translation> </message> <message> - <location filename="../Project/Project.py" line="5511" /> + <location filename="../Project/Project.py" line="5512" /> <source><b>Execute Make</b><p>This performs a 'make' run to rebuild the configured target.</p></source> <translation><b>Ejecutar Make</b><p>Ejecuta un 'make' para reconstruir el target configurado.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="7489" /> - <location filename="../Project/Project.py" line="5521" /> + <location filename="../Project/Project.py" line="7490" /> + <location filename="../Project/Project.py" line="5522" /> <source>Test for Changes</source> <translation>Comprobar Cambios</translation> </message> <message> - <location filename="../Project/Project.py" line="5522" /> + <location filename="../Project/Project.py" line="5523" /> <source>&Test for Changes</source> <translation>&Comprobar Cambios</translation> </message> <message> - <location filename="../Project/Project.py" line="5529" /> + <location filename="../Project/Project.py" line="5530" /> <source>Question 'make', if a rebuild is needed.</source> <translation>Preguntar a 'make' si es necesario reconstruir.</translation> </message> <message> - <location filename="../Project/Project.py" line="5532" /> + <location filename="../Project/Project.py" line="5533" /> <source><b>Test for Changes</b><p>This questions 'make', if a rebuild of the configured target is necessary.</p></source> <translation><b>Comprobar Cambios</b><p>Pregunta a 'make si es necesario reconstruir el target configurado.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5550" /> - <source>Create SBOM File</source> - <translation>Crear Archivo SBOM</translation> - </message> - <message> <location filename="../Project/Project.py" line="5551" /> + <source>Create SBOM File</source> + <translation>Crear Archivo SBOM</translation> + </message> + <message> + <location filename="../Project/Project.py" line="5552" /> <source>Create &SBOM File</source> <translation>Crear Archivo &SBOM</translation> </message> <message> - <location filename="../Project/Project.py" line="5558" /> + <location filename="../Project/Project.py" line="5559" /> <source>Create a SBOM file of the project dependencies.</source> <translation>Crear un archivo SBOM de dependencias del proyecto.</translation> </message> <message> - <location filename="../Project/Project.py" line="5561" /> + <location filename="../Project/Project.py" line="5562" /> <source><b>Create SBOM File</b><p>This allows the creation of a SBOM file of the project dependencies. This may be based on various input sources and will be saved as a CycloneDX SBOM file.</p></source> <translation><b>Crear Archivo SBOM</b><p>Esto permite la creación de un archivo SBOM de las dependencias del proyecto. Puede basarse en varias fuentes de input y se guardará como un archivo CycloneDX SBOM.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5572" /> - <source>Clear Byte Code Caches</source> - <translation>Limpiar Cachés de Byte Code</translation> - </message> - <message> <location filename="../Project/Project.py" line="5573" /> + <source>Clear Byte Code Caches</source> + <translation>Limpiar Cachés de Byte Code</translation> + </message> + <message> + <location filename="../Project/Project.py" line="5574" /> <source>Clear Byte Code &Caches</source> <translation>Limpiar &Cachés de Byte Code</translation> </message> <message> - <location filename="../Project/Project.py" line="5580" /> + <location filename="../Project/Project.py" line="5581" /> <source>Clear the byte code caches of the project.</source> <translation>Limpiar las cachés de byte code del proyecto.</translation> </message> <message> - <location filename="../Project/Project.py" line="5583" /> + <location filename="../Project/Project.py" line="5584" /> <source><b>Clear Byte Code Caches</b><p>This deletes all directories containing byte code cache files.</p></source> <translation><b>Limpiar Cachés de Byte Code</b><p>Esto borra todos los directorios que contienen archivos de caché de byte code cache.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5599" /> - <source>About Black</source> - <translation>Acerca de Black</translation> - </message> - <message> <location filename="../Project/Project.py" line="5600" /> + <source>About Black</source> + <translation>Acerca de Black</translation> + </message> + <message> + <location filename="../Project/Project.py" line="5601" /> <source>&Black</source> <translation>&Black</translation> </message> <message> - <location filename="../Project/Project.py" line="5606" /> + <location filename="../Project/Project.py" line="5607" /> <source>Show some information about 'Black'.</source> <translation>Mostrar información acerca de 'Black'.</translation> </message> <message> - <location filename="../Project/Project.py" line="5608" /> + <location filename="../Project/Project.py" line="5609" /> <source><b>Black</b><p>This shows some information about the installed 'Black' tool.</p></source> <translation><b>Black</b><p>Esto muestra información acerca de la herramienta 'Black' instalada.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5620" /> - <source>Format Code</source> - <translation>Formatear Código</translation> - </message> - <message> <location filename="../Project/Project.py" line="5621" /> + <source>Format Code</source> + <translation>Formatear Código</translation> + </message> + <message> + <location filename="../Project/Project.py" line="5622" /> <source>&Format Code</source> <translation>&Formatear Código</translation> </message> <message> - <location filename="../Project/Project.py" line="5628" /> + <location filename="../Project/Project.py" line="5629" /> <source>Format the project sources with 'Black'.</source> <translation>Formatear las fuentes del proyecto con 'Black'.</translation> </message> <message> - <location filename="../Project/Project.py" line="5631" /> + <location filename="../Project/Project.py" line="5632" /> <source><b>Format Code</b><p>This shows a dialog to enter parameters for the formatting run and reformats the project sources using 'Black'.</p></source> <translation><b>Formatear Código</b><p>Muestra un díalogo para introducir parámetros para ejecutar el formato y reformatea las fuentes del proyecto usando 'Black'.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5643" /> - <source>Check Code Formatting</source> - <translation>Comprobar Formato de Código</translation> - </message> - <message> <location filename="../Project/Project.py" line="5644" /> + <source>Check Code Formatting</source> + <translation>Comprobar Formato de Código</translation> + </message> + <message> + <location filename="../Project/Project.py" line="5645" /> <source>&Check Code Formatting</source> <translation>&Comprobar Formato de Código</translation> </message> <message> - <location filename="../Project/Project.py" line="5651" /> + <location filename="../Project/Project.py" line="5652" /> <source>Check, if the project sources need to be reformatted with 'Black'.</source> <translation>Comprobar si se necesita reformatear las fuentes del proyecto con 'Black'.</translation> </message> <message> - <location filename="../Project/Project.py" line="5656" /> + <location filename="../Project/Project.py" line="5657" /> <source><b>Check Code Formatting</b><p>This shows a dialog to enter parameters for the format check run and performs a check, if the project sources need to be reformatted using 'Black'.</p></source> <translation><b>Comprobar Formato de Código</b><p>Muestra un diálogo para introducir parámetros de comprobación de formato y lleva a cabo una comprobación, si las fuentes del proyecto necesitan ser reformateadas utilizando 'Black'.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5669" /> - <source>Code Formatting Diff</source> - <translation>Diff de Formato de Código</translation> - </message> - <message> <location filename="../Project/Project.py" line="5670" /> + <source>Code Formatting Diff</source> + <translation>Diff de Formato de Código</translation> + </message> + <message> + <location filename="../Project/Project.py" line="5671" /> <source>Code Formatting &Diff</source> <translation>&Diff de Formato de Código</translation> </message> <message> - <location filename="../Project/Project.py" line="5677" /> + <location filename="../Project/Project.py" line="5678" /> <source>Generate a unified diff of potential project source reformatting with 'Black'.</source> <translation>Generar un diff unificado de reformateo potencial de fuentes del proyecto con 'Black'.</translation> </message> <message> - <location filename="../Project/Project.py" line="5683" /> + <location filename="../Project/Project.py" line="5684" /> <source><b>Diff Code Formatting</b><p>This shows a dialog to enter parameters for the format diff run and generates a unified diff of potential project source reformatting using 'Black'.</p></source> <translation><b>Diff de Formato de Código</b><p>Muestra un diálogo para introducir parámetros de diff de formato y genera un diff unificado de reformateo de fuentes del proyecto utilizando 'Black'.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5848" /> + <location filename="../Project/Project.py" line="5849" /> + <location filename="../Project/Project.py" line="5799" /> <location filename="../Project/Project.py" line="5798" /> - <location filename="../Project/Project.py" line="5797" /> + <location filename="../Project/Project.py" line="5698" /> <location filename="../Project/Project.py" line="5697" /> - <location filename="../Project/Project.py" line="5696" /> <source>Configure</source> <translation>Configurar</translation> </message> <message> - <location filename="../Project/Project.py" line="5704" /> + <location filename="../Project/Project.py" line="5705" /> <source>Enter the parameters for formatting the project sources with 'Black'.</source> <translation>Introducir los parámetros para el formateo de las fuentes del proyecto con 'Black'.</translation> </message> <message> - <location filename="../Project/Project.py" line="5709" /> + <location filename="../Project/Project.py" line="5710" /> <source><b>Configure</b><p>This shows a dialog to enter the parameters for formatting the project sources with 'Black'.</p></source> <translation><b>Configurar</b><p>Muestra un diálogo para introducir los parámetros de formateo de las fuentes del proyecto con 'Black'.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5725" /> - <source>About isort</source> - <translation>Acerca de isort</translation> - </message> - <message> <location filename="../Project/Project.py" line="5726" /> + <source>About isort</source> + <translation>Acerca de isort</translation> + </message> + <message> + <location filename="../Project/Project.py" line="5727" /> <source>&isort</source> <translation>&isort</translation> </message> <message> - <location filename="../Project/Project.py" line="5732" /> + <location filename="../Project/Project.py" line="5733" /> <source>Show some information about 'isort'.</source> <translation>Mostrar información acerca de 'isort'.</translation> </message> <message> - <location filename="../Project/Project.py" line="5734" /> + <location filename="../Project/Project.py" line="5735" /> <source><b>isort</b><p>This shows some information about the installed 'isort' tool.</p></source> <translation><b>isort</b><p>Esto mustra información acerade la herramienta instalada 'isort'.</p></translation> </message> <message> + <location filename="../Project/Project.py" line="5748" /> <location filename="../Project/Project.py" line="5747" /> - <location filename="../Project/Project.py" line="5746" /> <source>Sort Imports</source> <translation>Ordenar Imports</translation> </message> <message> - <location filename="../Project/Project.py" line="5754" /> + <location filename="../Project/Project.py" line="5755" /> <source>Sort the import statements of the project sources with 'isort'.</source> <translation>Ordenar las declaraciones import de las fuentes del proyecto con 'isort'.</translation> </message> <message> - <location filename="../Project/Project.py" line="5757" /> + <location filename="../Project/Project.py" line="5758" /> <source><b>Sort Imports</b><p>This shows a dialog to enter parameters for the imports sorting run and sorts the import statements of the project sources using 'isort'.</p></source> <translation><b>Ordenar Imports</b><p>Esto muestra un diálogo para introducir parámetros para ejecutar la ordenación de imports y ordena las declaraciones import del proyecto utilizando 'isort'.</p></translation> </message> <message> + <location filename="../Project/Project.py" line="5772" /> <location filename="../Project/Project.py" line="5771" /> - <location filename="../Project/Project.py" line="5770" /> <source>Imports Sorting Diff</source> <translation>Diff de Ordenacion de Imports</translation> </message> <message> - <location filename="../Project/Project.py" line="5778" /> + <location filename="../Project/Project.py" line="5779" /> <source>Generate a unified diff of potential project source imports resorting with 'isort'.</source> <translation>Generar un diff unificado de reordenación potencial de imports con 'isort' de las fuentes del proyecto.</translation> </message> <message> - <location filename="../Project/Project.py" line="5784" /> + <location filename="../Project/Project.py" line="5785" /> <source><b>Imports Sorting Diff</b><p>This shows a dialog to enter parameters for the imports sorting diff run and generates a unified diff of potential project source changes using 'isort'.</p></source> <translation><b>Diff de Ordenación de Imports</b><p>Esto muestra un diálogo para introducir los parámetros para ejecutar un diff de ordenación de imports y genera un diff unificado de cambios potenciales en las fuentes del proyecto utilizando 'isort'.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5805" /> + <location filename="../Project/Project.py" line="5806" /> <source>Enter the parameters for resorting the project sources import statements with 'isort'.</source> <translation>Introducir los parámetros para reordenar las declaraciones import en las fuentes del proyecto con 'isort'.</translation> </message> <message> - <location filename="../Project/Project.py" line="5811" /> + <location filename="../Project/Project.py" line="5812" /> <source><b>Configure</b><p>This shows a dialog to enter the parameters for resorting the import statements of the project sources with 'isort'.</p></source> <translation><b>Configurar</b><p>Esto muestra un diálogo para introducir los parámetros para reordenar las declaraciones import de las fuetnes del proyecto con 'isort'.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5827" /> - <source>Install Project</source> - <translation>Instalar Proyecto</translation> - </message> - <message> <location filename="../Project/Project.py" line="5828" /> + <source>Install Project</source> + <translation>Instalar Proyecto</translation> + </message> + <message> + <location filename="../Project/Project.py" line="5829" /> <source>&Install Project</source> <translation>&Instalar Proyecto</translation> </message> <message> - <location filename="../Project/Project.py" line="5835" /> + <location filename="../Project/Project.py" line="5836" /> <source>Install the project into the embedded environment.</source> <translation>Instalar el proyecto en el entorno embebido.</translation> </message> <message> - <location filename="../Project/Project.py" line="5838" /> + <location filename="../Project/Project.py" line="5839" /> <source><b>Install Project</b><p>This installs the project into the embedded virtual environment in editable mode (i.e. development mode).</p></source> <translation><b>Instalar Proyecto</b><p>Esto instala el proyecto en el entorno virtual embebido en modo de edición (es decir, en modo de desarrollo).</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5849" /> + <location filename="../Project/Project.py" line="5850" /> <source>&Configure</source> <translation>&Configurar</translation> </message> <message> - <location filename="../Project/Project.py" line="5856" /> + <location filename="../Project/Project.py" line="5857" /> <source>Configure the embedded environment.</source> <translation>Configurar el entorno embebido.</translation> </message> <message> - <location filename="../Project/Project.py" line="5859" /> + <location filename="../Project/Project.py" line="5860" /> <source><b>Configure</b><p>This opens a dialog to configure the embedded virtual environment of the project.</p></source> <translation><b>Configurar</b><p>Esto abre un diálogo para configurar el entorno virtual embebido del proyecto.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5869" /> - <source>Upgrade</source> - <translation>Actualizar</translation> - </message> - <message> <location filename="../Project/Project.py" line="5870" /> + <source>Upgrade</source> + <translation>Actualizar</translation> + </message> + <message> + <location filename="../Project/Project.py" line="5871" /> <source>&Upgrade</source> <translation>Act&ualizar</translation> </message> <message> - <location filename="../Project/Project.py" line="5876" /> + <location filename="../Project/Project.py" line="5877" /> <source>Upgrade the embedded environment.</source> <translation>Actualizar el entorno embebido.</translation> </message> <message> - <location filename="../Project/Project.py" line="5878" /> + <location filename="../Project/Project.py" line="5879" /> <source><b>Upgrade</b><p>This opens a dialog to enter the parameters to upgrade the embedded virtual environment of the project.</p></source> <translation><b>Actualizar</b><p>Esto abre un dialogo para introducir los parametros para la actualizacion del entorno embebido del proyecto.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5890" /> - <source>Recreate</source> - <translation>Recrear</translation> - </message> - <message> <location filename="../Project/Project.py" line="5891" /> + <source>Recreate</source> + <translation>Recrear</translation> + </message> + <message> + <location filename="../Project/Project.py" line="5892" /> <source>&Recreate</source> <translation>&Recrear</translation> </message> <message> - <location filename="../Project/Project.py" line="5897" /> + <location filename="../Project/Project.py" line="5898" /> <source>Recreate the embedded environment.</source> <translation>Recrear el entorno embebido.</translation> </message> <message> - <location filename="../Project/Project.py" line="5899" /> + <location filename="../Project/Project.py" line="5900" /> <source><b>Recreate</b><p>This opens a dialog to enter the parameters to recreate the embedded virtual environment of the project. The existing environment is cleared first.</p></source> <translation><b>Recrear</b><p>Esto abre un dialogo para introducir los parametros para recrear el entorno virtual embebido del proyecto. Se limpia previamente el entorno existente.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5931" /> - <source>&Project</source> - <translation>&Proyecto</translation> - </message> - <message> <location filename="../Project/Project.py" line="5932" /> + <source>&Project</source> + <translation>&Proyecto</translation> + </message> + <message> + <location filename="../Project/Project.py" line="5933" /> <source>Open &Recent Projects</source> <translation>Abrir Proyectos &Recientes</translation> </message> <message> - <location filename="../Project/Project.py" line="5934" /> - <source>Session</source> - <translation>Sesión</translation> - </message> - <message> <location filename="../Project/Project.py" line="5935" /> - <source>Debugger</source> - <translation>Depurador</translation> + <source>Session</source> + <translation>Sesión</translation> </message> <message> <location filename="../Project/Project.py" line="5936" /> + <source>Debugger</source> + <translation>Depurador</translation> + </message> + <message> + <location filename="../Project/Project.py" line="5937" /> <source>Embedded Environment</source> <translation>Entorno Embebido</translation> </message> <message> - <location filename="../Project/Project.py" line="5938" /> - <source>Project-T&ools</source> - <translation>Herramientas de Pr&ojecto</translation> - </message> - <message> <location filename="../Project/Project.py" line="5939" /> + <source>Project-T&ools</source> + <translation>Herramientas de Pr&ojecto</translation> + </message> + <message> + <location filename="../Project/Project.py" line="5940" /> <source>&Version Control</source> <translation>Control de &Versiones</translation> </message> <message> - <location filename="../Project/Project.py" line="5943" /> + <location filename="../Project/Project.py" line="5944" /> <source>Chec&k</source> <translation>Veri&ficar</translation> </message> <message> - <location filename="../Project/Project.py" line="5945" /> + <location filename="../Project/Project.py" line="5946" /> <source>Code &Formatting</source> <translation>&Formato de Código</translation> </message> <message> - <location filename="../Project/Project.py" line="5947" /> - <source>Sho&w</source> - <translation>V&er</translation> - </message> - <message> <location filename="../Project/Project.py" line="5948" /> - <source>&Diagrams</source> - <translation>&Diagramas</translation> + <source>Sho&w</source> + <translation>V&er</translation> </message> <message> <location filename="../Project/Project.py" line="5949" /> - <source>Pac&kagers</source> - <translation>Empa&quetadores</translation> + <source>&Diagrams</source> + <translation>&Diagramas</translation> </message> <message> <location filename="../Project/Project.py" line="5950" /> + <source>Pac&kagers</source> + <translation>Empa&quetadores</translation> + </message> + <message> + <location filename="../Project/Project.py" line="5951" /> <source>Source &Documentation</source> <translation>Origen de &Documentación</translation> </message> <message> - <location filename="../Project/Project.py" line="5952" /> - <source>Make</source> - <translation>Make</translation> - </message> - <message> <location filename="../Project/Project.py" line="5953" /> + <source>Make</source> + <translation>Make</translation> + </message> + <message> + <location filename="../Project/Project.py" line="5954" /> <source>Other Tools</source> <translation>Otras Herramientas</translation> </message> <message> - <location filename="../Project/Project.py" line="6115" /> - <location filename="../Project/Project.py" line="6113" /> + <location filename="../Project/Project.py" line="6116" /> + <location filename="../Project/Project.py" line="6114" /> <source>Project</source> <translation>Proyecto</translation> </message> <message> - <location filename="../Project/Project.py" line="6197" /> + <location filename="../Project/Project.py" line="6198" /> <source>&Clear</source> <translation>&Borrar</translation> </message> <message> - <location filename="../Project/Project.py" line="6394" /> - <source>Search New Files</source> - <translation>Buscar nuevos archivos</translation> - </message> - <message> <location filename="../Project/Project.py" line="6395" /> + <source>Search New Files</source> + <translation>Buscar nuevos archivos</translation> + </message> + <message> + <location filename="../Project/Project.py" line="6396" /> <source>There were no new files found to be added.</source> <translation>No se han encontrado nuevos archivos para ser añadidos.</translation> </message> <message> - <location filename="../Project/Project.py" line="6556" /> - <location filename="../Project/Project.py" line="6543" /> - <source>Version Control System</source> - <translation>Sistema de control de versiones</translation> - </message> - <message> - <location filename="../Project/Project.py" line="6544" /> - <source><p>The selected VCS <b>{0}</b> could not be found. <br/>Reverting override.</p><p>{1}</p></source> - <translation><p>El VCS seleccionado <b>{0}</b> no ha sido encontrado.<br>Revirtiendo sobreescritura.</p><p>{1}</p></translation> - </message> - <message> <location filename="../Project/Project.py" line="6557" /> + <location filename="../Project/Project.py" line="6544" /> + <source>Version Control System</source> + <translation>Sistema de control de versiones</translation> + </message> + <message> + <location filename="../Project/Project.py" line="6545" /> + <source><p>The selected VCS <b>{0}</b> could not be found. <br/>Reverting override.</p><p>{1}</p></source> + <translation><p>El VCS seleccionado <b>{0}</b> no ha sido encontrado.<br>Revirtiendo sobreescritura.</p><p>{1}</p></translation> + </message> + <message> + <location filename="../Project/Project.py" line="6558" /> <source><p>The selected VCS <b>{0}</b> could not be found.<br/>Disabling version control.</p><p>{1}</p></source> <translation><p>El VCS seleccionado <b>{0}</b> no ha sido encontrado.<br>Deshabilitando control de versiones.</p><p>{1}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="6714" /> + <location filename="../Project/Project.py" line="6715" /> <source>Coverage Data</source> <translation>Datos de Cobertura</translation> </message> <message> - <location filename="../Project/Project.py" line="6768" /> - <location filename="../Project/Project.py" line="6715" /> + <location filename="../Project/Project.py" line="6769" /> + <location filename="../Project/Project.py" line="6716" /> <source>There is no main script defined for the current project. Aborting</source> <translation>No hay script principal definido para el proyecto actual. Abortando</translation> </message> <message> - <location filename="../Project/Project.py" line="6727" /> - <source>Code Coverage</source> - <translation>Cobertura de codigo</translation> - </message> - <message> <location filename="../Project/Project.py" line="6728" /> + <source>Code Coverage</source> + <translation>Cobertura de codigo</translation> + </message> + <message> + <location filename="../Project/Project.py" line="6729" /> <source>Please select a coverage file</source> <translation>Por favor seleccione un archivo de cobertura</translation> </message> <message> - <location filename="../Project/Project.py" line="6781" /> + <location filename="../Project/Project.py" line="6782" /> <source>Please select a profile file</source> <translation>Por favor seleccione un archivo de profiling</translation> </message> <message> - <location filename="../Project/Project.py" line="6833" /> + <location filename="../Project/Project.py" line="6834" /> <source>Include module names?</source> <translation>¿Incluir nombres de módulos?</translation> </message> <message> - <location filename="../Project/Project.py" line="6946" /> + <location filename="../Project/Project.py" line="6947" /> <source><p>The file <b>PKGLIST</b> already exists.</p><p>Overwrite it?</p></source> <translation><p>El archivo <b>PKGLIST</b> ya existe.</p><p>¿Desea sobreescribirlo?</p></translation> </message> <message> - <location filename="../Project/Project.py" line="7001" /> + <location filename="../Project/Project.py" line="7002" /> <source><p>The file <b>PKGLIST</b> could not be created.</p><p>Reason: {0}</p></source> <translation><p>El archivo <b>PKGLIST</b> no puede ser creado.</p><p>Causa: {0}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="7297" /> - <location filename="../Project/Project.py" line="7253" /> - <location filename="../Project/Project.py" line="7203" /> - <location filename="../Project/Project.py" line="7192" /> - <location filename="../Project/Project.py" line="7174" /> - <location filename="../Project/Project.py" line="7141" /> - <location filename="../Project/Project.py" line="7111" /> - <location filename="../Project/Project.py" line="7083" /> - <location filename="../Project/Project.py" line="7053" /> - <location filename="../Project/Project.py" line="7039" /> - <location filename="../Project/Project.py" line="7022" /> + <location filename="../Project/Project.py" line="7298" /> + <location filename="../Project/Project.py" line="7254" /> + <location filename="../Project/Project.py" line="7204" /> + <location filename="../Project/Project.py" line="7193" /> + <location filename="../Project/Project.py" line="7175" /> + <location filename="../Project/Project.py" line="7142" /> + <location filename="../Project/Project.py" line="7112" /> + <location filename="../Project/Project.py" line="7084" /> + <location filename="../Project/Project.py" line="7054" /> + <location filename="../Project/Project.py" line="7040" /> + <location filename="../Project/Project.py" line="7023" /> <source>Create Plugin Archive</source> <translation>Crear Archivo de Plugin</translation> </message> <message> - <location filename="../Project/Project.py" line="7023" /> + <location filename="../Project/Project.py" line="7024" /> <source>The project does not have a main script defined. Aborting...</source> <translation>No hay script principal definido para el proyecto actual. Abortando...</translation> </message> <message> - <location filename="../Project/Project.py" line="7040" /> + <location filename="../Project/Project.py" line="7041" /> <source>Select package lists:</source> <translation>Seleccionar package lists:</translation> </message> <message> - <location filename="../Project/Project.py" line="7054" /> + <location filename="../Project/Project.py" line="7055" /> <source><p>No package list files (PKGLIST*) available or selected. Aborting...</p></source> <translation><p>No hay archivo de package list (PKGLIST*) disponible o seleccionado. Abortando...</p></translation> </message> <message> - <location filename="../Project/Project.py" line="7062" /> - <source>Creating plugin archives...</source> - <translation>Creando archivos de plugin...</translation> - </message> - <message> <location filename="../Project/Project.py" line="7063" /> + <source>Creating plugin archives...</source> + <translation>Creando archivos de plugin...</translation> + </message> + <message> + <location filename="../Project/Project.py" line="7064" /> <source>Abort</source> <translation>Abortar</translation> </message> <message> - <location filename="../Project/Project.py" line="7066" /> + <location filename="../Project/Project.py" line="7067" /> <source>%v/%m Archives</source> <translation>%v/%m Archivos</translation> </message> <message> - <location filename="../Project/Project.py" line="7084" /> + <location filename="../Project/Project.py" line="7085" /> <source><p>The file <b>{0}</b> could not be read.</p><p>Reason: {1}</p></source> <translation><p>El archivo<b>{0}</b> no puede ser leído.</p><p>Causa: {1}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="7112" /> + <location filename="../Project/Project.py" line="7113" /> <source><p>The file <b>{0}</b> is not ready yet.</p><p>Please rework it and delete the'; initial_list' line of the header.</p></source> <translation><p>El archivo <b>{0}</b> todavía no está listo.</p><p>Por favor, revíselo y borre la línea '; initial_list' del encabezado.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="7142" /> + <location filename="../Project/Project.py" line="7143" /> <source><p>The eric plugin archive file <b>{0}</b> could not be created.</p><p>Reason: {1}</p></source> <translation><p>El archivo de plugin de eric <b>{0}</b> no ha podido ser creado.</p><p>Razón: {1}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="7175" /> + <location filename="../Project/Project.py" line="7176" /> <source><p>The file <b>{0}</b> could not be stored in the archive. Ignoring it.</p><p>Reason: {1}</p></source> <translation><p>El fichero<b>{0}</b> no ha podido ser almacenado en el archivo. Va a ser ignorado.</p><p>Causa: {1}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="7193" /> + <location filename="../Project/Project.py" line="7194" /> <source><p>The eric plugin archive files were created with some errors.</p></source> <translation><p>Los ficheros para archivo de plugin de eric se han creado con errores.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="7204" /> + <location filename="../Project/Project.py" line="7205" /> <source><p>The eric plugin archive files were created successfully.</p></source> <translation><p>Los ficheros para archivo de plugin de eric se han creado correctamente.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="7254" /> + <location filename="../Project/Project.py" line="7255" /> <source><p>The plugin file <b>{0}</b> could not be read.</p><p>Reason: {1}</p></source> <translation><p>El archivo de plugin<b>{0}</b> no puede ser leido.</p><p>Causa: {1}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="7298" /> + <location filename="../Project/Project.py" line="7299" /> <source><p>The plugin file <b>{0}</b> could not be read.</p> <p>Reason: {1}</p></source> <translation><p>El archivo de plugin<b>{0}</b> no puede ser leido.</p><p>Causa: {1}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="7390" /> + <location filename="../Project/Project.py" line="7391" /> <source>'Make' is not supported for remote projects. Aborting...</source> <translation>'Make' no está soportado para proyectos remotos. Abortando...</translation> </message> <message> - <location filename="../Project/Project.py" line="7438" /> + <location filename="../Project/Project.py" line="7439" /> <source>The make process did not start.</source> <translation>El proceso make no ha comenzado.</translation> </message> <message> - <location filename="../Project/Project.py" line="7484" /> + <location filename="../Project/Project.py" line="7485" /> <source>The make process crashed.</source> <translation>El proceso make ha fallado.</translation> </message> <message> - <location filename="../Project/Project.py" line="7492" /> + <location filename="../Project/Project.py" line="7493" /> <source><p>There are changes that require the configured make target <b>{0}</b> to be rebuilt.</p></source> <translation><p>Hay cambios que requieren que el target make configurado <b>{0}</b> se reconstruya.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="7497" /> + <location filename="../Project/Project.py" line="7498" /> <source><p>There are changes that require the default make target to be rebuilt.</p></source> <translation><p>Hay cambios que requieren que el target make por defecto se reconstruya.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="7513" /> + <location filename="../Project/Project.py" line="7514" /> <source>The makefile contains errors.</source> <translation>El makefile contiene errores.</translation> </message> <message> - <location filename="../Project/Project.py" line="7943" /> - <source>Interpreter Missing</source> - <translation>No se encuentra el Intérprete</translation> - </message> - <message> <location filename="../Project/Project.py" line="7944" /> + <source>Interpreter Missing</source> + <translation>No se encuentra el Intérprete</translation> + </message> + <message> + <location filename="../Project/Project.py" line="7945" /> <source>The configured interpreter of the embedded environment does not exist anymore. Shall the environment be upgraded?</source> <translation>El intérprete configurado para el entorno embebido ya no existe. ¿Actualizar el entorno?</translation> </message> <message> - <location filename="../Project/Project.py" line="8017" /> + <location filename="../Project/Project.py" line="8018" /> <source>Open Remote Project</source> <translation>Abrir Proyecto Remoto</translation> </message> <message> - <location filename="../Project/Project.py" line="8048" /> - <location filename="../Project/Project.py" line="8033" /> + <location filename="../Project/Project.py" line="8049" /> + <location filename="../Project/Project.py" line="8034" /> <source>Save Remote Project</source> <translation>Guardar Proyecto Remoto</translation> </message> @@ -86611,15 +86616,15 @@ <context> <name>Tabview</name> <message> - <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="1132" /> - <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="1067" /> + <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="1134" /> + <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="1069" /> <source>Untitled {0}</source> <translation>Sin título {0}</translation> </message> <message> - <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="1532" /> - <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="1143" /> - <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="1088" /> + <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="1534" /> + <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="1145" /> + <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="1090" /> <source>{0} (ro)</source> <translation>{0} (ro)</translation> </message> @@ -91363,7 +91368,7 @@ <translation><b>Guardar sesión...</b><p>Guarda la sesión actual a disco. Se muestra un diálogo para seleccionar el nombre de archivo.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7844" /> + <location filename="../UI/UserInterface.py" line="7860" /> <location filename="../UI/UserInterface.py" line="1946" /> <location filename="../UI/UserInterface.py" line="1939" /> <source>Load session</source> @@ -92454,7 +92459,7 @@ <translation><b>Editor de Iconos</b><p>Inicia el Editor de Iconos de eric para editar iconos sencillos.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6593" /> + <location filename="../UI/UserInterface.py" line="6609" /> <location filename="../UI/UserInterface.py" line="3163" /> <source>Snapshot</source> <translation>Captura de Pantalla</translation> @@ -92691,8 +92696,8 @@ <translation><b>Atajos de Teclado</b><p>Establezca los atajos de teclado para la aplicación con sus valores preferidos.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7552" /> - <location filename="../UI/UserInterface.py" line="7533" /> + <location filename="../UI/UserInterface.py" line="7568" /> + <location filename="../UI/UserInterface.py" line="7549" /> <location filename="../UI/UserInterface.py" line="3393" /> <source>Export Keyboard Shortcuts</source> <translation>Exportar Atajos de Teclado</translation> @@ -92713,7 +92718,7 @@ <translation><b>Exportar Atajos de Teclado</b><p>Exporte los atajos de teclado de la aplicación.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7571" /> + <location filename="../UI/UserInterface.py" line="7587" /> <location filename="../UI/UserInterface.py" line="3412" /> <source>Import Keyboard Shortcuts</source> <translation>Importar Atajos de Teclado</translation> @@ -93122,7 +93127,7 @@ <translation>Ajustes</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6321" /> + <location filename="../UI/UserInterface.py" line="6337" /> <location filename="../UI/UserInterface.py" line="4185" /> <location filename="../UI/UserInterface.py" line="4170" /> <source>Help</source> @@ -93306,315 +93311,315 @@ <translation>&Ocultar todo</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6458" /> - <location filename="../UI/UserInterface.py" line="6447" /> - <location filename="../UI/UserInterface.py" line="6399" /> - <location filename="../UI/UserInterface.py" line="6389" /> - <location filename="../UI/UserInterface.py" line="6210" /> - <location filename="../UI/UserInterface.py" line="6200" /> - <location filename="../UI/UserInterface.py" line="6142" /> - <location filename="../UI/UserInterface.py" line="6132" /> + <location filename="../UI/UserInterface.py" line="6474" /> + <location filename="../UI/UserInterface.py" line="6463" /> + <location filename="../UI/UserInterface.py" line="6415" /> + <location filename="../UI/UserInterface.py" line="6405" /> + <location filename="../UI/UserInterface.py" line="6228" /> + <location filename="../UI/UserInterface.py" line="6218" /> + <location filename="../UI/UserInterface.py" line="6160" /> + <location filename="../UI/UserInterface.py" line="6150" /> <source>Problem</source> <translation>Problema</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6459" /> - <location filename="../UI/UserInterface.py" line="6448" /> - <location filename="../UI/UserInterface.py" line="6400" /> - <location filename="../UI/UserInterface.py" line="6390" /> - <location filename="../UI/UserInterface.py" line="6211" /> - <location filename="../UI/UserInterface.py" line="6201" /> - <location filename="../UI/UserInterface.py" line="6143" /> - <location filename="../UI/UserInterface.py" line="6133" /> + <location filename="../UI/UserInterface.py" line="6475" /> + <location filename="../UI/UserInterface.py" line="6464" /> + <location filename="../UI/UserInterface.py" line="6416" /> + <location filename="../UI/UserInterface.py" line="6406" /> + <location filename="../UI/UserInterface.py" line="6229" /> + <location filename="../UI/UserInterface.py" line="6219" /> + <location filename="../UI/UserInterface.py" line="6161" /> + <location filename="../UI/UserInterface.py" line="6151" /> <source><p>The file <b>{0}</b> does not exist or is zero length.</p></source> <translation><p>El archivo <b>{0}</b> no existe o tiene longitud nula. </p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6702" /> - <location filename="../UI/UserInterface.py" line="6613" /> - <location filename="../UI/UserInterface.py" line="6494" /> - <location filename="../UI/UserInterface.py" line="6471" /> - <location filename="../UI/UserInterface.py" line="6412" /> - <location filename="../UI/UserInterface.py" line="6359" /> - <location filename="../UI/UserInterface.py" line="6337" /> - <location filename="../UI/UserInterface.py" line="6286" /> - <location filename="../UI/UserInterface.py" line="6277" /> - <location filename="../UI/UserInterface.py" line="6242" /> - <location filename="../UI/UserInterface.py" line="6233" /> - <location filename="../UI/UserInterface.py" line="6174" /> - <location filename="../UI/UserInterface.py" line="6165" /> + <location filename="../UI/UserInterface.py" line="6718" /> + <location filename="../UI/UserInterface.py" line="6629" /> + <location filename="../UI/UserInterface.py" line="6510" /> + <location filename="../UI/UserInterface.py" line="6487" /> + <location filename="../UI/UserInterface.py" line="6428" /> + <location filename="../UI/UserInterface.py" line="6375" /> + <location filename="../UI/UserInterface.py" line="6353" /> + <location filename="../UI/UserInterface.py" line="6304" /> + <location filename="../UI/UserInterface.py" line="6295" /> + <location filename="../UI/UserInterface.py" line="6260" /> + <location filename="../UI/UserInterface.py" line="6251" /> + <location filename="../UI/UserInterface.py" line="6192" /> + <location filename="../UI/UserInterface.py" line="6183" /> <source>Process Generation Error</source> <translation>Error de Generación de Proceso</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6166" /> + <location filename="../UI/UserInterface.py" line="6184" /> <source><p>Could not start Qt-Designer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>No se ha podido ejecutar Qt-Designer.<br>Asegúrese de que esta disponible como <b>{0}</b>.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6175" /> + <location filename="../UI/UserInterface.py" line="6193" /> <source><p>Could not find the Qt-Designer executable.<br>Ensure that it is installed and optionally configured on the Qt configuration page.</p></source> <translation><p>No se ha podido encontrar el ejecutable de Qt-Designer.<br>Asegúrese de que está instalado y opcionalmente configurado en la página de configuración de Qt.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6234" /> + <location filename="../UI/UserInterface.py" line="6252" /> <source><p>Could not start Qt-Linguist.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>No se ha podido ejecutar Qt-Linguist.<br>Asegúrese de que esta disponible como <b>{0}</b>.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6243" /> + <location filename="../UI/UserInterface.py" line="6261" /> <source><p>Could not find the Qt-Linguist executable.<br>Ensure that it is installed and optionally configured on the Qt configuration page.</p></source> <translation><p>No se ha podido encontrar el ejecutable de Qt-Linguist.<br>Asegúrese de que está instalado y opcionalmente configurado en la página de configuración de Qt.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6278" /> + <location filename="../UI/UserInterface.py" line="6296" /> <source><p>Could not start Qt-Assistant.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>No se ha podido ejecutar Qt-Assistant.<br>Asegúrese de que esta disponible como <b>{0}</b>.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6287" /> + <location filename="../UI/UserInterface.py" line="6305" /> <source><p>Could not find the Qt-Assistant executable.<br>Ensure that it is installed and optionally configured on the Qt configuration page.</p></source> <translation><p>No se ha podido encontrar el ejecutable de Qt-Assistant.<br>Asegúrese de que está instalado y opcionalmente configurado en la página de configuración de Qt.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6322" /> - <source>Currently no custom viewer is selected. Please use the preferences dialog to specify one.</source> - <translation>No hay visor personalizado seleccionado actualmente. Por favor, especifique uno en el diálogo de preferencias.</translation> - </message> - <message> <location filename="../UI/UserInterface.py" line="6338" /> + <source>Currently no custom viewer is selected. Please use the preferences dialog to specify one.</source> + <translation>No hay visor personalizado seleccionado actualmente. Por favor, especifique uno en el diálogo de preferencias.</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="6354" /> <source><p>Could not start custom viewer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>No se ha podido ejecutar el visor personalizado.<br>Asegúrese de que esta disponible como <b>{0}</b>.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6360" /> + <location filename="../UI/UserInterface.py" line="6376" /> <source><p>Could not start the help viewer.<br>Ensure that it is available as <b>hh</b>.</p></source> <translation><p>No se ha podido ejecutar el visor de ayuda.<br>Asegúrese de que esta disponible como <b>hh</b>.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6413" /> + <location filename="../UI/UserInterface.py" line="6429" /> <source><p>Could not start UI Previewer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>No se ha podido ejecutar el Previsualizador de UI.<br>Asegúrese de que esta disponible como <b>{0}</b>.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6472" /> + <location filename="../UI/UserInterface.py" line="6488" /> <source><p>Could not start Translation Previewer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>No se ha podido ejecutar el Previsualizador de Traducciones.<br>Asegúrese de que esta disponible como <b>{0}</b>.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6495" /> + <location filename="../UI/UserInterface.py" line="6511" /> <source><p>Could not start SQL Browser.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>No se ha podido iniciar el navegador SQL.<br>Asegúrese de que está disponible como <b>{0}</b>.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6594" /> + <location filename="../UI/UserInterface.py" line="6610" /> <source><p>The snapshot utility is not available for Wayland desktop sessions.</p></source> <translation><p>La utilidad de captura de pantalla no está disponible para sesiones de escritorio de Wayland.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6614" /> + <location filename="../UI/UserInterface.py" line="6630" /> <source><p>Could not start Snapshot tool.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>No se ha podido ejecutar la herramienta de Captura de Pantalla.<br>Asegúrese de que esta disponible como <b>{0}</b>.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6647" /> - <location filename="../UI/UserInterface.py" line="6637" /> + <location filename="../UI/UserInterface.py" line="6663" /> + <location filename="../UI/UserInterface.py" line="6653" /> <source>External Tools</source> <translation>Herramientas Externas</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6638" /> + <location filename="../UI/UserInterface.py" line="6654" /> <source>No tool entry found for external tool '{0}' in tool group '{1}'.</source> <translation>No se ha encontrado la entrada para la herramienta externa '{0}' en el grupo de herramientas '{1}'.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6648" /> + <location filename="../UI/UserInterface.py" line="6664" /> <source>No toolgroup entry '{0}' found.</source> <translation>No se ha encontrado la entrada para el grupo de herramientas '{0}'.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6685" /> + <location filename="../UI/UserInterface.py" line="6701" /> <source>Starting process '{0} {1}'. </source> <translation>Comenzando proceso '{0} {1}'. </translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6703" /> + <location filename="../UI/UserInterface.py" line="6719" /> <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>No se ha podido ejecutar la entrada de herramienta <b>{0}</b>.<br>Asegúrese de que esta disponible como <b>{0}</b>.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6782" /> + <location filename="../UI/UserInterface.py" line="6798" /> <source>Process '{0}' has exited. </source> <translation>El proceso '{0}' ha finalizado. </translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7069" /> - <location filename="../UI/UserInterface.py" line="7007" /> - <location filename="../UI/UserInterface.py" line="6963" /> - <location filename="../UI/UserInterface.py" line="6889" /> - <location filename="../UI/UserInterface.py" line="6825" /> + <location filename="../UI/UserInterface.py" line="7085" /> + <location filename="../UI/UserInterface.py" line="7023" /> + <location filename="../UI/UserInterface.py" line="6979" /> + <location filename="../UI/UserInterface.py" line="6905" /> + <location filename="../UI/UserInterface.py" line="6841" /> <source>Documentation Missing</source> <translation>Falta documentación</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7070" /> - <location filename="../UI/UserInterface.py" line="7008" /> - <location filename="../UI/UserInterface.py" line="6964" /> - <location filename="../UI/UserInterface.py" line="6890" /> - <location filename="../UI/UserInterface.py" line="6826" /> + <location filename="../UI/UserInterface.py" line="7086" /> + <location filename="../UI/UserInterface.py" line="7024" /> + <location filename="../UI/UserInterface.py" line="6980" /> + <location filename="../UI/UserInterface.py" line="6906" /> + <location filename="../UI/UserInterface.py" line="6842" /> <source><p>The documentation starting point "<b>{0}</b>" could not be found.</p></source> <translation><P>El punto de entrada de documentación "<b>{0}</b>" no ha podido encontrarse.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7051" /> - <location filename="../UI/UserInterface.py" line="6933" /> + <location filename="../UI/UserInterface.py" line="7067" /> + <location filename="../UI/UserInterface.py" line="6949" /> <source>Documentation</source> <translation>Documentación</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6934" /> + <location filename="../UI/UserInterface.py" line="6950" /> <source><p>The PyQt{0} documentation starting point has not been configured.</p></source> <translation><P>El punto de entrada de documentación de PyQt{0} no ha sido configurado.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7052" /> + <location filename="../UI/UserInterface.py" line="7068" /> <source><p>The PySide{0} documentation starting point has not been configured.</p></source> <translation><P>El punto de entrada de documentación de PySide{0} no ha sido configurado.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7231" /> - <location filename="../UI/UserInterface.py" line="7167" /> + <location filename="../UI/UserInterface.py" line="7247" /> + <location filename="../UI/UserInterface.py" line="7183" /> <source>Start Web Browser</source> <translation>Iniciar Navegador Web</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7168" /> + <location filename="../UI/UserInterface.py" line="7184" /> <source>The eric web browser could not be started.</source> <translation>El navegador web de eric no se ha podido iniciar.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7232" /> + <location filename="../UI/UserInterface.py" line="7248" /> <source><p>The eric web browser is not started.</p><p>Reason: {0}</p></source> <translation><p>El navegador web de eric no se ha iniciado.</p><p>Razón: {0}</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7278" /> + <location filename="../UI/UserInterface.py" line="7294" /> <source>Open Browser</source> <translation>Abrir Navegador</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7278" /> + <location filename="../UI/UserInterface.py" line="7294" /> <source>Could not start a web browser</source> <translation>No se ha podido iniciar el navegador web</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7573" /> - <location filename="../UI/UserInterface.py" line="7535" /> + <location filename="../UI/UserInterface.py" line="7589" /> + <location filename="../UI/UserInterface.py" line="7551" /> <source>Keyboard Shortcuts File (*.ekj)</source> <translation>Archivo de Atajos de Teclado (*.ekj)</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7553" /> + <location filename="../UI/UserInterface.py" line="7569" /> <source><p>The keyboard shortcuts file <b>{0}</b> exists already. Overwrite it?</p></source> <translation><p>El archivo de atajos de teclado <b>{0}</b> ya existe. ¿Sobreescribirlo?</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7757" /> + <location filename="../UI/UserInterface.py" line="7773" /> <source>Load crash session...</source> <translation>Cargar sesión perdida...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7760" /> + <location filename="../UI/UserInterface.py" line="7776" /> <source>Clean crash sessions...</source> <translation>Limpiar sesiones perdidas...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7797" /> + <location filename="../UI/UserInterface.py" line="7813" /> <source>Read Session</source> <translation>Cargar sesión</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7798" /> + <location filename="../UI/UserInterface.py" line="7814" /> <source><p>The session file <b>{0}</b> could not be read.</p></source> <translation><p>El archivo de sesión <b></b> no ha podido ser leído.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7821" /> + <location filename="../UI/UserInterface.py" line="7837" /> <source>Save Session</source> <translation>Guardar Sesión</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7846" /> - <location filename="../UI/UserInterface.py" line="7823" /> + <location filename="../UI/UserInterface.py" line="7862" /> + <location filename="../UI/UserInterface.py" line="7839" /> <source>eric Session Files (*.esj)</source> <translation>Archivos de Sesión de eric (*.esj)</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7913" /> + <location filename="../UI/UserInterface.py" line="7929" /> <source>Found Crash Sessions</source> <translation>Encontradas Sesiones Perdidas</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7914" /> + <location filename="../UI/UserInterface.py" line="7930" /> <source>These crash session files were found. Select the one to open. Select 'Cancel' to not open a crash session.</source> <translation>Se han encontrado estos archivos de sesiones perdidas. Seleccionar la que se desee abrir. Seleccionar 'Cancelar' para no abrir ninguna.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7987" /> + <location filename="../UI/UserInterface.py" line="8003" /> <source>Clean stale crash sessions</source> <translation>Limpiar sesiones perdidas antituas</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7988" /> + <location filename="../UI/UserInterface.py" line="8004" /> <source>Do you really want to delete these stale crash session files?</source> <translation>¿Desea realmente eliminar esos archivos antiguos de sesiones perdidas?</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="8364" /> + <location filename="../UI/UserInterface.py" line="8380" /> <source>Drop Error</source> <translation>Error de volcado</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="8365" /> + <location filename="../UI/UserInterface.py" line="8381" /> <source><p><b>{0}</b> is not a file.</p></source> <translation><p><b>{0}</b> no es un archivo.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="8551" /> + <location filename="../UI/UserInterface.py" line="8567" /> <source>Upgrade available</source> <translation>Actualización disponible</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="8552" /> + <location filename="../UI/UserInterface.py" line="8568" /> <source><p>A newer version of the <b>eric-ide</b> package is available at <a href="{0}/eric-ide/">PyPI</a>.</p><p>Installed: {1}<br/>Available: <b>{2}</b></p><p>Shall <b>eric-ide</b> be upgraded?</p></source> <translation><p>Una versión más moderna del package de <b>eric-ide</b> se encuentra disponible en <a href="{0}/eric-ide/">PyPI</a>.</p><p>Instalado: {1}<br/>Disponible: <b>{2}</b>Actualizar <b>eric-ide</b>?</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="8597" /> + <location filename="../UI/UserInterface.py" line="8613" /> <source>First time usage</source> <translation>Usado por primera vez</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="8598" /> + <location filename="../UI/UserInterface.py" line="8614" /> <source>eric has not been configured yet. The configuration dialog will be started.</source> <translation>eric todavía no está configurado. El diálogo de configuración va a ser iniciado.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="8620" /> + <location filename="../UI/UserInterface.py" line="8636" /> <source>Select Workspace Directory</source> <translation>Seleccionar Directorio para el Espacio de Trabajo</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="8788" /> + <location filename="../UI/UserInterface.py" line="8804" /> <source>Unsaved Data Detected</source> <translation>Detectados Datos sin Guardar</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="8789" /> + <location filename="../UI/UserInterface.py" line="8805" /> <source>Some editors contain unsaved data. Shall these be saved?</source> <translation>Algunos editores contienen datos sin guardar. ¿Desea guardarlos?</translation> </message> @@ -95095,7 +95100,7 @@ <translation><b>Imprimir Archivo</b><p>Imprime el contenido del archivo en edición.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="775" /> + <location filename="../QScintilla/MiniEditor.py" line="776" /> <location filename="../ViewManager/ViewManager.py" line="913" /> <location filename="../ViewManager/ViewManager.py" line="911" /> <source>Print Preview</source> @@ -95872,8 +95877,8 @@ <translation><b>Generar Docstring</b><p>Generar una cadena docstring para la función/método actual si el cursor está posicionado en una línea de inicio de definición de función o en líneas posteriores. La docstring se inserta en la posición adecuada y el cursor se posiciona al final de la línea de descripción.</p></translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="926" /> <location filename="../QScintilla/MiniEditor.py" line="925" /> - <location filename="../QScintilla/MiniEditor.py" line="924" /> <location filename="../QScintilla/ShellWindow.py" line="575" /> <location filename="../QScintilla/ShellWindow.py" line="574" /> <location filename="../ViewManager/ViewManager.py" line="1858" /> @@ -95882,22 +95887,22 @@ <translation>Mover a la izquierda un carácter</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="926" /> + <location filename="../QScintilla/MiniEditor.py" line="927" /> <location filename="../QScintilla/ShellWindow.py" line="576" /> <location filename="../ViewManager/ViewManager.py" line="1859" /> <source>Left</source> <translation>Left</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="934" /> + <location filename="../QScintilla/MiniEditor.py" line="935" /> <location filename="../QScintilla/ShellWindow.py" line="584" /> <location filename="../ViewManager/ViewManager.py" line="1867" /> <source>Meta+B</source> <translation>Meta+B</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="942" /> <location filename="../QScintilla/MiniEditor.py" line="941" /> - <location filename="../QScintilla/MiniEditor.py" line="940" /> <location filename="../QScintilla/ShellWindow.py" line="591" /> <location filename="../QScintilla/ShellWindow.py" line="590" /> <location filename="../ViewManager/ViewManager.py" line="1874" /> @@ -95906,22 +95911,22 @@ <translation>Mover a la derecha un carácter</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="942" /> + <location filename="../QScintilla/MiniEditor.py" line="943" /> <location filename="../QScintilla/ShellWindow.py" line="592" /> <location filename="../ViewManager/ViewManager.py" line="1875" /> <source>Right</source> <translation>Right</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="949" /> + <location filename="../QScintilla/MiniEditor.py" line="950" /> <location filename="../QScintilla/ShellWindow.py" line="599" /> <location filename="../ViewManager/ViewManager.py" line="1882" /> <source>Meta+F</source> <translation>Meta+F</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="958" /> <location filename="../QScintilla/MiniEditor.py" line="957" /> - <location filename="../QScintilla/MiniEditor.py" line="956" /> <location filename="../QScintilla/ShellWindow.py" line="683" /> <location filename="../QScintilla/ShellWindow.py" line="682" /> <location filename="../ViewManager/ViewManager.py" line="1890" /> @@ -95930,22 +95935,22 @@ <translation>Mover arriba una línea</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="958" /> + <location filename="../QScintilla/MiniEditor.py" line="959" /> <location filename="../QScintilla/ShellWindow.py" line="684" /> <location filename="../ViewManager/ViewManager.py" line="1891" /> <source>Up</source> <translation>Up</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="965" /> + <location filename="../QScintilla/MiniEditor.py" line="966" /> <location filename="../QScintilla/ShellWindow.py" line="691" /> <location filename="../ViewManager/ViewManager.py" line="1898" /> <source>Meta+P</source> <translation>Meta+P</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="974" /> <location filename="../QScintilla/MiniEditor.py" line="973" /> - <location filename="../QScintilla/MiniEditor.py" line="972" /> <location filename="../QScintilla/ShellWindow.py" line="699" /> <location filename="../QScintilla/ShellWindow.py" line="698" /> <location filename="../ViewManager/ViewManager.py" line="1906" /> @@ -95954,30 +95959,30 @@ <translation>Mover abajo una línea</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="974" /> + <location filename="../QScintilla/MiniEditor.py" line="975" /> <location filename="../QScintilla/ShellWindow.py" line="700" /> <location filename="../ViewManager/ViewManager.py" line="1907" /> <source>Down</source> <translation>Down</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="981" /> + <location filename="../QScintilla/MiniEditor.py" line="982" /> <location filename="../QScintilla/ShellWindow.py" line="707" /> <location filename="../ViewManager/ViewManager.py" line="1914" /> <source>Meta+N</source> <translation>Meta+N</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="990" /> <location filename="../QScintilla/MiniEditor.py" line="989" /> - <location filename="../QScintilla/MiniEditor.py" line="988" /> <location filename="../ViewManager/ViewManager.py" line="1922" /> <location filename="../ViewManager/ViewManager.py" line="1921" /> <source>Move left one word part</source> <translation>Mover a la izquierda una parte de palabra</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1029" /> - <location filename="../QScintilla/MiniEditor.py" line="997" /> + <location filename="../QScintilla/MiniEditor.py" line="1030" /> + <location filename="../QScintilla/MiniEditor.py" line="998" /> <location filename="../QScintilla/ShellWindow.py" line="615" /> <location filename="../ViewManager/ViewManager.py" line="1962" /> <location filename="../ViewManager/ViewManager.py" line="1930" /> @@ -95985,25 +95990,25 @@ <translation>Alt+Left</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1006" /> <location filename="../QScintilla/MiniEditor.py" line="1005" /> - <location filename="../QScintilla/MiniEditor.py" line="1004" /> <location filename="../ViewManager/ViewManager.py" line="1938" /> <location filename="../ViewManager/ViewManager.py" line="1937" /> <source>Move right one word part</source> <translation>Mover a la derecha una parte de palabra</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2159" /> - <location filename="../QScintilla/MiniEditor.py" line="1049" /> - <location filename="../QScintilla/MiniEditor.py" line="1013" /> + <location filename="../QScintilla/MiniEditor.py" line="2160" /> + <location filename="../QScintilla/MiniEditor.py" line="1050" /> + <location filename="../QScintilla/MiniEditor.py" line="1014" /> <location filename="../ViewManager/ViewManager.py" line="3071" /> <location filename="../ViewManager/ViewManager.py" line="1946" /> <source>Alt+Right</source> <translation>Alt+Right</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1022" /> <location filename="../QScintilla/MiniEditor.py" line="1021" /> - <location filename="../QScintilla/MiniEditor.py" line="1020" /> <location filename="../QScintilla/ShellWindow.py" line="607" /> <location filename="../QScintilla/ShellWindow.py" line="606" /> <location filename="../ViewManager/ViewManager.py" line="1954" /> @@ -96012,8 +96017,8 @@ <translation>Mover a la izquierda una palabra</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1089" /> - <location filename="../QScintilla/MiniEditor.py" line="1033" /> + <location filename="../QScintilla/MiniEditor.py" line="1090" /> + <location filename="../QScintilla/MiniEditor.py" line="1034" /> <location filename="../QScintilla/ShellWindow.py" line="619" /> <location filename="../ViewManager/ViewManager.py" line="2018" /> <location filename="../ViewManager/ViewManager.py" line="1966" /> @@ -96021,8 +96026,8 @@ <translation>Ctrl+Left</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1042" /> <location filename="../QScintilla/MiniEditor.py" line="1041" /> - <location filename="../QScintilla/MiniEditor.py" line="1040" /> <location filename="../QScintilla/ShellWindow.py" line="627" /> <location filename="../QScintilla/ShellWindow.py" line="626" /> <location filename="../ViewManager/ViewManager.py" line="1974" /> @@ -96031,8 +96036,8 @@ <translation>Mover a la derecha una palabra</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1843" /> - <location filename="../QScintilla/MiniEditor.py" line="1053" /> + <location filename="../QScintilla/MiniEditor.py" line="1844" /> + <location filename="../QScintilla/MiniEditor.py" line="1054" /> <location filename="../QScintilla/ShellWindow.py" line="635" /> <location filename="../ViewManager/ViewManager.py" line="2755" /> <location filename="../ViewManager/ViewManager.py" line="1982" /> @@ -96040,8 +96045,8 @@ <translation>Ctrl+Right</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1063" /> - <location filename="../QScintilla/MiniEditor.py" line="1060" /> + <location filename="../QScintilla/MiniEditor.py" line="1064" /> + <location filename="../QScintilla/MiniEditor.py" line="1061" /> <location filename="../QScintilla/ShellWindow.py" line="645" /> <location filename="../QScintilla/ShellWindow.py" line="642" /> <location filename="../ViewManager/ViewManager.py" line="1992" /> @@ -96050,8 +96055,8 @@ <translation>Mover al primer carácter visible en la línea de documento</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2104" /> - <location filename="../QScintilla/MiniEditor.py" line="1073" /> + <location filename="../QScintilla/MiniEditor.py" line="2105" /> + <location filename="../QScintilla/MiniEditor.py" line="1074" /> <location filename="../QScintilla/ShellWindow.py" line="655" /> <location filename="../ViewManager/ViewManager.py" line="3016" /> <location filename="../ViewManager/ViewManager.py" line="2002" /> @@ -96059,22 +96064,22 @@ <translation>Home</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1082" /> <location filename="../QScintilla/MiniEditor.py" line="1081" /> - <location filename="../QScintilla/MiniEditor.py" line="1080" /> <location filename="../ViewManager/ViewManager.py" line="2010" /> <location filename="../ViewManager/ViewManager.py" line="2009" /> <source>Move to start of display line</source> <translation>Mover al principio de la línea mostrada</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1093" /> + <location filename="../QScintilla/MiniEditor.py" line="1094" /> <location filename="../ViewManager/ViewManager.py" line="2022" /> <source>Alt+Home</source> <translation>Alt+Home</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1102" /> <location filename="../QScintilla/MiniEditor.py" line="1101" /> - <location filename="../QScintilla/MiniEditor.py" line="1100" /> <location filename="../QScintilla/ShellWindow.py" line="663" /> <location filename="../QScintilla/ShellWindow.py" line="662" /> <location filename="../ViewManager/ViewManager.py" line="2030" /> @@ -96083,15 +96088,15 @@ <translation>Mover al final de la línea de documento</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1109" /> + <location filename="../QScintilla/MiniEditor.py" line="1110" /> <location filename="../QScintilla/ShellWindow.py" line="671" /> <location filename="../ViewManager/ViewManager.py" line="2038" /> <source>Meta+E</source> <translation>Meta+E</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2121" /> - <location filename="../QScintilla/MiniEditor.py" line="1113" /> + <location filename="../QScintilla/MiniEditor.py" line="2122" /> + <location filename="../QScintilla/MiniEditor.py" line="1114" /> <location filename="../QScintilla/ShellWindow.py" line="675" /> <location filename="../ViewManager/ViewManager.py" line="3033" /> <location filename="../ViewManager/ViewManager.py" line="2042" /> @@ -96099,16 +96104,16 @@ <translation>End</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1122" /> <location filename="../QScintilla/MiniEditor.py" line="1121" /> - <location filename="../QScintilla/MiniEditor.py" line="1120" /> <location filename="../ViewManager/ViewManager.py" line="2050" /> <location filename="../ViewManager/ViewManager.py" line="2049" /> <source>Scroll view down one line</source> <translation>Scroll hacia abajo una línea</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1225" /> - <location filename="../QScintilla/MiniEditor.py" line="1122" /> + <location filename="../QScintilla/MiniEditor.py" line="1226" /> + <location filename="../QScintilla/MiniEditor.py" line="1123" /> <location filename="../QScintilla/ShellWindow.py" line="716" /> <location filename="../ViewManager/ViewManager.py" line="2154" /> <location filename="../ViewManager/ViewManager.py" line="2051" /> @@ -96116,16 +96121,16 @@ <translation>Ctrl+Down</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1134" /> <location filename="../QScintilla/MiniEditor.py" line="1133" /> - <location filename="../QScintilla/MiniEditor.py" line="1132" /> <location filename="../ViewManager/ViewManager.py" line="2062" /> <location filename="../ViewManager/ViewManager.py" line="2061" /> <source>Scroll view up one line</source> <translation>Scroll hacia arriba una línea</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1205" /> - <location filename="../QScintilla/MiniEditor.py" line="1134" /> + <location filename="../QScintilla/MiniEditor.py" line="1206" /> + <location filename="../QScintilla/MiniEditor.py" line="1135" /> <location filename="../QScintilla/ShellWindow.py" line="728" /> <location filename="../ViewManager/ViewManager.py" line="2134" /> <location filename="../ViewManager/ViewManager.py" line="2063" /> @@ -96133,36 +96138,36 @@ <translation>Ctrl+Up</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1146" /> <location filename="../QScintilla/MiniEditor.py" line="1145" /> - <location filename="../QScintilla/MiniEditor.py" line="1144" /> <location filename="../ViewManager/ViewManager.py" line="2074" /> <location filename="../ViewManager/ViewManager.py" line="2073" /> <source>Move up one paragraph</source> <translation>Mover arriba un párrafo</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1146" /> + <location filename="../QScintilla/MiniEditor.py" line="1147" /> <location filename="../ViewManager/ViewManager.py" line="2075" /> <source>Alt+Up</source> <translation>Alt+Up</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1158" /> <location filename="../QScintilla/MiniEditor.py" line="1157" /> - <location filename="../QScintilla/MiniEditor.py" line="1156" /> <location filename="../ViewManager/ViewManager.py" line="2086" /> <location filename="../ViewManager/ViewManager.py" line="2085" /> <source>Move down one paragraph</source> <translation>Mover abajo un párrafo</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1158" /> + <location filename="../QScintilla/MiniEditor.py" line="1159" /> <location filename="../ViewManager/ViewManager.py" line="2087" /> <source>Alt+Down</source> <translation>Alt+Down</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1170" /> <location filename="../QScintilla/MiniEditor.py" line="1169" /> - <location filename="../QScintilla/MiniEditor.py" line="1168" /> <location filename="../QScintilla/ShellWindow.py" line="739" /> <location filename="../QScintilla/ShellWindow.py" line="738" /> <location filename="../ViewManager/ViewManager.py" line="2098" /> @@ -96171,15 +96176,15 @@ <translation>Mover arriba una página</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1170" /> + <location filename="../QScintilla/MiniEditor.py" line="1171" /> <location filename="../QScintilla/ShellWindow.py" line="740" /> <location filename="../ViewManager/ViewManager.py" line="2099" /> <source>PgUp</source> <translation>PgUp</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1182" /> <location filename="../QScintilla/MiniEditor.py" line="1181" /> - <location filename="../QScintilla/MiniEditor.py" line="1180" /> <location filename="../QScintilla/ShellWindow.py" line="751" /> <location filename="../QScintilla/ShellWindow.py" line="750" /> <location filename="../ViewManager/ViewManager.py" line="2110" /> @@ -96188,50 +96193,50 @@ <translation>Mover abajo una línea</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1182" /> + <location filename="../QScintilla/MiniEditor.py" line="1183" /> <location filename="../QScintilla/ShellWindow.py" line="752" /> <location filename="../ViewManager/ViewManager.py" line="2111" /> <source>PgDown</source> <translation>PgDown</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1189" /> + <location filename="../QScintilla/MiniEditor.py" line="1190" /> <location filename="../QScintilla/ShellWindow.py" line="759" /> <location filename="../ViewManager/ViewManager.py" line="2118" /> <source>Meta+V</source> <translation>Meta+V</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1198" /> <location filename="../QScintilla/MiniEditor.py" line="1197" /> - <location filename="../QScintilla/MiniEditor.py" line="1196" /> <location filename="../ViewManager/ViewManager.py" line="2126" /> <location filename="../ViewManager/ViewManager.py" line="2125" /> <source>Move to start of document</source> <translation>Mover al principio del documento</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1209" /> + <location filename="../QScintilla/MiniEditor.py" line="1210" /> <location filename="../ViewManager/ViewManager.py" line="2138" /> <source>Ctrl+Home</source> <translation>Ctrl+Home</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1218" /> <location filename="../QScintilla/MiniEditor.py" line="1217" /> - <location filename="../QScintilla/MiniEditor.py" line="1216" /> <location filename="../ViewManager/ViewManager.py" line="2146" /> <location filename="../ViewManager/ViewManager.py" line="2145" /> <source>Move to end of document</source> <translation>Mover al final del documento</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1229" /> + <location filename="../QScintilla/MiniEditor.py" line="1230" /> <location filename="../ViewManager/ViewManager.py" line="2158" /> <source>Ctrl+End</source> <translation>Ctrl+End</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1238" /> <location filename="../QScintilla/MiniEditor.py" line="1237" /> - <location filename="../QScintilla/MiniEditor.py" line="1236" /> <location filename="../QScintilla/ShellWindow.py" line="453" /> <location filename="../QScintilla/ShellWindow.py" line="452" /> <location filename="../ViewManager/ViewManager.py" line="2166" /> @@ -96240,29 +96245,29 @@ <translation>Indentar un nivel</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1238" /> + <location filename="../QScintilla/MiniEditor.py" line="1239" /> <location filename="../QScintilla/ShellWindow.py" line="454" /> <location filename="../ViewManager/ViewManager.py" line="2167" /> <source>Tab</source> <translation>Tab</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1250" /> <location filename="../QScintilla/MiniEditor.py" line="1249" /> - <location filename="../QScintilla/MiniEditor.py" line="1248" /> <location filename="../ViewManager/ViewManager.py" line="2178" /> <location filename="../ViewManager/ViewManager.py" line="2177" /> <source>Unindent one level</source> <translation>Desindentar un nivel</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1250" /> + <location filename="../QScintilla/MiniEditor.py" line="1251" /> <location filename="../ViewManager/ViewManager.py" line="2179" /> <source>Shift+Tab</source> <translation>Shift+Tab</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1263" /> - <location filename="../QScintilla/MiniEditor.py" line="1260" /> + <location filename="../QScintilla/MiniEditor.py" line="1264" /> + <location filename="../QScintilla/MiniEditor.py" line="1261" /> <location filename="../QScintilla/ShellWindow.py" line="781" /> <location filename="../QScintilla/ShellWindow.py" line="778" /> <location filename="../ViewManager/ViewManager.py" line="2192" /> @@ -96271,22 +96276,22 @@ <translation>Extender selección un carácter a la izquierda</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1266" /> + <location filename="../QScintilla/MiniEditor.py" line="1267" /> <location filename="../QScintilla/ShellWindow.py" line="784" /> <location filename="../ViewManager/ViewManager.py" line="2195" /> <source>Shift+Left</source> <translation>Shift+Left</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1273" /> + <location filename="../QScintilla/MiniEditor.py" line="1274" /> <location filename="../QScintilla/ShellWindow.py" line="791" /> <location filename="../ViewManager/ViewManager.py" line="2202" /> <source>Meta+Shift+B</source> <translation>Meta+Shift+B</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1283" /> - <location filename="../QScintilla/MiniEditor.py" line="1280" /> + <location filename="../QScintilla/MiniEditor.py" line="1284" /> + <location filename="../QScintilla/MiniEditor.py" line="1281" /> <location filename="../QScintilla/ShellWindow.py" line="801" /> <location filename="../QScintilla/ShellWindow.py" line="798" /> <location filename="../ViewManager/ViewManager.py" line="2212" /> @@ -96295,70 +96300,70 @@ <translation>Extender selección un carácter a la derecha</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1286" /> + <location filename="../QScintilla/MiniEditor.py" line="1287" /> <location filename="../QScintilla/ShellWindow.py" line="804" /> <location filename="../ViewManager/ViewManager.py" line="2215" /> <source>Shift+Right</source> <translation>Shift+Right</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1293" /> + <location filename="../QScintilla/MiniEditor.py" line="1294" /> <location filename="../QScintilla/ShellWindow.py" line="811" /> <location filename="../ViewManager/ViewManager.py" line="2222" /> <source>Meta+Shift+F</source> <translation>Meta+Shift+F</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1302" /> <location filename="../QScintilla/MiniEditor.py" line="1301" /> - <location filename="../QScintilla/MiniEditor.py" line="1300" /> <location filename="../ViewManager/ViewManager.py" line="2230" /> <location filename="../ViewManager/ViewManager.py" line="2229" /> <source>Extend selection up one line</source> <translation>Extender selección hacia arriba una línea</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1302" /> + <location filename="../QScintilla/MiniEditor.py" line="1303" /> <location filename="../ViewManager/ViewManager.py" line="2231" /> <source>Shift+Up</source> <translation>Shift+Up</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1309" /> + <location filename="../QScintilla/MiniEditor.py" line="1310" /> <location filename="../ViewManager/ViewManager.py" line="2238" /> <source>Meta+Shift+P</source> <translation>Meta+Shift+P</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1318" /> <location filename="../QScintilla/MiniEditor.py" line="1317" /> - <location filename="../QScintilla/MiniEditor.py" line="1316" /> <location filename="../ViewManager/ViewManager.py" line="2246" /> <location filename="../ViewManager/ViewManager.py" line="2245" /> <source>Extend selection down one line</source> <translation>Extender selección hacia abajo una línea</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1318" /> + <location filename="../QScintilla/MiniEditor.py" line="1319" /> <location filename="../ViewManager/ViewManager.py" line="2247" /> <source>Shift+Down</source> <translation>Shift+Down</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1325" /> + <location filename="../QScintilla/MiniEditor.py" line="1326" /> <location filename="../ViewManager/ViewManager.py" line="2254" /> <source>Meta+Shift+N</source> <translation>Meta+Shift+N</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1335" /> - <location filename="../QScintilla/MiniEditor.py" line="1332" /> + <location filename="../QScintilla/MiniEditor.py" line="1336" /> + <location filename="../QScintilla/MiniEditor.py" line="1333" /> <location filename="../ViewManager/ViewManager.py" line="2264" /> <location filename="../ViewManager/ViewManager.py" line="2261" /> <source>Extend selection left one word part</source> <translation>Extender selección a la izquierda una parte de palabra</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1386" /> - <location filename="../QScintilla/MiniEditor.py" line="1346" /> + <location filename="../QScintilla/MiniEditor.py" line="1387" /> + <location filename="../QScintilla/MiniEditor.py" line="1347" /> <location filename="../QScintilla/ShellWindow.py" line="828" /> <location filename="../ViewManager/ViewManager.py" line="2315" /> <location filename="../ViewManager/ViewManager.py" line="2275" /> @@ -96366,17 +96371,17 @@ <translation>Alt+Shift+Left</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1357" /> - <location filename="../QScintilla/MiniEditor.py" line="1354" /> + <location filename="../QScintilla/MiniEditor.py" line="1358" /> + <location filename="../QScintilla/MiniEditor.py" line="1355" /> <location filename="../ViewManager/ViewManager.py" line="2286" /> <location filename="../ViewManager/ViewManager.py" line="2283" /> <source>Extend selection right one word part</source> <translation>Extender selección a la derecha una parte de palabra</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2181" /> - <location filename="../QScintilla/MiniEditor.py" line="1414" /> - <location filename="../QScintilla/MiniEditor.py" line="1368" /> + <location filename="../QScintilla/MiniEditor.py" line="2182" /> + <location filename="../QScintilla/MiniEditor.py" line="1415" /> + <location filename="../QScintilla/MiniEditor.py" line="1369" /> <location filename="../QScintilla/ShellWindow.py" line="856" /> <location filename="../ViewManager/ViewManager.py" line="3093" /> <location filename="../ViewManager/ViewManager.py" line="2343" /> @@ -96385,8 +96390,8 @@ <translation>Alt+Shift+Right</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1378" /> <location filename="../QScintilla/MiniEditor.py" line="1377" /> - <location filename="../QScintilla/MiniEditor.py" line="1376" /> <location filename="../QScintilla/ShellWindow.py" line="819" /> <location filename="../QScintilla/ShellWindow.py" line="818" /> <location filename="../ViewManager/ViewManager.py" line="2306" /> @@ -96395,8 +96400,8 @@ <translation>Extender selección a la izquierda una palabra</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2307" /> - <location filename="../QScintilla/MiniEditor.py" line="1392" /> + <location filename="../QScintilla/MiniEditor.py" line="2308" /> + <location filename="../QScintilla/MiniEditor.py" line="1393" /> <location filename="../QScintilla/ShellWindow.py" line="834" /> <location filename="../ViewManager/ViewManager.py" line="3219" /> <location filename="../ViewManager/ViewManager.py" line="2321" /> @@ -96404,8 +96409,8 @@ <translation>Ctrl+Shift+Left</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1403" /> - <location filename="../QScintilla/MiniEditor.py" line="1400" /> + <location filename="../QScintilla/MiniEditor.py" line="1404" /> + <location filename="../QScintilla/MiniEditor.py" line="1401" /> <location filename="../QScintilla/ShellWindow.py" line="845" /> <location filename="../QScintilla/ShellWindow.py" line="842" /> <location filename="../ViewManager/ViewManager.py" line="2332" /> @@ -96414,8 +96419,8 @@ <translation>Extender selección a la derecha una palabra</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1868" /> - <location filename="../QScintilla/MiniEditor.py" line="1420" /> + <location filename="../QScintilla/MiniEditor.py" line="1869" /> + <location filename="../QScintilla/MiniEditor.py" line="1421" /> <location filename="../QScintilla/ShellWindow.py" line="862" /> <location filename="../ViewManager/ViewManager.py" line="2780" /> <location filename="../ViewManager/ViewManager.py" line="2349" /> @@ -96423,8 +96428,8 @@ <translation>Ctrl+Shift+Right</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1432" /> - <location filename="../QScintilla/MiniEditor.py" line="1428" /> + <location filename="../QScintilla/MiniEditor.py" line="1433" /> + <location filename="../QScintilla/MiniEditor.py" line="1429" /> <location filename="../QScintilla/ShellWindow.py" line="874" /> <location filename="../QScintilla/ShellWindow.py" line="870" /> <location filename="../ViewManager/ViewManager.py" line="2361" /> @@ -96433,15 +96438,15 @@ <translation>Extender selección al primer carácter visible en la línea de documento</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1443" /> + <location filename="../QScintilla/MiniEditor.py" line="1444" /> <location filename="../QScintilla/ShellWindow.py" line="885" /> <location filename="../ViewManager/ViewManager.py" line="2372" /> <source>Shift+Home</source> <translation>Shift+Home</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1453" /> - <location filename="../QScintilla/MiniEditor.py" line="1450" /> + <location filename="../QScintilla/MiniEditor.py" line="1454" /> + <location filename="../QScintilla/MiniEditor.py" line="1451" /> <location filename="../QScintilla/ShellWindow.py" line="895" /> <location filename="../QScintilla/ShellWindow.py" line="892" /> <location filename="../ViewManager/ViewManager.py" line="2382" /> @@ -96450,124 +96455,124 @@ <translation>Extender selección hasta el final de la línea de documento</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1463" /> + <location filename="../QScintilla/MiniEditor.py" line="1464" /> <location filename="../QScintilla/ShellWindow.py" line="905" /> <location filename="../ViewManager/ViewManager.py" line="2392" /> <source>Meta+Shift+E</source> <translation>Meta+Shift+E</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1467" /> + <location filename="../QScintilla/MiniEditor.py" line="1468" /> <location filename="../QScintilla/ShellWindow.py" line="909" /> <location filename="../ViewManager/ViewManager.py" line="2396" /> <source>Shift+End</source> <translation>Shift+End</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1477" /> - <location filename="../QScintilla/MiniEditor.py" line="1474" /> + <location filename="../QScintilla/MiniEditor.py" line="1478" /> + <location filename="../QScintilla/MiniEditor.py" line="1475" /> <location filename="../ViewManager/ViewManager.py" line="2406" /> <location filename="../ViewManager/ViewManager.py" line="2403" /> <source>Extend selection up one paragraph</source> <translation>Extender selección hacia arriba un párrafo</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1480" /> + <location filename="../QScintilla/MiniEditor.py" line="1481" /> <location filename="../ViewManager/ViewManager.py" line="2409" /> <source>Alt+Shift+Up</source> <translation>Alt+Shift+Up</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1493" /> - <location filename="../QScintilla/MiniEditor.py" line="1490" /> + <location filename="../QScintilla/MiniEditor.py" line="1494" /> + <location filename="../QScintilla/MiniEditor.py" line="1491" /> <location filename="../ViewManager/ViewManager.py" line="2422" /> <location filename="../ViewManager/ViewManager.py" line="2419" /> <source>Extend selection down one paragraph</source> <translation>Extender selección hacia abajo un párrafo</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1496" /> + <location filename="../QScintilla/MiniEditor.py" line="1497" /> <location filename="../ViewManager/ViewManager.py" line="2425" /> <source>Alt+Shift+Down</source> <translation>Alt+Shift+Down</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1508" /> <location filename="../QScintilla/MiniEditor.py" line="1507" /> - <location filename="../QScintilla/MiniEditor.py" line="1506" /> <location filename="../ViewManager/ViewManager.py" line="2436" /> <location filename="../ViewManager/ViewManager.py" line="2435" /> <source>Extend selection up one page</source> <translation>Extender selección arriba una página</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1508" /> + <location filename="../QScintilla/MiniEditor.py" line="1509" /> <location filename="../ViewManager/ViewManager.py" line="2437" /> <source>Shift+PgUp</source> <translation>Shift+PgUp</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1520" /> <location filename="../QScintilla/MiniEditor.py" line="1519" /> - <location filename="../QScintilla/MiniEditor.py" line="1518" /> <location filename="../ViewManager/ViewManager.py" line="2448" /> <location filename="../ViewManager/ViewManager.py" line="2447" /> <source>Extend selection down one page</source> <translation>Extender selección hacia abajo una línea</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1520" /> + <location filename="../QScintilla/MiniEditor.py" line="1521" /> <location filename="../ViewManager/ViewManager.py" line="2449" /> <source>Shift+PgDown</source> <translation>Shift+PgDown</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1527" /> + <location filename="../QScintilla/MiniEditor.py" line="1528" /> <location filename="../ViewManager/ViewManager.py" line="2456" /> <source>Meta+Shift+V</source> <translation>Meta+Shift+V</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1537" /> - <location filename="../QScintilla/MiniEditor.py" line="1534" /> + <location filename="../QScintilla/MiniEditor.py" line="1538" /> + <location filename="../QScintilla/MiniEditor.py" line="1535" /> <location filename="../ViewManager/ViewManager.py" line="2466" /> <location filename="../ViewManager/ViewManager.py" line="2463" /> <source>Extend selection to start of document</source> <translation>Extender selección al principio del documento</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1547" /> + <location filename="../QScintilla/MiniEditor.py" line="1548" /> <location filename="../ViewManager/ViewManager.py" line="2476" /> <source>Ctrl+Shift+Up</source> <translation>Ctrl+Shift+Up</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1552" /> + <location filename="../QScintilla/MiniEditor.py" line="1553" /> <location filename="../ViewManager/ViewManager.py" line="2481" /> <source>Ctrl+Shift+Home</source> <translation>Ctrl+Shift+Home</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1563" /> - <location filename="../QScintilla/MiniEditor.py" line="1560" /> + <location filename="../QScintilla/MiniEditor.py" line="1564" /> + <location filename="../QScintilla/MiniEditor.py" line="1561" /> <location filename="../ViewManager/ViewManager.py" line="2492" /> <location filename="../ViewManager/ViewManager.py" line="2489" /> <source>Extend selection to end of document</source> <translation>Extender selección al final del documento</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1574" /> + <location filename="../QScintilla/MiniEditor.py" line="1575" /> <location filename="../ViewManager/ViewManager.py" line="2503" /> <source>Ctrl+Shift+Down</source> <translation>Ctrl+Shift+Down</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1580" /> + <location filename="../QScintilla/MiniEditor.py" line="1581" /> <location filename="../ViewManager/ViewManager.py" line="2509" /> <source>Ctrl+Shift+End</source> <translation>Ctrl+Shift+End</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1590" /> <location filename="../QScintilla/MiniEditor.py" line="1589" /> - <location filename="../QScintilla/MiniEditor.py" line="1588" /> <location filename="../QScintilla/ShellWindow.py" line="477" /> <location filename="../QScintilla/ShellWindow.py" line="476" /> <location filename="../ViewManager/ViewManager.py" line="2518" /> @@ -96576,37 +96581,37 @@ <translation>Borrar carácter anterior</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1590" /> + <location filename="../QScintilla/MiniEditor.py" line="1591" /> <location filename="../QScintilla/ShellWindow.py" line="478" /> <location filename="../ViewManager/ViewManager.py" line="2519" /> <source>Backspace</source> <translation>Backspace</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1597" /> + <location filename="../QScintilla/MiniEditor.py" line="1598" /> <location filename="../QScintilla/ShellWindow.py" line="485" /> <location filename="../ViewManager/ViewManager.py" line="2526" /> <source>Meta+H</source> <translation>Meta+H</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1602" /> + <location filename="../QScintilla/MiniEditor.py" line="1603" /> <location filename="../QScintilla/ShellWindow.py" line="490" /> <location filename="../ViewManager/ViewManager.py" line="2531" /> <source>Shift+Backspace</source> <translation>Shift+Backspace</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1613" /> - <location filename="../QScintilla/MiniEditor.py" line="1610" /> + <location filename="../QScintilla/MiniEditor.py" line="1614" /> + <location filename="../QScintilla/MiniEditor.py" line="1611" /> <location filename="../ViewManager/ViewManager.py" line="2542" /> <location filename="../ViewManager/ViewManager.py" line="2539" /> <source>Delete previous character if not at start of line</source> <translation>Borrar carácter anterior si no se está al principio de la línea</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1628" /> <location filename="../QScintilla/MiniEditor.py" line="1627" /> - <location filename="../QScintilla/MiniEditor.py" line="1626" /> <location filename="../QScintilla/ShellWindow.py" line="499" /> <location filename="../QScintilla/ShellWindow.py" line="498" /> <location filename="../ViewManager/ViewManager.py" line="2556" /> @@ -96615,22 +96620,22 @@ <translation>Borrar carácter actual</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1628" /> + <location filename="../QScintilla/MiniEditor.py" line="1629" /> <location filename="../QScintilla/ShellWindow.py" line="500" /> <location filename="../ViewManager/ViewManager.py" line="2557" /> <source>Del</source> <translation>Del</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1635" /> + <location filename="../QScintilla/MiniEditor.py" line="1636" /> <location filename="../QScintilla/ShellWindow.py" line="507" /> <location filename="../ViewManager/ViewManager.py" line="2564" /> <source>Meta+D</source> <translation>Meta+D</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1644" /> <location filename="../QScintilla/MiniEditor.py" line="1643" /> - <location filename="../QScintilla/MiniEditor.py" line="1642" /> <location filename="../QScintilla/ShellWindow.py" line="515" /> <location filename="../QScintilla/ShellWindow.py" line="514" /> <location filename="../ViewManager/ViewManager.py" line="2572" /> @@ -96639,15 +96644,15 @@ <translation>Borrar palabra a la izquierda</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1644" /> + <location filename="../QScintilla/MiniEditor.py" line="1645" /> <location filename="../QScintilla/ShellWindow.py" line="516" /> <location filename="../ViewManager/ViewManager.py" line="2573" /> <source>Ctrl+Backspace</source> <translation>Ctrl+Backspace</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1656" /> <location filename="../QScintilla/MiniEditor.py" line="1655" /> - <location filename="../QScintilla/MiniEditor.py" line="1654" /> <location filename="../QScintilla/ShellWindow.py" line="527" /> <location filename="../QScintilla/ShellWindow.py" line="526" /> <location filename="../ViewManager/ViewManager.py" line="2584" /> @@ -96656,15 +96661,15 @@ <translation>Borrar palabra a la derecha</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1656" /> + <location filename="../QScintilla/MiniEditor.py" line="1657" /> <location filename="../QScintilla/ShellWindow.py" line="528" /> <location filename="../ViewManager/ViewManager.py" line="2585" /> <source>Ctrl+Del</source> <translation>Ctrl+Del</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1668" /> <location filename="../QScintilla/MiniEditor.py" line="1667" /> - <location filename="../QScintilla/MiniEditor.py" line="1666" /> <location filename="../QScintilla/ShellWindow.py" line="539" /> <location filename="../QScintilla/ShellWindow.py" line="538" /> <location filename="../ViewManager/ViewManager.py" line="2596" /> @@ -96673,15 +96678,15 @@ <translation>Borrar línea a la izquierda</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1669" /> + <location filename="../QScintilla/MiniEditor.py" line="1670" /> <location filename="../QScintilla/ShellWindow.py" line="541" /> <location filename="../ViewManager/ViewManager.py" line="2598" /> <source>Ctrl+Shift+Backspace</source> <translation>Ctrl+Shift+Backspace</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1682" /> <location filename="../QScintilla/MiniEditor.py" line="1681" /> - <location filename="../QScintilla/MiniEditor.py" line="1680" /> <location filename="../QScintilla/ShellWindow.py" line="553" /> <location filename="../QScintilla/ShellWindow.py" line="552" /> <location filename="../ViewManager/ViewManager.py" line="2610" /> @@ -96690,22 +96695,22 @@ <translation>Borrar línea a la derecha</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1689" /> + <location filename="../QScintilla/MiniEditor.py" line="1690" /> <location filename="../QScintilla/ShellWindow.py" line="561" /> <location filename="../ViewManager/ViewManager.py" line="2618" /> <source>Meta+K</source> <translation>Meta+K</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1694" /> + <location filename="../QScintilla/MiniEditor.py" line="1695" /> <location filename="../QScintilla/ShellWindow.py" line="566" /> <location filename="../ViewManager/ViewManager.py" line="2623" /> <source>Ctrl+Shift+Del</source> <translation>Ctrl+Shift+Del</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1704" /> <location filename="../QScintilla/MiniEditor.py" line="1703" /> - <location filename="../QScintilla/MiniEditor.py" line="1702" /> <location filename="../QScintilla/ShellWindow.py" line="465" /> <location filename="../QScintilla/ShellWindow.py" line="464" /> <location filename="../ViewManager/ViewManager.py" line="2632" /> @@ -96714,14 +96719,14 @@ <translation>Insertar nueva línea</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1704" /> + <location filename="../QScintilla/MiniEditor.py" line="1705" /> <location filename="../QScintilla/ShellWindow.py" line="466" /> <location filename="../ViewManager/ViewManager.py" line="2633" /> <source>Return</source> <translation>Return</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1705" /> + <location filename="../QScintilla/MiniEditor.py" line="1706" /> <location filename="../QScintilla/ShellWindow.py" line="467" /> <location filename="../ViewManager/ViewManager.py" line="2634" /> <source>Enter</source> @@ -96744,8 +96749,8 @@ <translation>Shift+Entrar</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1716" /> <location filename="../QScintilla/MiniEditor.py" line="1715" /> - <location filename="../QScintilla/MiniEditor.py" line="1714" /> <location filename="../QScintilla/ShellWindow.py" line="441" /> <location filename="../QScintilla/ShellWindow.py" line="440" /> <location filename="../ViewManager/ViewManager.py" line="2659" /> @@ -96754,129 +96759,129 @@ <translation>Borrar línea actual</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1716" /> + <location filename="../QScintilla/MiniEditor.py" line="1717" /> <location filename="../QScintilla/ShellWindow.py" line="442" /> <location filename="../ViewManager/ViewManager.py" line="2660" /> <source>Ctrl+Shift+L</source> <translation>Ctrl+Shift+L</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1728" /> <location filename="../QScintilla/MiniEditor.py" line="1727" /> - <location filename="../QScintilla/MiniEditor.py" line="1726" /> <location filename="../ViewManager/ViewManager.py" line="2671" /> <location filename="../ViewManager/ViewManager.py" line="2670" /> <source>Duplicate current line</source> <translation>Duplicar línea actual</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1728" /> + <location filename="../QScintilla/MiniEditor.py" line="1729" /> <location filename="../ViewManager/ViewManager.py" line="2672" /> <source>Ctrl+D</source> <translation>Ctrl+D</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1741" /> - <location filename="../QScintilla/MiniEditor.py" line="1738" /> + <location filename="../QScintilla/MiniEditor.py" line="1742" /> + <location filename="../QScintilla/MiniEditor.py" line="1739" /> <location filename="../ViewManager/ViewManager.py" line="2685" /> <location filename="../ViewManager/ViewManager.py" line="2682" /> <source>Swap current and previous lines</source> <translation>Intercambiar línea actual con la anterior</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1744" /> + <location filename="../QScintilla/MiniEditor.py" line="1745" /> <location filename="../ViewManager/ViewManager.py" line="2688" /> <source>Ctrl+T</source> <translation>Ctrl+T</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1756" /> <location filename="../QScintilla/MiniEditor.py" line="1755" /> - <location filename="../QScintilla/MiniEditor.py" line="1754" /> <location filename="../ViewManager/ViewManager.py" line="2699" /> <location filename="../ViewManager/ViewManager.py" line="2698" /> <source>Reverse selected lines</source> <translation>Revertir líneas seleccionadas</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1756" /> + <location filename="../QScintilla/MiniEditor.py" line="1757" /> <location filename="../ViewManager/ViewManager.py" line="2700" /> <source>Meta+Alt+R</source> <translation>Meta+Alt+R</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1768" /> <location filename="../QScintilla/MiniEditor.py" line="1767" /> - <location filename="../QScintilla/MiniEditor.py" line="1766" /> <location filename="../ViewManager/ViewManager.py" line="2711" /> <location filename="../ViewManager/ViewManager.py" line="2710" /> <source>Cut current line</source> <translation>Cortar línea actual</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1768" /> + <location filename="../QScintilla/MiniEditor.py" line="1769" /> <location filename="../ViewManager/ViewManager.py" line="2712" /> <source>Alt+Shift+L</source> <translation>Alt+Shift+L</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1780" /> <location filename="../QScintilla/MiniEditor.py" line="1779" /> - <location filename="../QScintilla/MiniEditor.py" line="1778" /> <location filename="../ViewManager/ViewManager.py" line="2723" /> <location filename="../ViewManager/ViewManager.py" line="2722" /> <source>Copy current line</source> <translation>Copiar línea actual</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1780" /> + <location filename="../QScintilla/MiniEditor.py" line="1781" /> <location filename="../ViewManager/ViewManager.py" line="2724" /> <source>Ctrl+Shift+T</source> <translation>Ctrl+Shift+T</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1792" /> <location filename="../QScintilla/MiniEditor.py" line="1791" /> - <location filename="../QScintilla/MiniEditor.py" line="1790" /> <location filename="../ViewManager/ViewManager.py" line="2735" /> <location filename="../ViewManager/ViewManager.py" line="2734" /> <source>Toggle insert/overtype</source> <translation>Alternar insertar/sobreescribir</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1792" /> + <location filename="../QScintilla/MiniEditor.py" line="1793" /> <location filename="../ViewManager/ViewManager.py" line="2736" /> <source>Ins</source> <translation>Ins</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1836" /> <location filename="../QScintilla/MiniEditor.py" line="1835" /> - <location filename="../QScintilla/MiniEditor.py" line="1834" /> <location filename="../ViewManager/ViewManager.py" line="2747" /> <location filename="../ViewManager/ViewManager.py" line="2746" /> <source>Move to end of display line</source> <translation>Mover al final de la línea mostrada</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1847" /> + <location filename="../QScintilla/MiniEditor.py" line="1848" /> <location filename="../ViewManager/ViewManager.py" line="2759" /> <source>Alt+End</source> <translation>Alt+End</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1857" /> - <location filename="../QScintilla/MiniEditor.py" line="1854" /> + <location filename="../QScintilla/MiniEditor.py" line="1858" /> + <location filename="../QScintilla/MiniEditor.py" line="1855" /> <location filename="../ViewManager/ViewManager.py" line="2769" /> <location filename="../ViewManager/ViewManager.py" line="2766" /> <source>Extend selection to end of display line</source> <translation>Extender selección hasta el final de la línea mostrada</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1878" /> <location filename="../QScintilla/MiniEditor.py" line="1877" /> - <location filename="../QScintilla/MiniEditor.py" line="1876" /> <location filename="../ViewManager/ViewManager.py" line="2789" /> <location filename="../ViewManager/ViewManager.py" line="2788" /> <source>Formfeed</source> <translation>Formfeed</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1890" /> <location filename="../QScintilla/MiniEditor.py" line="1889" /> - <location filename="../QScintilla/MiniEditor.py" line="1888" /> <location filename="../QScintilla/ShellWindow.py" line="767" /> <location filename="../QScintilla/ShellWindow.py" line="766" /> <location filename="../ViewManager/ViewManager.py" line="2801" /> @@ -96885,423 +96890,423 @@ <translation>Escape</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1890" /> + <location filename="../QScintilla/MiniEditor.py" line="1891" /> <location filename="../QScintilla/ShellWindow.py" line="768" /> <location filename="../ViewManager/ViewManager.py" line="2802" /> <source>Esc</source> <translation>Esc</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1903" /> - <location filename="../QScintilla/MiniEditor.py" line="1900" /> + <location filename="../QScintilla/MiniEditor.py" line="1904" /> + <location filename="../QScintilla/MiniEditor.py" line="1901" /> <location filename="../ViewManager/ViewManager.py" line="2815" /> <location filename="../ViewManager/ViewManager.py" line="2812" /> <source>Extend rectangular selection down one line</source> <translation>Extender selección rectangular hacia abajo una línea</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1906" /> + <location filename="../QScintilla/MiniEditor.py" line="1907" /> <location filename="../ViewManager/ViewManager.py" line="2818" /> <source>Alt+Ctrl+Down</source> <translation>Alt+Ctrl+Down</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1914" /> + <location filename="../QScintilla/MiniEditor.py" line="1915" /> <location filename="../ViewManager/ViewManager.py" line="2826" /> <source>Meta+Alt+Shift+N</source> <translation>Meta+Alt+Shift+N</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1925" /> - <location filename="../QScintilla/MiniEditor.py" line="1922" /> + <location filename="../QScintilla/MiniEditor.py" line="1926" /> + <location filename="../QScintilla/MiniEditor.py" line="1923" /> <location filename="../ViewManager/ViewManager.py" line="2837" /> <location filename="../ViewManager/ViewManager.py" line="2834" /> <source>Extend rectangular selection up one line</source> <translation>Extender selección rectangular hacia arriba una línea</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1928" /> + <location filename="../QScintilla/MiniEditor.py" line="1929" /> <location filename="../ViewManager/ViewManager.py" line="2840" /> <source>Alt+Ctrl+Up</source> <translation>Alt+Ctrl+Up</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1936" /> + <location filename="../QScintilla/MiniEditor.py" line="1937" /> <location filename="../ViewManager/ViewManager.py" line="2848" /> <source>Meta+Alt+Shift+P</source> <translation>Meta+Alt+Shift+P</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1947" /> - <location filename="../QScintilla/MiniEditor.py" line="1944" /> + <location filename="../QScintilla/MiniEditor.py" line="1948" /> + <location filename="../QScintilla/MiniEditor.py" line="1945" /> <location filename="../ViewManager/ViewManager.py" line="2859" /> <location filename="../ViewManager/ViewManager.py" line="2856" /> <source>Extend rectangular selection left one character</source> <translation>Extender selección rectangular a la izquierda un carácter</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1950" /> + <location filename="../QScintilla/MiniEditor.py" line="1951" /> <location filename="../ViewManager/ViewManager.py" line="2862" /> <source>Alt+Ctrl+Left</source> <translation>Alt+Ctrl+Left</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1958" /> + <location filename="../QScintilla/MiniEditor.py" line="1959" /> <location filename="../ViewManager/ViewManager.py" line="2870" /> <source>Meta+Alt+Shift+B</source> <translation>Meta+Alt+Shift+B</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1969" /> - <location filename="../QScintilla/MiniEditor.py" line="1966" /> + <location filename="../QScintilla/MiniEditor.py" line="1970" /> + <location filename="../QScintilla/MiniEditor.py" line="1967" /> <location filename="../ViewManager/ViewManager.py" line="2881" /> <location filename="../ViewManager/ViewManager.py" line="2878" /> <source>Extend rectangular selection right one character</source> <translation>Extender selección rectangular a la derecha un carácter</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1972" /> + <location filename="../QScintilla/MiniEditor.py" line="1973" /> <location filename="../ViewManager/ViewManager.py" line="2884" /> <source>Alt+Ctrl+Right</source> <translation>Alt+Ctrl+Right</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1980" /> + <location filename="../QScintilla/MiniEditor.py" line="1981" /> <location filename="../ViewManager/ViewManager.py" line="2892" /> <source>Meta+Alt+Shift+F</source> <translation>Meta+Alt+Shift+F</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1993" /> - <location filename="../QScintilla/MiniEditor.py" line="1988" /> + <location filename="../QScintilla/MiniEditor.py" line="1994" /> + <location filename="../QScintilla/MiniEditor.py" line="1989" /> <location filename="../ViewManager/ViewManager.py" line="2905" /> <location filename="../ViewManager/ViewManager.py" line="2900" /> <source>Extend rectangular selection to first visible character in document line</source> <translation>Extender selección rectangular al primer carácter visible en la línea de documento</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2006" /> + <location filename="../QScintilla/MiniEditor.py" line="2007" /> <location filename="../ViewManager/ViewManager.py" line="2918" /> <source>Alt+Shift+Home</source> <translation>Alt+Shift+Home</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2017" /> - <location filename="../QScintilla/MiniEditor.py" line="2014" /> + <location filename="../QScintilla/MiniEditor.py" line="2018" /> + <location filename="../QScintilla/MiniEditor.py" line="2015" /> <location filename="../ViewManager/ViewManager.py" line="2929" /> <location filename="../ViewManager/ViewManager.py" line="2926" /> <source>Extend rectangular selection to end of document line</source> <translation>Extender selección rectangular hasta el final de la línea de documento</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2028" /> + <location filename="../QScintilla/MiniEditor.py" line="2029" /> <location filename="../ViewManager/ViewManager.py" line="2940" /> <source>Meta+Alt+Shift+E</source> <translation>Meta+Alt+Shift+E</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2033" /> + <location filename="../QScintilla/MiniEditor.py" line="2034" /> <location filename="../ViewManager/ViewManager.py" line="2945" /> <source>Alt+Shift+End</source> <translation>Alt+Shift+End</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2043" /> - <location filename="../QScintilla/MiniEditor.py" line="2040" /> + <location filename="../QScintilla/MiniEditor.py" line="2044" /> + <location filename="../QScintilla/MiniEditor.py" line="2041" /> <location filename="../ViewManager/ViewManager.py" line="2955" /> <location filename="../ViewManager/ViewManager.py" line="2952" /> <source>Extend rectangular selection up one page</source> <translation>Extender selección rectangular hacia arriba una página</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2046" /> + <location filename="../QScintilla/MiniEditor.py" line="2047" /> <location filename="../ViewManager/ViewManager.py" line="2958" /> <source>Alt+Shift+PgUp</source> <translation>Alt+Shift+PgUp</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2059" /> - <location filename="../QScintilla/MiniEditor.py" line="2056" /> + <location filename="../QScintilla/MiniEditor.py" line="2060" /> + <location filename="../QScintilla/MiniEditor.py" line="2057" /> <location filename="../ViewManager/ViewManager.py" line="2971" /> <location filename="../ViewManager/ViewManager.py" line="2968" /> <source>Extend rectangular selection down one page</source> <translation>Extender selección rectangular hacia abajo una página</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2062" /> + <location filename="../QScintilla/MiniEditor.py" line="2063" /> <location filename="../ViewManager/ViewManager.py" line="2974" /> <source>Alt+Shift+PgDown</source> <translation>Alt+Shift+PgDown</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2070" /> + <location filename="../QScintilla/MiniEditor.py" line="2071" /> <location filename="../ViewManager/ViewManager.py" line="2982" /> <source>Meta+Alt+Shift+V</source> <translation>Meta+Alt+Shift+V</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="2546" /> <location filename="../QScintilla/MiniEditor.py" line="2545" /> - <location filename="../QScintilla/MiniEditor.py" line="2544" /> + <location filename="../QScintilla/MiniEditor.py" line="2080" /> <location filename="../QScintilla/MiniEditor.py" line="2079" /> - <location filename="../QScintilla/MiniEditor.py" line="2078" /> <location filename="../ViewManager/ViewManager.py" line="2991" /> <location filename="../ViewManager/ViewManager.py" line="2990" /> <source>Duplicate current selection</source> <translation>Duplicar selección actual</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2546" /> - <location filename="../QScintilla/MiniEditor.py" line="2080" /> + <location filename="../QScintilla/MiniEditor.py" line="2547" /> + <location filename="../QScintilla/MiniEditor.py" line="2081" /> <location filename="../ViewManager/ViewManager.py" line="2992" /> <source>Ctrl+Shift+D</source> <translation>Ctrl+Shift+D</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2094" /> - <location filename="../QScintilla/MiniEditor.py" line="2091" /> + <location filename="../QScintilla/MiniEditor.py" line="2095" /> + <location filename="../QScintilla/MiniEditor.py" line="2092" /> <location filename="../ViewManager/ViewManager.py" line="3006" /> <location filename="../ViewManager/ViewManager.py" line="3003" /> <source>Scroll to start of document</source> <translation>Desplazamiento hasta el principio del documento</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="2114" /> <location filename="../QScintilla/MiniEditor.py" line="2113" /> - <location filename="../QScintilla/MiniEditor.py" line="2112" /> <location filename="../ViewManager/ViewManager.py" line="3025" /> <location filename="../ViewManager/ViewManager.py" line="3024" /> <source>Scroll to end of document</source> <translation>Desplazamiento hasta el final del documento</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2132" /> - <location filename="../QScintilla/MiniEditor.py" line="2129" /> + <location filename="../QScintilla/MiniEditor.py" line="2133" /> + <location filename="../QScintilla/MiniEditor.py" line="2130" /> <location filename="../ViewManager/ViewManager.py" line="3044" /> <location filename="../ViewManager/ViewManager.py" line="3041" /> <source>Scroll vertically to center current line</source> <translation>Desplazamiento vertical para centrar la línea actual</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2142" /> + <location filename="../QScintilla/MiniEditor.py" line="2143" /> <location filename="../ViewManager/ViewManager.py" line="3054" /> <source>Meta+L</source> <translation>Meta+L</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="2152" /> <location filename="../QScintilla/MiniEditor.py" line="2151" /> - <location filename="../QScintilla/MiniEditor.py" line="2150" /> <location filename="../ViewManager/ViewManager.py" line="3063" /> <location filename="../ViewManager/ViewManager.py" line="3062" /> <source>Move to end of next word</source> <translation>Mover al final de la palabra siguiente</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2170" /> - <location filename="../QScintilla/MiniEditor.py" line="2167" /> + <location filename="../QScintilla/MiniEditor.py" line="2171" /> + <location filename="../QScintilla/MiniEditor.py" line="2168" /> <location filename="../ViewManager/ViewManager.py" line="3082" /> <location filename="../ViewManager/ViewManager.py" line="3079" /> <source>Extend selection to end of next word</source> <translation>Extender selección al final de la siguiente palabra</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2193" /> - <location filename="../QScintilla/MiniEditor.py" line="2190" /> + <location filename="../QScintilla/MiniEditor.py" line="2194" /> + <location filename="../QScintilla/MiniEditor.py" line="2191" /> <location filename="../ViewManager/ViewManager.py" line="3105" /> <location filename="../ViewManager/ViewManager.py" line="3102" /> <source>Move to end of previous word</source> <translation>Mover al final de la palabra anterior</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2210" /> - <location filename="../QScintilla/MiniEditor.py" line="2207" /> + <location filename="../QScintilla/MiniEditor.py" line="2211" /> + <location filename="../QScintilla/MiniEditor.py" line="2208" /> <location filename="../ViewManager/ViewManager.py" line="3122" /> <location filename="../ViewManager/ViewManager.py" line="3119" /> <source>Extend selection to end of previous word</source> <translation>Extender selección al final de la palabra anterior</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2227" /> - <location filename="../QScintilla/MiniEditor.py" line="2224" /> + <location filename="../QScintilla/MiniEditor.py" line="2228" /> + <location filename="../QScintilla/MiniEditor.py" line="2225" /> <location filename="../ViewManager/ViewManager.py" line="3139" /> <location filename="../ViewManager/ViewManager.py" line="3136" /> <source>Move to start of document line</source> <translation>Mover al principio de la línea de documento</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2237" /> + <location filename="../QScintilla/MiniEditor.py" line="2238" /> <location filename="../ViewManager/ViewManager.py" line="3149" /> <source>Meta+A</source> <translation>Meta+A</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2248" /> - <location filename="../QScintilla/MiniEditor.py" line="2245" /> + <location filename="../QScintilla/MiniEditor.py" line="2249" /> + <location filename="../QScintilla/MiniEditor.py" line="2246" /> <location filename="../ViewManager/ViewManager.py" line="3160" /> <location filename="../ViewManager/ViewManager.py" line="3157" /> <source>Extend selection to start of document line</source> <translation>Extender selección hasta el inicio de la línea documento</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2259" /> + <location filename="../QScintilla/MiniEditor.py" line="2260" /> <location filename="../ViewManager/ViewManager.py" line="3171" /> <source>Meta+Shift+A</source> <translation>/media/110106_1117</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2272" /> - <location filename="../QScintilla/MiniEditor.py" line="2268" /> + <location filename="../QScintilla/MiniEditor.py" line="2273" /> + <location filename="../QScintilla/MiniEditor.py" line="2269" /> <location filename="../ViewManager/ViewManager.py" line="3184" /> <location filename="../ViewManager/ViewManager.py" line="3180" /> <source>Extend rectangular selection to start of document line</source> <translation>Extender selección rectangular hasta el principio de la línea de documento</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2284" /> + <location filename="../QScintilla/MiniEditor.py" line="2285" /> <location filename="../ViewManager/ViewManager.py" line="3196" /> <source>Meta+Alt+Shift+A</source> <translation>Meta+Alt+Shift+A</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2296" /> - <location filename="../QScintilla/MiniEditor.py" line="2293" /> + <location filename="../QScintilla/MiniEditor.py" line="2297" /> + <location filename="../QScintilla/MiniEditor.py" line="2294" /> <location filename="../ViewManager/ViewManager.py" line="3208" /> <location filename="../ViewManager/ViewManager.py" line="3205" /> <source>Extend selection to start of display line</source> <translation>Extender selección hasta el principio de la línea mostrada</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2319" /> - <location filename="../QScintilla/MiniEditor.py" line="2316" /> + <location filename="../QScintilla/MiniEditor.py" line="2320" /> + <location filename="../QScintilla/MiniEditor.py" line="2317" /> <location filename="../ViewManager/ViewManager.py" line="3231" /> <location filename="../ViewManager/ViewManager.py" line="3228" /> <source>Move to start of display or document line</source> <translation>Mover al principio de línea mostrada o de documento</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2337" /> - <location filename="../QScintilla/MiniEditor.py" line="2333" /> + <location filename="../QScintilla/MiniEditor.py" line="2338" /> + <location filename="../QScintilla/MiniEditor.py" line="2334" /> <location filename="../ViewManager/ViewManager.py" line="3249" /> <location filename="../ViewManager/ViewManager.py" line="3245" /> <source>Extend selection to start of display or document line</source> <translation>Extender selección hasta el inicio de la línea mostrada o de documento</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2356" /> - <location filename="../QScintilla/MiniEditor.py" line="2352" /> + <location filename="../QScintilla/MiniEditor.py" line="2357" /> + <location filename="../QScintilla/MiniEditor.py" line="2353" /> <location filename="../ViewManager/ViewManager.py" line="3268" /> <location filename="../ViewManager/ViewManager.py" line="3264" /> <source>Move to first visible character in display or document line</source> <translation>Mover al primer carácter visible en la línea mostrada o de documento</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2376" /> - <location filename="../QScintilla/MiniEditor.py" line="2371" /> + <location filename="../QScintilla/MiniEditor.py" line="2377" /> + <location filename="../QScintilla/MiniEditor.py" line="2372" /> <location filename="../ViewManager/ViewManager.py" line="3288" /> <location filename="../ViewManager/ViewManager.py" line="3283" /> <source>Extend selection to first visible character in display or document line</source> <translation>Extender selección al primer carácter visible en la línea mostrada o de documento</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2395" /> - <location filename="../QScintilla/MiniEditor.py" line="2392" /> + <location filename="../QScintilla/MiniEditor.py" line="2396" /> + <location filename="../QScintilla/MiniEditor.py" line="2393" /> <location filename="../ViewManager/ViewManager.py" line="3307" /> <location filename="../ViewManager/ViewManager.py" line="3304" /> <source>Move to end of display or document line</source> <translation>Mover al final de la línea mostrada o de documento</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2412" /> - <location filename="../QScintilla/MiniEditor.py" line="2409" /> + <location filename="../QScintilla/MiniEditor.py" line="2413" /> + <location filename="../QScintilla/MiniEditor.py" line="2410" /> <location filename="../ViewManager/ViewManager.py" line="3324" /> <location filename="../ViewManager/ViewManager.py" line="3321" /> <source>Extend selection to end of display or document line</source> <translation>Extender selección al final de la línea mostrada o de documento</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="2428" /> <location filename="../QScintilla/MiniEditor.py" line="2427" /> - <location filename="../QScintilla/MiniEditor.py" line="2426" /> <location filename="../ViewManager/ViewManager.py" line="3339" /> <location filename="../ViewManager/ViewManager.py" line="3338" /> <source>Stuttered move up one page</source> <translation>Mover progresivamente hacia arriba una página</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2442" /> - <location filename="../QScintilla/MiniEditor.py" line="2439" /> + <location filename="../QScintilla/MiniEditor.py" line="2443" /> + <location filename="../QScintilla/MiniEditor.py" line="2440" /> <location filename="../ViewManager/ViewManager.py" line="3354" /> <location filename="../ViewManager/ViewManager.py" line="3351" /> <source>Stuttered extend selection up one page</source> <translation>Extender progresivamente la selección arriba una página</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2459" /> - <location filename="../QScintilla/MiniEditor.py" line="2456" /> + <location filename="../QScintilla/MiniEditor.py" line="2460" /> + <location filename="../QScintilla/MiniEditor.py" line="2457" /> <location filename="../ViewManager/ViewManager.py" line="3371" /> <location filename="../ViewManager/ViewManager.py" line="3368" /> <source>Stuttered move down one page</source> <translation>Mover progresivamente hacia abajo una página</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2476" /> - <location filename="../QScintilla/MiniEditor.py" line="2473" /> + <location filename="../QScintilla/MiniEditor.py" line="2477" /> + <location filename="../QScintilla/MiniEditor.py" line="2474" /> <location filename="../ViewManager/ViewManager.py" line="3388" /> <location filename="../ViewManager/ViewManager.py" line="3385" /> <source>Stuttered extend selection down one page</source> <translation>Extender progresivamente la selección abajo una página</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2493" /> - <location filename="../QScintilla/MiniEditor.py" line="2490" /> + <location filename="../QScintilla/MiniEditor.py" line="2494" /> + <location filename="../QScintilla/MiniEditor.py" line="2491" /> <location filename="../ViewManager/ViewManager.py" line="3405" /> <location filename="../ViewManager/ViewManager.py" line="3402" /> <source>Delete right to end of next word</source> <translation>Borrar a la derecha hasta el final de la siguiente palabra</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2503" /> + <location filename="../QScintilla/MiniEditor.py" line="2504" /> <location filename="../ViewManager/ViewManager.py" line="3415" /> <source>Alt+Del</source> <translation>Alt+Del</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2514" /> - <location filename="../QScintilla/MiniEditor.py" line="2511" /> + <location filename="../QScintilla/MiniEditor.py" line="2515" /> + <location filename="../QScintilla/MiniEditor.py" line="2512" /> <location filename="../ViewManager/ViewManager.py" line="3426" /> <location filename="../ViewManager/ViewManager.py" line="3423" /> <source>Move selected lines up one line</source> <translation>Mover las líneas seleccionadas arriba una línea</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2531" /> - <location filename="../QScintilla/MiniEditor.py" line="2528" /> + <location filename="../QScintilla/MiniEditor.py" line="2532" /> + <location filename="../QScintilla/MiniEditor.py" line="2529" /> <location filename="../ViewManager/ViewManager.py" line="3443" /> <location filename="../ViewManager/ViewManager.py" line="3440" /> <source>Move selected lines down one line</source> <translation>Mover las líneas seleccionadas abajo una línea</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1805" /> - <location filename="../QScintilla/MiniEditor.py" line="1802" /> + <location filename="../QScintilla/MiniEditor.py" line="1806" /> + <location filename="../QScintilla/MiniEditor.py" line="1803" /> <location filename="../ViewManager/ViewManager.py" line="3461" /> <location filename="../ViewManager/ViewManager.py" line="3458" /> <source>Convert selection to lower case</source> <translation>Convertir selección a minúsculas</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1808" /> + <location filename="../QScintilla/MiniEditor.py" line="1809" /> <location filename="../ViewManager/ViewManager.py" line="3464" /> <source>Alt+Shift+U</source> <translation>Alt+Shift+U</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1821" /> - <location filename="../QScintilla/MiniEditor.py" line="1818" /> + <location filename="../QScintilla/MiniEditor.py" line="1822" /> + <location filename="../QScintilla/MiniEditor.py" line="1819" /> <location filename="../ViewManager/ViewManager.py" line="3477" /> <location filename="../ViewManager/ViewManager.py" line="3474" /> <source>Convert selection to upper case</source> <translation>Convertir selección a mayúsculas</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1824" /> + <location filename="../QScintilla/MiniEditor.py" line="1825" /> <location filename="../ViewManager/ViewManager.py" line="3480" /> <source>Ctrl+Shift+U</source> <translation>Ctrl+Shift+U</translation> @@ -97318,7 +97323,7 @@ <translation>Editar</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2563" /> + <location filename="../QScintilla/MiniEditor.py" line="2564" /> <location filename="../QScintilla/ShellWindow.py" line="923" /> <location filename="../ViewManager/ViewManager.py" line="4167" /> <location filename="../ViewManager/ViewManager.py" line="4165" /> @@ -97327,14 +97332,14 @@ <translation>Buscar</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2565" /> + <location filename="../QScintilla/MiniEditor.py" line="2566" /> <location filename="../QScintilla/ShellWindow.py" line="925" /> <location filename="../ViewManager/ViewManager.py" line="3600" /> <source>&Search...</source> <translation>&Buscar...</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2567" /> + <location filename="../QScintilla/MiniEditor.py" line="2568" /> <location filename="../QScintilla/ShellWindow.py" line="927" /> <location filename="../ViewManager/ViewManager.py" line="3602" /> <source>Ctrl+F</source> @@ -97342,34 +97347,34 @@ <translation>Ctrl+F</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2574" /> + <location filename="../QScintilla/MiniEditor.py" line="2575" /> <location filename="../QScintilla/ShellWindow.py" line="934" /> <location filename="../ViewManager/ViewManager.py" line="3609" /> <source>Search for a text</source> <translation>Buscar un texto</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2577" /> + <location filename="../QScintilla/MiniEditor.py" line="2578" /> <location filename="../ViewManager/ViewManager.py" line="3612" /> <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>Buscar</b><p>Buscar texto en el editor. En el diálogo muestra opciones e indica el texto de búsqueda.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2589" /> + <location filename="../QScintilla/MiniEditor.py" line="2590" /> <location filename="../QScintilla/ShellWindow.py" line="949" /> <location filename="../ViewManager/ViewManager.py" line="3624" /> <source>Search next</source> <translation>Buscar siguiente</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2591" /> + <location filename="../QScintilla/MiniEditor.py" line="2592" /> <location filename="../QScintilla/ShellWindow.py" line="951" /> <location filename="../ViewManager/ViewManager.py" line="3626" /> <source>Search &next</source> <translation>Buscar &Siguiente</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2593" /> + <location filename="../QScintilla/MiniEditor.py" line="2594" /> <location filename="../QScintilla/ShellWindow.py" line="953" /> <location filename="../ViewManager/ViewManager.py" line="3628" /> <source>F3</source> @@ -97377,34 +97382,34 @@ <translation>F3</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2600" /> + <location filename="../QScintilla/MiniEditor.py" line="2601" /> <location filename="../QScintilla/ShellWindow.py" line="960" /> <location filename="../ViewManager/ViewManager.py" line="3635" /> <source>Search next occurrence of text</source> <translation>Buscar siguiente ocurrencia del texto</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2603" /> + <location filename="../QScintilla/MiniEditor.py" line="2604" /> <location filename="../ViewManager/ViewManager.py" line="3638" /> <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>Buscar siguiente</b><p>Buscar la siguiente ocurrencia de un texto en el editor actual. Se reutilizan el texto de búsqueda introducido anteriormente y sus opciones.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2615" /> + <location filename="../QScintilla/MiniEditor.py" line="2616" /> <location filename="../QScintilla/ShellWindow.py" line="977" /> <location filename="../ViewManager/ViewManager.py" line="3650" /> <source>Search previous</source> <translation>Buscar anterior</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2617" /> + <location filename="../QScintilla/MiniEditor.py" line="2618" /> <location filename="../QScintilla/ShellWindow.py" line="979" /> <location filename="../ViewManager/ViewManager.py" line="3652" /> <source>Search &previous</source> <translation>Buscar a&nterior</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2619" /> + <location filename="../QScintilla/MiniEditor.py" line="2620" /> <location filename="../QScintilla/ShellWindow.py" line="981" /> <location filename="../ViewManager/ViewManager.py" line="3654" /> <source>Shift+F3</source> @@ -97412,41 +97417,41 @@ <translation>Shift+F3</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2628" /> + <location filename="../QScintilla/MiniEditor.py" line="2629" /> <location filename="../QScintilla/ShellWindow.py" line="990" /> <location filename="../ViewManager/ViewManager.py" line="3663" /> <source>Search previous occurrence of text</source> <translation>Buscar anterior ocurrencia del texto</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2633" /> + <location filename="../QScintilla/MiniEditor.py" line="2634" /> <location filename="../ViewManager/ViewManager.py" line="3668" /> <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>Buscar anterior</b><p>Buscar la anterior ocurrencia de un texto en el editor actual. Se reutilizan el texto de búsqueda introducido anteriormente y sus opciones.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2647" /> - <location filename="../QScintilla/MiniEditor.py" line="2645" /> + <location filename="../QScintilla/MiniEditor.py" line="2648" /> + <location filename="../QScintilla/MiniEditor.py" line="2646" /> <location filename="../ViewManager/ViewManager.py" line="3682" /> <location filename="../ViewManager/ViewManager.py" line="3680" /> <source>Clear search markers</source> <translation>Limpiar marcadores de búsqueda</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2649" /> + <location filename="../QScintilla/MiniEditor.py" line="2650" /> <location filename="../ViewManager/ViewManager.py" line="3684" /> <source>Ctrl+3</source> <comment>Search|Clear search markers</comment> <translation>Ctrl+3</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2658" /> + <location filename="../QScintilla/MiniEditor.py" line="2659" /> <location filename="../ViewManager/ViewManager.py" line="3693" /> <source>Clear all displayed search markers</source> <translation>Limpiar todos los marcadores de texto mostrados</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2663" /> + <location filename="../QScintilla/MiniEditor.py" line="2664" /> <location filename="../ViewManager/ViewManager.py" line="3698" /> <source><b>Clear search markers</b><p>Clear all displayed search markers.</p></source> <translation><b>Limpiar marcadores de búsqueda</b><p>Limpiar todos los marcadores de búsqueda mostrados.</p></translation> @@ -97496,113 +97501,113 @@ <translation><b>Buscar palabra actual hacia atrás</b><p>Buscar la ocurrencia anterior de la palabra actual en el editor actual.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2673" /> + <location filename="../QScintilla/MiniEditor.py" line="2674" /> <location filename="../ViewManager/ViewManager.py" line="3766" /> <source>Replace</source> <translation>Reemplazar</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2674" /> + <location filename="../QScintilla/MiniEditor.py" line="2675" /> <location filename="../ViewManager/ViewManager.py" line="3767" /> <source>&Replace...</source> <translation>&Reemplazar...</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2676" /> + <location filename="../QScintilla/MiniEditor.py" line="2677" /> <location filename="../ViewManager/ViewManager.py" line="3769" /> <source>Ctrl+R</source> <comment>Search|Replace</comment> <translation>Ctrl+R</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2683" /> + <location filename="../QScintilla/MiniEditor.py" line="2684" /> <location filename="../ViewManager/ViewManager.py" line="3776" /> <source>Replace some text</source> <translation>Reemplazar un texto</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2686" /> + <location filename="../QScintilla/MiniEditor.py" line="2687" /> <location filename="../ViewManager/ViewManager.py" line="3779" /> <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>Reemplazar</b><p>Buscar un texto en el editor actual y reemplazarlo. Se muestra un diálogo para introducir el texto de búsqueda, el texto de reemplazo y las opciones para buscar y reemplazar.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2700" /> - <location filename="../QScintilla/MiniEditor.py" line="2698" /> + <location filename="../QScintilla/MiniEditor.py" line="2701" /> + <location filename="../QScintilla/MiniEditor.py" line="2699" /> <location filename="../ViewManager/ViewManager.py" line="3793" /> <location filename="../ViewManager/ViewManager.py" line="3791" /> <source>Replace and Search</source> <translation>Buscar y Reemplazar</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2702" /> + <location filename="../QScintilla/MiniEditor.py" line="2703" /> <location filename="../ViewManager/ViewManager.py" line="3795" /> <source>Meta+R</source> <comment>Search|Replace and Search</comment> <translation>Meta+R</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2711" /> + <location filename="../QScintilla/MiniEditor.py" line="2712" /> <location filename="../ViewManager/ViewManager.py" line="3804" /> <source>Replace the found text and search the next occurrence</source> <translation>Reemplazar el texto encontrado y buscar siguiente ocurrencia</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2716" /> + <location filename="../QScintilla/MiniEditor.py" line="2717" /> <location filename="../ViewManager/ViewManager.py" line="3809" /> <source><b>Replace and Search</b><p>Replace the found occurrence of text in the current editor and search for the next one. The previously entered search text and options are reused.</p></source> <translation><b>Buscar y Reemplazar</b><p>Reemplazar la ocurrencia de texto en editor actual y buscar la siguiente. Se reusan el texto y las opciones de búsqueda introducidas previamente.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2732" /> - <location filename="../QScintilla/MiniEditor.py" line="2730" /> + <location filename="../QScintilla/MiniEditor.py" line="2733" /> + <location filename="../QScintilla/MiniEditor.py" line="2731" /> <location filename="../ViewManager/ViewManager.py" line="3825" /> <location filename="../ViewManager/ViewManager.py" line="3823" /> <source>Replace Occurrence</source> <translation>Reemplazar Ocurrencia</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2734" /> + <location filename="../QScintilla/MiniEditor.py" line="2735" /> <location filename="../ViewManager/ViewManager.py" line="3827" /> <source>Ctrl+Meta+R</source> <comment>Search|Replace Occurrence</comment> <translation>Ctrl+Meta+R</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2743" /> + <location filename="../QScintilla/MiniEditor.py" line="2744" /> <location filename="../ViewManager/ViewManager.py" line="3836" /> <source>Replace the found text</source> <translation>Reemplazar el texto encontrado</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2746" /> + <location filename="../QScintilla/MiniEditor.py" line="2747" /> <location filename="../ViewManager/ViewManager.py" line="3839" /> <source><b>Replace Occurrence</b><p>Replace the found occurrence of the search text in the current editor.</p></source> <translation><b>Reemplazar Ocurrencia</b><p>Reemplazar la ocurrencia del texto de búsqueda hallado en el editor actual.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2759" /> - <location filename="../QScintilla/MiniEditor.py" line="2757" /> + <location filename="../QScintilla/MiniEditor.py" line="2760" /> + <location filename="../QScintilla/MiniEditor.py" line="2758" /> <location filename="../ViewManager/ViewManager.py" line="3852" /> <location filename="../ViewManager/ViewManager.py" line="3850" /> <source>Replace All</source> <translation>Reemplazar Todo</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2761" /> + <location filename="../QScintilla/MiniEditor.py" line="2762" /> <location filename="../ViewManager/ViewManager.py" line="3854" /> <source>Shift+Meta+R</source> <comment>Search|Replace All</comment> <translation>Shift+Meta+R</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2770" /> + <location filename="../QScintilla/MiniEditor.py" line="2771" /> <location filename="../ViewManager/ViewManager.py" line="3863" /> <source>Replace search text occurrences</source> <translation>Reemplazar ocurrencias de texto de búsqueda</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2773" /> + <location filename="../QScintilla/MiniEditor.py" line="2774" /> <location filename="../ViewManager/ViewManager.py" line="3866" /> <source><b>Replace All</b><p>Replace all occurrences of the search text in the current editor.</p></source> <translation><b>Reemplazar Todo</b><p>Reemplazar todas las ocurrencias del texto de búsqueda en el editor actual.</p></translation> @@ -97827,21 +97832,21 @@ <translation>&Buscar</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2788" /> + <location filename="../QScintilla/MiniEditor.py" line="2789" /> <location filename="../QScintilla/ShellWindow.py" line="1016" /> <location filename="../ViewManager/ViewManager.py" line="4208" /> <source>Zoom in</source> <translation>Aumentar zoom</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2790" /> + <location filename="../QScintilla/MiniEditor.py" line="2791" /> <location filename="../QScintilla/ShellWindow.py" line="1018" /> <location filename="../ViewManager/ViewManager.py" line="4210" /> <source>Zoom &in</source> <translation>A&umentar Zoom</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2792" /> + <location filename="../QScintilla/MiniEditor.py" line="2793" /> <location filename="../QScintilla/ShellWindow.py" line="1020" /> <location filename="../ViewManager/ViewManager.py" line="4212" /> <source>Ctrl++</source> @@ -97849,7 +97854,7 @@ <translation>Ctrl++</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2795" /> + <location filename="../QScintilla/MiniEditor.py" line="2796" /> <location filename="../QScintilla/ShellWindow.py" line="1023" /> <location filename="../ViewManager/ViewManager.py" line="4215" /> <source>Zoom In</source> @@ -97857,35 +97862,35 @@ <translation>Aumentar Zoom</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2801" /> + <location filename="../QScintilla/MiniEditor.py" line="2802" /> <location filename="../QScintilla/ShellWindow.py" line="1029" /> <location filename="../ViewManager/ViewManager.py" line="4221" /> <source>Zoom in on the text</source> <translation>Zoom sobre el texto</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2804" /> + <location filename="../QScintilla/MiniEditor.py" line="2805" /> <location filename="../QScintilla/ShellWindow.py" line="1032" /> <location filename="../ViewManager/ViewManager.py" line="4224" /> <source><b>Zoom in</b><p>Zoom in on the text. This makes the text bigger.</p></source> <translation><b>Aumentar zoom</b><p>Aumentar zoom sobre el texto. Hace que el texto sea de mayor tamaño.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2814" /> + <location filename="../QScintilla/MiniEditor.py" line="2815" /> <location filename="../QScintilla/ShellWindow.py" line="1042" /> <location filename="../ViewManager/ViewManager.py" line="4234" /> <source>Zoom out</source> <translation>Disminuir Zoom</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2816" /> + <location filename="../QScintilla/MiniEditor.py" line="2817" /> <location filename="../QScintilla/ShellWindow.py" line="1044" /> <location filename="../ViewManager/ViewManager.py" line="4236" /> <source>Zoom &out</source> <translation>Dismi&nuir Zoom</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2818" /> + <location filename="../QScintilla/MiniEditor.py" line="2819" /> <location filename="../QScintilla/ShellWindow.py" line="1046" /> <location filename="../ViewManager/ViewManager.py" line="4238" /> <source>Ctrl+-</source> @@ -97893,7 +97898,7 @@ <translation>Ctrl+-</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2821" /> + <location filename="../QScintilla/MiniEditor.py" line="2822" /> <location filename="../QScintilla/ShellWindow.py" line="1049" /> <location filename="../ViewManager/ViewManager.py" line="4241" /> <source>Zoom Out</source> @@ -97901,35 +97906,35 @@ <translation>Disminuir Zoom</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2827" /> + <location filename="../QScintilla/MiniEditor.py" line="2828" /> <location filename="../QScintilla/ShellWindow.py" line="1055" /> <location filename="../ViewManager/ViewManager.py" line="4247" /> <source>Zoom out on the text</source> <translation>Disminuir zoom en el texto</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2830" /> + <location filename="../QScintilla/MiniEditor.py" line="2831" /> <location filename="../QScintilla/ShellWindow.py" line="1058" /> <location filename="../ViewManager/ViewManager.py" line="4250" /> <source><b>Zoom out</b><p>Zoom out on the text. This makes the text smaller.</p></source> <translation><b>Disminuir zoom</b><p>Disminuir zoom sobre el texto. Hace que el texto sea de menor tamaño.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2840" /> + <location filename="../QScintilla/MiniEditor.py" line="2841" /> <location filename="../QScintilla/ShellWindow.py" line="1068" /> <location filename="../ViewManager/ViewManager.py" line="4260" /> <source>Zoom reset</source> <translation>Restablecer zoom</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2842" /> + <location filename="../QScintilla/MiniEditor.py" line="2843" /> <location filename="../QScintilla/ShellWindow.py" line="1070" /> <location filename="../ViewManager/ViewManager.py" line="4262" /> <source>Zoom &reset</source> <translation>&Restablecer zoom</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2844" /> + <location filename="../QScintilla/MiniEditor.py" line="2845" /> <location filename="../QScintilla/ShellWindow.py" line="1072" /> <location filename="../ViewManager/ViewManager.py" line="4264" /> <source>Ctrl+0</source> @@ -97937,42 +97942,42 @@ <translation>Ctrl+0</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2851" /> + <location filename="../QScintilla/MiniEditor.py" line="2852" /> <location filename="../QScintilla/ShellWindow.py" line="1079" /> <location filename="../ViewManager/ViewManager.py" line="4271" /> <source>Reset the zoom of the text</source> <translation>Restablecer el zoom aplicado al texto</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2854" /> + <location filename="../QScintilla/MiniEditor.py" line="2855" /> <location filename="../QScintilla/ShellWindow.py" line="1082" /> <location filename="../ViewManager/ViewManager.py" line="4274" /> <source><b>Zoom reset</b><p>Reset the zoom of the text. This sets the zoom factor to 100%.</p></source> <translation><b>Restablecer zoom</b><p>Restablece el zoom aplicado al texto. Establece el factor de zoom a 100%.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2865" /> + <location filename="../QScintilla/MiniEditor.py" line="2866" /> <location filename="../QScintilla/ShellWindow.py" line="1093" /> <location filename="../ViewManager/ViewManager.py" line="4285" /> <source>Zoom</source> <translation>Zoom</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2867" /> + <location filename="../QScintilla/MiniEditor.py" line="2868" /> <location filename="../QScintilla/ShellWindow.py" line="1095" /> <location filename="../ViewManager/ViewManager.py" line="4287" /> <source>&Zoom</source> <translation>&Zoom</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2874" /> + <location filename="../QScintilla/MiniEditor.py" line="2875" /> <location filename="../QScintilla/ShellWindow.py" line="1102" /> <location filename="../ViewManager/ViewManager.py" line="4294" /> <source>Zoom the text</source> <translation>Zoom sobre el texto</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2877" /> + <location filename="../QScintilla/MiniEditor.py" line="2878" /> <location filename="../QScintilla/ShellWindow.py" line="1105" /> <location filename="../ViewManager/ViewManager.py" line="4297" /> <source><b>Zoom</b><p>Zoom the text. This opens a dialog where the desired size can be entered.</p></source> @@ -98737,65 +98742,65 @@ <translation><p>El archivo <b>{0}</b> tiene cambios sin guardar.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6077" /> + <location filename="../ViewManager/ViewManager.py" line="6078" /> <source>Line: {0:5}</source> <translation>Línea: {0:5}</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6083" /> + <location filename="../ViewManager/ViewManager.py" line="6084" /> <source>Pos: {0:5}</source> <translation>Pos: {0:5}</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6103" /> + <location filename="../ViewManager/ViewManager.py" line="6104" /> <source>Language: {0}</source> <translation>Lenguaje: {0}</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6112" /> + <location filename="../ViewManager/ViewManager.py" line="6113" /> <source>EOL Mode: {0}</source> <translation>Modo de EOL: {0}</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6640" /> - <location filename="../ViewManager/ViewManager.py" line="6597" /> + <location filename="../ViewManager/ViewManager.py" line="6641" /> + <location filename="../ViewManager/ViewManager.py" line="6598" /> <source>&Clear</source> <translation>&Limpiar</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6634" /> + <location filename="../ViewManager/ViewManager.py" line="6635" /> <source>&Add</source> <translation>&Agregar</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6637" /> + <location filename="../ViewManager/ViewManager.py" line="6638" /> <source>&Edit...</source> <translation>&Editar...</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="7707" /> - <location filename="../ViewManager/ViewManager.py" line="7693" /> - <location filename="../ViewManager/ViewManager.py" line="7661" /> + <location filename="../ViewManager/ViewManager.py" line="7708" /> + <location filename="../ViewManager/ViewManager.py" line="7694" /> + <location filename="../ViewManager/ViewManager.py" line="7662" /> <source>Edit Spelling Dictionary</source> <translation>Editar Diccionario Ortográfico</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="7664" /> + <location filename="../ViewManager/ViewManager.py" line="7665" /> <source><p>The spelling dictionary file <b>{0}</b> could not be read.</p><p>Reason: {1}</p></source> <translation><p>El archivo de diccionario ortográfico <b>{0}</b> no se puede leer.</p><p>Razón: {1}</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="7680" /> + <location filename="../ViewManager/ViewManager.py" line="7681" /> <source>Editing {0}</source> <translation>Editando {0}</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="7696" /> + <location filename="../ViewManager/ViewManager.py" line="7697" /> <source><p>The spelling dictionary file <b>{0}</b> could not be written.</p><p>Reason: {1}</p></source> <translation><p>El archivo de diccionario ortográfico <b>{0}</b> no se puede escribir.</p><p>Razón: {1}</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="7710" /> + <location filename="../ViewManager/ViewManager.py" line="7711" /> <source>The spelling dictionary was saved successfully.</source> <translation>El diccionario ortográfico se ha guardado con éxito.</translation> </message> @@ -98805,28 +98810,28 @@ <translation>Debe estar conectado a un servidor remoto de eric-ide. Abortando...</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6819" /> + <location filename="../ViewManager/ViewManager.py" line="6820" /> <source>Clear Editor</source> <translation>Limpiar Editor</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6820" /> + <location filename="../ViewManager/ViewManager.py" line="6821" /> <source>Do you really want to delete all text of the current editor?</source> <translation>¿Desea realmente borrar todo el texto del editor actual?</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="8240" /> - <location filename="../ViewManager/ViewManager.py" line="8223" /> - <source>File System Watcher Error</source> - <translation>Error del Monitor del Sistema de Archivos</translation> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="8224" /> - <source><p>The operating system resources for file system watches are exhausted. This limit should be increased. On a Linux system you should <ul><li>sudo nano /etc/sysctl.conf</li><li>add to the bottom "fs.inotify.max_user_instances = 1024"</li><li>save and close the editor</li><li>sudo sysctl -p</li></ul></p><p>Error Message: {0}</p></source> - <translation><p>Los recursos del sistema operativo para monitores del sistema de archivos se han agotado. Este límite se debería incrementar. En un sistema Linux se debería <ul><li>sudo nano /etc/sysctl.conf</li><li>añadir al final del archivo "fs.inotify.max_user_instances = 1024"</li><li>guardar y cerrar el editor</li><li>sudo sysctl -p</li></ul></p><p>Mensaje de Error: {0}</p></translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="8241" /> + <location filename="../ViewManager/ViewManager.py" line="8224" /> + <source>File System Watcher Error</source> + <translation>Error del Monitor del Sistema de Archivos</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="8225" /> + <source><p>The operating system resources for file system watches are exhausted. This limit should be increased. On a Linux system you should <ul><li>sudo nano /etc/sysctl.conf</li><li>add to the bottom "fs.inotify.max_user_instances = 1024"</li><li>save and close the editor</li><li>sudo sysctl -p</li></ul></p><p>Error Message: {0}</p></source> + <translation><p>Los recursos del sistema operativo para monitores del sistema de archivos se han agotado. Este límite se debería incrementar. En un sistema Linux se debería <ul><li>sudo nano /etc/sysctl.conf</li><li>añadir al final del archivo "fs.inotify.max_user_instances = 1024"</li><li>guardar y cerrar el editor</li><li>sudo sysctl -p</li></ul></p><p>Mensaje de Error: {0}</p></translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="8242" /> <source>The file system watcher reported an error with code <b>{0}</b>.</p><p>Error Message: {1}</p></source> <translation>El monitor del sistema de archivos ha reportado un error con código <b>{0}</b>.</p><p>Mensaje de Error: {1}</p></translation> </message> @@ -106294,301 +106299,306 @@ <translation>espacio en blanco después de'{0}'</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="95" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="96" /> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="94" /> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="93" /> <source>whitespace before '{0}'</source> <translation>espacio en blanco antes de'{0}'</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="96" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="95" /> + <source>whitespace after decorator '@'</source> + <translation>espacio en blanco tras decorator '@'</translation> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="97" /> <source>multiple spaces before operator</source> <translation>múltiples espacios antes de operador</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="99" /> - <source>multiple spaces after operator</source> - <translation>múltiples espacios después de operador</translation> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="100" /> - <source>tab before operator</source> - <translation>tabulador antes de operador</translation> + <source>multiple spaces after operator</source> + <translation>múltiples espacios después de operador</translation> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="101" /> - <source>tab after operator</source> - <translation>tabulador después de operador</translation> + <source>tab before operator</source> + <translation>tabulador antes de operador</translation> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="102" /> + <source>tab after operator</source> + <translation>tabulador después de operador</translation> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="103" /> <source>missing whitespace around operator</source> <translation>falta espacio en blanco alrededor de un operador</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="105" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="106" /> <source>missing whitespace around arithmetic operator</source> <translation>falta espacio en blanco alrededor de operador aritmético</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="108" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="109" /> <source>missing whitespace around bitwise or shift operator</source> <translation>falta espacio en blanco alrededor de operador a nivel de bit o shift</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="111" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="112" /> <source>missing whitespace around modulo operator</source> <translation>falta espacio en blanco alrededor de operador módulo</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="114" /> - <source>missing whitespace after '{0}'</source> - <translation>falta espacio en blanco después de {0}</translation> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="115" /> - <source>multiple spaces after '{0}'</source> - <translation>múltiples espacios en blanco después de '{0}'</translation> + <source>missing whitespace after '{0}'</source> + <translation>falta espacio en blanco después de {0}</translation> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="116" /> - <source>tab after '{0}'</source> - <translation>tabulador después de '{0}'</translation> + <source>multiple spaces after '{0}'</source> + <translation>múltiples espacios en blanco después de '{0}'</translation> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="117" /> + <source>tab after '{0}'</source> + <translation>tabulador después de '{0}'</translation> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="118" /> <source>unexpected spaces around keyword / parameter equals</source> <translation>espacios inesperados alrededor de palabra clave / parámetro igual a</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="120" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="121" /> <source>missing whitespace around parameter equals</source> <translation>faltan espacios en blanco alrededor de igual en parámetros</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="123" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="124" /> <source>at least two spaces before inline comment</source> <translation>al menos dos espacios antes de comentario inline</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="126" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="127" /> <source>inline comment should start with '# '</source> <translation>un comentario inline debe comenzar con '#'</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="129" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="130" /> <source>block comment should start with '# '</source> <translation>comentarios de bloque debería comenzar con '# '</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="132" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="133" /> <source>too many leading '#' for block comment</source> <translation>demasiados '#' al principio para comentario de bloque</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="135" /> - <source>multiple spaces after keyword</source> - <translation>múltiples espacios después de palabra clave</translation> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="136" /> - <source>multiple spaces before keyword</source> - <translation>múltiples espacios antes de palabra clave</translation> + <source>multiple spaces after keyword</source> + <translation>múltiples espacios después de palabra clave</translation> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="137" /> - <source>tab after keyword</source> - <translation>tabulador despues de palabra clave</translation> + <source>multiple spaces before keyword</source> + <translation>múltiples espacios antes de palabra clave</translation> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="138" /> - <source>tab before keyword</source> - <translation>tabulador antes de palabra clave</translation> + <source>tab after keyword</source> + <translation>tabulador despues de palabra clave</translation> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="139" /> + <source>tab before keyword</source> + <translation>tabulador antes de palabra clave</translation> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="140" /> <source>missing whitespace after keyword</source> <translation /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="145" /> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="142" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="146" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="143" /> <source>expected {0} blank lines, found {1}</source> <translation>se esperaban {0} líneas en blanco, se han encontrado {1}</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="148" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="149" /> <source>too many blank lines ({0}), expected {1}</source> <translation>demasiadas líneas en blanco ({0}), se esperaban {1}</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="151" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="152" /> <source>blank lines found after function decorator</source> <translation>líneas en blanco encontradas después de decorador de función</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="154" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="155" /> <source>expected {0} blank lines after class or function definition, found {1}</source> <translation>se esperaban {0} líneas en blanco después de definición de clase o función, se han encontrado {1}</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="158" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="159" /> <source>expected {0} blank lines before a nested definition, found {1}</source> <translation>se esperaban {0} líneas en blanco antes de una definición anidada, se han encontrado {1}</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="161" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="162" /> <source>too many blank lines ({0}) before a nested definition, expected {1}</source> <translation>demasiadas líneas en blanco ({0}) antes de definición anidada, se esperaban {1}</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="165" /> - <source>too many blank lines ({0})</source> - <translation>demasiadas líneas en blanco ({0})</translation> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="166" /> - <source>multiple imports on one line</source> - <translation>múltiples import en una línea</translation> + <source>too many blank lines ({0})</source> + <translation>demasiadas líneas en blanco ({0})</translation> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="167" /> + <source>multiple imports on one line</source> + <translation>múltiples import en una línea</translation> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="168" /> <source>module level import not at top of file</source> <translation>import a nivel de módulo no al principio del archivo</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="170" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="171" /> <source>line too long ({0} > {1} characters)</source> <translation>línea demasiado larga ({0} > {1} caracteres)</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="173" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="174" /> <source>the backslash is redundant between brackets</source> <translation>el backslash es redundante entre llaves</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="176" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="177" /> <source>multiple statements on one line (colon)</source> <translation>múltiples sentencias en una línea (dos puntos)</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="179" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="180" /> <source>multiple statements on one line (semicolon)</source> <translation>múltiples sentencias en una línea (punto y coma)</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="182" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="183" /> <source>statement ends with a semicolon</source> <translation>sentencia termina en punto y coma</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="185" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="186" /> <source>multiple statements on one line (def)</source> <translation>múltiples sentencias en una línea (def)</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="191" /> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="188" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="192" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="189" /> <source>comparison to {0} should be {1}</source> <translation>comparación con {0} debe ser {1}</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="194" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="195" /> <source>test for membership should be 'not in'</source> <translation>comprobación de 'miembro de' debería ser 'not in'</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="197" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="198" /> <source>test for object identity should be 'is not'</source> <translation>comprobación para identidad del objeto debería ser 'is not'</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="200" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="201" /> <source>do not compare types, for exact checks use 'is' / 'is not', for instance checks use 'isinstance()'</source> <translation>no comparar tipos, para comprobaciones exactas usar 'is' / 'is not', para comprobaciones de instancia usar 'isinstance()'</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="205" /> - <source>do not use bare except</source> - <translation>no usar except sin tipo</translation> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="206" /> + <source>do not use bare except</source> + <translation>no usar except sin tipo</translation> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="207" /> <source>do not assign a lambda expression, use a def</source> <translation>no asignar una expresión lambda, utilizar un def</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="209" /> - <source>ambiguous variable name '{0}'</source> - <translation>nombre de variable ambiguo '{0}'</translation> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="210" /> + <source>ambiguous variable name '{0}'</source> + <translation>nombre de variable ambiguo '{0}'</translation> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="211" /> <source>ambiguous class definition '{0}'</source> <translation>definición ambigua de clase '{0}'</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="213" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="214" /> <source>ambiguous function definition '{0}'</source> <translation>definición ambigua de función '{0}'</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="216" /> - <source>{0}: {1}</source> - <translation>{0}: {1}</translation> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="217" /> + <source>{0}: {1}</source> + <translation>{0}: {1}</translation> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="218" /> <source>{0}</source> <translation>{0}</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="225" /> - <source>indentation contains tabs</source> - <translation>la indentación contiene tabuladores</translation> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="226" /> - <source>trailing whitespace</source> - <translation>espacio en blanco por detrás</translation> + <source>indentation contains tabs</source> + <translation>la indentación contiene tabuladores</translation> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="227" /> - <source>no newline at end of file</source> - <translation>no hay carácter de nueva línea al final del archivo</translation> + <source>trailing whitespace</source> + <translation>espacio en blanco por detrás</translation> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="228" /> - <source>blank line contains whitespace</source> - <translation>línea en blanco con espacios en blanco</translation> + <source>no newline at end of file</source> + <translation>no hay carácter de nueva línea al final del archivo</translation> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="229" /> - <source>blank line at end of file</source> - <translation>línea en blanco al final del archivo</translation> + <source>blank line contains whitespace</source> + <translation>línea en blanco con espacios en blanco</translation> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="230" /> + <source>blank line at end of file</source> + <translation>línea en blanco al final del archivo</translation> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="231" /> <source>line break before binary operator</source> <translation>nueva línea antes de operador binario</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="233" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="234" /> <source>line break after binary operator</source> <translation>nueva línea después de operador binario</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="236" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="237" /> <source>doc line too long ({0} > {1} characters)</source> <translation>doc line demasiado larga ({0} > {1} carácteres)</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="239" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="240" /> <source>invalid escape sequence '\{0}'</source> <translation>secuencia de escape no válida'\{0}'</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="242" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="243" /> <source>'async' and 'await' are reserved keywords starting with Python 3.7</source> <translation>'async' y 'await' son palabras reservadas a partir de Python 3.7</translation> </message>
--- a/src/eric7/i18n/eric7_fr.ts Mon Jul 29 14:43:59 2024 +0200 +++ b/src/eric7/i18n/eric7_fr.ts Sat Aug 31 10:54:21 2024 +0200 @@ -5124,7 +5124,7 @@ <context> <name>CodeStyleChecker</name> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="515" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="516" /> <source>No message defined for code '{0}'.</source> <translation>Pas de message défini pour le code '{0}'.</translation> </message> @@ -6264,146 +6264,146 @@ <context> <name>CodeStyleFixer</name> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="253" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="254" /> <source>Triple single quotes converted to triple double quotes.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="256" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="257" /> <source>Introductory quotes corrected to be {0}"""</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="259" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="260" /> <source>Single line docstring put on one line.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="262" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="263" /> <source>Period added to summary line.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="289" /> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="265" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="290" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="266" /> <source>Blank line before function/method docstring removed.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="268" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="269" /> <source>Blank line inserted before class docstring.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="271" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="272" /> <source>Blank line inserted after class docstring.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="274" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="275" /> <source>Blank line inserted after docstring summary.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="277" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="278" /> <source>Blank line inserted after last paragraph of docstring.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="280" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="281" /> <source>Leading quotes put on separate line.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="283" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="284" /> <source>Trailing quotes put on separate line.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="286" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="287" /> <source>Blank line before class docstring removed.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="292" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="293" /> <source>Blank line after class docstring removed.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="295" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="296" /> <source>Blank line after function/method docstring removed.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="298" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="299" /> <source>Blank line after last paragraph removed.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="301" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="302" /> <source>Tab converted to 4 spaces.</source> <translation>Tabulation convertie en 4 espaces.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="304" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="305" /> <source>Indentation adjusted to be a multiple of four.</source> <translation>Indentation ajustée pour être un multiple de quatre.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="307" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="308" /> <source>Indentation of continuation line corrected.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="310" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="311" /> <source>Indentation of closing bracket corrected.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="313" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="314" /> <source>Missing indentation of continuation line corrected.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="316" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="317" /> <source>Closing bracket aligned to opening bracket.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="319" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="320" /> <source>Indentation level changed.</source> <translation>Niveau d'indentation modifié.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="322" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="323" /> <source>Indentation level of hanging indentation changed.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="325" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="326" /> <source>Visual indentation corrected.</source> <translation>Indentation visuel corrigée.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="340" /> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="334" /> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="328" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="341" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="335" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="329" /> <source>Extraneous whitespace removed.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="337" /> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="331" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="338" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="332" /> <source>Missing whitespace added.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="343" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="344" /> <source>Whitespace around comment sign corrected.</source> <translation type="unfinished" /> </message> <message numerus="yes"> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="346" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="347" /> <source>%n blank line(s) inserted.</source> <translation> <numerusform>%n ligne vide insérée.</numerusform> @@ -6411,7 +6411,7 @@ </translation> </message> <message numerus="yes"> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="349" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="350" /> <source>%n superfluous lines removed</source> <translation> <numerusform>%n ligne superflue supprimée</numerusform> @@ -6419,73 +6419,73 @@ </translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="352" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="353" /> <source>Superfluous blank lines removed.</source> <translation>Lignes superflues vides supprimées.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="355" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="356" /> <source>Superfluous blank lines after function decorator removed.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="358" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="359" /> <source>Imports were put on separate lines.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="361" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="362" /> <source>Long lines have been shortened.</source> <translation>Les longues lignes ont été raccourcies.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="364" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="365" /> <source>Redundant backslash in brackets removed.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="370" /> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="367" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="371" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="368" /> <source>Compound statement corrected.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="373" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="374" /> <source>Comparison to None/True/False corrected.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="376" /> - <source>'{0}' argument added.</source> - <translation>'{0}' argument ajouté.</translation> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="377" /> - <source>'{0}' argument removed.</source> - <translation>'{0}' argument supprimé.</translation> + <source>'{0}' argument added.</source> + <translation>'{0}' argument ajouté.</translation> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="378" /> + <source>'{0}' argument removed.</source> + <translation>'{0}' argument supprimé.</translation> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="379" /> <source>Whitespace stripped from end of line.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="381" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="382" /> <source>newline added to end of file.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="384" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="385" /> <source>Superfluous trailing blank lines removed from end of file.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="387" /> - <source>'<>' replaced by '!='.</source> - <translation>'<>' remplacé par '!='.</translation> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="388" /> + <source>'<>' replaced by '!='.</source> + <translation>'<>' remplacé par '!='.</translation> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="389" /> <source>Could not save the file! Skipping it. Reason: {0}</source> <translation type="unfinished" /> </message> @@ -20717,45 +20717,45 @@ <context> <name>EricToolBarDialog</name> <message> - <location filename="../EricWidgets/EricToolBarDialog.py" line="89" /> + <location filename="../EricWidgets/EricToolBarDialog.py" line="90" /> <source>--Separator--</source> <translation type="unfinished">--Séparateur--</translation> </message> <message> - <location filename="../EricWidgets/EricToolBarDialog.py" line="169" /> - <location filename="../EricWidgets/EricToolBarDialog.py" line="160" /> + <location filename="../EricWidgets/EricToolBarDialog.py" line="164" /> + <location filename="../EricWidgets/EricToolBarDialog.py" line="155" /> <source>New Toolbar</source> <translation type="unfinished">Nouvelle barre d'outils</translation> </message> <message> - <location filename="../EricWidgets/EricToolBarDialog.py" line="161" /> + <location filename="../EricWidgets/EricToolBarDialog.py" line="156" /> <source>Toolbar Name:</source> <translation type="unfinished">Nom de la barre :</translation> </message> <message> - <location filename="../EricWidgets/EricToolBarDialog.py" line="238" /> - <location filename="../EricWidgets/EricToolBarDialog.py" line="170" /> + <location filename="../EricWidgets/EricToolBarDialog.py" line="233" /> + <location filename="../EricWidgets/EricToolBarDialog.py" line="165" /> <source>A toolbar with the name <b>{0}</b> already exists.</source> <translation type="unfinished">Une barre d'outils avec le nom <b>{0}</b> existe déjà.</translation> </message> <message> - <location filename="../EricWidgets/EricToolBarDialog.py" line="197" /> + <location filename="../EricWidgets/EricToolBarDialog.py" line="192" /> <source>Remove Toolbar</source> <translation type="unfinished">Suppression de la barre d'outils</translation> </message> <message> - <location filename="../EricWidgets/EricToolBarDialog.py" line="198" /> + <location filename="../EricWidgets/EricToolBarDialog.py" line="193" /> <source>Should the toolbar <b>{0}</b> really be removed?</source> <translation type="unfinished">Faut-il vraiment supprimer la barre d'outils <b>{0}</b> ?</translation> </message> <message> - <location filename="../EricWidgets/EricToolBarDialog.py" line="237" /> - <location filename="../EricWidgets/EricToolBarDialog.py" line="225" /> + <location filename="../EricWidgets/EricToolBarDialog.py" line="232" /> + <location filename="../EricWidgets/EricToolBarDialog.py" line="220" /> <source>Rename Toolbar</source> <translation type="unfinished">Renommer la barre d'outils</translation> </message> <message> - <location filename="../EricWidgets/EricToolBarDialog.py" line="226" /> + <location filename="../EricWidgets/EricToolBarDialog.py" line="221" /> <source>New Toolbar Name:</source> <translation type="unfinished">Nouveau nom :</translation> </message> @@ -54501,723 +54501,723 @@ <context> <name>MiniEditor</name> <message> - <location filename="../QScintilla/MiniEditor.py" line="492" /> + <location filename="../QScintilla/MiniEditor.py" line="493" /> <source>About eric Mini Editor</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="493" /> + <location filename="../QScintilla/MiniEditor.py" line="494" /> <source>The eric 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 type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="562" /> + <location filename="../QScintilla/MiniEditor.py" line="563" /> <source>Line: {0:5}</source> <translation>Ligne : {0:5}</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="566" /> + <location filename="../QScintilla/MiniEditor.py" line="567" /> <source>Pos: {0:5}</source> <translation>Position : {0:5}</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="580" /> + <location filename="../QScintilla/MiniEditor.py" line="581" /> <source>Language: {0}</source> <translation type="unfinished">Langage : {0}</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="644" /> + <location filename="../QScintilla/MiniEditor.py" line="645" /> <source>New</source> <translation>Nouveau</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="646" /> - <source>&New</source> - <translation>&Nouveau</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="647" /> + <source>&New</source> + <translation>&Nouveau</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="648" /> <source>Ctrl+N</source> <comment>File|New</comment> <translation>Ctrl+N</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="652" /> + <location filename="../QScintilla/MiniEditor.py" line="653" /> <source>Open an empty editor window</source> <translation>Ouvre une nouvelle page vide</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="654" /> + <location filename="../QScintilla/MiniEditor.py" line="655" /> <source><b>New</b><p>An empty editor window will be created.</p></source> <translation><b>Nouveau</b><p>Ouverture d'une nouvelle fenêtre d'édition.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="660" /> + <location filename="../QScintilla/MiniEditor.py" line="661" /> <source>Open</source> <translation>Ouvrir</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="662" /> - <source>&Open...</source> - <translation>&Ouvrir...</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="663" /> + <source>&Open...</source> + <translation>&Ouvrir...</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="664" /> <source>Ctrl+O</source> <comment>File|Open</comment> <translation>Ctrl+O</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="668" /> + <location filename="../QScintilla/MiniEditor.py" line="669" /> <source>Open a file</source> <translation>Ouvrir un Fichier</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="670" /> + <location filename="../QScintilla/MiniEditor.py" line="671" /> <source><b>Open a file</b><p>You will be asked for the name of a file to be opened.</p></source> <translation><b>Ouvrir un fichier</b><p>Permet de saisir le nom d'un fichier à ouvrir</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="679" /> + <location filename="../QScintilla/MiniEditor.py" line="680" /> <source>Save</source> <translation>Enregistrer</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="681" /> - <source>&Save</source> - <translation>&Enregistrer</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="682" /> + <source>&Save</source> + <translation>&Enregistrer</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="683" /> <source>Ctrl+S</source> <comment>File|Save</comment> <translation>Ctrl+S</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="687" /> + <location filename="../QScintilla/MiniEditor.py" line="688" /> <source>Save the current file</source> <translation>Enregistre le fichier courant</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="689" /> + <location filename="../QScintilla/MiniEditor.py" line="690" /> <source><b>Save File</b><p>Save the contents of current editor window.</p></source> <translation><b>Enregistrer</b><p>Enregistre le fichier en cours.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="698" /> + <location filename="../QScintilla/MiniEditor.py" line="699" /> <source>Save as</source> <translation>Enregistrer sous</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="700" /> - <source>Save &as...</source> - <translation>&Enregistrer sous...</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="701" /> + <source>Save &as...</source> + <translation>&Enregistrer sous...</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="702" /> <source>Shift+Ctrl+S</source> <comment>File|Save As</comment> <translation>Shift+Ctrl+S</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="706" /> + <location filename="../QScintilla/MiniEditor.py" line="707" /> <source>Save the current file to a new one</source> <translation>Enregistre dans un nouveau fichier</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="708" /> + <location filename="../QScintilla/MiniEditor.py" line="709" /> <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>Enregistrer sous</b><p>Enregistre le buffer dans un nouveau fichier. Le nom du fichier est choisi via une boite de sélection de fichier.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="718" /> + <location filename="../QScintilla/MiniEditor.py" line="719" /> <source>Save Copy</source> <translation>Enregistrer une copie</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="720" /> + <location filename="../QScintilla/MiniEditor.py" line="721" /> <source>Save &Copy...</source> <translation>Enregistrer une &copie...</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="726" /> + <location filename="../QScintilla/MiniEditor.py" line="727" /> <source>Save a copy of the current file</source> <translation>Enregistrer une copie du fichier courant</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="728" /> + <location filename="../QScintilla/MiniEditor.py" line="729" /> <source><b>Save Copy</b><p>Save a copy of the contents of current editor window. The file can be entered in a file selection dialog.</p></source> <translation><b>Enregistrer une copie</b><p>Enregistre une copie du contenu de l'éditeur courant. Le fichier peut être entré dans un sélectionneur de fichiers.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="738" /> + <location filename="../QScintilla/MiniEditor.py" line="739" /> <source>Close</source> <translation>Fermer</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="740" /> - <source>&Close</source> - <translation>&Fermer</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="741" /> + <source>&Close</source> + <translation>&Fermer</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="742" /> <source>Ctrl+W</source> <comment>File|Close</comment> <translation>Ctrl+W</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="746" /> + <location filename="../QScintilla/MiniEditor.py" line="747" /> <source>Close the editor window</source> <translation>Ferme la fenêtre de l'éditeur</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="748" /> + <location filename="../QScintilla/MiniEditor.py" line="749" /> <source><b>Close Window</b><p>Close the current window.</p></source> <translation><b>Fermer</b><p>Ferme la fenêtre en cours.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="754" /> + <location filename="../QScintilla/MiniEditor.py" line="755" /> <source>Print</source> <translation>Imprimer</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="756" /> - <source>&Print</source> - <translation>&Imprimer</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="757" /> + <source>&Print</source> + <translation>&Imprimer</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="758" /> <source>Ctrl+P</source> <comment>File|Print</comment> <translation>Ctrl+P</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="762" /> + <location filename="../QScintilla/MiniEditor.py" line="763" /> <source>Print the current file</source> <translation>Imprime le fichier courant</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="764" /> + <location filename="../QScintilla/MiniEditor.py" line="765" /> <source><b>Print File</b><p>Print the contents of the current file.</p></source> <translation><b>Imprimer le fichier</b><p>Imprime le fichier courant.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="773" /> + <location filename="../QScintilla/MiniEditor.py" line="774" /> <source>Print Preview</source> <translation>Aperçu avant impression</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="781" /> + <location filename="../QScintilla/MiniEditor.py" line="782" /> <source>Print preview of the current file</source> <translation>Aperçu avant impression du fichier courant</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="783" /> + <location filename="../QScintilla/MiniEditor.py" line="784" /> <source><b>Print Preview</b><p>Print preview of the current file.</p></source> <translation><b>Aperçu avant impression</b><p>Aperçu avant impression du fichier courant.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="796" /> + <location filename="../QScintilla/MiniEditor.py" line="797" /> <source>Undo</source> <translation>Défaire</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="798" /> - <source>&Undo</source> - <translation>&Défaire</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="799" /> + <source>&Undo</source> + <translation>&Défaire</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="800" /> <source>Ctrl+Z</source> <comment>Edit|Undo</comment> <translation>Ctrl+Z</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="800" /> + <location filename="../QScintilla/MiniEditor.py" line="801" /> <source>Alt+Backspace</source> <comment>Edit|Undo</comment> <translation>Alt+Backspace</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="804" /> + <location filename="../QScintilla/MiniEditor.py" line="805" /> <source>Undo the last change</source> <translation>Annule la dernière modification</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="806" /> + <location filename="../QScintilla/MiniEditor.py" line="807" /> <source><b>Undo</b><p>Undo the last change done in the current editor.</p></source> <translation><b>Défaire</b><p>Annule la dernière modification effectuée dans l'éditeur courant.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="815" /> + <location filename="../QScintilla/MiniEditor.py" line="816" /> <source>Redo</source> <translation>Refaire</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="817" /> - <source>&Redo</source> - <translation>&Refaire</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="818" /> + <source>&Redo</source> + <translation>&Refaire</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="819" /> <source>Ctrl+Shift+Z</source> <comment>Edit|Redo</comment> <translation>Ctrl+Shift+Z</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="823" /> + <location filename="../QScintilla/MiniEditor.py" line="824" /> <source>Redo the last change</source> <translation>Recharge la dernière modification</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="825" /> + <location filename="../QScintilla/MiniEditor.py" line="826" /> <source><b>Redo</b><p>Redo the last change done in the current editor.</p></source> <translation><b>Refaire</b><p>Réeffectue la dernière modification dans l'éditeur courant.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="834" /> + <location filename="../QScintilla/MiniEditor.py" line="835" /> <source>Cut</source> <translation>Couper</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="836" /> - <source>Cu&t</source> - <translation>Cou&per</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="837" /> + <source>Cu&t</source> + <translation>Cou&per</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="838" /> <source>Ctrl+X</source> <comment>Edit|Cut</comment> <translation>Ctrl+X</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="838" /> + <location filename="../QScintilla/MiniEditor.py" line="839" /> <source>Shift+Del</source> <comment>Edit|Cut</comment> <translation>Shift+Del</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="842" /> + <location filename="../QScintilla/MiniEditor.py" line="843" /> <source>Cut the selection</source> <translation>Coupe la sélection</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="844" /> + <location filename="../QScintilla/MiniEditor.py" line="845" /> <source><b>Cut</b><p>Cut the selected text of the current editor to the clipboard.</p></source> <translation><b>Couper</b><p>Coupe le texte sélectionné vers le presse-papier</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="854" /> + <location filename="../QScintilla/MiniEditor.py" line="855" /> <source>Copy</source> <translation>Copier</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="856" /> - <source>&Copy</source> - <translation>&Copier</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="857" /> + <source>&Copy</source> + <translation>&Copier</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="858" /> <source>Ctrl+C</source> <comment>Edit|Copy</comment> <translation>Ctrl+C</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="858" /> + <location filename="../QScintilla/MiniEditor.py" line="859" /> <source>Ctrl+Ins</source> <comment>Edit|Copy</comment> <translation>Ctrl+Ins</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="862" /> + <location filename="../QScintilla/MiniEditor.py" line="863" /> <source>Copy the selection</source> <translation>Copie la sélection</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="864" /> + <location filename="../QScintilla/MiniEditor.py" line="865" /> <source><b>Copy</b><p>Copy the selected text of the current editor to the clipboard.</p></source> <translation><b>Copier</b><p>Copie le texte sélectionné vers le presse-papier</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="874" /> + <location filename="../QScintilla/MiniEditor.py" line="875" /> <source>Paste</source> <translation>Coller</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="876" /> - <source>&Paste</source> - <translation>Col&ler</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="877" /> + <source>&Paste</source> + <translation>Col&ler</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="878" /> <source>Ctrl+V</source> <comment>Edit|Paste</comment> <translation>Ctrl+V</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="878" /> + <location filename="../QScintilla/MiniEditor.py" line="879" /> <source>Shift+Ins</source> <comment>Edit|Paste</comment> <translation>Shift+Ins</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="882" /> + <location filename="../QScintilla/MiniEditor.py" line="883" /> <source>Paste the last cut/copied text</source> <translation>Colle le dernier texte copié/coupé</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="884" /> + <location filename="../QScintilla/MiniEditor.py" line="885" /> <source><b>Paste</b><p>Paste the last cut/copied text from the clipboard to the current editor.</p></source> <translation><b>Coller</b><p>Colle le dernier texte copié/coupé dans l'éditeur courant.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="894" /> + <location filename="../QScintilla/MiniEditor.py" line="895" /> <source>Clear</source> <translation>Effacer</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="896" /> - <source>Cl&ear</source> - <translation>Ef&facer</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="897" /> + <source>Cl&ear</source> + <translation>Ef&facer</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="898" /> <source>Alt+Shift+C</source> <comment>Edit|Clear</comment> <translation>Alt+Shift+C</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="902" /> + <location filename="../QScintilla/MiniEditor.py" line="903" /> <source>Clear all text</source> <translation>Efface tout le texte</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="904" /> + <location filename="../QScintilla/MiniEditor.py" line="905" /> <source><b>Clear</b><p>Delete all text of the current editor.</p></source> <translation><b>Effacer</b><p>Supprime tout le texte de l'éditeur courant.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2892" /> + <location filename="../QScintilla/MiniEditor.py" line="2893" /> <source>About</source> <translation>À propos de</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2892" /> + <location filename="../QScintilla/MiniEditor.py" line="2893" /> <source>&About</source> <translation>&À propos de </translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2894" /> + <location filename="../QScintilla/MiniEditor.py" line="2895" /> <source>Display information about this software</source> <translation>Affiche les informations concernant le logiciel</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2896" /> + <location filename="../QScintilla/MiniEditor.py" line="2897" /> <source><b>About</b><p>Display some information about this software.</p></source> <translation><b>À propos de</b><p>Affiche certaines informations concernant le logiciel.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2905" /> + <location filename="../QScintilla/MiniEditor.py" line="2906" /> <source>About Qt</source> <translation>À propos de Qt</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2905" /> + <location filename="../QScintilla/MiniEditor.py" line="2906" /> <source>About &Qt</source> <translation>À propos de &Qt</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2908" /> + <location filename="../QScintilla/MiniEditor.py" line="2909" /> <source>Display information about the Qt toolkit</source> <translation>Affiche les informations concernant Qt</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2911" /> + <location filename="../QScintilla/MiniEditor.py" line="2912" /> <source><b>About Qt</b><p>Display some information about the Qt toolkit.</p></source> <translation><b>À propos de Qt</b><p>Affiche les informations concernant Qt</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2920" /> + <location filename="../QScintilla/MiniEditor.py" line="2921" /> <source>What's This?</source> <translation>Qu'est-ce que c'est ?</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2922" /> - <source>&What's This?</source> - <translation>&Qu'est-ce que c'est?</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="2923" /> + <source>&What's This?</source> + <translation>&Qu'est-ce que c'est?</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="2924" /> <source>Shift+F1</source> <comment>Help|What's This?'</comment> <translation>Shift+F1</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2928" /> + <location filename="../QScintilla/MiniEditor.py" line="2929" /> <source>Context sensitive help</source> <translation>Aide contextuelle</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2930" /> + <location filename="../QScintilla/MiniEditor.py" line="2931" /> <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>Affiche l'aide contextuelle</b><p>Dans le mode "Qu'est-ce que c'est?", la souris est affichée avec un point d'interrogation, et on peut cliquer sur les éléments de l'interface pour obtenir une courte description de l'élément. Cette fonction peut être obtenue avec le bouton d'aide contextuelle de la barre principale.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2948" /> + <location filename="../QScintilla/MiniEditor.py" line="2949" /> <source>Preferences</source> <translation type="unfinished">Préférences</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2950" /> + <location filename="../QScintilla/MiniEditor.py" line="2951" /> <source>&Preferences...</source> <translation type="unfinished">&Préférences...</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2956" /> + <location filename="../QScintilla/MiniEditor.py" line="2957" /> <source>Set the prefered configuration</source> <translation type="unfinished">Édition des préférences</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2958" /> + <location filename="../QScintilla/MiniEditor.py" line="2959" /> <source><b>Preferences</b><p>Set the configuration items of the application with your prefered values.</p></source> <translation type="unfinished"><b>Préférences</b><p>Edite les valeurs souhaitées pour la configuration du logiciel.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2972" /> + <location filename="../QScintilla/MiniEditor.py" line="2973" /> <source>&File</source> <translation>&Fichier</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2984" /> + <location filename="../QScintilla/MiniEditor.py" line="2985" /> <source>&Edit</source> <translation>&Edition</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2994" /> + <location filename="../QScintilla/MiniEditor.py" line="2995" /> <source>&Search</source> <translation type="unfinished">Re&chercher</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3004" /> + <location filename="../QScintilla/MiniEditor.py" line="3005" /> <source>&View</source> <translation type="unfinished">&Affichage</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3010" /> + <location filename="../QScintilla/MiniEditor.py" line="3011" /> <source>Se&ttings</source> <translation type="unfinished">&Configuration</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3015" /> + <location filename="../QScintilla/MiniEditor.py" line="3016" /> <source>&Help</source> <translation>A&ide</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3027" /> + <location filename="../QScintilla/MiniEditor.py" line="3028" /> <source>File</source> <translation>Fichier</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3039" /> + <location filename="../QScintilla/MiniEditor.py" line="3040" /> <source>Edit</source> <translation>Editer</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3048" /> + <location filename="../QScintilla/MiniEditor.py" line="3049" /> <source>Search</source> <translation type="unfinished">Rechercher</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3054" /> + <location filename="../QScintilla/MiniEditor.py" line="3055" /> <source>View</source> <translation type="unfinished">Affichage</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3060" /> + <location filename="../QScintilla/MiniEditor.py" line="3061" /> <source>Settings</source> <translation type="unfinished">Configuration</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3063" /> + <location filename="../QScintilla/MiniEditor.py" line="3064" /> <source>Help</source> <translation>Aide</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3076" /> + <location filename="../QScintilla/MiniEditor.py" line="3077" /> <source><p>This part of the status bar displays the editor language.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3086" /> + <location filename="../QScintilla/MiniEditor.py" line="3087" /> <source><p>This part of the status bar displays an indication of the editors files writability.</p></source> <translation><p>Cette zone de la barre d'état affiche une indication sur les droits d'écriture des fichiers.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3095" /> + <location filename="../QScintilla/MiniEditor.py" line="3096" /> <source><p>This part of the status bar displays the line number of the editor.</p></source> <translation><p>Cette zone de la barre d'état affiche le numéro de ligne de l'éditeur.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3104" /> + <location filename="../QScintilla/MiniEditor.py" line="3105" /> <source><p>This part of the status bar displays the cursor position of the editor.</p></source> <translation><p>Cette zone de la barre d'état affiche la position du curseur.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3118" /> + <location filename="../QScintilla/MiniEditor.py" line="3119" /> <source><p>This part of the status bar allows zooming the editor.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3125" /> + <location filename="../QScintilla/MiniEditor.py" line="3126" /> <source>Ready</source> <translation>Prêt</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3201" /> - <source>eric Mini Editor</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="3202" /> + <source>eric Mini Editor</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="3203" /> <source>The document has unsaved changes.</source> <translation>Le document a des modifications non enregistrées.</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3231" /> - <source>Open File</source> - <translation>Ouvrir Fichier</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="3232" /> + <source>Open File</source> + <translation>Ouvrir Fichier</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="3233" /> <source><p>The file <b>{0}</b> could not be opened.</p><p>Reason: {1}</p></source> <translation><p>Le fichier<b>{0}</b> ne peut être ouvert.</p><p>Raison : {1}</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3260" /> + <location filename="../QScintilla/MiniEditor.py" line="3261" /> <source>File loaded</source> <translation>Fichier chargé</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3341" /> - <source>Save File</source> - <translation>Enregistrer le fichier</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="3342" /> + <source>Save File</source> + <translation>Enregistrer le fichier</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="3343" /> <source><p>The file <b>{0}</b> could not be saved.<br/>Reason: {1}</p></source> <translation><p>Le fichier <b>{0}</b> ne peut être enregistré.</p><p>Raison : {1}</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3348" /> + <location filename="../QScintilla/MiniEditor.py" line="3349" /> <source>File saved</source> <translation>Fichier enregistré</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3360" /> + <location filename="../QScintilla/MiniEditor.py" line="3361" /> <source>[*] - {0}</source> <translation>[*] - {0}</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3380" /> - <location filename="../QScintilla/MiniEditor.py" line="3360" /> + <location filename="../QScintilla/MiniEditor.py" line="3381" /> + <location filename="../QScintilla/MiniEditor.py" line="3361" /> <source>Mini Editor</source> <translation>Mini éditeur</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3735" /> - <location filename="../QScintilla/MiniEditor.py" line="3706" /> - <location filename="../QScintilla/MiniEditor.py" line="3373" /> + <location filename="../QScintilla/MiniEditor.py" line="3736" /> + <location filename="../QScintilla/MiniEditor.py" line="3707" /> + <location filename="../QScintilla/MiniEditor.py" line="3374" /> <source>Untitled</source> <translation>SansTitre</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3380" /> + <location filename="../QScintilla/MiniEditor.py" line="3381" /> <source>{0}[*] - {1}</source> <translation>{0}[*] - {1}</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3701" /> + <location filename="../QScintilla/MiniEditor.py" line="3702" /> <source>Printing...</source> <translation>Impression....</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3717" /> + <location filename="../QScintilla/MiniEditor.py" line="3718" /> <source>Printing completed</source> <translation>Impression terminée</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3719" /> + <location filename="../QScintilla/MiniEditor.py" line="3720" /> <source>Error while printing</source> <translation>Erreur durant l'impression</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3722" /> + <location filename="../QScintilla/MiniEditor.py" line="3723" /> <source>Printing aborted</source> <translation>Impression abandonnée</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3777" /> - <source>Select all</source> - <translation>Tout sélectionner</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="3778" /> + <source>Select all</source> + <translation>Tout sélectionner</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="3779" /> <source>Deselect all</source> <translation>Tout déselectionner</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3792" /> + <location filename="../QScintilla/MiniEditor.py" line="3793" /> <source>Languages</source> <translation>Langages</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3795" /> + <location filename="../QScintilla/MiniEditor.py" line="3796" /> <source>No Language</source> <translation>Pas de langage</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3816" /> + <location filename="../QScintilla/MiniEditor.py" line="3817" /> <source>Guessed</source> <translation>Suggestion</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3838" /> - <location filename="../QScintilla/MiniEditor.py" line="3820" /> + <location filename="../QScintilla/MiniEditor.py" line="3839" /> + <location filename="../QScintilla/MiniEditor.py" line="3821" /> <source>Alternatives</source> <translation>Alternatives</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3835" /> + <location filename="../QScintilla/MiniEditor.py" line="3836" /> <source>Alternatives ({0})</source> <translation>Alternatives ({0})</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3867" /> - <source>Pygments Lexer</source> - <translation>Analyseur Pygments</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="3868" /> + <source>Pygments Lexer</source> + <translation>Analyseur Pygments</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="3869" /> <source>Select the Pygments lexer to apply.</source> <translation>Sélectionne l'analyseur Pygments à appliquer.</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="4413" /> - <source>EditorConfig Properties</source> - <translation type="unfinished">Propriétés d'EditorConfig</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="4414" /> + <source>EditorConfig Properties</source> + <translation type="unfinished">Propriétés d'EditorConfig</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="4415" /> <source><p>The EditorConfig properties for file <b>{0}</b> could not be loaded.</p></source> <translation type="unfinished"><p>Les propriétés d'EditorConfig du fichier <b>{0}</b> n'ont pas pu être chargées.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="4601" /> - <source>Save File to Device</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="4602" /> + <source>Save File to Device</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="4603" /> <source>Enter the complete device file path:</source> <translation type="unfinished" /> </message> @@ -55434,499 +55434,504 @@ <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="135" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="134" /> + <source>unnecessary {0} comprehension - rewrite using dict.fromkeys()</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="139" /> <source>sort keys - '{0}' should be before '{1}'</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="140" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="144" /> <source>the number of arguments for property getter method is wrong (should be 1 instead of {0})</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="145" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="149" /> <source>the number of arguments for property setter method is wrong (should be 2 instead of {0})</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="150" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="154" /> <source>the number of arguments for property deleter method is wrong (should be 1 instead of {0})</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="155" /> - <source>the name of the setter method is wrong (should be '{0}' instead of '{1}')</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="159" /> - <source>the name of the deleter method is wrong (should be '{0}' instead of '{1}')</source> + <source>the name of the setter method is wrong (should be '{0}' instead of '{1}')</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="163" /> - <source>the name of the setter decorator is wrong (should be '{0}' instead of '{1}')</source> + <source>the name of the deleter method is wrong (should be '{0}' instead of '{1}')</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="167" /> - <source>the name of the deleter decorator is wrong (should be '{0}' instead of '{1}')</source> + <source>the name of the setter decorator is wrong (should be '{0}' instead of '{1}')</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="171" /> + <source>the name of the deleter decorator is wrong (should be '{0}' instead of '{1}')</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="175" /> <source>multiple decorators were used to declare property '{0}'</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="176" /> - <source>use of 'datetime.datetime()' without 'tzinfo' argument should be avoided</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="180" /> + <source>use of 'datetime.datetime()' without 'tzinfo' argument should be avoided</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="184" /> <source>use of 'datetime.datetime.today()' should be avoided. Use 'datetime.datetime.now(tz=)' instead.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="185" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="189" /> <source>use of 'datetime.datetime.utcnow()' should be avoided. Use 'datetime.datetime.now(tz=datetime.timezone.utc)' instead.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="190" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="194" /> <source>use of 'datetime.datetime.utcfromtimestamp()' should be avoided. Use 'datetime.datetime.fromtimestamp(..., tz=datetime.timezone.utc)' instead.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="195" /> - <source>use of 'datetime.datetime.now()' without 'tz' argument should be avoided</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="199" /> + <source>use of 'datetime.datetime.now()' without 'tz' argument should be avoided</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="203" /> <source>use of 'datetime.datetime.fromtimestamp()' without 'tz' argument should be avoided</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="204" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="208" /> <source>use of 'datetime.datetime.strptime()' should be followed by '.replace(tzinfo=)'</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="209" /> - <source>use of 'datetime.datetime.fromordinal()' should be avoided</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="213" /> + <source>use of 'datetime.datetime.fromordinal()' should be avoided</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="217" /> <source>use of 'datetime.date()' should be avoided. Use 'datetime.datetime(, tzinfo=).date()' instead.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="218" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="222" /> <source>use of 'datetime.date.today()' should be avoided. Use 'datetime.datetime.now(tz=).date()' instead.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="223" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="227" /> <source>use of 'datetime.date.fromtimestamp()' should be avoided. Use 'datetime.datetime.fromtimestamp(tz=).date()' instead.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="228" /> - <source>use of 'datetime.date.fromordinal()' should be avoided</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="232" /> - <source>use of 'datetime.date.fromisoformat()' should be avoided</source> + <source>use of 'datetime.date.fromordinal()' should be avoided</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="236" /> + <source>use of 'datetime.date.fromisoformat()' should be avoided</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="240" /> <source>use of 'datetime.time()' without 'tzinfo' argument should be avoided</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="241" /> - <source>'sys.version[:3]' referenced (Python 3.10), use 'sys.version_info'</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="245" /> - <source>'sys.version[2]' referenced (Python 3.10), use 'sys.version_info'</source> + <source>'sys.version[:3]' referenced (Python 3.10), use 'sys.version_info'</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="249" /> - <source>'sys.version' compared to string (Python 3.10), use 'sys.version_info'</source> + <source>'sys.version[2]' referenced (Python 3.10), use 'sys.version_info'</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="253" /> - <source>'sys.version_info[0] == 3' referenced (Python 4), use '>='</source> + <source>'sys.version' compared to string (Python 3.10), use 'sys.version_info'</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="257" /> - <source>'six.PY3' referenced (Python 4), use 'not six.PY2'</source> + <source>'sys.version_info[0] == 3' referenced (Python 4), use '>='</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="261" /> + <source>'six.PY3' referenced (Python 4), use 'not six.PY2'</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="265" /> <source>'sys.version_info[1]' compared to integer (Python 4), compare 'sys.version_info' to tuple</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="266" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="270" /> <source>'sys.version_info.minor' compared to integer (Python 4), compare 'sys.version_info' to tuple</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="271" /> - <source>'sys.version[0]' referenced (Python 10), use 'sys.version_info'</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="275" /> - <source>'sys.version' compared to string (Python 10), use 'sys.version_info'</source> + <source>'sys.version[0]' referenced (Python 10), use 'sys.version_info'</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="279" /> + <source>'sys.version' compared to string (Python 10), use 'sys.version_info'</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="283" /> <source>'sys.version[:1]' referenced (Python 10), use 'sys.version_info'</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="284" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="288" /> <source>Do not use bare 'except:', it also catches unexpected events like memory errors, interrupts, system exit, and so on. Prefer excepting specific exceptions. If you're sure what you're doing, be explicit and write 'except BaseException:'.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="291" /> - <source>Python does not support the unary prefix increment</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="295" /> + <source>Python does not support the unary prefix increment</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="299" /> <source>assigning to 'os.environ' does not clear the environment - use 'os.environ.clear()'</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="300" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="304" /> <source>using 'hasattr(x, "__call__")' to test if 'x' is callable is unreliable. Use 'callable(x)' for consistent results.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="305" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="309" /> <source>using .strip() with multi-character strings is misleading. Use .replace(), .removeprefix(), .removesuffix(), or regular expressions to remove string fragments.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="311" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="315" /> <source>loop control variable {0} not used within the loop body - start the name with an underscore</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="316" /> - <source>do not call getattr with a constant attribute value</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="320" /> - <source>do not call setattr with a constant attribute value</source> + <source>do not call getattr with a constant attribute value</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="324" /> - <source>do not call assert False since python -O removes these calls</source> + <source>do not call setattr with a constant attribute value</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="328" /> + <source>do not call assert False since python -O removes these calls</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="332" /> <source>return/continue/break inside finally blocks cause exceptions to be silenced. Exceptions should be silenced in except blocks. Control statements can be moved outside the finally block.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="334" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="338" /> <source>A length-one tuple literal is redundant. Write 'except {0}:' instead of 'except ({0},):'.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="339" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="343" /> <source>Redundant exception types in 'except ({0}){1}:'. Write 'except {2}{1}:', which catches exactly the same exceptions.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="344" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="348" /> <source>Result of comparison is not used. This line doesn't do anything. Did you intend to prepend it with assert?</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="349" /> - <source>Cannot raise a literal. Did you intend to return it or raise an Exception?</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="353" /> + <source>Cannot raise a literal. Did you intend to return it or raise an Exception?</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="357" /> <source>'assertRaises(Exception)' and 'pytest.raises(Exception)' should be considered evil. They can lead to your test passing even if the code being tested is never executed due to a typo. Assert for a more specific exception (builtin or custom), or use 'assertRaisesRegex' (if using 'assertRaises'), or add the 'match' keyword argument (if using 'pytest.raises'), or use the context manager form with a target.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="362" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="366" /> <source>Found useless {0} expression. Consider either assigning it to a variable or removing it.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="367" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="371" /> <source>Use of 'functools.lru_cache' or 'functools.cache' on methods can lead to memory leaks. The cache may retain instance references, preventing garbage collection.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="373" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="377" /> <source>Found for loop that reassigns the iterable it is iterating with each iterable value.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="378" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="382" /> <source>f-string used as docstring. This will be interpreted by python as a joined string rather than a docstring.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="383" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="387" /> <source>No arguments passed to 'contextlib.suppress'. No exceptions will be suppressed and therefore this context manager is redundant.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="388" /> - <source>Function definition does not bind loop variable '{0}'.</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="392" /> + <source>Function definition does not bind loop variable '{0}'.</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="396" /> <source>{0} is an abstract base class, but none of the methods it defines are abstract. This is not necessarily an error, but you might have forgotten to add the @abstractmethod decorator, potentially in conjunction with @classmethod, @property and/or @staticmethod.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="399" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="403" /> <source>Exception '{0}' has been caught multiple times. Only the first except will be considered and all other except catches can be safely removed.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="404" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="408" /> <source>Star-arg unpacking after a keyword argument is strongly discouraged, because it only works when the keyword parameter is declared after all parameters supplied by the unpacked sequence, and this change of ordering can surprise and mislead readers.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="411" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="415" /> <source>{0} is an empty method in an abstract base class, but has no abstract decorator. Consider adding @abstractmethod.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="416" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="420" /> <source>No explicit stacklevel argument found. The warn method from the warnings module uses a stacklevel of 1 by default. This will only show a stack trace for the line on which the warn method is called. It is therefore recommended to use a stacklevel of 2 or greater to provide more information to the user.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="424" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="428" /> <source>Using 'except ():' with an empty tuple does not handle/catch anything. Add exceptions to handle.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="429" /> - <source>Except handlers should only be names of exception classes</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="433" /> + <source>Except handlers should only be names of exception classes</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="437" /> <source>Using the generator returned from 'itertools.groupby()' more than once will do nothing on the second usage. Save the result to a list, if the result is needed multiple times.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="439" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="443" /> <source>Possible unintentional type annotation (using ':'). Did you mean to assign (using '=')?</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="444" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="448" /> <source>Set should not contain duplicate item '{0}'. Duplicate items will be replaced with a single item at runtime.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="449" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="453" /> <source>re.{0} should get '{1}' and 'flags' passed as keyword arguments to avoid confusion due to unintuitive argument positions.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="454" /> - <source>Static key in dict comprehension: {0!r}.</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="458" /> - <source>Don't except 'BaseException' unless you plan to re-raise it.</source> + <source>Static key in dict comprehension: {0!r}.</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="462" /> + <source>Don't except 'BaseException' unless you plan to re-raise it.</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="466" /> <source>Class '__init__' methods must not return or yield and any values.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="467" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="471" /> <source>Editing a loop's mutable iterable often leads to unexpected results/bugs.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="472" /> - <source>unncessary f-string</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="476" /> + <source>unncessary f-string</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="480" /> <source>cannot use 'self.__class__' as first argument of 'super()' call</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="481" /> - <source>found {0} formatter</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="485" /> - <source>format string does contain unindexed parameters</source> + <source>found {0} formatter</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="489" /> - <source>docstring does contain unindexed parameters</source> + <source>format string does contain unindexed parameters</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="493" /> - <source>other string does contain unindexed parameters</source> + <source>docstring does contain unindexed parameters</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="497" /> - <source>format call uses too large index ({0})</source> + <source>other string does contain unindexed parameters</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="501" /> - <source>format call uses missing keyword ({0})</source> + <source>format call uses too large index ({0})</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="505" /> - <source>format call uses keyword arguments but no named entries</source> + <source>format call uses missing keyword ({0})</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="509" /> - <source>format call uses variable arguments but no numbered entries</source> + <source>format call uses keyword arguments but no named entries</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="513" /> - <source>format call uses implicit and explicit indexes together</source> + <source>format call uses variable arguments but no numbered entries</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="517" /> - <source>format call provides unused index ({0})</source> + <source>format call uses implicit and explicit indexes together</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="521" /> + <source>format call provides unused index ({0})</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="525" /> <source>format call provides unused keyword ({0})</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="526" /> - <source>expected these __future__ imports: {0}; but only got: {1}</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="530" /> + <source>expected these __future__ imports: {0}; but only got: {1}</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="534" /> <source>expected these __future__ imports: {0}; but got none</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="535" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="539" /> <source>gettext import with alias _ found: {0}</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="540" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="544" /> <source>print statement found</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="545" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="549" /> <source>one element tuple found</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="554" /> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="550" /> - <source>mutable default argument of type {0}</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="558" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="554" /> + <source>mutable default argument of type {0}</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="562" /> <source>mutable default argument of function call '{0}'</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="563" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="567" /> <source>None should not be added at any return if function has no return value except None</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="568" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="572" /> <source>an explicit value at every return should be added if function has a return value except None</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="573" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="577" /> <source>an explicit return at the end of the function should be added if it has a return value except None</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="578" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="582" /> <source>a value should not be assigned to a variable if it will be used as a return value only</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="584" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="588" /> <source>prefer implied line continuation inside parentheses, brackets and braces as opposed to a backslash</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="590" /> - <source>implicitly concatenated string or bytes literals on one line</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="594" /> - <source>implicitly concatenated string or bytes literals over continuation line</source> + <source>implicitly concatenated string or bytes literals on one line</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="598" /> + <source>implicitly concatenated string or bytes literals over continuation line</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="602" /> <source>explicitly concatenated string or bytes should be implicitly concatenated</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="603" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="607" /> <source>commented code lines should be removed</source> <translation>les lignes de code commentées devraient être supprimées</translation> </message> @@ -86449,15 +86454,15 @@ <context> <name>Tabview</name> <message> - <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="1132" /> - <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="1067" /> + <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="1134" /> + <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="1069" /> <source>Untitled {0}</source> <translation>SansTitre {0}</translation> </message> <message> - <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="1532" /> - <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="1143" /> - <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="1088" /> + <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="1534" /> + <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="1145" /> + <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="1090" /> <source>{0} (ro)</source> <translation>{0} (ro)</translation> </message> @@ -91189,7 +91194,7 @@ <translation><b>Enregistrer session...</b><p>Ceci enregistre la session sur le disque. Une fenêtre s'ouvre pour sélectionner le nom de fichier.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7844" /> + <location filename="../UI/UserInterface.py" line="7860" /> <location filename="../UI/UserInterface.py" line="1946" /> <location filename="../UI/UserInterface.py" line="1939" /> <source>Load session</source> @@ -92280,7 +92285,7 @@ <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6593" /> + <location filename="../UI/UserInterface.py" line="6609" /> <location filename="../UI/UserInterface.py" line="3163" /> <source>Snapshot</source> <translation type="unfinished" /> @@ -92517,8 +92522,8 @@ <translation><b>Raccourcis claviers</b><p>Edite les raccourcis claviers pour l'application.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7552" /> - <location filename="../UI/UserInterface.py" line="7533" /> + <location filename="../UI/UserInterface.py" line="7568" /> + <location filename="../UI/UserInterface.py" line="7549" /> <location filename="../UI/UserInterface.py" line="3393" /> <source>Export Keyboard Shortcuts</source> <translation>Exporter les raccourcis clavier</translation> @@ -92539,7 +92544,7 @@ <translation><b>Exporter les raccourcis clavier</b><p>Exporte les raccourcis claviers de l'application.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7571" /> + <location filename="../UI/UserInterface.py" line="7587" /> <location filename="../UI/UserInterface.py" line="3412" /> <source>Import Keyboard Shortcuts</source> <translation>Importer des raccourcis clavier</translation> @@ -92948,7 +92953,7 @@ <translation>Configuration</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6321" /> + <location filename="../UI/UserInterface.py" line="6337" /> <location filename="../UI/UserInterface.py" line="4185" /> <location filename="../UI/UserInterface.py" line="4170" /> <source>Help</source> @@ -93126,314 +93131,314 @@ <translation>Tout &masquer</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6458" /> - <location filename="../UI/UserInterface.py" line="6447" /> - <location filename="../UI/UserInterface.py" line="6399" /> - <location filename="../UI/UserInterface.py" line="6389" /> - <location filename="../UI/UserInterface.py" line="6210" /> - <location filename="../UI/UserInterface.py" line="6200" /> - <location filename="../UI/UserInterface.py" line="6142" /> - <location filename="../UI/UserInterface.py" line="6132" /> + <location filename="../UI/UserInterface.py" line="6474" /> + <location filename="../UI/UserInterface.py" line="6463" /> + <location filename="../UI/UserInterface.py" line="6415" /> + <location filename="../UI/UserInterface.py" line="6405" /> + <location filename="../UI/UserInterface.py" line="6228" /> + <location filename="../UI/UserInterface.py" line="6218" /> + <location filename="../UI/UserInterface.py" line="6160" /> + <location filename="../UI/UserInterface.py" line="6150" /> <source>Problem</source> <translation>Problème</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6459" /> - <location filename="../UI/UserInterface.py" line="6448" /> - <location filename="../UI/UserInterface.py" line="6400" /> - <location filename="../UI/UserInterface.py" line="6390" /> - <location filename="../UI/UserInterface.py" line="6211" /> - <location filename="../UI/UserInterface.py" line="6201" /> - <location filename="../UI/UserInterface.py" line="6143" /> - <location filename="../UI/UserInterface.py" line="6133" /> + <location filename="../UI/UserInterface.py" line="6475" /> + <location filename="../UI/UserInterface.py" line="6464" /> + <location filename="../UI/UserInterface.py" line="6416" /> + <location filename="../UI/UserInterface.py" line="6406" /> + <location filename="../UI/UserInterface.py" line="6229" /> + <location filename="../UI/UserInterface.py" line="6219" /> + <location filename="../UI/UserInterface.py" line="6161" /> + <location filename="../UI/UserInterface.py" line="6151" /> <source><p>The file <b>{0}</b> does not exist or is zero length.</p></source> <translation><p>Le fichier <b>{0}</b> n'existe pas ou est de longeur nulle.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6702" /> - <location filename="../UI/UserInterface.py" line="6613" /> - <location filename="../UI/UserInterface.py" line="6494" /> - <location filename="../UI/UserInterface.py" line="6471" /> - <location filename="../UI/UserInterface.py" line="6412" /> - <location filename="../UI/UserInterface.py" line="6359" /> - <location filename="../UI/UserInterface.py" line="6337" /> - <location filename="../UI/UserInterface.py" line="6286" /> - <location filename="../UI/UserInterface.py" line="6277" /> - <location filename="../UI/UserInterface.py" line="6242" /> - <location filename="../UI/UserInterface.py" line="6233" /> - <location filename="../UI/UserInterface.py" line="6174" /> - <location filename="../UI/UserInterface.py" line="6165" /> + <location filename="../UI/UserInterface.py" line="6718" /> + <location filename="../UI/UserInterface.py" line="6629" /> + <location filename="../UI/UserInterface.py" line="6510" /> + <location filename="../UI/UserInterface.py" line="6487" /> + <location filename="../UI/UserInterface.py" line="6428" /> + <location filename="../UI/UserInterface.py" line="6375" /> + <location filename="../UI/UserInterface.py" line="6353" /> + <location filename="../UI/UserInterface.py" line="6304" /> + <location filename="../UI/UserInterface.py" line="6295" /> + <location filename="../UI/UserInterface.py" line="6260" /> + <location filename="../UI/UserInterface.py" line="6251" /> + <location filename="../UI/UserInterface.py" line="6192" /> + <location filename="../UI/UserInterface.py" line="6183" /> <source>Process Generation Error</source> <translation>Erreur du processus</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6166" /> + <location filename="../UI/UserInterface.py" line="6184" /> <source><p>Could not start Qt-Designer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>Ne peut lancer Qt-Designer.<br>Vérifier qu'il est disponible en tant que <b>{0}</b>.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6175" /> + <location filename="../UI/UserInterface.py" line="6193" /> <source><p>Could not find the Qt-Designer executable.<br>Ensure that it is installed and optionally configured on the Qt configuration page.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6234" /> + <location filename="../UI/UserInterface.py" line="6252" /> <source><p>Could not start Qt-Linguist.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>Ne peut lancer Qt-Linguist.<br>Vérifier qu'il est disponible en tant que <b>{0}</b>.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6243" /> + <location filename="../UI/UserInterface.py" line="6261" /> <source><p>Could not find the Qt-Linguist executable.<br>Ensure that it is installed and optionally configured on the Qt configuration page.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6278" /> + <location filename="../UI/UserInterface.py" line="6296" /> <source><p>Could not start Qt-Assistant.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>Ne peut lancer Qt-Assistant.<br>Vérifier qu'il est disponible en tant que <b>{0}</b>.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6287" /> + <location filename="../UI/UserInterface.py" line="6305" /> <source><p>Could not find the Qt-Assistant executable.<br>Ensure that it is installed and optionally configured on the Qt configuration page.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6322" /> - <source>Currently no custom viewer is selected. Please use the preferences dialog to specify one.</source> - <translation>Aucun visualiseur personalisé n'est sélectionné. Prière d'en spécifier un dans les préférences.</translation> - </message> - <message> <location filename="../UI/UserInterface.py" line="6338" /> + <source>Currently no custom viewer is selected. Please use the preferences dialog to specify one.</source> + <translation>Aucun visualiseur personalisé n'est sélectionné. Prière d'en spécifier un dans les préférences.</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="6354" /> <source><p>Could not start custom viewer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6360" /> + <location filename="../UI/UserInterface.py" line="6376" /> <source><p>Could not start the help viewer.<br>Ensure that it is available as <b>hh</b>.</p></source> <translation><p>Impossible de démarrer le visualiseur d'aide.<br>Assurez-vous qu'il est bien ici <b>hh</b>.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6413" /> + <location filename="../UI/UserInterface.py" line="6429" /> <source><p>Could not start UI Previewer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6472" /> + <location filename="../UI/UserInterface.py" line="6488" /> <source><p>Could not start Translation Previewer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6495" /> + <location filename="../UI/UserInterface.py" line="6511" /> <source><p>Could not start SQL Browser.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>Ne peut lancer le navigateur SQL.<br>Vérifier qu'il est disponible en tant que <b>{0}</b>.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6594" /> + <location filename="../UI/UserInterface.py" line="6610" /> <source><p>The snapshot utility is not available for Wayland desktop sessions.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6614" /> + <location filename="../UI/UserInterface.py" line="6630" /> <source><p>Could not start Snapshot tool.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6647" /> - <location filename="../UI/UserInterface.py" line="6637" /> + <location filename="../UI/UserInterface.py" line="6663" /> + <location filename="../UI/UserInterface.py" line="6653" /> <source>External Tools</source> <translation>Outils externes</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6638" /> + <location filename="../UI/UserInterface.py" line="6654" /> <source>No tool entry found for external tool '{0}' in tool group '{1}'.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6648" /> + <location filename="../UI/UserInterface.py" line="6664" /> <source>No toolgroup entry '{0}' found.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6685" /> + <location filename="../UI/UserInterface.py" line="6701" /> <source>Starting process '{0} {1}'. </source> <translation>Démarrage du processus '{0} {1}'. </translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6703" /> + <location filename="../UI/UserInterface.py" line="6719" /> <source><p>Could not start the tool entry <b>{0}</b>.<br>Ensure that it is available as <b>{1}</b>.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6782" /> + <location filename="../UI/UserInterface.py" line="6798" /> <source>Process '{0}' has exited. </source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7069" /> - <location filename="../UI/UserInterface.py" line="7007" /> - <location filename="../UI/UserInterface.py" line="6963" /> - <location filename="../UI/UserInterface.py" line="6889" /> - <location filename="../UI/UserInterface.py" line="6825" /> + <location filename="../UI/UserInterface.py" line="7085" /> + <location filename="../UI/UserInterface.py" line="7023" /> + <location filename="../UI/UserInterface.py" line="6979" /> + <location filename="../UI/UserInterface.py" line="6905" /> + <location filename="../UI/UserInterface.py" line="6841" /> <source>Documentation Missing</source> <translation>Documentation Manquante</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7070" /> - <location filename="../UI/UserInterface.py" line="7008" /> - <location filename="../UI/UserInterface.py" line="6964" /> - <location filename="../UI/UserInterface.py" line="6890" /> - <location filename="../UI/UserInterface.py" line="6826" /> + <location filename="../UI/UserInterface.py" line="7086" /> + <location filename="../UI/UserInterface.py" line="7024" /> + <location filename="../UI/UserInterface.py" line="6980" /> + <location filename="../UI/UserInterface.py" line="6906" /> + <location filename="../UI/UserInterface.py" line="6842" /> <source><p>The documentation starting point "<b>{0}</b>" could not be found.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7051" /> - <location filename="../UI/UserInterface.py" line="6933" /> + <location filename="../UI/UserInterface.py" line="7067" /> + <location filename="../UI/UserInterface.py" line="6949" /> <source>Documentation</source> <translation>Documentation</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6934" /> + <location filename="../UI/UserInterface.py" line="6950" /> <source><p>The PyQt{0} documentation starting point has not been configured.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7052" /> + <location filename="../UI/UserInterface.py" line="7068" /> <source><p>The PySide{0} documentation starting point has not been configured.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7231" /> - <location filename="../UI/UserInterface.py" line="7167" /> + <location filename="../UI/UserInterface.py" line="7247" /> + <location filename="../UI/UserInterface.py" line="7183" /> <source>Start Web Browser</source> <translation>Démarrer le navigateur web</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7168" /> + <location filename="../UI/UserInterface.py" line="7184" /> <source>The eric web browser could not be started.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7232" /> + <location filename="../UI/UserInterface.py" line="7248" /> <source><p>The eric web browser is not started.</p><p>Reason: {0}</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7278" /> + <location filename="../UI/UserInterface.py" line="7294" /> <source>Open Browser</source> <translation>Ouverture du navigateur</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7278" /> + <location filename="../UI/UserInterface.py" line="7294" /> <source>Could not start a web browser</source> <translation>Impossible de lancer le navigateur web</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7573" /> - <location filename="../UI/UserInterface.py" line="7535" /> + <location filename="../UI/UserInterface.py" line="7589" /> + <location filename="../UI/UserInterface.py" line="7551" /> <source>Keyboard Shortcuts File (*.ekj)</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7553" /> + <location filename="../UI/UserInterface.py" line="7569" /> <source><p>The keyboard shortcuts file <b>{0}</b> exists already. Overwrite it?</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7757" /> + <location filename="../UI/UserInterface.py" line="7773" /> <source>Load crash session...</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7760" /> + <location filename="../UI/UserInterface.py" line="7776" /> <source>Clean crash sessions...</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7797" /> + <location filename="../UI/UserInterface.py" line="7813" /> <source>Read Session</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7798" /> + <location filename="../UI/UserInterface.py" line="7814" /> <source><p>The session file <b>{0}</b> could not be read.</p></source> <translation><p>Le fichier de session <b>{0}</b> ne peut être lu.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7821" /> + <location filename="../UI/UserInterface.py" line="7837" /> <source>Save Session</source> <translation type="unfinished">Enregistrer la session</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7846" /> - <location filename="../UI/UserInterface.py" line="7823" /> + <location filename="../UI/UserInterface.py" line="7862" /> + <location filename="../UI/UserInterface.py" line="7839" /> <source>eric Session Files (*.esj)</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7913" /> + <location filename="../UI/UserInterface.py" line="7929" /> <source>Found Crash Sessions</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7914" /> + <location filename="../UI/UserInterface.py" line="7930" /> <source>These crash session files were found. Select the one to open. Select 'Cancel' to not open a crash session.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7987" /> + <location filename="../UI/UserInterface.py" line="8003" /> <source>Clean stale crash sessions</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7988" /> + <location filename="../UI/UserInterface.py" line="8004" /> <source>Do you really want to delete these stale crash session files?</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="8364" /> + <location filename="../UI/UserInterface.py" line="8380" /> <source>Drop Error</source> <translation>Erreur de suppression</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="8365" /> + <location filename="../UI/UserInterface.py" line="8381" /> <source><p><b>{0}</b> is not a file.</p></source> <translation><p><b>{0}</b> n'est pas un fichier.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="8551" /> + <location filename="../UI/UserInterface.py" line="8567" /> <source>Upgrade available</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="8552" /> + <location filename="../UI/UserInterface.py" line="8568" /> <source><p>A newer version of the <b>eric-ide</b> package is available at <a href="{0}/eric-ide/">PyPI</a>.</p><p>Installed: {1}<br/>Available: <b>{2}</b></p><p>Shall <b>eric-ide</b> be upgraded?</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="8597" /> + <location filename="../UI/UserInterface.py" line="8613" /> <source>First time usage</source> <translation>Première utilisation</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="8598" /> + <location filename="../UI/UserInterface.py" line="8614" /> <source>eric has not been configured yet. The configuration dialog will be started.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="8620" /> + <location filename="../UI/UserInterface.py" line="8636" /> <source>Select Workspace Directory</source> <translation>Sélectionner le répertoire de travail</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="8788" /> + <location filename="../UI/UserInterface.py" line="8804" /> <source>Unsaved Data Detected</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="8789" /> + <location filename="../UI/UserInterface.py" line="8805" /> <source>Some editors contain unsaved data. Shall these be saved?</source> <translation type="unfinished" /> </message> @@ -94912,7 +94917,7 @@ <translation><b>Imprimer le fichier</b><p>Imprime la fenêtre d'édition courante.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="775" /> + <location filename="../QScintilla/MiniEditor.py" line="776" /> <location filename="../ViewManager/ViewManager.py" line="913" /> <location filename="../ViewManager/ViewManager.py" line="911" /> <source>Print Preview</source> @@ -95700,8 +95705,8 @@ <translation type="unfinished" /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="926" /> <location filename="../QScintilla/MiniEditor.py" line="925" /> - <location filename="../QScintilla/MiniEditor.py" line="924" /> <location filename="../QScintilla/ShellWindow.py" line="575" /> <location filename="../QScintilla/ShellWindow.py" line="574" /> <location filename="../ViewManager/ViewManager.py" line="1858" /> @@ -95710,22 +95715,22 @@ <translation>Déplacement d'un caractère vers la gauche</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="926" /> + <location filename="../QScintilla/MiniEditor.py" line="927" /> <location filename="../QScintilla/ShellWindow.py" line="576" /> <location filename="../ViewManager/ViewManager.py" line="1859" /> <source>Left</source> <translation>Left</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="934" /> + <location filename="../QScintilla/MiniEditor.py" line="935" /> <location filename="../QScintilla/ShellWindow.py" line="584" /> <location filename="../ViewManager/ViewManager.py" line="1867" /> <source>Meta+B</source> <translation>Meta+B</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="942" /> <location filename="../QScintilla/MiniEditor.py" line="941" /> - <location filename="../QScintilla/MiniEditor.py" line="940" /> <location filename="../QScintilla/ShellWindow.py" line="591" /> <location filename="../QScintilla/ShellWindow.py" line="590" /> <location filename="../ViewManager/ViewManager.py" line="1874" /> @@ -95734,22 +95739,22 @@ <translation>Déplacement d'un caractère vers la droite</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="942" /> + <location filename="../QScintilla/MiniEditor.py" line="943" /> <location filename="../QScintilla/ShellWindow.py" line="592" /> <location filename="../ViewManager/ViewManager.py" line="1875" /> <source>Right</source> <translation>Right</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="949" /> + <location filename="../QScintilla/MiniEditor.py" line="950" /> <location filename="../QScintilla/ShellWindow.py" line="599" /> <location filename="../ViewManager/ViewManager.py" line="1882" /> <source>Meta+F</source> <translation>Meta+F</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="958" /> <location filename="../QScintilla/MiniEditor.py" line="957" /> - <location filename="../QScintilla/MiniEditor.py" line="956" /> <location filename="../QScintilla/ShellWindow.py" line="683" /> <location filename="../QScintilla/ShellWindow.py" line="682" /> <location filename="../ViewManager/ViewManager.py" line="1890" /> @@ -95758,22 +95763,22 @@ <translation>Déplacement d'une ligne vers le haut</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="958" /> + <location filename="../QScintilla/MiniEditor.py" line="959" /> <location filename="../QScintilla/ShellWindow.py" line="684" /> <location filename="../ViewManager/ViewManager.py" line="1891" /> <source>Up</source> <translation>Up</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="965" /> + <location filename="../QScintilla/MiniEditor.py" line="966" /> <location filename="../QScintilla/ShellWindow.py" line="691" /> <location filename="../ViewManager/ViewManager.py" line="1898" /> <source>Meta+P</source> <translation>Meta+P</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="974" /> <location filename="../QScintilla/MiniEditor.py" line="973" /> - <location filename="../QScintilla/MiniEditor.py" line="972" /> <location filename="../QScintilla/ShellWindow.py" line="699" /> <location filename="../QScintilla/ShellWindow.py" line="698" /> <location filename="../ViewManager/ViewManager.py" line="1906" /> @@ -95782,30 +95787,30 @@ <translation>Déplacement d'une ligne vers le bas</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="974" /> + <location filename="../QScintilla/MiniEditor.py" line="975" /> <location filename="../QScintilla/ShellWindow.py" line="700" /> <location filename="../ViewManager/ViewManager.py" line="1907" /> <source>Down</source> <translation>Down</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="981" /> + <location filename="../QScintilla/MiniEditor.py" line="982" /> <location filename="../QScintilla/ShellWindow.py" line="707" /> <location filename="../ViewManager/ViewManager.py" line="1914" /> <source>Meta+N</source> <translation>Meta+N</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="990" /> <location filename="../QScintilla/MiniEditor.py" line="989" /> - <location filename="../QScintilla/MiniEditor.py" line="988" /> <location filename="../ViewManager/ViewManager.py" line="1922" /> <location filename="../ViewManager/ViewManager.py" line="1921" /> <source>Move left one word part</source> <translation>Déplacement d'une part de mot vers la gauche</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1029" /> - <location filename="../QScintilla/MiniEditor.py" line="997" /> + <location filename="../QScintilla/MiniEditor.py" line="1030" /> + <location filename="../QScintilla/MiniEditor.py" line="998" /> <location filename="../QScintilla/ShellWindow.py" line="615" /> <location filename="../ViewManager/ViewManager.py" line="1962" /> <location filename="../ViewManager/ViewManager.py" line="1930" /> @@ -95813,25 +95818,25 @@ <translation>Alt+Left</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1006" /> <location filename="../QScintilla/MiniEditor.py" line="1005" /> - <location filename="../QScintilla/MiniEditor.py" line="1004" /> <location filename="../ViewManager/ViewManager.py" line="1938" /> <location filename="../ViewManager/ViewManager.py" line="1937" /> <source>Move right one word part</source> <translation>Déplacement d'une part de mot vers la droite</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2159" /> - <location filename="../QScintilla/MiniEditor.py" line="1049" /> - <location filename="../QScintilla/MiniEditor.py" line="1013" /> + <location filename="../QScintilla/MiniEditor.py" line="2160" /> + <location filename="../QScintilla/MiniEditor.py" line="1050" /> + <location filename="../QScintilla/MiniEditor.py" line="1014" /> <location filename="../ViewManager/ViewManager.py" line="3071" /> <location filename="../ViewManager/ViewManager.py" line="1946" /> <source>Alt+Right</source> <translation>Alt+Right</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1022" /> <location filename="../QScintilla/MiniEditor.py" line="1021" /> - <location filename="../QScintilla/MiniEditor.py" line="1020" /> <location filename="../QScintilla/ShellWindow.py" line="607" /> <location filename="../QScintilla/ShellWindow.py" line="606" /> <location filename="../ViewManager/ViewManager.py" line="1954" /> @@ -95840,8 +95845,8 @@ <translation>Déplacement d'un mot vers la gauche</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1089" /> - <location filename="../QScintilla/MiniEditor.py" line="1033" /> + <location filename="../QScintilla/MiniEditor.py" line="1090" /> + <location filename="../QScintilla/MiniEditor.py" line="1034" /> <location filename="../QScintilla/ShellWindow.py" line="619" /> <location filename="../ViewManager/ViewManager.py" line="2018" /> <location filename="../ViewManager/ViewManager.py" line="1966" /> @@ -95849,8 +95854,8 @@ <translation>Ctrl+Left</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1042" /> <location filename="../QScintilla/MiniEditor.py" line="1041" /> - <location filename="../QScintilla/MiniEditor.py" line="1040" /> <location filename="../QScintilla/ShellWindow.py" line="627" /> <location filename="../QScintilla/ShellWindow.py" line="626" /> <location filename="../ViewManager/ViewManager.py" line="1974" /> @@ -95859,8 +95864,8 @@ <translation>Déplacement d'un mot vers la droite</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1843" /> - <location filename="../QScintilla/MiniEditor.py" line="1053" /> + <location filename="../QScintilla/MiniEditor.py" line="1844" /> + <location filename="../QScintilla/MiniEditor.py" line="1054" /> <location filename="../QScintilla/ShellWindow.py" line="635" /> <location filename="../ViewManager/ViewManager.py" line="2755" /> <location filename="../ViewManager/ViewManager.py" line="1982" /> @@ -95868,8 +95873,8 @@ <translation>Ctrl+Right</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1063" /> - <location filename="../QScintilla/MiniEditor.py" line="1060" /> + <location filename="../QScintilla/MiniEditor.py" line="1064" /> + <location filename="../QScintilla/MiniEditor.py" line="1061" /> <location filename="../QScintilla/ShellWindow.py" line="645" /> <location filename="../QScintilla/ShellWindow.py" line="642" /> <location filename="../ViewManager/ViewManager.py" line="1992" /> @@ -95878,8 +95883,8 @@ <translation>Déplacement vers le premier caractère visible de la ligne du document</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2104" /> - <location filename="../QScintilla/MiniEditor.py" line="1073" /> + <location filename="../QScintilla/MiniEditor.py" line="2105" /> + <location filename="../QScintilla/MiniEditor.py" line="1074" /> <location filename="../QScintilla/ShellWindow.py" line="655" /> <location filename="../ViewManager/ViewManager.py" line="3016" /> <location filename="../ViewManager/ViewManager.py" line="2002" /> @@ -95887,22 +95892,22 @@ <translation>Home</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1082" /> <location filename="../QScintilla/MiniEditor.py" line="1081" /> - <location filename="../QScintilla/MiniEditor.py" line="1080" /> <location filename="../ViewManager/ViewManager.py" line="2010" /> <location filename="../ViewManager/ViewManager.py" line="2009" /> <source>Move to start of display line</source> <translation>Déplacement au début de la ligne courante</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1093" /> + <location filename="../QScintilla/MiniEditor.py" line="1094" /> <location filename="../ViewManager/ViewManager.py" line="2022" /> <source>Alt+Home</source> <translation>Alt+Home</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1102" /> <location filename="../QScintilla/MiniEditor.py" line="1101" /> - <location filename="../QScintilla/MiniEditor.py" line="1100" /> <location filename="../QScintilla/ShellWindow.py" line="663" /> <location filename="../QScintilla/ShellWindow.py" line="662" /> <location filename="../ViewManager/ViewManager.py" line="2030" /> @@ -95911,15 +95916,15 @@ <translation>Déplacement à la fin de la ligne du document</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1109" /> + <location filename="../QScintilla/MiniEditor.py" line="1110" /> <location filename="../QScintilla/ShellWindow.py" line="671" /> <location filename="../ViewManager/ViewManager.py" line="2038" /> <source>Meta+E</source> <translation>Meta+E</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2121" /> - <location filename="../QScintilla/MiniEditor.py" line="1113" /> + <location filename="../QScintilla/MiniEditor.py" line="2122" /> + <location filename="../QScintilla/MiniEditor.py" line="1114" /> <location filename="../QScintilla/ShellWindow.py" line="675" /> <location filename="../ViewManager/ViewManager.py" line="3033" /> <location filename="../ViewManager/ViewManager.py" line="2042" /> @@ -95927,16 +95932,16 @@ <translation>End</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1122" /> <location filename="../QScintilla/MiniEditor.py" line="1121" /> - <location filename="../QScintilla/MiniEditor.py" line="1120" /> <location filename="../ViewManager/ViewManager.py" line="2050" /> <location filename="../ViewManager/ViewManager.py" line="2049" /> <source>Scroll view down one line</source> <translation>Descend la vue d'une ligne</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1225" /> - <location filename="../QScintilla/MiniEditor.py" line="1122" /> + <location filename="../QScintilla/MiniEditor.py" line="1226" /> + <location filename="../QScintilla/MiniEditor.py" line="1123" /> <location filename="../QScintilla/ShellWindow.py" line="716" /> <location filename="../ViewManager/ViewManager.py" line="2154" /> <location filename="../ViewManager/ViewManager.py" line="2051" /> @@ -95944,16 +95949,16 @@ <translation>Ctrl+Down</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1134" /> <location filename="../QScintilla/MiniEditor.py" line="1133" /> - <location filename="../QScintilla/MiniEditor.py" line="1132" /> <location filename="../ViewManager/ViewManager.py" line="2062" /> <location filename="../ViewManager/ViewManager.py" line="2061" /> <source>Scroll view up one line</source> <translation>Monte la vue d'une ligne</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1205" /> - <location filename="../QScintilla/MiniEditor.py" line="1134" /> + <location filename="../QScintilla/MiniEditor.py" line="1206" /> + <location filename="../QScintilla/MiniEditor.py" line="1135" /> <location filename="../QScintilla/ShellWindow.py" line="728" /> <location filename="../ViewManager/ViewManager.py" line="2134" /> <location filename="../ViewManager/ViewManager.py" line="2063" /> @@ -95961,36 +95966,36 @@ <translation>Ctrl+Up</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1146" /> <location filename="../QScintilla/MiniEditor.py" line="1145" /> - <location filename="../QScintilla/MiniEditor.py" line="1144" /> <location filename="../ViewManager/ViewManager.py" line="2074" /> <location filename="../ViewManager/ViewManager.py" line="2073" /> <source>Move up one paragraph</source> <translation>Déplacement d'un paragraphe vers le haut</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1146" /> + <location filename="../QScintilla/MiniEditor.py" line="1147" /> <location filename="../ViewManager/ViewManager.py" line="2075" /> <source>Alt+Up</source> <translation>Alt+Up</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1158" /> <location filename="../QScintilla/MiniEditor.py" line="1157" /> - <location filename="../QScintilla/MiniEditor.py" line="1156" /> <location filename="../ViewManager/ViewManager.py" line="2086" /> <location filename="../ViewManager/ViewManager.py" line="2085" /> <source>Move down one paragraph</source> <translation>Déplacement d'un paragraphe vers le bas</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1158" /> + <location filename="../QScintilla/MiniEditor.py" line="1159" /> <location filename="../ViewManager/ViewManager.py" line="2087" /> <source>Alt+Down</source> <translation>Alt+Down</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1170" /> <location filename="../QScintilla/MiniEditor.py" line="1169" /> - <location filename="../QScintilla/MiniEditor.py" line="1168" /> <location filename="../QScintilla/ShellWindow.py" line="739" /> <location filename="../QScintilla/ShellWindow.py" line="738" /> <location filename="../ViewManager/ViewManager.py" line="2098" /> @@ -95999,15 +96004,15 @@ <translation>Déplacement d'une page vers le haut</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1170" /> + <location filename="../QScintilla/MiniEditor.py" line="1171" /> <location filename="../QScintilla/ShellWindow.py" line="740" /> <location filename="../ViewManager/ViewManager.py" line="2099" /> <source>PgUp</source> <translation>PgUp</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1182" /> <location filename="../QScintilla/MiniEditor.py" line="1181" /> - <location filename="../QScintilla/MiniEditor.py" line="1180" /> <location filename="../QScintilla/ShellWindow.py" line="751" /> <location filename="../QScintilla/ShellWindow.py" line="750" /> <location filename="../ViewManager/ViewManager.py" line="2110" /> @@ -96016,50 +96021,50 @@ <translation>Déplacement d'une page vers le bas</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1182" /> + <location filename="../QScintilla/MiniEditor.py" line="1183" /> <location filename="../QScintilla/ShellWindow.py" line="752" /> <location filename="../ViewManager/ViewManager.py" line="2111" /> <source>PgDown</source> <translation>PgDown</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1189" /> + <location filename="../QScintilla/MiniEditor.py" line="1190" /> <location filename="../QScintilla/ShellWindow.py" line="759" /> <location filename="../ViewManager/ViewManager.py" line="2118" /> <source>Meta+V</source> <translation>Meta+V</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1198" /> <location filename="../QScintilla/MiniEditor.py" line="1197" /> - <location filename="../QScintilla/MiniEditor.py" line="1196" /> <location filename="../ViewManager/ViewManager.py" line="2126" /> <location filename="../ViewManager/ViewManager.py" line="2125" /> <source>Move to start of document</source> <translation>Déplacement au début du document</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1209" /> + <location filename="../QScintilla/MiniEditor.py" line="1210" /> <location filename="../ViewManager/ViewManager.py" line="2138" /> <source>Ctrl+Home</source> <translation>Ctrl+Home</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1218" /> <location filename="../QScintilla/MiniEditor.py" line="1217" /> - <location filename="../QScintilla/MiniEditor.py" line="1216" /> <location filename="../ViewManager/ViewManager.py" line="2146" /> <location filename="../ViewManager/ViewManager.py" line="2145" /> <source>Move to end of document</source> <translation>Déplacement à la fin du document</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1229" /> + <location filename="../QScintilla/MiniEditor.py" line="1230" /> <location filename="../ViewManager/ViewManager.py" line="2158" /> <source>Ctrl+End</source> <translation>Ctrl+End</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1238" /> <location filename="../QScintilla/MiniEditor.py" line="1237" /> - <location filename="../QScintilla/MiniEditor.py" line="1236" /> <location filename="../QScintilla/ShellWindow.py" line="453" /> <location filename="../QScintilla/ShellWindow.py" line="452" /> <location filename="../ViewManager/ViewManager.py" line="2166" /> @@ -96068,29 +96073,29 @@ <translation>Indentation d'un niveau</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1238" /> + <location filename="../QScintilla/MiniEditor.py" line="1239" /> <location filename="../QScintilla/ShellWindow.py" line="454" /> <location filename="../ViewManager/ViewManager.py" line="2167" /> <source>Tab</source> <translation>Tab</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1250" /> <location filename="../QScintilla/MiniEditor.py" line="1249" /> - <location filename="../QScintilla/MiniEditor.py" line="1248" /> <location filename="../ViewManager/ViewManager.py" line="2178" /> <location filename="../ViewManager/ViewManager.py" line="2177" /> <source>Unindent one level</source> <translation>Désindentation d'un niveau</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1250" /> + <location filename="../QScintilla/MiniEditor.py" line="1251" /> <location filename="../ViewManager/ViewManager.py" line="2179" /> <source>Shift+Tab</source> <translation>Shift+Tab</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1263" /> - <location filename="../QScintilla/MiniEditor.py" line="1260" /> + <location filename="../QScintilla/MiniEditor.py" line="1264" /> + <location filename="../QScintilla/MiniEditor.py" line="1261" /> <location filename="../QScintilla/ShellWindow.py" line="781" /> <location filename="../QScintilla/ShellWindow.py" line="778" /> <location filename="../ViewManager/ViewManager.py" line="2192" /> @@ -96099,22 +96104,22 @@ <translation>Extension de la sélection d'un caractère vers la gauche</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1266" /> + <location filename="../QScintilla/MiniEditor.py" line="1267" /> <location filename="../QScintilla/ShellWindow.py" line="784" /> <location filename="../ViewManager/ViewManager.py" line="2195" /> <source>Shift+Left</source> <translation>Shift+Left</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1273" /> + <location filename="../QScintilla/MiniEditor.py" line="1274" /> <location filename="../QScintilla/ShellWindow.py" line="791" /> <location filename="../ViewManager/ViewManager.py" line="2202" /> <source>Meta+Shift+B</source> <translation>Meta+Shift+B</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1283" /> - <location filename="../QScintilla/MiniEditor.py" line="1280" /> + <location filename="../QScintilla/MiniEditor.py" line="1284" /> + <location filename="../QScintilla/MiniEditor.py" line="1281" /> <location filename="../QScintilla/ShellWindow.py" line="801" /> <location filename="../QScintilla/ShellWindow.py" line="798" /> <location filename="../ViewManager/ViewManager.py" line="2212" /> @@ -96123,70 +96128,70 @@ <translation>Extension de la sélection d'un caractère vers la droite</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1286" /> + <location filename="../QScintilla/MiniEditor.py" line="1287" /> <location filename="../QScintilla/ShellWindow.py" line="804" /> <location filename="../ViewManager/ViewManager.py" line="2215" /> <source>Shift+Right</source> <translation>Shift+Right</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1293" /> + <location filename="../QScintilla/MiniEditor.py" line="1294" /> <location filename="../QScintilla/ShellWindow.py" line="811" /> <location filename="../ViewManager/ViewManager.py" line="2222" /> <source>Meta+Shift+F</source> <translation>Meta+Shift+F</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1302" /> <location filename="../QScintilla/MiniEditor.py" line="1301" /> - <location filename="../QScintilla/MiniEditor.py" line="1300" /> <location filename="../ViewManager/ViewManager.py" line="2230" /> <location filename="../ViewManager/ViewManager.py" line="2229" /> <source>Extend selection up one line</source> <translation>Extension de la sélection d'une ligne vers le haut</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1302" /> + <location filename="../QScintilla/MiniEditor.py" line="1303" /> <location filename="../ViewManager/ViewManager.py" line="2231" /> <source>Shift+Up</source> <translation>Shift+Up</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1309" /> + <location filename="../QScintilla/MiniEditor.py" line="1310" /> <location filename="../ViewManager/ViewManager.py" line="2238" /> <source>Meta+Shift+P</source> <translation>Meta+Shift+P</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1318" /> <location filename="../QScintilla/MiniEditor.py" line="1317" /> - <location filename="../QScintilla/MiniEditor.py" line="1316" /> <location filename="../ViewManager/ViewManager.py" line="2246" /> <location filename="../ViewManager/ViewManager.py" line="2245" /> <source>Extend selection down one line</source> <translation>Extension de la sélection d'une ligne vers le bas</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1318" /> + <location filename="../QScintilla/MiniEditor.py" line="1319" /> <location filename="../ViewManager/ViewManager.py" line="2247" /> <source>Shift+Down</source> <translation>Shift+Down</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1325" /> + <location filename="../QScintilla/MiniEditor.py" line="1326" /> <location filename="../ViewManager/ViewManager.py" line="2254" /> <source>Meta+Shift+N</source> <translation>Meta+Shift+N</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1335" /> - <location filename="../QScintilla/MiniEditor.py" line="1332" /> + <location filename="../QScintilla/MiniEditor.py" line="1336" /> + <location filename="../QScintilla/MiniEditor.py" line="1333" /> <location filename="../ViewManager/ViewManager.py" line="2264" /> <location filename="../ViewManager/ViewManager.py" line="2261" /> <source>Extend selection left one word part</source> <translation>Extension de la sélection d'une part de mot vers la gauche</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1386" /> - <location filename="../QScintilla/MiniEditor.py" line="1346" /> + <location filename="../QScintilla/MiniEditor.py" line="1387" /> + <location filename="../QScintilla/MiniEditor.py" line="1347" /> <location filename="../QScintilla/ShellWindow.py" line="828" /> <location filename="../ViewManager/ViewManager.py" line="2315" /> <location filename="../ViewManager/ViewManager.py" line="2275" /> @@ -96194,17 +96199,17 @@ <translation>Alt+Shift+Left</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1357" /> - <location filename="../QScintilla/MiniEditor.py" line="1354" /> + <location filename="../QScintilla/MiniEditor.py" line="1358" /> + <location filename="../QScintilla/MiniEditor.py" line="1355" /> <location filename="../ViewManager/ViewManager.py" line="2286" /> <location filename="../ViewManager/ViewManager.py" line="2283" /> <source>Extend selection right one word part</source> <translation>Extension de la sélection d'une part de mot vers la droite</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2181" /> - <location filename="../QScintilla/MiniEditor.py" line="1414" /> - <location filename="../QScintilla/MiniEditor.py" line="1368" /> + <location filename="../QScintilla/MiniEditor.py" line="2182" /> + <location filename="../QScintilla/MiniEditor.py" line="1415" /> + <location filename="../QScintilla/MiniEditor.py" line="1369" /> <location filename="../QScintilla/ShellWindow.py" line="856" /> <location filename="../ViewManager/ViewManager.py" line="3093" /> <location filename="../ViewManager/ViewManager.py" line="2343" /> @@ -96213,8 +96218,8 @@ <translation>Alt+Shift+Right</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1378" /> <location filename="../QScintilla/MiniEditor.py" line="1377" /> - <location filename="../QScintilla/MiniEditor.py" line="1376" /> <location filename="../QScintilla/ShellWindow.py" line="819" /> <location filename="../QScintilla/ShellWindow.py" line="818" /> <location filename="../ViewManager/ViewManager.py" line="2306" /> @@ -96223,8 +96228,8 @@ <translation>Extension de la sélection d'un mot vers la gauche</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2307" /> - <location filename="../QScintilla/MiniEditor.py" line="1392" /> + <location filename="../QScintilla/MiniEditor.py" line="2308" /> + <location filename="../QScintilla/MiniEditor.py" line="1393" /> <location filename="../QScintilla/ShellWindow.py" line="834" /> <location filename="../ViewManager/ViewManager.py" line="3219" /> <location filename="../ViewManager/ViewManager.py" line="2321" /> @@ -96232,8 +96237,8 @@ <translation>Ctrl+Shift+Left</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1403" /> - <location filename="../QScintilla/MiniEditor.py" line="1400" /> + <location filename="../QScintilla/MiniEditor.py" line="1404" /> + <location filename="../QScintilla/MiniEditor.py" line="1401" /> <location filename="../QScintilla/ShellWindow.py" line="845" /> <location filename="../QScintilla/ShellWindow.py" line="842" /> <location filename="../ViewManager/ViewManager.py" line="2332" /> @@ -96242,8 +96247,8 @@ <translation>Extension de la sélection d'un mot vers la droite</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1868" /> - <location filename="../QScintilla/MiniEditor.py" line="1420" /> + <location filename="../QScintilla/MiniEditor.py" line="1869" /> + <location filename="../QScintilla/MiniEditor.py" line="1421" /> <location filename="../QScintilla/ShellWindow.py" line="862" /> <location filename="../ViewManager/ViewManager.py" line="2780" /> <location filename="../ViewManager/ViewManager.py" line="2349" /> @@ -96251,8 +96256,8 @@ <translation>Ctrl+Shift+Right</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1432" /> - <location filename="../QScintilla/MiniEditor.py" line="1428" /> + <location filename="../QScintilla/MiniEditor.py" line="1433" /> + <location filename="../QScintilla/MiniEditor.py" line="1429" /> <location filename="../QScintilla/ShellWindow.py" line="874" /> <location filename="../QScintilla/ShellWindow.py" line="870" /> <location filename="../ViewManager/ViewManager.py" line="2361" /> @@ -96261,15 +96266,15 @@ <translation>Extension de la sélection au premier caractère visible de la ligne du document</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1443" /> + <location filename="../QScintilla/MiniEditor.py" line="1444" /> <location filename="../QScintilla/ShellWindow.py" line="885" /> <location filename="../ViewManager/ViewManager.py" line="2372" /> <source>Shift+Home</source> <translation>Shift+Home</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1453" /> - <location filename="../QScintilla/MiniEditor.py" line="1450" /> + <location filename="../QScintilla/MiniEditor.py" line="1454" /> + <location filename="../QScintilla/MiniEditor.py" line="1451" /> <location filename="../QScintilla/ShellWindow.py" line="895" /> <location filename="../QScintilla/ShellWindow.py" line="892" /> <location filename="../ViewManager/ViewManager.py" line="2382" /> @@ -96278,124 +96283,124 @@ <translation>Extension de la sélection à la fin de la ligne du document</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1463" /> + <location filename="../QScintilla/MiniEditor.py" line="1464" /> <location filename="../QScintilla/ShellWindow.py" line="905" /> <location filename="../ViewManager/ViewManager.py" line="2392" /> <source>Meta+Shift+E</source> <translation>Meta+Shift+E</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1467" /> + <location filename="../QScintilla/MiniEditor.py" line="1468" /> <location filename="../QScintilla/ShellWindow.py" line="909" /> <location filename="../ViewManager/ViewManager.py" line="2396" /> <source>Shift+End</source> <translation>Shift+End</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1477" /> - <location filename="../QScintilla/MiniEditor.py" line="1474" /> + <location filename="../QScintilla/MiniEditor.py" line="1478" /> + <location filename="../QScintilla/MiniEditor.py" line="1475" /> <location filename="../ViewManager/ViewManager.py" line="2406" /> <location filename="../ViewManager/ViewManager.py" line="2403" /> <source>Extend selection up one paragraph</source> <translation>Extension de la sélection d'un paragraphe vers le haut</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1480" /> + <location filename="../QScintilla/MiniEditor.py" line="1481" /> <location filename="../ViewManager/ViewManager.py" line="2409" /> <source>Alt+Shift+Up</source> <translation>Alt+Shift+Up</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1493" /> - <location filename="../QScintilla/MiniEditor.py" line="1490" /> + <location filename="../QScintilla/MiniEditor.py" line="1494" /> + <location filename="../QScintilla/MiniEditor.py" line="1491" /> <location filename="../ViewManager/ViewManager.py" line="2422" /> <location filename="../ViewManager/ViewManager.py" line="2419" /> <source>Extend selection down one paragraph</source> <translation>Extension de la sélection d'un paragraphe vers le bas</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1496" /> + <location filename="../QScintilla/MiniEditor.py" line="1497" /> <location filename="../ViewManager/ViewManager.py" line="2425" /> <source>Alt+Shift+Down</source> <translation>Alt+Shift+Down</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1508" /> <location filename="../QScintilla/MiniEditor.py" line="1507" /> - <location filename="../QScintilla/MiniEditor.py" line="1506" /> <location filename="../ViewManager/ViewManager.py" line="2436" /> <location filename="../ViewManager/ViewManager.py" line="2435" /> <source>Extend selection up one page</source> <translation>Extension de la sélection d'une page vers le haut</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1508" /> + <location filename="../QScintilla/MiniEditor.py" line="1509" /> <location filename="../ViewManager/ViewManager.py" line="2437" /> <source>Shift+PgUp</source> <translation>Shift+PgUp</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1520" /> <location filename="../QScintilla/MiniEditor.py" line="1519" /> - <location filename="../QScintilla/MiniEditor.py" line="1518" /> <location filename="../ViewManager/ViewManager.py" line="2448" /> <location filename="../ViewManager/ViewManager.py" line="2447" /> <source>Extend selection down one page</source> <translation>Extension de la sélection d'une page vers le bas</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1520" /> + <location filename="../QScintilla/MiniEditor.py" line="1521" /> <location filename="../ViewManager/ViewManager.py" line="2449" /> <source>Shift+PgDown</source> <translation>Shift+PgDown</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1527" /> + <location filename="../QScintilla/MiniEditor.py" line="1528" /> <location filename="../ViewManager/ViewManager.py" line="2456" /> <source>Meta+Shift+V</source> <translation>Meta+Shift+V</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1537" /> - <location filename="../QScintilla/MiniEditor.py" line="1534" /> + <location filename="../QScintilla/MiniEditor.py" line="1538" /> + <location filename="../QScintilla/MiniEditor.py" line="1535" /> <location filename="../ViewManager/ViewManager.py" line="2466" /> <location filename="../ViewManager/ViewManager.py" line="2463" /> <source>Extend selection to start of document</source> <translation>Extension de la sélection à la fin du document</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1547" /> + <location filename="../QScintilla/MiniEditor.py" line="1548" /> <location filename="../ViewManager/ViewManager.py" line="2476" /> <source>Ctrl+Shift+Up</source> <translation>Ctrl+Shift+Up</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1552" /> + <location filename="../QScintilla/MiniEditor.py" line="1553" /> <location filename="../ViewManager/ViewManager.py" line="2481" /> <source>Ctrl+Shift+Home</source> <translation>Ctrl+Shift+Home</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1563" /> - <location filename="../QScintilla/MiniEditor.py" line="1560" /> + <location filename="../QScintilla/MiniEditor.py" line="1564" /> + <location filename="../QScintilla/MiniEditor.py" line="1561" /> <location filename="../ViewManager/ViewManager.py" line="2492" /> <location filename="../ViewManager/ViewManager.py" line="2489" /> <source>Extend selection to end of document</source> <translation>Extension de la sélection à la fin du document</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1574" /> + <location filename="../QScintilla/MiniEditor.py" line="1575" /> <location filename="../ViewManager/ViewManager.py" line="2503" /> <source>Ctrl+Shift+Down</source> <translation>Ctrl+Shift+Down</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1580" /> + <location filename="../QScintilla/MiniEditor.py" line="1581" /> <location filename="../ViewManager/ViewManager.py" line="2509" /> <source>Ctrl+Shift+End</source> <translation>Ctrl+Shift+End</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1590" /> <location filename="../QScintilla/MiniEditor.py" line="1589" /> - <location filename="../QScintilla/MiniEditor.py" line="1588" /> <location filename="../QScintilla/ShellWindow.py" line="477" /> <location filename="../QScintilla/ShellWindow.py" line="476" /> <location filename="../ViewManager/ViewManager.py" line="2518" /> @@ -96404,37 +96409,37 @@ <translation>Suppression du caractère précédent</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1590" /> + <location filename="../QScintilla/MiniEditor.py" line="1591" /> <location filename="../QScintilla/ShellWindow.py" line="478" /> <location filename="../ViewManager/ViewManager.py" line="2519" /> <source>Backspace</source> <translation>Backspace</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1597" /> + <location filename="../QScintilla/MiniEditor.py" line="1598" /> <location filename="../QScintilla/ShellWindow.py" line="485" /> <location filename="../ViewManager/ViewManager.py" line="2526" /> <source>Meta+H</source> <translation>Meta+H</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1602" /> + <location filename="../QScintilla/MiniEditor.py" line="1603" /> <location filename="../QScintilla/ShellWindow.py" line="490" /> <location filename="../ViewManager/ViewManager.py" line="2531" /> <source>Shift+Backspace</source> <translation>Shift+Backspace</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1613" /> - <location filename="../QScintilla/MiniEditor.py" line="1610" /> + <location filename="../QScintilla/MiniEditor.py" line="1614" /> + <location filename="../QScintilla/MiniEditor.py" line="1611" /> <location filename="../ViewManager/ViewManager.py" line="2542" /> <location filename="../ViewManager/ViewManager.py" line="2539" /> <source>Delete previous character if not at start of line</source> <translation>Suppression du caractère précédent sauf en début de ligne</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1628" /> <location filename="../QScintilla/MiniEditor.py" line="1627" /> - <location filename="../QScintilla/MiniEditor.py" line="1626" /> <location filename="../QScintilla/ShellWindow.py" line="499" /> <location filename="../QScintilla/ShellWindow.py" line="498" /> <location filename="../ViewManager/ViewManager.py" line="2556" /> @@ -96443,22 +96448,22 @@ <translation>Suppression du caractère courant</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1628" /> + <location filename="../QScintilla/MiniEditor.py" line="1629" /> <location filename="../QScintilla/ShellWindow.py" line="500" /> <location filename="../ViewManager/ViewManager.py" line="2557" /> <source>Del</source> <translation>Del</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1635" /> + <location filename="../QScintilla/MiniEditor.py" line="1636" /> <location filename="../QScintilla/ShellWindow.py" line="507" /> <location filename="../ViewManager/ViewManager.py" line="2564" /> <source>Meta+D</source> <translation>Meta+D</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1644" /> <location filename="../QScintilla/MiniEditor.py" line="1643" /> - <location filename="../QScintilla/MiniEditor.py" line="1642" /> <location filename="../QScintilla/ShellWindow.py" line="515" /> <location filename="../QScintilla/ShellWindow.py" line="514" /> <location filename="../ViewManager/ViewManager.py" line="2572" /> @@ -96467,15 +96472,15 @@ <translation>Suppression du mot de gauche</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1644" /> + <location filename="../QScintilla/MiniEditor.py" line="1645" /> <location filename="../QScintilla/ShellWindow.py" line="516" /> <location filename="../ViewManager/ViewManager.py" line="2573" /> <source>Ctrl+Backspace</source> <translation>Ctrl+Backspace</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1656" /> <location filename="../QScintilla/MiniEditor.py" line="1655" /> - <location filename="../QScintilla/MiniEditor.py" line="1654" /> <location filename="../QScintilla/ShellWindow.py" line="527" /> <location filename="../QScintilla/ShellWindow.py" line="526" /> <location filename="../ViewManager/ViewManager.py" line="2584" /> @@ -96484,15 +96489,15 @@ <translation>Suppression du mot de droite</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1656" /> + <location filename="../QScintilla/MiniEditor.py" line="1657" /> <location filename="../QScintilla/ShellWindow.py" line="528" /> <location filename="../ViewManager/ViewManager.py" line="2585" /> <source>Ctrl+Del</source> <translation>Ctrl+Del</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1668" /> <location filename="../QScintilla/MiniEditor.py" line="1667" /> - <location filename="../QScintilla/MiniEditor.py" line="1666" /> <location filename="../QScintilla/ShellWindow.py" line="539" /> <location filename="../QScintilla/ShellWindow.py" line="538" /> <location filename="../ViewManager/ViewManager.py" line="2596" /> @@ -96501,15 +96506,15 @@ <translation>Suppression de la partie gauche de la ligne</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1669" /> + <location filename="../QScintilla/MiniEditor.py" line="1670" /> <location filename="../QScintilla/ShellWindow.py" line="541" /> <location filename="../ViewManager/ViewManager.py" line="2598" /> <source>Ctrl+Shift+Backspace</source> <translation>Ctrl+Shift+Backspace</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1682" /> <location filename="../QScintilla/MiniEditor.py" line="1681" /> - <location filename="../QScintilla/MiniEditor.py" line="1680" /> <location filename="../QScintilla/ShellWindow.py" line="553" /> <location filename="../QScintilla/ShellWindow.py" line="552" /> <location filename="../ViewManager/ViewManager.py" line="2610" /> @@ -96518,22 +96523,22 @@ <translation>Suppression de la partie droite de la ligne</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1689" /> + <location filename="../QScintilla/MiniEditor.py" line="1690" /> <location filename="../QScintilla/ShellWindow.py" line="561" /> <location filename="../ViewManager/ViewManager.py" line="2618" /> <source>Meta+K</source> <translation>Meta+K</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1694" /> + <location filename="../QScintilla/MiniEditor.py" line="1695" /> <location filename="../QScintilla/ShellWindow.py" line="566" /> <location filename="../ViewManager/ViewManager.py" line="2623" /> <source>Ctrl+Shift+Del</source> <translation>Ctrl+Shift+Del</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1704" /> <location filename="../QScintilla/MiniEditor.py" line="1703" /> - <location filename="../QScintilla/MiniEditor.py" line="1702" /> <location filename="../QScintilla/ShellWindow.py" line="465" /> <location filename="../QScintilla/ShellWindow.py" line="464" /> <location filename="../ViewManager/ViewManager.py" line="2632" /> @@ -96542,14 +96547,14 @@ <translation>Insertion d'une nouvelle ligne</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1704" /> + <location filename="../QScintilla/MiniEditor.py" line="1705" /> <location filename="../QScintilla/ShellWindow.py" line="466" /> <location filename="../ViewManager/ViewManager.py" line="2633" /> <source>Return</source> <translation>Return</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1705" /> + <location filename="../QScintilla/MiniEditor.py" line="1706" /> <location filename="../QScintilla/ShellWindow.py" line="467" /> <location filename="../ViewManager/ViewManager.py" line="2634" /> <source>Enter</source> @@ -96572,8 +96577,8 @@ <translation>Shift+Enter</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1716" /> <location filename="../QScintilla/MiniEditor.py" line="1715" /> - <location filename="../QScintilla/MiniEditor.py" line="1714" /> <location filename="../QScintilla/ShellWindow.py" line="441" /> <location filename="../QScintilla/ShellWindow.py" line="440" /> <location filename="../ViewManager/ViewManager.py" line="2659" /> @@ -96582,129 +96587,129 @@ <translation>Suppression de la ligne courante</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1716" /> + <location filename="../QScintilla/MiniEditor.py" line="1717" /> <location filename="../QScintilla/ShellWindow.py" line="442" /> <location filename="../ViewManager/ViewManager.py" line="2660" /> <source>Ctrl+Shift+L</source> <translation>Ctrl+Shift+L</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1728" /> <location filename="../QScintilla/MiniEditor.py" line="1727" /> - <location filename="../QScintilla/MiniEditor.py" line="1726" /> <location filename="../ViewManager/ViewManager.py" line="2671" /> <location filename="../ViewManager/ViewManager.py" line="2670" /> <source>Duplicate current line</source> <translation>Duplication de la ligne courante</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1728" /> + <location filename="../QScintilla/MiniEditor.py" line="1729" /> <location filename="../ViewManager/ViewManager.py" line="2672" /> <source>Ctrl+D</source> <translation>Ctrl+D</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1741" /> - <location filename="../QScintilla/MiniEditor.py" line="1738" /> + <location filename="../QScintilla/MiniEditor.py" line="1742" /> + <location filename="../QScintilla/MiniEditor.py" line="1739" /> <location filename="../ViewManager/ViewManager.py" line="2685" /> <location filename="../ViewManager/ViewManager.py" line="2682" /> <source>Swap current and previous lines</source> <translation>Permuter la ligne courante avec la précédente</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1744" /> + <location filename="../QScintilla/MiniEditor.py" line="1745" /> <location filename="../ViewManager/ViewManager.py" line="2688" /> <source>Ctrl+T</source> <translation>Ctrl+T</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1756" /> <location filename="../QScintilla/MiniEditor.py" line="1755" /> - <location filename="../QScintilla/MiniEditor.py" line="1754" /> <location filename="../ViewManager/ViewManager.py" line="2699" /> <location filename="../ViewManager/ViewManager.py" line="2698" /> <source>Reverse selected lines</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1756" /> + <location filename="../QScintilla/MiniEditor.py" line="1757" /> <location filename="../ViewManager/ViewManager.py" line="2700" /> <source>Meta+Alt+R</source> <translation>Meta+Alt+R</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1768" /> <location filename="../QScintilla/MiniEditor.py" line="1767" /> - <location filename="../QScintilla/MiniEditor.py" line="1766" /> <location filename="../ViewManager/ViewManager.py" line="2711" /> <location filename="../ViewManager/ViewManager.py" line="2710" /> <source>Cut current line</source> <translation>Couper la ligne courante</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1768" /> + <location filename="../QScintilla/MiniEditor.py" line="1769" /> <location filename="../ViewManager/ViewManager.py" line="2712" /> <source>Alt+Shift+L</source> <translation>Alt+Shift+L</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1780" /> <location filename="../QScintilla/MiniEditor.py" line="1779" /> - <location filename="../QScintilla/MiniEditor.py" line="1778" /> <location filename="../ViewManager/ViewManager.py" line="2723" /> <location filename="../ViewManager/ViewManager.py" line="2722" /> <source>Copy current line</source> <translation>Copier la ligne courante</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1780" /> + <location filename="../QScintilla/MiniEditor.py" line="1781" /> <location filename="../ViewManager/ViewManager.py" line="2724" /> <source>Ctrl+Shift+T</source> <translation>Ctrl+Shift+T</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1792" /> <location filename="../QScintilla/MiniEditor.py" line="1791" /> - <location filename="../QScintilla/MiniEditor.py" line="1790" /> <location filename="../ViewManager/ViewManager.py" line="2735" /> <location filename="../ViewManager/ViewManager.py" line="2734" /> <source>Toggle insert/overtype</source> <translation>Basculer de mode Insertion /Ecrasement</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1792" /> + <location filename="../QScintilla/MiniEditor.py" line="1793" /> <location filename="../ViewManager/ViewManager.py" line="2736" /> <source>Ins</source> <translation>Ins</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1836" /> <location filename="../QScintilla/MiniEditor.py" line="1835" /> - <location filename="../QScintilla/MiniEditor.py" line="1834" /> <location filename="../ViewManager/ViewManager.py" line="2747" /> <location filename="../ViewManager/ViewManager.py" line="2746" /> <source>Move to end of display line</source> <translation>Déplacement à la fin de la ligne affichée</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1847" /> + <location filename="../QScintilla/MiniEditor.py" line="1848" /> <location filename="../ViewManager/ViewManager.py" line="2759" /> <source>Alt+End</source> <translation>Alt+End</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1857" /> - <location filename="../QScintilla/MiniEditor.py" line="1854" /> + <location filename="../QScintilla/MiniEditor.py" line="1858" /> + <location filename="../QScintilla/MiniEditor.py" line="1855" /> <location filename="../ViewManager/ViewManager.py" line="2769" /> <location filename="../ViewManager/ViewManager.py" line="2766" /> <source>Extend selection to end of display line</source> <translation>Extension de la sélection à la fin de la ligne affichée</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1878" /> <location filename="../QScintilla/MiniEditor.py" line="1877" /> - <location filename="../QScintilla/MiniEditor.py" line="1876" /> <location filename="../ViewManager/ViewManager.py" line="2789" /> <location filename="../ViewManager/ViewManager.py" line="2788" /> <source>Formfeed</source> <translation>Chargement de page</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1890" /> <location filename="../QScintilla/MiniEditor.py" line="1889" /> - <location filename="../QScintilla/MiniEditor.py" line="1888" /> <location filename="../QScintilla/ShellWindow.py" line="767" /> <location filename="../QScintilla/ShellWindow.py" line="766" /> <location filename="../ViewManager/ViewManager.py" line="2801" /> @@ -96713,423 +96718,423 @@ <translation>Echappement</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1890" /> + <location filename="../QScintilla/MiniEditor.py" line="1891" /> <location filename="../QScintilla/ShellWindow.py" line="768" /> <location filename="../ViewManager/ViewManager.py" line="2802" /> <source>Esc</source> <translation>Esc</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1903" /> - <location filename="../QScintilla/MiniEditor.py" line="1900" /> + <location filename="../QScintilla/MiniEditor.py" line="1904" /> + <location filename="../QScintilla/MiniEditor.py" line="1901" /> <location filename="../ViewManager/ViewManager.py" line="2815" /> <location filename="../ViewManager/ViewManager.py" line="2812" /> <source>Extend rectangular selection down one line</source> <translation>Extension de la sélection rectangulaire d'une ligne vers le bas</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1906" /> + <location filename="../QScintilla/MiniEditor.py" line="1907" /> <location filename="../ViewManager/ViewManager.py" line="2818" /> <source>Alt+Ctrl+Down</source> <translation>Alt+Ctrl+Down</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1914" /> + <location filename="../QScintilla/MiniEditor.py" line="1915" /> <location filename="../ViewManager/ViewManager.py" line="2826" /> <source>Meta+Alt+Shift+N</source> <translation>Meta+Alt+Shift+N</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1925" /> - <location filename="../QScintilla/MiniEditor.py" line="1922" /> + <location filename="../QScintilla/MiniEditor.py" line="1926" /> + <location filename="../QScintilla/MiniEditor.py" line="1923" /> <location filename="../ViewManager/ViewManager.py" line="2837" /> <location filename="../ViewManager/ViewManager.py" line="2834" /> <source>Extend rectangular selection up one line</source> <translation>Extension de la sélection rectangulaire d'une ligne vers le haut</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1928" /> + <location filename="../QScintilla/MiniEditor.py" line="1929" /> <location filename="../ViewManager/ViewManager.py" line="2840" /> <source>Alt+Ctrl+Up</source> <translation>Alt+Ctrl+Up</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1936" /> + <location filename="../QScintilla/MiniEditor.py" line="1937" /> <location filename="../ViewManager/ViewManager.py" line="2848" /> <source>Meta+Alt+Shift+P</source> <translation>Meta+Alt+Shift+P</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1947" /> - <location filename="../QScintilla/MiniEditor.py" line="1944" /> + <location filename="../QScintilla/MiniEditor.py" line="1948" /> + <location filename="../QScintilla/MiniEditor.py" line="1945" /> <location filename="../ViewManager/ViewManager.py" line="2859" /> <location filename="../ViewManager/ViewManager.py" line="2856" /> <source>Extend rectangular selection left one character</source> <translation>Extension de la sélection rectangulaire d'un caractère vers la gauche</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1950" /> + <location filename="../QScintilla/MiniEditor.py" line="1951" /> <location filename="../ViewManager/ViewManager.py" line="2862" /> <source>Alt+Ctrl+Left</source> <translation>Alt+Ctrl+Left</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1958" /> + <location filename="../QScintilla/MiniEditor.py" line="1959" /> <location filename="../ViewManager/ViewManager.py" line="2870" /> <source>Meta+Alt+Shift+B</source> <translation>Meta+Alt+Shift+B</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1969" /> - <location filename="../QScintilla/MiniEditor.py" line="1966" /> + <location filename="../QScintilla/MiniEditor.py" line="1970" /> + <location filename="../QScintilla/MiniEditor.py" line="1967" /> <location filename="../ViewManager/ViewManager.py" line="2881" /> <location filename="../ViewManager/ViewManager.py" line="2878" /> <source>Extend rectangular selection right one character</source> <translation>Extension de la sélection rectangulaire d'un caractère vers la droite</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1972" /> + <location filename="../QScintilla/MiniEditor.py" line="1973" /> <location filename="../ViewManager/ViewManager.py" line="2884" /> <source>Alt+Ctrl+Right</source> <translation>Alt+Ctrl+Right</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1980" /> + <location filename="../QScintilla/MiniEditor.py" line="1981" /> <location filename="../ViewManager/ViewManager.py" line="2892" /> <source>Meta+Alt+Shift+F</source> <translation>Meta+Alt+Shift+F</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1993" /> - <location filename="../QScintilla/MiniEditor.py" line="1988" /> + <location filename="../QScintilla/MiniEditor.py" line="1994" /> + <location filename="../QScintilla/MiniEditor.py" line="1989" /> <location filename="../ViewManager/ViewManager.py" line="2905" /> <location filename="../ViewManager/ViewManager.py" line="2900" /> <source>Extend rectangular selection to first visible character in document line</source> <translation>Extension de la sélection rectangulaire au premier caractère visible du document</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2006" /> + <location filename="../QScintilla/MiniEditor.py" line="2007" /> <location filename="../ViewManager/ViewManager.py" line="2918" /> <source>Alt+Shift+Home</source> <translation>Alt+Shift+Home</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2017" /> - <location filename="../QScintilla/MiniEditor.py" line="2014" /> + <location filename="../QScintilla/MiniEditor.py" line="2018" /> + <location filename="../QScintilla/MiniEditor.py" line="2015" /> <location filename="../ViewManager/ViewManager.py" line="2929" /> <location filename="../ViewManager/ViewManager.py" line="2926" /> <source>Extend rectangular selection to end of document line</source> <translation>Extension de la sélection rectangulaire à la fin de la ligne du document</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2028" /> + <location filename="../QScintilla/MiniEditor.py" line="2029" /> <location filename="../ViewManager/ViewManager.py" line="2940" /> <source>Meta+Alt+Shift+E</source> <translation>Meta+Alt+Shift+E</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2033" /> + <location filename="../QScintilla/MiniEditor.py" line="2034" /> <location filename="../ViewManager/ViewManager.py" line="2945" /> <source>Alt+Shift+End</source> <translation>Alt+Shift+End</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2043" /> - <location filename="../QScintilla/MiniEditor.py" line="2040" /> + <location filename="../QScintilla/MiniEditor.py" line="2044" /> + <location filename="../QScintilla/MiniEditor.py" line="2041" /> <location filename="../ViewManager/ViewManager.py" line="2955" /> <location filename="../ViewManager/ViewManager.py" line="2952" /> <source>Extend rectangular selection up one page</source> <translation>Extension de la sélection rectangulaire d'une page vers le haut</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2046" /> + <location filename="../QScintilla/MiniEditor.py" line="2047" /> <location filename="../ViewManager/ViewManager.py" line="2958" /> <source>Alt+Shift+PgUp</source> <translation>Alt+Shift+PgUp</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2059" /> - <location filename="../QScintilla/MiniEditor.py" line="2056" /> + <location filename="../QScintilla/MiniEditor.py" line="2060" /> + <location filename="../QScintilla/MiniEditor.py" line="2057" /> <location filename="../ViewManager/ViewManager.py" line="2971" /> <location filename="../ViewManager/ViewManager.py" line="2968" /> <source>Extend rectangular selection down one page</source> <translation>Extension de la sélection rectangulaire d'une page vers le bas</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2062" /> + <location filename="../QScintilla/MiniEditor.py" line="2063" /> <location filename="../ViewManager/ViewManager.py" line="2974" /> <source>Alt+Shift+PgDown</source> <translation>Alt+Shift+PgDown</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2070" /> + <location filename="../QScintilla/MiniEditor.py" line="2071" /> <location filename="../ViewManager/ViewManager.py" line="2982" /> <source>Meta+Alt+Shift+V</source> <translation>Meta+Alt+Shift+V</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="2546" /> <location filename="../QScintilla/MiniEditor.py" line="2545" /> - <location filename="../QScintilla/MiniEditor.py" line="2544" /> + <location filename="../QScintilla/MiniEditor.py" line="2080" /> <location filename="../QScintilla/MiniEditor.py" line="2079" /> - <location filename="../QScintilla/MiniEditor.py" line="2078" /> <location filename="../ViewManager/ViewManager.py" line="2991" /> <location filename="../ViewManager/ViewManager.py" line="2990" /> <source>Duplicate current selection</source> <translation>Duplication de la sélection courante</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2546" /> - <location filename="../QScintilla/MiniEditor.py" line="2080" /> + <location filename="../QScintilla/MiniEditor.py" line="2547" /> + <location filename="../QScintilla/MiniEditor.py" line="2081" /> <location filename="../ViewManager/ViewManager.py" line="2992" /> <source>Ctrl+Shift+D</source> <translation>Ctrl+Shift+D</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2094" /> - <location filename="../QScintilla/MiniEditor.py" line="2091" /> + <location filename="../QScintilla/MiniEditor.py" line="2095" /> + <location filename="../QScintilla/MiniEditor.py" line="2092" /> <location filename="../ViewManager/ViewManager.py" line="3006" /> <location filename="../ViewManager/ViewManager.py" line="3003" /> <source>Scroll to start of document</source> <translation>Défilement au début du document</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="2114" /> <location filename="../QScintilla/MiniEditor.py" line="2113" /> - <location filename="../QScintilla/MiniEditor.py" line="2112" /> <location filename="../ViewManager/ViewManager.py" line="3025" /> <location filename="../ViewManager/ViewManager.py" line="3024" /> <source>Scroll to end of document</source> <translation>Défilement à la fin du document</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2132" /> - <location filename="../QScintilla/MiniEditor.py" line="2129" /> + <location filename="../QScintilla/MiniEditor.py" line="2133" /> + <location filename="../QScintilla/MiniEditor.py" line="2130" /> <location filename="../ViewManager/ViewManager.py" line="3044" /> <location filename="../ViewManager/ViewManager.py" line="3041" /> <source>Scroll vertically to center current line</source> <translation>Défilement vertical de façon à centrer la ligne courante</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2142" /> + <location filename="../QScintilla/MiniEditor.py" line="2143" /> <location filename="../ViewManager/ViewManager.py" line="3054" /> <source>Meta+L</source> <translation>Meta+L</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="2152" /> <location filename="../QScintilla/MiniEditor.py" line="2151" /> - <location filename="../QScintilla/MiniEditor.py" line="2150" /> <location filename="../ViewManager/ViewManager.py" line="3063" /> <location filename="../ViewManager/ViewManager.py" line="3062" /> <source>Move to end of next word</source> <translation>Déplacement à la fin du mot suivant</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2170" /> - <location filename="../QScintilla/MiniEditor.py" line="2167" /> + <location filename="../QScintilla/MiniEditor.py" line="2171" /> + <location filename="../QScintilla/MiniEditor.py" line="2168" /> <location filename="../ViewManager/ViewManager.py" line="3082" /> <location filename="../ViewManager/ViewManager.py" line="3079" /> <source>Extend selection to end of next word</source> <translation>Extension de la séleciton à la fin du mot suivant</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2193" /> - <location filename="../QScintilla/MiniEditor.py" line="2190" /> + <location filename="../QScintilla/MiniEditor.py" line="2194" /> + <location filename="../QScintilla/MiniEditor.py" line="2191" /> <location filename="../ViewManager/ViewManager.py" line="3105" /> <location filename="../ViewManager/ViewManager.py" line="3102" /> <source>Move to end of previous word</source> <translation>Déplacement à la fin du mot précédent</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2210" /> - <location filename="../QScintilla/MiniEditor.py" line="2207" /> + <location filename="../QScintilla/MiniEditor.py" line="2211" /> + <location filename="../QScintilla/MiniEditor.py" line="2208" /> <location filename="../ViewManager/ViewManager.py" line="3122" /> <location filename="../ViewManager/ViewManager.py" line="3119" /> <source>Extend selection to end of previous word</source> <translation>Extension de la séleciton à la fin du mot précédent</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2227" /> - <location filename="../QScintilla/MiniEditor.py" line="2224" /> + <location filename="../QScintilla/MiniEditor.py" line="2228" /> + <location filename="../QScintilla/MiniEditor.py" line="2225" /> <location filename="../ViewManager/ViewManager.py" line="3139" /> <location filename="../ViewManager/ViewManager.py" line="3136" /> <source>Move to start of document line</source> <translation>Déplacement au début de la ligne du document</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2237" /> + <location filename="../QScintilla/MiniEditor.py" line="2238" /> <location filename="../ViewManager/ViewManager.py" line="3149" /> <source>Meta+A</source> <translation>Meta+A</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2248" /> - <location filename="../QScintilla/MiniEditor.py" line="2245" /> + <location filename="../QScintilla/MiniEditor.py" line="2249" /> + <location filename="../QScintilla/MiniEditor.py" line="2246" /> <location filename="../ViewManager/ViewManager.py" line="3160" /> <location filename="../ViewManager/ViewManager.py" line="3157" /> <source>Extend selection to start of document line</source> <translation>Extension de la sélection au début de la ligne du document</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2259" /> + <location filename="../QScintilla/MiniEditor.py" line="2260" /> <location filename="../ViewManager/ViewManager.py" line="3171" /> <source>Meta+Shift+A</source> <translation>Meta+Shift+A</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2272" /> - <location filename="../QScintilla/MiniEditor.py" line="2268" /> + <location filename="../QScintilla/MiniEditor.py" line="2273" /> + <location filename="../QScintilla/MiniEditor.py" line="2269" /> <location filename="../ViewManager/ViewManager.py" line="3184" /> <location filename="../ViewManager/ViewManager.py" line="3180" /> <source>Extend rectangular selection to start of document line</source> <translation>Extension de la sélection rectangulaire au début de la ligne du document</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2284" /> + <location filename="../QScintilla/MiniEditor.py" line="2285" /> <location filename="../ViewManager/ViewManager.py" line="3196" /> <source>Meta+Alt+Shift+A</source> <translation>Meta+Alt+Shift+A</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2296" /> - <location filename="../QScintilla/MiniEditor.py" line="2293" /> + <location filename="../QScintilla/MiniEditor.py" line="2297" /> + <location filename="../QScintilla/MiniEditor.py" line="2294" /> <location filename="../ViewManager/ViewManager.py" line="3208" /> <location filename="../ViewManager/ViewManager.py" line="3205" /> <source>Extend selection to start of display line</source> <translation>Extension de la sélection au début de la ligne affichée</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2319" /> - <location filename="../QScintilla/MiniEditor.py" line="2316" /> + <location filename="../QScintilla/MiniEditor.py" line="2320" /> + <location filename="../QScintilla/MiniEditor.py" line="2317" /> <location filename="../ViewManager/ViewManager.py" line="3231" /> <location filename="../ViewManager/ViewManager.py" line="3228" /> <source>Move to start of display or document line</source> <translation>Déplacement au début de la ligne affichée ou de la ligne du document</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2337" /> - <location filename="../QScintilla/MiniEditor.py" line="2333" /> + <location filename="../QScintilla/MiniEditor.py" line="2338" /> + <location filename="../QScintilla/MiniEditor.py" line="2334" /> <location filename="../ViewManager/ViewManager.py" line="3249" /> <location filename="../ViewManager/ViewManager.py" line="3245" /> <source>Extend selection to start of display or document line</source> <translation>Extension de la sélection au début de la ligne affichée ou de la ligne du document</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2356" /> - <location filename="../QScintilla/MiniEditor.py" line="2352" /> + <location filename="../QScintilla/MiniEditor.py" line="2357" /> + <location filename="../QScintilla/MiniEditor.py" line="2353" /> <location filename="../ViewManager/ViewManager.py" line="3268" /> <location filename="../ViewManager/ViewManager.py" line="3264" /> <source>Move to first visible character in display or document line</source> <translation>Déplacement vers le premier caractère visible de la ligne affichée ou de la ligne do document</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2376" /> - <location filename="../QScintilla/MiniEditor.py" line="2371" /> + <location filename="../QScintilla/MiniEditor.py" line="2377" /> + <location filename="../QScintilla/MiniEditor.py" line="2372" /> <location filename="../ViewManager/ViewManager.py" line="3288" /> <location filename="../ViewManager/ViewManager.py" line="3283" /> <source>Extend selection to first visible character in display or document line</source> <translation>Extension de la sélection au premier caractère visible du document</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2395" /> - <location filename="../QScintilla/MiniEditor.py" line="2392" /> + <location filename="../QScintilla/MiniEditor.py" line="2396" /> + <location filename="../QScintilla/MiniEditor.py" line="2393" /> <location filename="../ViewManager/ViewManager.py" line="3307" /> <location filename="../ViewManager/ViewManager.py" line="3304" /> <source>Move to end of display or document line</source> <translation>Déplacement à la de la ligne affichée ou de la ligne du document</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2412" /> - <location filename="../QScintilla/MiniEditor.py" line="2409" /> + <location filename="../QScintilla/MiniEditor.py" line="2413" /> + <location filename="../QScintilla/MiniEditor.py" line="2410" /> <location filename="../ViewManager/ViewManager.py" line="3324" /> <location filename="../ViewManager/ViewManager.py" line="3321" /> <source>Extend selection to end of display or document line</source> <translation>Extension de la sélection à la fint de la ligne affichée ou de la ligne du document</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="2428" /> <location filename="../QScintilla/MiniEditor.py" line="2427" /> - <location filename="../QScintilla/MiniEditor.py" line="2426" /> <location filename="../ViewManager/ViewManager.py" line="3339" /> <location filename="../ViewManager/ViewManager.py" line="3338" /> <source>Stuttered move up one page</source> <translation>Déplacement étagé d'une page vers le haut</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2442" /> - <location filename="../QScintilla/MiniEditor.py" line="2439" /> + <location filename="../QScintilla/MiniEditor.py" line="2443" /> + <location filename="../QScintilla/MiniEditor.py" line="2440" /> <location filename="../ViewManager/ViewManager.py" line="3354" /> <location filename="../ViewManager/ViewManager.py" line="3351" /> <source>Stuttered extend selection up one page</source> <translation>Extension de la sélection étagée d'une page vers le haut</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2459" /> - <location filename="../QScintilla/MiniEditor.py" line="2456" /> + <location filename="../QScintilla/MiniEditor.py" line="2460" /> + <location filename="../QScintilla/MiniEditor.py" line="2457" /> <location filename="../ViewManager/ViewManager.py" line="3371" /> <location filename="../ViewManager/ViewManager.py" line="3368" /> <source>Stuttered move down one page</source> <translation>Déplacement étagé d'une page vers le bas</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2476" /> - <location filename="../QScintilla/MiniEditor.py" line="2473" /> + <location filename="../QScintilla/MiniEditor.py" line="2477" /> + <location filename="../QScintilla/MiniEditor.py" line="2474" /> <location filename="../ViewManager/ViewManager.py" line="3388" /> <location filename="../ViewManager/ViewManager.py" line="3385" /> <source>Stuttered extend selection down one page</source> <translation>Extension de la sélection étagée d'une page vers le bas</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2493" /> - <location filename="../QScintilla/MiniEditor.py" line="2490" /> + <location filename="../QScintilla/MiniEditor.py" line="2494" /> + <location filename="../QScintilla/MiniEditor.py" line="2491" /> <location filename="../ViewManager/ViewManager.py" line="3405" /> <location filename="../ViewManager/ViewManager.py" line="3402" /> <source>Delete right to end of next word</source> <translation>Supprimer jusqu'à la fin du mot à doite</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2503" /> + <location filename="../QScintilla/MiniEditor.py" line="2504" /> <location filename="../ViewManager/ViewManager.py" line="3415" /> <source>Alt+Del</source> <translation>Alt+Del</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2514" /> - <location filename="../QScintilla/MiniEditor.py" line="2511" /> + <location filename="../QScintilla/MiniEditor.py" line="2515" /> + <location filename="../QScintilla/MiniEditor.py" line="2512" /> <location filename="../ViewManager/ViewManager.py" line="3426" /> <location filename="../ViewManager/ViewManager.py" line="3423" /> <source>Move selected lines up one line</source> <translation>Déplacement des lignes sélectionnées d'une ligne vers le haut</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2531" /> - <location filename="../QScintilla/MiniEditor.py" line="2528" /> + <location filename="../QScintilla/MiniEditor.py" line="2532" /> + <location filename="../QScintilla/MiniEditor.py" line="2529" /> <location filename="../ViewManager/ViewManager.py" line="3443" /> <location filename="../ViewManager/ViewManager.py" line="3440" /> <source>Move selected lines down one line</source> <translation>Déplacement des lignes sélectionnées d'une ligne vers le bas</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1805" /> - <location filename="../QScintilla/MiniEditor.py" line="1802" /> + <location filename="../QScintilla/MiniEditor.py" line="1806" /> + <location filename="../QScintilla/MiniEditor.py" line="1803" /> <location filename="../ViewManager/ViewManager.py" line="3461" /> <location filename="../ViewManager/ViewManager.py" line="3458" /> <source>Convert selection to lower case</source> <translation>Conversion de la sélection en minuscules</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1808" /> + <location filename="../QScintilla/MiniEditor.py" line="1809" /> <location filename="../ViewManager/ViewManager.py" line="3464" /> <source>Alt+Shift+U</source> <translation>Alt+Shift+U</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1821" /> - <location filename="../QScintilla/MiniEditor.py" line="1818" /> + <location filename="../QScintilla/MiniEditor.py" line="1822" /> + <location filename="../QScintilla/MiniEditor.py" line="1819" /> <location filename="../ViewManager/ViewManager.py" line="3477" /> <location filename="../ViewManager/ViewManager.py" line="3474" /> <source>Convert selection to upper case</source> <translation>Conversion de la sélection en majuscules</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1824" /> + <location filename="../QScintilla/MiniEditor.py" line="1825" /> <location filename="../ViewManager/ViewManager.py" line="3480" /> <source>Ctrl+Shift+U</source> <translation>Ctrl+Shift+U</translation> @@ -97146,7 +97151,7 @@ <translation>Édition</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2563" /> + <location filename="../QScintilla/MiniEditor.py" line="2564" /> <location filename="../QScintilla/ShellWindow.py" line="923" /> <location filename="../ViewManager/ViewManager.py" line="4167" /> <location filename="../ViewManager/ViewManager.py" line="4165" /> @@ -97155,14 +97160,14 @@ <translation>Rechercher</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2565" /> + <location filename="../QScintilla/MiniEditor.py" line="2566" /> <location filename="../QScintilla/ShellWindow.py" line="925" /> <location filename="../ViewManager/ViewManager.py" line="3600" /> <source>&Search...</source> <translation>Re&chercher...</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2567" /> + <location filename="../QScintilla/MiniEditor.py" line="2568" /> <location filename="../QScintilla/ShellWindow.py" line="927" /> <location filename="../ViewManager/ViewManager.py" line="3602" /> <source>Ctrl+F</source> @@ -97170,34 +97175,34 @@ <translation>Ctrl+F</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2574" /> + <location filename="../QScintilla/MiniEditor.py" line="2575" /> <location filename="../QScintilla/ShellWindow.py" line="934" /> <location filename="../ViewManager/ViewManager.py" line="3609" /> <source>Search for a text</source> <translation>Recherche de texte</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2577" /> + <location filename="../QScintilla/MiniEditor.py" line="2578" /> <location filename="../ViewManager/ViewManager.py" line="3612" /> <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>Rechercher</b><p>Recherche du texte dans l'éditeur courant. Un fenêtre est affichée pour saisir le texte recherché et le options de recherche.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2589" /> + <location filename="../QScintilla/MiniEditor.py" line="2590" /> <location filename="../QScintilla/ShellWindow.py" line="949" /> <location filename="../ViewManager/ViewManager.py" line="3624" /> <source>Search next</source> <translation>Chercher suivant</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2591" /> + <location filename="../QScintilla/MiniEditor.py" line="2592" /> <location filename="../QScintilla/ShellWindow.py" line="951" /> <location filename="../ViewManager/ViewManager.py" line="3626" /> <source>Search &next</source> <translation>Chercher &suivant</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2593" /> + <location filename="../QScintilla/MiniEditor.py" line="2594" /> <location filename="../QScintilla/ShellWindow.py" line="953" /> <location filename="../ViewManager/ViewManager.py" line="3628" /> <source>F3</source> @@ -97205,34 +97210,34 @@ <translation>F3</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2600" /> + <location filename="../QScintilla/MiniEditor.py" line="2601" /> <location filename="../QScintilla/ShellWindow.py" line="960" /> <location filename="../ViewManager/ViewManager.py" line="3635" /> <source>Search next occurrence of text</source> <translation>Recherche de l'occurence de texte suivante</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2603" /> + <location filename="../QScintilla/MiniEditor.py" line="2604" /> <location filename="../ViewManager/ViewManager.py" line="3638" /> <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>Chercher suivant</b><p>Recherche en avant le texte saisi dans l'éditeur courant. Les options de recherche précédentes sont réutilisées.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2615" /> + <location filename="../QScintilla/MiniEditor.py" line="2616" /> <location filename="../QScintilla/ShellWindow.py" line="977" /> <location filename="../ViewManager/ViewManager.py" line="3650" /> <source>Search previous</source> <translation>Chercher précédent</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2617" /> + <location filename="../QScintilla/MiniEditor.py" line="2618" /> <location filename="../QScintilla/ShellWindow.py" line="979" /> <location filename="../ViewManager/ViewManager.py" line="3652" /> <source>Search &previous</source> <translation>Chercher &précédent</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2619" /> + <location filename="../QScintilla/MiniEditor.py" line="2620" /> <location filename="../QScintilla/ShellWindow.py" line="981" /> <location filename="../ViewManager/ViewManager.py" line="3654" /> <source>Shift+F3</source> @@ -97240,41 +97245,41 @@ <translation>Shift+F3</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2628" /> + <location filename="../QScintilla/MiniEditor.py" line="2629" /> <location filename="../QScintilla/ShellWindow.py" line="990" /> <location filename="../ViewManager/ViewManager.py" line="3663" /> <source>Search previous occurrence of text</source> <translation>Recherche de l'occurence de texte précédente</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2633" /> + <location filename="../QScintilla/MiniEditor.py" line="2634" /> <location filename="../ViewManager/ViewManager.py" line="3668" /> <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>Chercher précédent</b><p>Recherche en arrière le texte saisi dans l'éditeur courant. Les options de recherche précédentes sont réutilisées.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2647" /> - <location filename="../QScintilla/MiniEditor.py" line="2645" /> + <location filename="../QScintilla/MiniEditor.py" line="2648" /> + <location filename="../QScintilla/MiniEditor.py" line="2646" /> <location filename="../ViewManager/ViewManager.py" line="3682" /> <location filename="../ViewManager/ViewManager.py" line="3680" /> <source>Clear search markers</source> <translation>Effacer les marqueurs de recherche</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2649" /> + <location filename="../QScintilla/MiniEditor.py" line="2650" /> <location filename="../ViewManager/ViewManager.py" line="3684" /> <source>Ctrl+3</source> <comment>Search|Clear search markers</comment> <translation>Ctrl+3</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2658" /> + <location filename="../QScintilla/MiniEditor.py" line="2659" /> <location filename="../ViewManager/ViewManager.py" line="3693" /> <source>Clear all displayed search markers</source> <translation>Efface tous les marqueurs de recherche affichés</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2663" /> + <location filename="../QScintilla/MiniEditor.py" line="2664" /> <location filename="../ViewManager/ViewManager.py" line="3698" /> <source><b>Clear search markers</b><p>Clear all displayed search markers.</p></source> <translation><b>Effacer tous les marqueurs de recherche</b><p>Efface tous les marqueurs de recherche affichés.</p></translation> @@ -97324,113 +97329,113 @@ <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2673" /> + <location filename="../QScintilla/MiniEditor.py" line="2674" /> <location filename="../ViewManager/ViewManager.py" line="3766" /> <source>Replace</source> <translation>Remplacer</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2674" /> + <location filename="../QScintilla/MiniEditor.py" line="2675" /> <location filename="../ViewManager/ViewManager.py" line="3767" /> <source>&Replace...</source> <translation>&Remplacer...</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2676" /> + <location filename="../QScintilla/MiniEditor.py" line="2677" /> <location filename="../ViewManager/ViewManager.py" line="3769" /> <source>Ctrl+R</source> <comment>Search|Replace</comment> <translation>Ctrl+R</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2683" /> + <location filename="../QScintilla/MiniEditor.py" line="2684" /> <location filename="../ViewManager/ViewManager.py" line="3776" /> <source>Replace some text</source> <translation>Remplacer un texte</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2686" /> + <location filename="../QScintilla/MiniEditor.py" line="2687" /> <location filename="../ViewManager/ViewManager.py" line="3779" /> <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>Remplacer</b><p>Recherche du texte dans l'éditeur courant et le remplace par un autre. Un fenêtre est affichée pour saisir le texte initial, le texte de remplacement et les options de remplacement.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2700" /> - <location filename="../QScintilla/MiniEditor.py" line="2698" /> + <location filename="../QScintilla/MiniEditor.py" line="2701" /> + <location filename="../QScintilla/MiniEditor.py" line="2699" /> <location filename="../ViewManager/ViewManager.py" line="3793" /> <location filename="../ViewManager/ViewManager.py" line="3791" /> <source>Replace and Search</source> <translation>Remplacer et chercher</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2702" /> + <location filename="../QScintilla/MiniEditor.py" line="2703" /> <location filename="../ViewManager/ViewManager.py" line="3795" /> <source>Meta+R</source> <comment>Search|Replace and Search</comment> <translation>Meta+R</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2711" /> + <location filename="../QScintilla/MiniEditor.py" line="2712" /> <location filename="../ViewManager/ViewManager.py" line="3804" /> <source>Replace the found text and search the next occurrence</source> <translation>Remplacer le texte trouvé et chercher l'occurrence suivante</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2716" /> + <location filename="../QScintilla/MiniEditor.py" line="2717" /> <location filename="../ViewManager/ViewManager.py" line="3809" /> <source><b>Replace and Search</b><p>Replace the found occurrence of text in the current editor and search for the next one. The previously entered search text and options are reused.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2732" /> - <location filename="../QScintilla/MiniEditor.py" line="2730" /> + <location filename="../QScintilla/MiniEditor.py" line="2733" /> + <location filename="../QScintilla/MiniEditor.py" line="2731" /> <location filename="../ViewManager/ViewManager.py" line="3825" /> <location filename="../ViewManager/ViewManager.py" line="3823" /> <source>Replace Occurrence</source> <translation>Remplacer occurrence</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2734" /> + <location filename="../QScintilla/MiniEditor.py" line="2735" /> <location filename="../ViewManager/ViewManager.py" line="3827" /> <source>Ctrl+Meta+R</source> <comment>Search|Replace Occurrence</comment> <translation>Ctrl+Meta+R</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2743" /> + <location filename="../QScintilla/MiniEditor.py" line="2744" /> <location filename="../ViewManager/ViewManager.py" line="3836" /> <source>Replace the found text</source> <translation>Remplacer le texte trouvé</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2746" /> + <location filename="../QScintilla/MiniEditor.py" line="2747" /> <location filename="../ViewManager/ViewManager.py" line="3839" /> <source><b>Replace Occurrence</b><p>Replace the found occurrence of the search text in the current editor.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2759" /> - <location filename="../QScintilla/MiniEditor.py" line="2757" /> + <location filename="../QScintilla/MiniEditor.py" line="2760" /> + <location filename="../QScintilla/MiniEditor.py" line="2758" /> <location filename="../ViewManager/ViewManager.py" line="3852" /> <location filename="../ViewManager/ViewManager.py" line="3850" /> <source>Replace All</source> <translation>Tout remplacer</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2761" /> + <location filename="../QScintilla/MiniEditor.py" line="2762" /> <location filename="../ViewManager/ViewManager.py" line="3854" /> <source>Shift+Meta+R</source> <comment>Search|Replace All</comment> <translation>Shift+Meta+R</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2770" /> + <location filename="../QScintilla/MiniEditor.py" line="2771" /> <location filename="../ViewManager/ViewManager.py" line="3863" /> <source>Replace search text occurrences</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2773" /> + <location filename="../QScintilla/MiniEditor.py" line="2774" /> <location filename="../ViewManager/ViewManager.py" line="3866" /> <source><b>Replace All</b><p>Replace all occurrences of the search text in the current editor.</p></source> <translation type="unfinished" /> @@ -97655,21 +97660,21 @@ <translation>Re&chercher</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2788" /> + <location filename="../QScintilla/MiniEditor.py" line="2789" /> <location filename="../QScintilla/ShellWindow.py" line="1016" /> <location filename="../ViewManager/ViewManager.py" line="4208" /> <source>Zoom in</source> <translation>Zoom avant</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2790" /> + <location filename="../QScintilla/MiniEditor.py" line="2791" /> <location filename="../QScintilla/ShellWindow.py" line="1018" /> <location filename="../ViewManager/ViewManager.py" line="4210" /> <source>Zoom &in</source> <translation>Zoom a&vant</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2792" /> + <location filename="../QScintilla/MiniEditor.py" line="2793" /> <location filename="../QScintilla/ShellWindow.py" line="1020" /> <location filename="../ViewManager/ViewManager.py" line="4212" /> <source>Ctrl++</source> @@ -97677,7 +97682,7 @@ <translation>Ctrl++</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2795" /> + <location filename="../QScintilla/MiniEditor.py" line="2796" /> <location filename="../QScintilla/ShellWindow.py" line="1023" /> <location filename="../ViewManager/ViewManager.py" line="4215" /> <source>Zoom In</source> @@ -97685,35 +97690,35 @@ <translation>Zoom avant</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2801" /> + <location filename="../QScintilla/MiniEditor.py" line="2802" /> <location filename="../QScintilla/ShellWindow.py" line="1029" /> <location filename="../ViewManager/ViewManager.py" line="4221" /> <source>Zoom in on the text</source> <translation>Zoom sur le texte</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2804" /> + <location filename="../QScintilla/MiniEditor.py" line="2805" /> <location filename="../QScintilla/ShellWindow.py" line="1032" /> <location filename="../ViewManager/ViewManager.py" line="4224" /> <source><b>Zoom in</b><p>Zoom in on the text. This makes the text bigger.</p></source> <translation><b>Zoom avant</b><p>Zoom sur le texte. Affiche le texte en plus gros.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2814" /> + <location filename="../QScintilla/MiniEditor.py" line="2815" /> <location filename="../QScintilla/ShellWindow.py" line="1042" /> <location filename="../ViewManager/ViewManager.py" line="4234" /> <source>Zoom out</source> <translation>Zoom arrière</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2816" /> + <location filename="../QScintilla/MiniEditor.py" line="2817" /> <location filename="../QScintilla/ShellWindow.py" line="1044" /> <location filename="../ViewManager/ViewManager.py" line="4236" /> <source>Zoom &out</source> <translation>Zoom a&rrière</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2818" /> + <location filename="../QScintilla/MiniEditor.py" line="2819" /> <location filename="../QScintilla/ShellWindow.py" line="1046" /> <location filename="../ViewManager/ViewManager.py" line="4238" /> <source>Ctrl+-</source> @@ -97721,7 +97726,7 @@ <translation>Ctrl+-</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2821" /> + <location filename="../QScintilla/MiniEditor.py" line="2822" /> <location filename="../QScintilla/ShellWindow.py" line="1049" /> <location filename="../ViewManager/ViewManager.py" line="4241" /> <source>Zoom Out</source> @@ -97729,35 +97734,35 @@ <translation>Zoom arrière</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2827" /> + <location filename="../QScintilla/MiniEditor.py" line="2828" /> <location filename="../QScintilla/ShellWindow.py" line="1055" /> <location filename="../ViewManager/ViewManager.py" line="4247" /> <source>Zoom out on the text</source> <translation>Zoom arrière du texte</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2830" /> + <location filename="../QScintilla/MiniEditor.py" line="2831" /> <location filename="../QScintilla/ShellWindow.py" line="1058" /> <location filename="../ViewManager/ViewManager.py" line="4250" /> <source><b>Zoom out</b><p>Zoom out on the text. This makes the text smaller.</p></source> <translation><b>Zoom arrière</b><p>Zoom arrière du texte. Affiche le texte en plus petit.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2840" /> + <location filename="../QScintilla/MiniEditor.py" line="2841" /> <location filename="../QScintilla/ShellWindow.py" line="1068" /> <location filename="../ViewManager/ViewManager.py" line="4260" /> <source>Zoom reset</source> <translation>Annulation du zoom</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2842" /> + <location filename="../QScintilla/MiniEditor.py" line="2843" /> <location filename="../QScintilla/ShellWindow.py" line="1070" /> <location filename="../ViewManager/ViewManager.py" line="4262" /> <source>Zoom &reset</source> <translation>Annulation du &zoom</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2844" /> + <location filename="../QScintilla/MiniEditor.py" line="2845" /> <location filename="../QScintilla/ShellWindow.py" line="1072" /> <location filename="../ViewManager/ViewManager.py" line="4264" /> <source>Ctrl+0</source> @@ -97765,42 +97770,42 @@ <translation>Ctrl+0</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2851" /> + <location filename="../QScintilla/MiniEditor.py" line="2852" /> <location filename="../QScintilla/ShellWindow.py" line="1079" /> <location filename="../ViewManager/ViewManager.py" line="4271" /> <source>Reset the zoom of the text</source> <translation>Annulation du zoom du texte</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2854" /> + <location filename="../QScintilla/MiniEditor.py" line="2855" /> <location filename="../QScintilla/ShellWindow.py" line="1082" /> <location filename="../ViewManager/ViewManager.py" line="4274" /> <source><b>Zoom reset</b><p>Reset the zoom of the text. This sets the zoom factor to 100%.</p></source> <translation><b>Annulation du zoom</b><p>Annulation du zoom du texte. Ceci met le facteur de zoom à 100%. </p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2865" /> + <location filename="../QScintilla/MiniEditor.py" line="2866" /> <location filename="../QScintilla/ShellWindow.py" line="1093" /> <location filename="../ViewManager/ViewManager.py" line="4285" /> <source>Zoom</source> <translation>Zoom</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2867" /> + <location filename="../QScintilla/MiniEditor.py" line="2868" /> <location filename="../QScintilla/ShellWindow.py" line="1095" /> <location filename="../ViewManager/ViewManager.py" line="4287" /> <source>&Zoom</source> <translation>&Zoom</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2874" /> + <location filename="../QScintilla/MiniEditor.py" line="2875" /> <location filename="../QScintilla/ShellWindow.py" line="1102" /> <location filename="../ViewManager/ViewManager.py" line="4294" /> <source>Zoom the text</source> <translation>Zoom du texte</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2877" /> + <location filename="../QScintilla/MiniEditor.py" line="2878" /> <location filename="../QScintilla/ShellWindow.py" line="1105" /> <location filename="../ViewManager/ViewManager.py" line="4297" /> <source><b>Zoom</b><p>Zoom the text. This opens a dialog where the desired size can be entered.</p></source> @@ -98565,65 +98570,65 @@ <translation><p>Le fichier <b>{0}</b> a des modifications non enregistrées. </p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6077" /> + <location filename="../ViewManager/ViewManager.py" line="6078" /> <source>Line: {0:5}</source> <translation>Ligne: {0:5}</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6083" /> + <location filename="../ViewManager/ViewManager.py" line="6084" /> <source>Pos: {0:5}</source> <translation>Position: {0:5}</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6103" /> + <location filename="../ViewManager/ViewManager.py" line="6104" /> <source>Language: {0}</source> <translation>Langage : {0}</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6112" /> + <location filename="../ViewManager/ViewManager.py" line="6113" /> <source>EOL Mode: {0}</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6640" /> - <location filename="../ViewManager/ViewManager.py" line="6597" /> + <location filename="../ViewManager/ViewManager.py" line="6641" /> + <location filename="../ViewManager/ViewManager.py" line="6598" /> <source>&Clear</source> <translation>&Effacer</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6634" /> + <location filename="../ViewManager/ViewManager.py" line="6635" /> <source>&Add</source> <translation>&Ajouter</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6637" /> + <location filename="../ViewManager/ViewManager.py" line="6638" /> <source>&Edit...</source> <translation>&Editer...</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="7707" /> - <location filename="../ViewManager/ViewManager.py" line="7693" /> - <location filename="../ViewManager/ViewManager.py" line="7661" /> + <location filename="../ViewManager/ViewManager.py" line="7708" /> + <location filename="../ViewManager/ViewManager.py" line="7694" /> + <location filename="../ViewManager/ViewManager.py" line="7662" /> <source>Edit Spelling Dictionary</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="7664" /> + <location filename="../ViewManager/ViewManager.py" line="7665" /> <source><p>The spelling dictionary file <b>{0}</b> could not be read.</p><p>Reason: {1}</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="7680" /> + <location filename="../ViewManager/ViewManager.py" line="7681" /> <source>Editing {0}</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="7696" /> + <location filename="../ViewManager/ViewManager.py" line="7697" /> <source><p>The spelling dictionary file <b>{0}</b> could not be written.</p><p>Reason: {1}</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="7710" /> + <location filename="../ViewManager/ViewManager.py" line="7711" /> <source>The spelling dictionary was saved successfully.</source> <translation type="unfinished" /> </message> @@ -98633,28 +98638,28 @@ <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6819" /> + <location filename="../ViewManager/ViewManager.py" line="6820" /> <source>Clear Editor</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6820" /> + <location filename="../ViewManager/ViewManager.py" line="6821" /> <source>Do you really want to delete all text of the current editor?</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="8240" /> - <location filename="../ViewManager/ViewManager.py" line="8223" /> - <source>File System Watcher Error</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="8224" /> - <source><p>The operating system resources for file system watches are exhausted. This limit should be increased. On a Linux system you should <ul><li>sudo nano /etc/sysctl.conf</li><li>add to the bottom "fs.inotify.max_user_instances = 1024"</li><li>save and close the editor</li><li>sudo sysctl -p</li></ul></p><p>Error Message: {0}</p></source> - <translation type="unfinished" /> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="8241" /> + <location filename="../ViewManager/ViewManager.py" line="8224" /> + <source>File System Watcher Error</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="8225" /> + <source><p>The operating system resources for file system watches are exhausted. This limit should be increased. On a Linux system you should <ul><li>sudo nano /etc/sysctl.conf</li><li>add to the bottom "fs.inotify.max_user_instances = 1024"</li><li>save and close the editor</li><li>sudo sysctl -p</li></ul></p><p>Error Message: {0}</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="8242" /> <source>The file system watcher reported an error with code <b>{0}</b>.</p><p>Error Message: {1}</p></source> <translation type="unfinished" /> </message> @@ -106087,301 +106092,306 @@ <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="95" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="96" /> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="94" /> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="93" /> <source>whitespace before '{0}'</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="96" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="95" /> + <source>whitespace after decorator '@'</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="97" /> <source>multiple spaces before operator</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="99" /> - <source>multiple spaces after operator</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="100" /> - <source>tab before operator</source> + <source>multiple spaces after operator</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="101" /> - <source>tab after operator</source> + <source>tab before operator</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="102" /> + <source>tab after operator</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="103" /> <source>missing whitespace around operator</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="105" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="106" /> <source>missing whitespace around arithmetic operator</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="108" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="109" /> <source>missing whitespace around bitwise or shift operator</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="111" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="112" /> <source>missing whitespace around modulo operator</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="114" /> - <source>missing whitespace after '{0}'</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="115" /> - <source>multiple spaces after '{0}'</source> + <source>missing whitespace after '{0}'</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="116" /> - <source>tab after '{0}'</source> - <translation>tabulation après '{0}'</translation> + <source>multiple spaces after '{0}'</source> + <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="117" /> + <source>tab after '{0}'</source> + <translation>tabulation après '{0}'</translation> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="118" /> <source>unexpected spaces around keyword / parameter equals</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="120" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="121" /> <source>missing whitespace around parameter equals</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="123" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="124" /> <source>at least two spaces before inline comment</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="126" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="127" /> <source>inline comment should start with '# '</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="129" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="130" /> <source>block comment should start with '# '</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="132" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="133" /> <source>too many leading '#' for block comment</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="135" /> - <source>multiple spaces after keyword</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="136" /> - <source>multiple spaces before keyword</source> + <source>multiple spaces after keyword</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="137" /> - <source>tab after keyword</source> + <source>multiple spaces before keyword</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="138" /> - <source>tab before keyword</source> + <source>tab after keyword</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="139" /> + <source>tab before keyword</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="140" /> <source>missing whitespace after keyword</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="145" /> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="142" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="146" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="143" /> <source>expected {0} blank lines, found {1}</source> <translation>{0} lignes vides attendues, {1} trouvées</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="148" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="149" /> <source>too many blank lines ({0}), expected {1}</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="151" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="152" /> <source>blank lines found after function decorator</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="154" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="155" /> <source>expected {0} blank lines after class or function definition, found {1}</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="158" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="159" /> <source>expected {0} blank lines before a nested definition, found {1}</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="161" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="162" /> <source>too many blank lines ({0}) before a nested definition, expected {1}</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="165" /> - <source>too many blank lines ({0})</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="166" /> - <source>multiple imports on one line</source> + <source>too many blank lines ({0})</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="167" /> + <source>multiple imports on one line</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="168" /> <source>module level import not at top of file</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="170" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="171" /> <source>line too long ({0} > {1} characters)</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="173" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="174" /> <source>the backslash is redundant between brackets</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="176" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="177" /> <source>multiple statements on one line (colon)</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="179" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="180" /> <source>multiple statements on one line (semicolon)</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="182" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="183" /> <source>statement ends with a semicolon</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="185" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="186" /> <source>multiple statements on one line (def)</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="191" /> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="188" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="192" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="189" /> <source>comparison to {0} should be {1}</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="194" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="195" /> <source>test for membership should be 'not in'</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="197" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="198" /> <source>test for object identity should be 'is not'</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="200" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="201" /> <source>do not compare types, for exact checks use 'is' / 'is not', for instance checks use 'isinstance()'</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="205" /> - <source>do not use bare except</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="206" /> + <source>do not use bare except</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="207" /> <source>do not assign a lambda expression, use a def</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="209" /> - <source>ambiguous variable name '{0}'</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="210" /> + <source>ambiguous variable name '{0}'</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="211" /> <source>ambiguous class definition '{0}'</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="213" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="214" /> <source>ambiguous function definition '{0}'</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="216" /> - <source>{0}: {1}</source> - <translation>{0}: {1}</translation> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="217" /> + <source>{0}: {1}</source> + <translation>{0}: {1}</translation> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="218" /> <source>{0}</source> <translation>{0}</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="225" /> - <source>indentation contains tabs</source> - <translation>l'indentation contient des tabulations</translation> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="226" /> - <source>trailing whitespace</source> - <translation type="unfinished" /> + <source>indentation contains tabs</source> + <translation>l'indentation contient des tabulations</translation> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="227" /> - <source>no newline at end of file</source> + <source>trailing whitespace</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="228" /> - <source>blank line contains whitespace</source> + <source>no newline at end of file</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="229" /> - <source>blank line at end of file</source> + <source>blank line contains whitespace</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="230" /> + <source>blank line at end of file</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="231" /> <source>line break before binary operator</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="233" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="234" /> <source>line break after binary operator</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="236" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="237" /> <source>doc line too long ({0} > {1} characters)</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="239" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="240" /> <source>invalid escape sequence '\{0}'</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="242" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="243" /> <source>'async' and 'await' are reserved keywords starting with Python 3.7</source> <translation type="unfinished" /> </message>
--- a/src/eric7/i18n/eric7_it.ts Mon Jul 29 14:43:59 2024 +0200 +++ b/src/eric7/i18n/eric7_it.ts Sat Aug 31 10:54:21 2024 +0200 @@ -5119,7 +5119,7 @@ <context> <name>CodeStyleChecker</name> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="515" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="516" /> <source>No message defined for code '{0}'.</source> <translation type="unfinished" /> </message> @@ -6261,146 +6261,146 @@ <context> <name>CodeStyleFixer</name> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="253" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="254" /> <source>Triple single quotes converted to triple double quotes.</source> <translation>Triple virgolette singole convertite in triple virgolette doppie.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="256" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="257" /> <source>Introductory quotes corrected to be {0}"""</source> <translation>Virgolette introduttive corrette in {0}"""</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="259" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="260" /> <source>Single line docstring put on one line.</source> <translation>Singole righe documentazione raggruppate su una sola.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="262" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="263" /> <source>Period added to summary line.</source> <translation>Aggiunto punto alla riga sommario.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="289" /> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="265" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="290" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="266" /> <source>Blank line before function/method docstring removed.</source> <translation>Riga vuota prima della stringa di documentazione funzione/metodo rimossa.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="268" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="269" /> <source>Blank line inserted before class docstring.</source> <translation>Riga vuota inserita prima della stringa di documentazione della classe.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="271" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="272" /> <source>Blank line inserted after class docstring.</source> <translation>Linea vuota inserita dopo la stringa di documentazione della classe.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="274" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="275" /> <source>Blank line inserted after docstring summary.</source> <translation>Linea vuota inserita dopo la stringa di documentazione del sommario.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="277" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="278" /> <source>Blank line inserted after last paragraph of docstring.</source> <translation>Linea vuota inserita dopo l'ultimo paragrafo della stringa di documentazione.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="280" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="281" /> <source>Leading quotes put on separate line.</source> <translation>Le virgolette di testa messe su una riga separata.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="283" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="284" /> <source>Trailing quotes put on separate line.</source> <translation>Le virgolette di coda messe su una riga separata.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="286" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="287" /> <source>Blank line before class docstring removed.</source> <translation>Rimossa riga vuota prima della stringa di documentazione.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="292" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="293" /> <source>Blank line after class docstring removed.</source> <translation>Rimossa riga vuota dopo della stringa di documentazione.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="295" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="296" /> <source>Blank line after function/method docstring removed.</source> <translation>Riga vuota dopo la stringa di documentazione funzione/metodo rimossa.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="298" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="299" /> <source>Blank line after last paragraph removed.</source> <translation>Rimossa riga vuota dopo l'ultimo paragrafo.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="301" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="302" /> <source>Tab converted to 4 spaces.</source> <translation>Convertita Tabulazione in 4 spazi.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="304" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="305" /> <source>Indentation adjusted to be a multiple of four.</source> <translation>Identazione portata ad un multiplo di quattro.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="307" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="308" /> <source>Indentation of continuation line corrected.</source> <translation>Identazione di continuazione riga corretta.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="310" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="311" /> <source>Indentation of closing bracket corrected.</source> <translation>Identazione di parentesi chiusa corretta.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="313" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="314" /> <source>Missing indentation of continuation line corrected.</source> <translation>Corretta la mancanza di indentazione della continuazione riga.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="316" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="317" /> <source>Closing bracket aligned to opening bracket.</source> <translation>Parentesi chiusa allineata con quella d'apertura.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="319" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="320" /> <source>Indentation level changed.</source> <translation>Livello di indentazione modificato.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="322" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="323" /> <source>Indentation level of hanging indentation changed.</source> <translation>Modificato il livello di indentazione dell'indentazione pendente.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="325" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="326" /> <source>Visual indentation corrected.</source> <translation /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="340" /> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="334" /> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="328" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="341" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="335" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="329" /> <source>Extraneous whitespace removed.</source> <translation>Spazio non pertinente eliminato.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="337" /> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="331" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="338" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="332" /> <source>Missing whitespace added.</source> <translation>Spazi mancanti aggiunti.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="343" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="344" /> <source>Whitespace around comment sign corrected.</source> <translation>Corretto spazio vicino al segno di commento.</translation> </message> <message numerus="yes"> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="346" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="347" /> <source>%n blank line(s) inserted.</source> <translation type="unfinished"> <numerusform>%n riga vuota inserita.</numerusform> @@ -6408,7 +6408,7 @@ </translation> </message> <message numerus="yes"> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="349" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="350" /> <source>%n superfluous lines removed</source> <translation type="unfinished"> <numerusform>%n riga superflua eliminata</numerusform> @@ -6416,73 +6416,73 @@ </translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="352" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="353" /> <source>Superfluous blank lines removed.</source> <translation>Righe vuote superflue eliminate.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="355" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="356" /> <source>Superfluous blank lines after function decorator removed.</source> <translation>Righe vuote superflue eliminate dopo a dichiarazione della funzione.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="358" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="359" /> <source>Imports were put on separate lines.</source> <translation>Import messi su righe separate.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="361" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="362" /> <source>Long lines have been shortened.</source> <translation>Accorciate righe lughe.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="364" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="365" /> <source>Redundant backslash in brackets removed.</source> <translation>Rimossi barre rovesciate ridondanti.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="370" /> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="367" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="371" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="368" /> <source>Compound statement corrected.</source> <translation>Corretta istruzione composta.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="373" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="374" /> <source>Comparison to None/True/False corrected.</source> <translation>Corretta comparazione con None/True/False.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="376" /> - <source>'{0}' argument added.</source> - <translation>'{0}' argumento aggiunto.</translation> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="377" /> - <source>'{0}' argument removed.</source> - <translation>'{0}' argumento rimosso.</translation> + <source>'{0}' argument added.</source> + <translation>'{0}' argumento aggiunto.</translation> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="378" /> + <source>'{0}' argument removed.</source> + <translation>'{0}' argumento rimosso.</translation> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="379" /> <source>Whitespace stripped from end of line.</source> <translation>Eliminati gli spazi alla fine della linea.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="381" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="382" /> <source>newline added to end of file.</source> <translation>Aggiunta una nuova riga alla fine del file.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="384" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="385" /> <source>Superfluous trailing blank lines removed from end of file.</source> <translation>Rghe vuote superflue eliminate dalla fine del file.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="387" /> - <source>'<>' replaced by '!='.</source> - <translation>'<>' sostituito da '!='.</translation> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="388" /> + <source>'<>' replaced by '!='.</source> + <translation>'<>' sostituito da '!='.</translation> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="389" /> <source>Could not save the file! Skipping it. Reason: {0}</source> <translation type="unfinished" /> </message> @@ -20712,45 +20712,45 @@ <context> <name>EricToolBarDialog</name> <message> - <location filename="../EricWidgets/EricToolBarDialog.py" line="89" /> + <location filename="../EricWidgets/EricToolBarDialog.py" line="90" /> <source>--Separator--</source> <translation type="unfinished">--Separatore--</translation> </message> <message> - <location filename="../EricWidgets/EricToolBarDialog.py" line="169" /> - <location filename="../EricWidgets/EricToolBarDialog.py" line="160" /> + <location filename="../EricWidgets/EricToolBarDialog.py" line="164" /> + <location filename="../EricWidgets/EricToolBarDialog.py" line="155" /> <source>New Toolbar</source> <translation type="unfinished">Nuova toolbar</translation> </message> <message> - <location filename="../EricWidgets/EricToolBarDialog.py" line="161" /> + <location filename="../EricWidgets/EricToolBarDialog.py" line="156" /> <source>Toolbar Name:</source> <translation type="unfinished">Nome Toolbar:</translation> </message> <message> - <location filename="../EricWidgets/EricToolBarDialog.py" line="238" /> - <location filename="../EricWidgets/EricToolBarDialog.py" line="170" /> + <location filename="../EricWidgets/EricToolBarDialog.py" line="233" /> + <location filename="../EricWidgets/EricToolBarDialog.py" line="165" /> <source>A toolbar with the name <b>{0}</b> already exists.</source> <translation type="unfinished">Una toolbar con nome <b>{0}</b> esiste già.</translation> </message> <message> - <location filename="../EricWidgets/EricToolBarDialog.py" line="197" /> + <location filename="../EricWidgets/EricToolBarDialog.py" line="192" /> <source>Remove Toolbar</source> <translation type="unfinished">Rimuovi toolbar</translation> </message> <message> - <location filename="../EricWidgets/EricToolBarDialog.py" line="198" /> + <location filename="../EricWidgets/EricToolBarDialog.py" line="193" /> <source>Should the toolbar <b>{0}</b> really be removed?</source> <translation type="unfinished">La toolbar <b>{0}</b> deve essere veramente rimossa ?</translation> </message> <message> - <location filename="../EricWidgets/EricToolBarDialog.py" line="237" /> - <location filename="../EricWidgets/EricToolBarDialog.py" line="225" /> + <location filename="../EricWidgets/EricToolBarDialog.py" line="232" /> + <location filename="../EricWidgets/EricToolBarDialog.py" line="220" /> <source>Rename Toolbar</source> <translation type="unfinished">Rinomina la toolbar</translation> </message> <message> - <location filename="../EricWidgets/EricToolBarDialog.py" line="226" /> + <location filename="../EricWidgets/EricToolBarDialog.py" line="221" /> <source>New Toolbar Name:</source> <translation type="unfinished">Nuovo nome toolbar:</translation> </message> @@ -54482,723 +54482,723 @@ <context> <name>MiniEditor</name> <message> - <location filename="../QScintilla/MiniEditor.py" line="492" /> + <location filename="../QScintilla/MiniEditor.py" line="493" /> <source>About eric Mini Editor</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="493" /> + <location filename="../QScintilla/MiniEditor.py" line="494" /> <source>The eric 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 type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="562" /> + <location filename="../QScintilla/MiniEditor.py" line="563" /> <source>Line: {0:5}</source> <translation>Linea: {0:5}</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="566" /> + <location filename="../QScintilla/MiniEditor.py" line="567" /> <source>Pos: {0:5}</source> <translation>Pos: {0:5}</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="580" /> + <location filename="../QScintilla/MiniEditor.py" line="581" /> <source>Language: {0}</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="644" /> + <location filename="../QScintilla/MiniEditor.py" line="645" /> <source>New</source> <translation>Nuovo</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="646" /> - <source>&New</source> - <translation>&Nuova</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="647" /> + <source>&New</source> + <translation>&Nuova</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="648" /> <source>Ctrl+N</source> <comment>File|New</comment> <translation>Ctrl+N</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="652" /> + <location filename="../QScintilla/MiniEditor.py" line="653" /> <source>Open an empty editor window</source> <translation>Apri una finestra vuota</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="654" /> + <location filename="../QScintilla/MiniEditor.py" line="655" /> <source><b>New</b><p>An empty editor window will be created.</p></source> <translation><b>Nuova</b><p>Verrà creata una nuova finestra vuota.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="660" /> + <location filename="../QScintilla/MiniEditor.py" line="661" /> <source>Open</source> <translation>Apri</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="662" /> - <source>&Open...</source> - <translation>&Apri...</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="663" /> + <source>&Open...</source> + <translation>&Apri...</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="664" /> <source>Ctrl+O</source> <comment>File|Open</comment> <translation>Ctrl+O</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="668" /> + <location filename="../QScintilla/MiniEditor.py" line="669" /> <source>Open a file</source> <translation>Apri un file</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="670" /> + <location filename="../QScintilla/MiniEditor.py" line="671" /> <source><b>Open a file</b><p>You will be asked for the name of a file to be opened.</p></source> <translation><b>Apri un file</b><p>Ti verrà chiesto il nome del file da aprire.</b></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="679" /> + <location filename="../QScintilla/MiniEditor.py" line="680" /> <source>Save</source> <translation>Salva</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="681" /> - <source>&Save</source> - <translation>&Salva</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="682" /> + <source>&Save</source> + <translation>&Salva</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="683" /> <source>Ctrl+S</source> <comment>File|Save</comment> <translation>Ctrl+S</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="687" /> + <location filename="../QScintilla/MiniEditor.py" line="688" /> <source>Save the current file</source> <translation>Salva il file corrente</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="689" /> + <location filename="../QScintilla/MiniEditor.py" line="690" /> <source><b>Save File</b><p>Save the contents of current editor window.</p></source> <translation><b>Salva fle</b><p>Salva il contenuto della finestra attuale.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="698" /> + <location filename="../QScintilla/MiniEditor.py" line="699" /> <source>Save as</source> <translation>Salva come</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="700" /> - <source>Save &as...</source> - <translation>S&alva come...</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="701" /> + <source>Save &as...</source> + <translation>S&alva come...</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="702" /> <source>Shift+Ctrl+S</source> <comment>File|Save As</comment> <translation>Ctrl+Shift+S</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="706" /> + <location filename="../QScintilla/MiniEditor.py" line="707" /> <source>Save the current file to a new one</source> <translation>Salva il file attuale come uno nuovo</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="708" /> + <location filename="../QScintilla/MiniEditor.py" line="709" /> <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>Salva file come</b><p>Salva il contenuto della finestra attuale come un file nuovo. Il nome può essere inserito nel dialogo.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="718" /> + <location filename="../QScintilla/MiniEditor.py" line="719" /> <source>Save Copy</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="720" /> + <location filename="../QScintilla/MiniEditor.py" line="721" /> <source>Save &Copy...</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="726" /> + <location filename="../QScintilla/MiniEditor.py" line="727" /> <source>Save a copy of the current file</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="728" /> + <location filename="../QScintilla/MiniEditor.py" line="729" /> <source><b>Save Copy</b><p>Save a copy of the contents of current editor window. The file can be entered in a file selection dialog.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="738" /> + <location filename="../QScintilla/MiniEditor.py" line="739" /> <source>Close</source> <translation>Chiudi</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="740" /> - <source>&Close</source> - <translation>&Chiudi</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="741" /> + <source>&Close</source> + <translation>&Chiudi</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="742" /> <source>Ctrl+W</source> <comment>File|Close</comment> <translation>Ctrl+W</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="746" /> + <location filename="../QScintilla/MiniEditor.py" line="747" /> <source>Close the editor window</source> <translation>Chiudi la finestra dell'editor</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="748" /> + <location filename="../QScintilla/MiniEditor.py" line="749" /> <source><b>Close Window</b><p>Close the current window.</p></source> <translation><b>Chiudi finestra</b><p>Chiudi la finestra attuale.</b></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="754" /> + <location filename="../QScintilla/MiniEditor.py" line="755" /> <source>Print</source> <translation>Stampa</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="756" /> - <source>&Print</source> - <translation>Stam&pa</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="757" /> + <source>&Print</source> + <translation>Stam&pa</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="758" /> <source>Ctrl+P</source> <comment>File|Print</comment> <translation>Ctrl+P</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="762" /> + <location filename="../QScintilla/MiniEditor.py" line="763" /> <source>Print the current file</source> <translation>Stampa il file corrente</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="764" /> + <location filename="../QScintilla/MiniEditor.py" line="765" /> <source><b>Print File</b><p>Print the contents of the current file.</p></source> <translation><b>Stampa file</b><p>Stampa il file corrente.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="773" /> + <location filename="../QScintilla/MiniEditor.py" line="774" /> <source>Print Preview</source> <translation>Anteprima Stampa</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="781" /> + <location filename="../QScintilla/MiniEditor.py" line="782" /> <source>Print preview of the current file</source> <translation>Antreprima del file corrente</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="783" /> + <location filename="../QScintilla/MiniEditor.py" line="784" /> <source><b>Print Preview</b><p>Print preview of the current file.</p></source> <translation><b>Anteprima di stampa</b><p>Anteprima di stampa del file corrente.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="796" /> + <location filename="../QScintilla/MiniEditor.py" line="797" /> <source>Undo</source> <translation>Undo</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="798" /> - <source>&Undo</source> - <translation>&Undo</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="799" /> + <source>&Undo</source> + <translation>&Undo</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="800" /> <source>Ctrl+Z</source> <comment>Edit|Undo</comment> <translation>Ctrl+Z</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="800" /> + <location filename="../QScintilla/MiniEditor.py" line="801" /> <source>Alt+Backspace</source> <comment>Edit|Undo</comment> <translation>Alt+Backspace</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="804" /> + <location filename="../QScintilla/MiniEditor.py" line="805" /> <source>Undo the last change</source> <translation>Annulla l'ultima modifica</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="806" /> + <location filename="../QScintilla/MiniEditor.py" line="807" /> <source><b>Undo</b><p>Undo the last change done in the current editor.</p></source> <translation><b>Annulla</b><p>Annula l'ultima modifica nell'editor corrente.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="815" /> + <location filename="../QScintilla/MiniEditor.py" line="816" /> <source>Redo</source> <translation>Rifai</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="817" /> - <source>&Redo</source> - <translation>&Rifai</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="818" /> + <source>&Redo</source> + <translation>&Rifai</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="819" /> <source>Ctrl+Shift+Z</source> <comment>Edit|Redo</comment> <translation>Ctrl+Shift+Z</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="823" /> + <location filename="../QScintilla/MiniEditor.py" line="824" /> <source>Redo the last change</source> <translation>Rifai ultima modifica</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="825" /> + <location filename="../QScintilla/MiniEditor.py" line="826" /> <source><b>Redo</b><p>Redo the last change done in the current editor.</p></source> <translation><b>Rifai</b><p>Rifai l'ultima modifica nell'editor corrente.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="834" /> + <location filename="../QScintilla/MiniEditor.py" line="835" /> <source>Cut</source> <translation>Taglia</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="836" /> - <source>Cu&t</source> - <translation>&Taglia</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="837" /> + <source>Cu&t</source> + <translation>&Taglia</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="838" /> <source>Ctrl+X</source> <comment>Edit|Cut</comment> <translation>Ctrl+X</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="838" /> + <location filename="../QScintilla/MiniEditor.py" line="839" /> <source>Shift+Del</source> <comment>Edit|Cut</comment> <translation>Shift+Del</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="842" /> + <location filename="../QScintilla/MiniEditor.py" line="843" /> <source>Cut the selection</source> <translation>Taglia la selezione</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="844" /> + <location filename="../QScintilla/MiniEditor.py" line="845" /> <source><b>Cut</b><p>Cut the selected text of the current editor to the clipboard.</p></source> <translation><b>Taglia</b><p>Taglia il testo selezionato nell'editor corrente.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="854" /> + <location filename="../QScintilla/MiniEditor.py" line="855" /> <source>Copy</source> <translation>Copia</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="856" /> - <source>&Copy</source> - <translation>&Copia</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="857" /> - <source>Ctrl+C</source> - <comment>Edit|Copy</comment> - <translation>Ctrl+C</translation> + <source>&Copy</source> + <translation>&Copia</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="858" /> + <source>Ctrl+C</source> + <comment>Edit|Copy</comment> + <translation>Ctrl+C</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="859" /> <source>Ctrl+Ins</source> <comment>Edit|Copy</comment> <translation>Ctrl+Ins</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="862" /> + <location filename="../QScintilla/MiniEditor.py" line="863" /> <source>Copy the selection</source> <translation>Copia la selezione</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="864" /> + <location filename="../QScintilla/MiniEditor.py" line="865" /> <source><b>Copy</b><p>Copy the selected text of the current editor to the clipboard.</p></source> <translation><b>Copia</b><p>Copia il testo selezionato nell'editor corrente.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="874" /> + <location filename="../QScintilla/MiniEditor.py" line="875" /> <source>Paste</source> <translation>Incolla</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="876" /> - <source>&Paste</source> - <translation>&Incolla</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="877" /> - <source>Ctrl+V</source> - <comment>Edit|Paste</comment> - <translation>Ctrl+V</translation> + <source>&Paste</source> + <translation>&Incolla</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="878" /> + <source>Ctrl+V</source> + <comment>Edit|Paste</comment> + <translation>Ctrl+V</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="879" /> <source>Shift+Ins</source> <comment>Edit|Paste</comment> <translation>Shift+Ins</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="882" /> + <location filename="../QScintilla/MiniEditor.py" line="883" /> <source>Paste the last cut/copied text</source> <translation>Incolla l'ultimo testo tagliato/copiato</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="884" /> + <location filename="../QScintilla/MiniEditor.py" line="885" /> <source><b>Paste</b><p>Paste the last cut/copied text from the clipboard to the current editor.</p></source> <translation><b>Incolla</b><p>Incolla l'ultimo testo tagliato/copiato nell'editor corrente.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="894" /> + <location filename="../QScintilla/MiniEditor.py" line="895" /> <source>Clear</source> <translation>Pulisci</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="896" /> - <source>Cl&ear</source> - <translation>Pu&lisci</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="897" /> + <source>Cl&ear</source> + <translation>Pu&lisci</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="898" /> <source>Alt+Shift+C</source> <comment>Edit|Clear</comment> <translation>Alt+Shift+C</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="902" /> + <location filename="../QScintilla/MiniEditor.py" line="903" /> <source>Clear all text</source> <translation>Pulisci tutto il testo</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="904" /> + <location filename="../QScintilla/MiniEditor.py" line="905" /> <source><b>Clear</b><p>Delete all text of the current editor.</p></source> <translation><b>Pulisci</b><p>Cancellal tutto il testo dell'editor corrente.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2892" /> + <location filename="../QScintilla/MiniEditor.py" line="2893" /> <source>About</source> <translation>About</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2892" /> + <location filename="../QScintilla/MiniEditor.py" line="2893" /> <source>&About</source> <translation>&About</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2894" /> + <location filename="../QScintilla/MiniEditor.py" line="2895" /> <source>Display information about this software</source> <translation>Mostra informazioni su questo software</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2896" /> + <location filename="../QScintilla/MiniEditor.py" line="2897" /> <source><b>About</b><p>Display some information about this software.</p></source> <translation><b>About</b><p>Mostra alcune informazioni su questo software.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2905" /> + <location filename="../QScintilla/MiniEditor.py" line="2906" /> <source>About Qt</source> <translation>About Qt</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2905" /> + <location filename="../QScintilla/MiniEditor.py" line="2906" /> <source>About &Qt</source> <translation>About &Qt</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2908" /> + <location filename="../QScintilla/MiniEditor.py" line="2909" /> <source>Display information about the Qt toolkit</source> <translation>Mostra le informazioni sulle librerie Qt</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2911" /> + <location filename="../QScintilla/MiniEditor.py" line="2912" /> <source><b>About Qt</b><p>Display some information about the Qt toolkit.</p></source> <translation><b>About Qt</b><p>Mostra delle informazioni sulle librerie Qt.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2920" /> + <location filename="../QScintilla/MiniEditor.py" line="2921" /> <source>What's This?</source> <translation>Cos'è questo ?</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2922" /> - <source>&What's This?</source> - <translation>C&os'è Questo ?</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="2923" /> + <source>&What's This?</source> + <translation>C&os'è Questo ?</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="2924" /> <source>Shift+F1</source> <comment>Help|What's This?'</comment> <translation>Shift+F1</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2928" /> + <location filename="../QScintilla/MiniEditor.py" line="2929" /> <source>Context sensitive help</source> <translation>Help sensibile al contesto</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2930" /> + <location filename="../QScintilla/MiniEditor.py" line="2931" /> <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>Mostra help sensibile al contesto</b><p>Nella modalità Cos'è qusto, il cursore del mouse mostra una finesta con un punto interrogativo, e puoi clickare sugli elementi dell'interfaccia per avere una breve descrizione di cosa fanno e come usarli. Nei dialoghi questa funzionalità può essere utilizzata usando il pulsante per l'help sensibile al contesto della barra del titolo.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2948" /> + <location filename="../QScintilla/MiniEditor.py" line="2949" /> <source>Preferences</source> <translation type="unfinished">Preferenze</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2950" /> + <location filename="../QScintilla/MiniEditor.py" line="2951" /> <source>&Preferences...</source> <translation type="unfinished">&Preferenze...</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2956" /> + <location filename="../QScintilla/MiniEditor.py" line="2957" /> <source>Set the prefered configuration</source> <translation type="unfinished">Imposta la configurazione preferita</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2958" /> + <location filename="../QScintilla/MiniEditor.py" line="2959" /> <source><b>Preferences</b><p>Set the configuration items of the application with your prefered values.</p></source> <translation type="unfinished"><b>Preferenze</b><p>Imposta i valori di configurazione dell'applicazione ai valori preferiti</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2972" /> + <location filename="../QScintilla/MiniEditor.py" line="2973" /> <source>&File</source> <translation>&File</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2984" /> + <location filename="../QScintilla/MiniEditor.py" line="2985" /> <source>&Edit</source> <translation>&Edita</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2994" /> + <location filename="../QScintilla/MiniEditor.py" line="2995" /> <source>&Search</source> <translation type="unfinished">&Ricerca</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3004" /> + <location filename="../QScintilla/MiniEditor.py" line="3005" /> <source>&View</source> <translation type="unfinished">&Visualizza</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3010" /> + <location filename="../QScintilla/MiniEditor.py" line="3011" /> <source>Se&ttings</source> <translation type="unfinished">Impos&tazioni</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3015" /> + <location filename="../QScintilla/MiniEditor.py" line="3016" /> <source>&Help</source> <translation>&Help</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3027" /> + <location filename="../QScintilla/MiniEditor.py" line="3028" /> <source>File</source> <translation>File</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3039" /> + <location filename="../QScintilla/MiniEditor.py" line="3040" /> <source>Edit</source> <translation>Modifica</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3048" /> + <location filename="../QScintilla/MiniEditor.py" line="3049" /> <source>Search</source> <translation type="unfinished">Ricerca</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3054" /> + <location filename="../QScintilla/MiniEditor.py" line="3055" /> <source>View</source> <translation type="unfinished">Visualizza</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3060" /> + <location filename="../QScintilla/MiniEditor.py" line="3061" /> <source>Settings</source> <translation type="unfinished">Impostazioni</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3063" /> + <location filename="../QScintilla/MiniEditor.py" line="3064" /> <source>Help</source> <translation>Aiuto</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3076" /> + <location filename="../QScintilla/MiniEditor.py" line="3077" /> <source><p>This part of the status bar displays the editor language.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3086" /> + <location filename="../QScintilla/MiniEditor.py" line="3087" /> <source><p>This part of the status bar displays an indication of the editors files writability.</p></source> <translation><p>Questa parte della barra di stato mostra se il file può essere scritto.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3095" /> + <location filename="../QScintilla/MiniEditor.py" line="3096" /> <source><p>This part of the status bar displays the line number of the editor.</p></source> <translation><p>Questa parte della barra di stato mostra il numero di linea.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3104" /> + <location filename="../QScintilla/MiniEditor.py" line="3105" /> <source><p>This part of the status bar displays the cursor position of the editor.</p></source> <translation><p>Questa parte della barra di stato mostra la posizione del cursore.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3118" /> + <location filename="../QScintilla/MiniEditor.py" line="3119" /> <source><p>This part of the status bar allows zooming the editor.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3125" /> + <location filename="../QScintilla/MiniEditor.py" line="3126" /> <source>Ready</source> <translation>Pronto</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3201" /> - <source>eric Mini Editor</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="3202" /> + <source>eric Mini Editor</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="3203" /> <source>The document has unsaved changes.</source> <translation>Il documento ha delle modifiche non salvate.</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3231" /> - <source>Open File</source> - <translation>Apri File</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="3232" /> + <source>Open File</source> + <translation>Apri File</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="3233" /> <source><p>The file <b>{0}</b> could not be opened.</p><p>Reason: {1}</p></source> <translation><p>Il file <b>{0}</b> non può essere aperto.<br />Motivo: {1}</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3260" /> + <location filename="../QScintilla/MiniEditor.py" line="3261" /> <source>File loaded</source> <translation>File caricato</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3341" /> - <source>Save File</source> - <translation>Salva file</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="3342" /> + <source>Save File</source> + <translation>Salva file</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="3343" /> <source><p>The file <b>{0}</b> could not be saved.<br/>Reason: {1}</p></source> <translation><p>Il file <b>{0}</b> non può essere salvato.<br />Motivo: {1}</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3348" /> + <location filename="../QScintilla/MiniEditor.py" line="3349" /> <source>File saved</source> <translation>File salvato</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3360" /> + <location filename="../QScintilla/MiniEditor.py" line="3361" /> <source>[*] - {0}</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3380" /> - <location filename="../QScintilla/MiniEditor.py" line="3360" /> + <location filename="../QScintilla/MiniEditor.py" line="3381" /> + <location filename="../QScintilla/MiniEditor.py" line="3361" /> <source>Mini Editor</source> <translation>Mini Editor</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3735" /> - <location filename="../QScintilla/MiniEditor.py" line="3706" /> - <location filename="../QScintilla/MiniEditor.py" line="3373" /> + <location filename="../QScintilla/MiniEditor.py" line="3736" /> + <location filename="../QScintilla/MiniEditor.py" line="3707" /> + <location filename="../QScintilla/MiniEditor.py" line="3374" /> <source>Untitled</source> <translation>Senza titolo</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3380" /> + <location filename="../QScintilla/MiniEditor.py" line="3381" /> <source>{0}[*] - {1}</source> <translation>{0}[*] - {1}</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3701" /> + <location filename="../QScintilla/MiniEditor.py" line="3702" /> <source>Printing...</source> <translation>In stampa...</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3717" /> + <location filename="../QScintilla/MiniEditor.py" line="3718" /> <source>Printing completed</source> <translation>Stampa completata</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3719" /> + <location filename="../QScintilla/MiniEditor.py" line="3720" /> <source>Error while printing</source> <translation>Errore durante la stampa</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3722" /> + <location filename="../QScintilla/MiniEditor.py" line="3723" /> <source>Printing aborted</source> <translation>Stampa interrota</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3777" /> - <source>Select all</source> - <translation>Seleziona tutti</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="3778" /> + <source>Select all</source> + <translation>Seleziona tutti</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="3779" /> <source>Deselect all</source> <translation>Deseleziona tutti</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3792" /> + <location filename="../QScintilla/MiniEditor.py" line="3793" /> <source>Languages</source> <translation>Linguaggi</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3795" /> + <location filename="../QScintilla/MiniEditor.py" line="3796" /> <source>No Language</source> <translation>Nessun linguaggio</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3816" /> + <location filename="../QScintilla/MiniEditor.py" line="3817" /> <source>Guessed</source> <translation>Indovinato</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3838" /> - <location filename="../QScintilla/MiniEditor.py" line="3820" /> + <location filename="../QScintilla/MiniEditor.py" line="3839" /> + <location filename="../QScintilla/MiniEditor.py" line="3821" /> <source>Alternatives</source> <translation>Alternativo</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3835" /> + <location filename="../QScintilla/MiniEditor.py" line="3836" /> <source>Alternatives ({0})</source> <translation>Alternative ({0})</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3867" /> - <source>Pygments Lexer</source> - <translation>Analizzatore lessicale Pygments</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="3868" /> + <source>Pygments Lexer</source> + <translation>Analizzatore lessicale Pygments</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="3869" /> <source>Select the Pygments lexer to apply.</source> <translation>Selezione l'analizzatore lessicale di Pygments da applicare.</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="4413" /> - <source>EditorConfig Properties</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="4414" /> + <source>EditorConfig Properties</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="4415" /> <source><p>The EditorConfig properties for file <b>{0}</b> could not be loaded.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="4601" /> - <source>Save File to Device</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="4602" /> + <source>Save File to Device</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="4603" /> <source>Enter the complete device file path:</source> <translation type="unfinished" /> </message> @@ -55415,499 +55415,504 @@ <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="135" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="134" /> + <source>unnecessary {0} comprehension - rewrite using dict.fromkeys()</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="139" /> <source>sort keys - '{0}' should be before '{1}'</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="140" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="144" /> <source>the number of arguments for property getter method is wrong (should be 1 instead of {0})</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="145" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="149" /> <source>the number of arguments for property setter method is wrong (should be 2 instead of {0})</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="150" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="154" /> <source>the number of arguments for property deleter method is wrong (should be 1 instead of {0})</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="155" /> - <source>the name of the setter method is wrong (should be '{0}' instead of '{1}')</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="159" /> - <source>the name of the deleter method is wrong (should be '{0}' instead of '{1}')</source> + <source>the name of the setter method is wrong (should be '{0}' instead of '{1}')</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="163" /> - <source>the name of the setter decorator is wrong (should be '{0}' instead of '{1}')</source> + <source>the name of the deleter method is wrong (should be '{0}' instead of '{1}')</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="167" /> - <source>the name of the deleter decorator is wrong (should be '{0}' instead of '{1}')</source> + <source>the name of the setter decorator is wrong (should be '{0}' instead of '{1}')</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="171" /> + <source>the name of the deleter decorator is wrong (should be '{0}' instead of '{1}')</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="175" /> <source>multiple decorators were used to declare property '{0}'</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="176" /> - <source>use of 'datetime.datetime()' without 'tzinfo' argument should be avoided</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="180" /> + <source>use of 'datetime.datetime()' without 'tzinfo' argument should be avoided</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="184" /> <source>use of 'datetime.datetime.today()' should be avoided. Use 'datetime.datetime.now(tz=)' instead.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="185" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="189" /> <source>use of 'datetime.datetime.utcnow()' should be avoided. Use 'datetime.datetime.now(tz=datetime.timezone.utc)' instead.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="190" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="194" /> <source>use of 'datetime.datetime.utcfromtimestamp()' should be avoided. Use 'datetime.datetime.fromtimestamp(..., tz=datetime.timezone.utc)' instead.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="195" /> - <source>use of 'datetime.datetime.now()' without 'tz' argument should be avoided</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="199" /> + <source>use of 'datetime.datetime.now()' without 'tz' argument should be avoided</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="203" /> <source>use of 'datetime.datetime.fromtimestamp()' without 'tz' argument should be avoided</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="204" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="208" /> <source>use of 'datetime.datetime.strptime()' should be followed by '.replace(tzinfo=)'</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="209" /> - <source>use of 'datetime.datetime.fromordinal()' should be avoided</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="213" /> + <source>use of 'datetime.datetime.fromordinal()' should be avoided</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="217" /> <source>use of 'datetime.date()' should be avoided. Use 'datetime.datetime(, tzinfo=).date()' instead.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="218" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="222" /> <source>use of 'datetime.date.today()' should be avoided. Use 'datetime.datetime.now(tz=).date()' instead.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="223" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="227" /> <source>use of 'datetime.date.fromtimestamp()' should be avoided. Use 'datetime.datetime.fromtimestamp(tz=).date()' instead.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="228" /> - <source>use of 'datetime.date.fromordinal()' should be avoided</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="232" /> - <source>use of 'datetime.date.fromisoformat()' should be avoided</source> + <source>use of 'datetime.date.fromordinal()' should be avoided</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="236" /> + <source>use of 'datetime.date.fromisoformat()' should be avoided</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="240" /> <source>use of 'datetime.time()' without 'tzinfo' argument should be avoided</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="241" /> - <source>'sys.version[:3]' referenced (Python 3.10), use 'sys.version_info'</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="245" /> - <source>'sys.version[2]' referenced (Python 3.10), use 'sys.version_info'</source> + <source>'sys.version[:3]' referenced (Python 3.10), use 'sys.version_info'</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="249" /> - <source>'sys.version' compared to string (Python 3.10), use 'sys.version_info'</source> + <source>'sys.version[2]' referenced (Python 3.10), use 'sys.version_info'</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="253" /> - <source>'sys.version_info[0] == 3' referenced (Python 4), use '>='</source> + <source>'sys.version' compared to string (Python 3.10), use 'sys.version_info'</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="257" /> - <source>'six.PY3' referenced (Python 4), use 'not six.PY2'</source> + <source>'sys.version_info[0] == 3' referenced (Python 4), use '>='</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="261" /> + <source>'six.PY3' referenced (Python 4), use 'not six.PY2'</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="265" /> <source>'sys.version_info[1]' compared to integer (Python 4), compare 'sys.version_info' to tuple</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="266" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="270" /> <source>'sys.version_info.minor' compared to integer (Python 4), compare 'sys.version_info' to tuple</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="271" /> - <source>'sys.version[0]' referenced (Python 10), use 'sys.version_info'</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="275" /> - <source>'sys.version' compared to string (Python 10), use 'sys.version_info'</source> + <source>'sys.version[0]' referenced (Python 10), use 'sys.version_info'</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="279" /> + <source>'sys.version' compared to string (Python 10), use 'sys.version_info'</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="283" /> <source>'sys.version[:1]' referenced (Python 10), use 'sys.version_info'</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="284" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="288" /> <source>Do not use bare 'except:', it also catches unexpected events like memory errors, interrupts, system exit, and so on. Prefer excepting specific exceptions. If you're sure what you're doing, be explicit and write 'except BaseException:'.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="291" /> - <source>Python does not support the unary prefix increment</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="295" /> + <source>Python does not support the unary prefix increment</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="299" /> <source>assigning to 'os.environ' does not clear the environment - use 'os.environ.clear()'</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="300" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="304" /> <source>using 'hasattr(x, "__call__")' to test if 'x' is callable is unreliable. Use 'callable(x)' for consistent results.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="305" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="309" /> <source>using .strip() with multi-character strings is misleading. Use .replace(), .removeprefix(), .removesuffix(), or regular expressions to remove string fragments.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="311" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="315" /> <source>loop control variable {0} not used within the loop body - start the name with an underscore</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="316" /> - <source>do not call getattr with a constant attribute value</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="320" /> - <source>do not call setattr with a constant attribute value</source> + <source>do not call getattr with a constant attribute value</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="324" /> - <source>do not call assert False since python -O removes these calls</source> + <source>do not call setattr with a constant attribute value</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="328" /> + <source>do not call assert False since python -O removes these calls</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="332" /> <source>return/continue/break inside finally blocks cause exceptions to be silenced. Exceptions should be silenced in except blocks. Control statements can be moved outside the finally block.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="334" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="338" /> <source>A length-one tuple literal is redundant. Write 'except {0}:' instead of 'except ({0},):'.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="339" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="343" /> <source>Redundant exception types in 'except ({0}){1}:'. Write 'except {2}{1}:', which catches exactly the same exceptions.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="344" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="348" /> <source>Result of comparison is not used. This line doesn't do anything. Did you intend to prepend it with assert?</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="349" /> - <source>Cannot raise a literal. Did you intend to return it or raise an Exception?</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="353" /> + <source>Cannot raise a literal. Did you intend to return it or raise an Exception?</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="357" /> <source>'assertRaises(Exception)' and 'pytest.raises(Exception)' should be considered evil. They can lead to your test passing even if the code being tested is never executed due to a typo. Assert for a more specific exception (builtin or custom), or use 'assertRaisesRegex' (if using 'assertRaises'), or add the 'match' keyword argument (if using 'pytest.raises'), or use the context manager form with a target.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="362" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="366" /> <source>Found useless {0} expression. Consider either assigning it to a variable or removing it.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="367" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="371" /> <source>Use of 'functools.lru_cache' or 'functools.cache' on methods can lead to memory leaks. The cache may retain instance references, preventing garbage collection.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="373" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="377" /> <source>Found for loop that reassigns the iterable it is iterating with each iterable value.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="378" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="382" /> <source>f-string used as docstring. This will be interpreted by python as a joined string rather than a docstring.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="383" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="387" /> <source>No arguments passed to 'contextlib.suppress'. No exceptions will be suppressed and therefore this context manager is redundant.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="388" /> - <source>Function definition does not bind loop variable '{0}'.</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="392" /> + <source>Function definition does not bind loop variable '{0}'.</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="396" /> <source>{0} is an abstract base class, but none of the methods it defines are abstract. This is not necessarily an error, but you might have forgotten to add the @abstractmethod decorator, potentially in conjunction with @classmethod, @property and/or @staticmethod.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="399" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="403" /> <source>Exception '{0}' has been caught multiple times. Only the first except will be considered and all other except catches can be safely removed.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="404" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="408" /> <source>Star-arg unpacking after a keyword argument is strongly discouraged, because it only works when the keyword parameter is declared after all parameters supplied by the unpacked sequence, and this change of ordering can surprise and mislead readers.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="411" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="415" /> <source>{0} is an empty method in an abstract base class, but has no abstract decorator. Consider adding @abstractmethod.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="416" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="420" /> <source>No explicit stacklevel argument found. The warn method from the warnings module uses a stacklevel of 1 by default. This will only show a stack trace for the line on which the warn method is called. It is therefore recommended to use a stacklevel of 2 or greater to provide more information to the user.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="424" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="428" /> <source>Using 'except ():' with an empty tuple does not handle/catch anything. Add exceptions to handle.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="429" /> - <source>Except handlers should only be names of exception classes</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="433" /> + <source>Except handlers should only be names of exception classes</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="437" /> <source>Using the generator returned from 'itertools.groupby()' more than once will do nothing on the second usage. Save the result to a list, if the result is needed multiple times.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="439" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="443" /> <source>Possible unintentional type annotation (using ':'). Did you mean to assign (using '=')?</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="444" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="448" /> <source>Set should not contain duplicate item '{0}'. Duplicate items will be replaced with a single item at runtime.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="449" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="453" /> <source>re.{0} should get '{1}' and 'flags' passed as keyword arguments to avoid confusion due to unintuitive argument positions.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="454" /> - <source>Static key in dict comprehension: {0!r}.</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="458" /> - <source>Don't except 'BaseException' unless you plan to re-raise it.</source> + <source>Static key in dict comprehension: {0!r}.</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="462" /> + <source>Don't except 'BaseException' unless you plan to re-raise it.</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="466" /> <source>Class '__init__' methods must not return or yield and any values.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="467" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="471" /> <source>Editing a loop's mutable iterable often leads to unexpected results/bugs.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="472" /> - <source>unncessary f-string</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="476" /> + <source>unncessary f-string</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="480" /> <source>cannot use 'self.__class__' as first argument of 'super()' call</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="481" /> - <source>found {0} formatter</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="485" /> - <source>format string does contain unindexed parameters</source> + <source>found {0} formatter</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="489" /> - <source>docstring does contain unindexed parameters</source> + <source>format string does contain unindexed parameters</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="493" /> - <source>other string does contain unindexed parameters</source> + <source>docstring does contain unindexed parameters</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="497" /> - <source>format call uses too large index ({0})</source> + <source>other string does contain unindexed parameters</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="501" /> - <source>format call uses missing keyword ({0})</source> + <source>format call uses too large index ({0})</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="505" /> - <source>format call uses keyword arguments but no named entries</source> + <source>format call uses missing keyword ({0})</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="509" /> - <source>format call uses variable arguments but no numbered entries</source> + <source>format call uses keyword arguments but no named entries</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="513" /> - <source>format call uses implicit and explicit indexes together</source> + <source>format call uses variable arguments but no numbered entries</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="517" /> - <source>format call provides unused index ({0})</source> + <source>format call uses implicit and explicit indexes together</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="521" /> + <source>format call provides unused index ({0})</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="525" /> <source>format call provides unused keyword ({0})</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="526" /> - <source>expected these __future__ imports: {0}; but only got: {1}</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="530" /> + <source>expected these __future__ imports: {0}; but only got: {1}</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="534" /> <source>expected these __future__ imports: {0}; but got none</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="535" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="539" /> <source>gettext import with alias _ found: {0}</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="540" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="544" /> <source>print statement found</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="545" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="549" /> <source>one element tuple found</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="554" /> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="550" /> - <source>mutable default argument of type {0}</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="558" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="554" /> + <source>mutable default argument of type {0}</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="562" /> <source>mutable default argument of function call '{0}'</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="563" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="567" /> <source>None should not be added at any return if function has no return value except None</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="568" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="572" /> <source>an explicit value at every return should be added if function has a return value except None</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="573" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="577" /> <source>an explicit return at the end of the function should be added if it has a return value except None</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="578" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="582" /> <source>a value should not be assigned to a variable if it will be used as a return value only</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="584" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="588" /> <source>prefer implied line continuation inside parentheses, brackets and braces as opposed to a backslash</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="590" /> - <source>implicitly concatenated string or bytes literals on one line</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="594" /> - <source>implicitly concatenated string or bytes literals over continuation line</source> + <source>implicitly concatenated string or bytes literals on one line</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="598" /> + <source>implicitly concatenated string or bytes literals over continuation line</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="602" /> <source>explicitly concatenated string or bytes should be implicitly concatenated</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="603" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="607" /> <source>commented code lines should be removed</source> <translation type="unfinished" /> </message> @@ -86407,15 +86412,15 @@ <context> <name>Tabview</name> <message> - <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="1132" /> - <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="1067" /> + <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="1134" /> + <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="1069" /> <source>Untitled {0}</source> <translation>Senza titolo {0}</translation> </message> <message> - <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="1532" /> - <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="1143" /> - <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="1088" /> + <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="1534" /> + <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="1145" /> + <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="1090" /> <source>{0} (ro)</source> <translation>{0} (ro)</translation> </message> @@ -91151,7 +91156,7 @@ <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7844" /> + <location filename="../UI/UserInterface.py" line="7860" /> <location filename="../UI/UserInterface.py" line="1946" /> <location filename="../UI/UserInterface.py" line="1939" /> <source>Load session</source> @@ -92242,7 +92247,7 @@ <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6593" /> + <location filename="../UI/UserInterface.py" line="6609" /> <location filename="../UI/UserInterface.py" line="3163" /> <source>Snapshot</source> <translation type="unfinished" /> @@ -92479,8 +92484,8 @@ <translation><b>Scorciatoie da tastiera</b><p>Imposta le scorciatoie da tastiera dell'applicazione con i valori personalizzati.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7552" /> - <location filename="../UI/UserInterface.py" line="7533" /> + <location filename="../UI/UserInterface.py" line="7568" /> + <location filename="../UI/UserInterface.py" line="7549" /> <location filename="../UI/UserInterface.py" line="3393" /> <source>Export Keyboard Shortcuts</source> <translation>Esporta scorciatoie da tastiera</translation> @@ -92501,7 +92506,7 @@ <translation><b>Esporta scorciatoie da tastiera</b><p>Esporta le scorciatoie da tastiera dell'applicazione.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7571" /> + <location filename="../UI/UserInterface.py" line="7587" /> <location filename="../UI/UserInterface.py" line="3412" /> <source>Import Keyboard Shortcuts</source> <translation>Importa scorciatoie da tastiera</translation> @@ -92910,7 +92915,7 @@ <translation>Impostazioni</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6321" /> + <location filename="../UI/UserInterface.py" line="6337" /> <location filename="../UI/UserInterface.py" line="4185" /> <location filename="../UI/UserInterface.py" line="4170" /> <source>Help</source> @@ -93088,314 +93093,314 @@ <translation>Nascondi &tutti</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6458" /> - <location filename="../UI/UserInterface.py" line="6447" /> - <location filename="../UI/UserInterface.py" line="6399" /> - <location filename="../UI/UserInterface.py" line="6389" /> - <location filename="../UI/UserInterface.py" line="6210" /> - <location filename="../UI/UserInterface.py" line="6200" /> - <location filename="../UI/UserInterface.py" line="6142" /> - <location filename="../UI/UserInterface.py" line="6132" /> + <location filename="../UI/UserInterface.py" line="6474" /> + <location filename="../UI/UserInterface.py" line="6463" /> + <location filename="../UI/UserInterface.py" line="6415" /> + <location filename="../UI/UserInterface.py" line="6405" /> + <location filename="../UI/UserInterface.py" line="6228" /> + <location filename="../UI/UserInterface.py" line="6218" /> + <location filename="../UI/UserInterface.py" line="6160" /> + <location filename="../UI/UserInterface.py" line="6150" /> <source>Problem</source> <translation>Problema</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6459" /> - <location filename="../UI/UserInterface.py" line="6448" /> - <location filename="../UI/UserInterface.py" line="6400" /> - <location filename="../UI/UserInterface.py" line="6390" /> - <location filename="../UI/UserInterface.py" line="6211" /> - <location filename="../UI/UserInterface.py" line="6201" /> - <location filename="../UI/UserInterface.py" line="6143" /> - <location filename="../UI/UserInterface.py" line="6133" /> + <location filename="../UI/UserInterface.py" line="6475" /> + <location filename="../UI/UserInterface.py" line="6464" /> + <location filename="../UI/UserInterface.py" line="6416" /> + <location filename="../UI/UserInterface.py" line="6406" /> + <location filename="../UI/UserInterface.py" line="6229" /> + <location filename="../UI/UserInterface.py" line="6219" /> + <location filename="../UI/UserInterface.py" line="6161" /> + <location filename="../UI/UserInterface.py" line="6151" /> <source><p>The file <b>{0}</b> does not exist or is zero length.</p></source> <translation><p>Il file <b>{0}</b> non esiste o ha lunghezza zero.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6702" /> - <location filename="../UI/UserInterface.py" line="6613" /> - <location filename="../UI/UserInterface.py" line="6494" /> - <location filename="../UI/UserInterface.py" line="6471" /> - <location filename="../UI/UserInterface.py" line="6412" /> - <location filename="../UI/UserInterface.py" line="6359" /> - <location filename="../UI/UserInterface.py" line="6337" /> - <location filename="../UI/UserInterface.py" line="6286" /> - <location filename="../UI/UserInterface.py" line="6277" /> - <location filename="../UI/UserInterface.py" line="6242" /> - <location filename="../UI/UserInterface.py" line="6233" /> - <location filename="../UI/UserInterface.py" line="6174" /> - <location filename="../UI/UserInterface.py" line="6165" /> + <location filename="../UI/UserInterface.py" line="6718" /> + <location filename="../UI/UserInterface.py" line="6629" /> + <location filename="../UI/UserInterface.py" line="6510" /> + <location filename="../UI/UserInterface.py" line="6487" /> + <location filename="../UI/UserInterface.py" line="6428" /> + <location filename="../UI/UserInterface.py" line="6375" /> + <location filename="../UI/UserInterface.py" line="6353" /> + <location filename="../UI/UserInterface.py" line="6304" /> + <location filename="../UI/UserInterface.py" line="6295" /> + <location filename="../UI/UserInterface.py" line="6260" /> + <location filename="../UI/UserInterface.py" line="6251" /> + <location filename="../UI/UserInterface.py" line="6192" /> + <location filename="../UI/UserInterface.py" line="6183" /> <source>Process Generation Error</source> <translation>Errore Generazione Processo</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6166" /> + <location filename="../UI/UserInterface.py" line="6184" /> <source><p>Could not start Qt-Designer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>Non posso avviare Qt-Designer.<br>Assicurarsi che sia disponibile come <b>{0}</b>.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6175" /> + <location filename="../UI/UserInterface.py" line="6193" /> <source><p>Could not find the Qt-Designer executable.<br>Ensure that it is installed and optionally configured on the Qt configuration page.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6234" /> + <location filename="../UI/UserInterface.py" line="6252" /> <source><p>Could not start Qt-Linguist.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>Non posso avviare Qt-Linguist.<br>Assicurarsi che sia disponibile come <b>{0}</b>.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6243" /> + <location filename="../UI/UserInterface.py" line="6261" /> <source><p>Could not find the Qt-Linguist executable.<br>Ensure that it is installed and optionally configured on the Qt configuration page.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6278" /> + <location filename="../UI/UserInterface.py" line="6296" /> <source><p>Could not start Qt-Assistant.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>Non posso avviare Qt-Assistant.<br>Assicurarsi che sia disponibile come <b>{0}</b>.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6287" /> + <location filename="../UI/UserInterface.py" line="6305" /> <source><p>Could not find the Qt-Assistant executable.<br>Ensure that it is installed and optionally configured on the Qt configuration page.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6322" /> - <source>Currently no custom viewer is selected. Please use the preferences dialog to specify one.</source> - <translation>Attualmente nessun visualizzatore personalizzato è selezionato. Per favore usa il dialogo delle preferenze per specificarne uno.</translation> - </message> - <message> <location filename="../UI/UserInterface.py" line="6338" /> + <source>Currently no custom viewer is selected. Please use the preferences dialog to specify one.</source> + <translation>Attualmente nessun visualizzatore personalizzato è selezionato. Per favore usa il dialogo delle preferenze per specificarne uno.</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="6354" /> <source><p>Could not start custom viewer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>Non posso avviare il visualizzatore personalizzato.<br>Assicurarsi che sia disponibile come <b>{0}</b>.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6360" /> + <location filename="../UI/UserInterface.py" line="6376" /> <source><p>Could not start the help viewer.<br>Ensure that it is available as <b>hh</b>.</p></source> <translation><p>Non posso avviare il visualizzatore di help.<br>Assicurarsi che sia disponibile come <b>hh</b>.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6413" /> + <location filename="../UI/UserInterface.py" line="6429" /> <source><p>Could not start UI Previewer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>Non posso avviare UI Previewer.<br>Assicurarsi che sia disponibile come <b>{0}</b>.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6472" /> + <location filename="../UI/UserInterface.py" line="6488" /> <source><p>Could not start Translation Previewer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>Non posso avviare l'anteprima delle traduzioni.<br>Assicurarsi che sia disponibile come <b>{0}</b>.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6495" /> + <location filename="../UI/UserInterface.py" line="6511" /> <source><p>Could not start SQL Browser.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>Non posso avviare SQL Browser.<br>Assicurarsi che sia disponibile come <b>{0}</b>.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6594" /> + <location filename="../UI/UserInterface.py" line="6610" /> <source><p>The snapshot utility is not available for Wayland desktop sessions.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6614" /> + <location filename="../UI/UserInterface.py" line="6630" /> <source><p>Could not start Snapshot tool.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6647" /> - <location filename="../UI/UserInterface.py" line="6637" /> + <location filename="../UI/UserInterface.py" line="6663" /> + <location filename="../UI/UserInterface.py" line="6653" /> <source>External Tools</source> <translation>Tool esterni</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6638" /> + <location filename="../UI/UserInterface.py" line="6654" /> <source>No tool entry found for external tool '{0}' in tool group '{1}'.</source> <translation>Nessun elemento per il tool esterno '{0}' trovato nel gruppo '{1}'.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6648" /> + <location filename="../UI/UserInterface.py" line="6664" /> <source>No toolgroup entry '{0}' found.</source> <translation>Nessun gruppo '{0}' trovato.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6685" /> + <location filename="../UI/UserInterface.py" line="6701" /> <source>Starting process '{0} {1}'. </source> <translation>Avvio processo '{0} {1}'. </translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6703" /> + <location filename="../UI/UserInterface.py" line="6719" /> <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>Non posso avviare l'elemento degli strumenti <b>{0}</b>.<br>Assicurarsi che sia disponibile come <b>{1}</b>.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6782" /> + <location filename="../UI/UserInterface.py" line="6798" /> <source>Process '{0}' has exited. </source> <translation>Il processo '{0}' è terminato.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7069" /> - <location filename="../UI/UserInterface.py" line="7007" /> - <location filename="../UI/UserInterface.py" line="6963" /> - <location filename="../UI/UserInterface.py" line="6889" /> - <location filename="../UI/UserInterface.py" line="6825" /> + <location filename="../UI/UserInterface.py" line="7085" /> + <location filename="../UI/UserInterface.py" line="7023" /> + <location filename="../UI/UserInterface.py" line="6979" /> + <location filename="../UI/UserInterface.py" line="6905" /> + <location filename="../UI/UserInterface.py" line="6841" /> <source>Documentation Missing</source> <translation>Documentazione mancante</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7070" /> - <location filename="../UI/UserInterface.py" line="7008" /> - <location filename="../UI/UserInterface.py" line="6964" /> - <location filename="../UI/UserInterface.py" line="6890" /> - <location filename="../UI/UserInterface.py" line="6826" /> + <location filename="../UI/UserInterface.py" line="7086" /> + <location filename="../UI/UserInterface.py" line="7024" /> + <location filename="../UI/UserInterface.py" line="6980" /> + <location filename="../UI/UserInterface.py" line="6906" /> + <location filename="../UI/UserInterface.py" line="6842" /> <source><p>The documentation starting point "<b>{0}</b>" could not be found.</p></source> <translation><p>L'inizio della documentazione "<b>{0}</b>" non viene trovato.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7051" /> - <location filename="../UI/UserInterface.py" line="6933" /> + <location filename="../UI/UserInterface.py" line="7067" /> + <location filename="../UI/UserInterface.py" line="6949" /> <source>Documentation</source> <translation>Documentazione</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6934" /> + <location filename="../UI/UserInterface.py" line="6950" /> <source><p>The PyQt{0} documentation starting point has not been configured.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7052" /> + <location filename="../UI/UserInterface.py" line="7068" /> <source><p>The PySide{0} documentation starting point has not been configured.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7231" /> - <location filename="../UI/UserInterface.py" line="7167" /> + <location filename="../UI/UserInterface.py" line="7247" /> + <location filename="../UI/UserInterface.py" line="7183" /> <source>Start Web Browser</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7168" /> + <location filename="../UI/UserInterface.py" line="7184" /> <source>The eric web browser could not be started.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7232" /> + <location filename="../UI/UserInterface.py" line="7248" /> <source><p>The eric web browser is not started.</p><p>Reason: {0}</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7278" /> + <location filename="../UI/UserInterface.py" line="7294" /> <source>Open Browser</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7278" /> + <location filename="../UI/UserInterface.py" line="7294" /> <source>Could not start a web browser</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7573" /> - <location filename="../UI/UserInterface.py" line="7535" /> + <location filename="../UI/UserInterface.py" line="7589" /> + <location filename="../UI/UserInterface.py" line="7551" /> <source>Keyboard Shortcuts File (*.ekj)</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7553" /> + <location filename="../UI/UserInterface.py" line="7569" /> <source><p>The keyboard shortcuts file <b>{0}</b> exists already. Overwrite it?</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7757" /> + <location filename="../UI/UserInterface.py" line="7773" /> <source>Load crash session...</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7760" /> + <location filename="../UI/UserInterface.py" line="7776" /> <source>Clean crash sessions...</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7797" /> + <location filename="../UI/UserInterface.py" line="7813" /> <source>Read Session</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7798" /> + <location filename="../UI/UserInterface.py" line="7814" /> <source><p>The session file <b>{0}</b> could not be read.</p></source> <translation><p>Il file sessione <b>{0}</b> non può essere letto.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7821" /> + <location filename="../UI/UserInterface.py" line="7837" /> <source>Save Session</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7846" /> - <location filename="../UI/UserInterface.py" line="7823" /> + <location filename="../UI/UserInterface.py" line="7862" /> + <location filename="../UI/UserInterface.py" line="7839" /> <source>eric Session Files (*.esj)</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7913" /> + <location filename="../UI/UserInterface.py" line="7929" /> <source>Found Crash Sessions</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7914" /> + <location filename="../UI/UserInterface.py" line="7930" /> <source>These crash session files were found. Select the one to open. Select 'Cancel' to not open a crash session.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7987" /> + <location filename="../UI/UserInterface.py" line="8003" /> <source>Clean stale crash sessions</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7988" /> + <location filename="../UI/UserInterface.py" line="8004" /> <source>Do you really want to delete these stale crash session files?</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="8364" /> + <location filename="../UI/UserInterface.py" line="8380" /> <source>Drop Error</source> <translation>Errore Drop</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="8365" /> + <location filename="../UI/UserInterface.py" line="8381" /> <source><p><b>{0}</b> is not a file.</p></source> <translation><p><b>{0}</b> non è un file.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="8551" /> + <location filename="../UI/UserInterface.py" line="8567" /> <source>Upgrade available</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="8552" /> + <location filename="../UI/UserInterface.py" line="8568" /> <source><p>A newer version of the <b>eric-ide</b> package is available at <a href="{0}/eric-ide/">PyPI</a>.</p><p>Installed: {1}<br/>Available: <b>{2}</b></p><p>Shall <b>eric-ide</b> be upgraded?</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="8597" /> + <location filename="../UI/UserInterface.py" line="8613" /> <source>First time usage</source> <translation>Primo avvio</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="8598" /> + <location filename="../UI/UserInterface.py" line="8614" /> <source>eric has not been configured yet. The configuration dialog will be started.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="8620" /> + <location filename="../UI/UserInterface.py" line="8636" /> <source>Select Workspace Directory</source> <translation type="unfinished">Seleziona cartella di lavoro</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="8788" /> + <location filename="../UI/UserInterface.py" line="8804" /> <source>Unsaved Data Detected</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="8789" /> + <location filename="../UI/UserInterface.py" line="8805" /> <source>Some editors contain unsaved data. Shall these be saved?</source> <translation type="unfinished" /> </message> @@ -94875,7 +94880,7 @@ <translation><b>Stampa fle</b><p>Stampa il contenuto della finestra attuale.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="775" /> + <location filename="../QScintilla/MiniEditor.py" line="776" /> <location filename="../ViewManager/ViewManager.py" line="913" /> <location filename="../ViewManager/ViewManager.py" line="911" /> <source>Print Preview</source> @@ -95652,8 +95657,8 @@ <translation type="unfinished" /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="926" /> <location filename="../QScintilla/MiniEditor.py" line="925" /> - <location filename="../QScintilla/MiniEditor.py" line="924" /> <location filename="../QScintilla/ShellWindow.py" line="575" /> <location filename="../QScintilla/ShellWindow.py" line="574" /> <location filename="../ViewManager/ViewManager.py" line="1858" /> @@ -95662,22 +95667,22 @@ <translation>Muovi a sinistra di 1 carattere</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="926" /> + <location filename="../QScintilla/MiniEditor.py" line="927" /> <location filename="../QScintilla/ShellWindow.py" line="576" /> <location filename="../ViewManager/ViewManager.py" line="1859" /> <source>Left</source> <translation>Sinistra</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="934" /> + <location filename="../QScintilla/MiniEditor.py" line="935" /> <location filename="../QScintilla/ShellWindow.py" line="584" /> <location filename="../ViewManager/ViewManager.py" line="1867" /> <source>Meta+B</source> <translation type="unfinished" /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="942" /> <location filename="../QScintilla/MiniEditor.py" line="941" /> - <location filename="../QScintilla/MiniEditor.py" line="940" /> <location filename="../QScintilla/ShellWindow.py" line="591" /> <location filename="../QScintilla/ShellWindow.py" line="590" /> <location filename="../ViewManager/ViewManager.py" line="1874" /> @@ -95686,22 +95691,22 @@ <translation>Muovi a destra di 1 carattere</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="942" /> + <location filename="../QScintilla/MiniEditor.py" line="943" /> <location filename="../QScintilla/ShellWindow.py" line="592" /> <location filename="../ViewManager/ViewManager.py" line="1875" /> <source>Right</source> <translation>Destra</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="949" /> + <location filename="../QScintilla/MiniEditor.py" line="950" /> <location filename="../QScintilla/ShellWindow.py" line="599" /> <location filename="../ViewManager/ViewManager.py" line="1882" /> <source>Meta+F</source> <translation type="unfinished" /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="958" /> <location filename="../QScintilla/MiniEditor.py" line="957" /> - <location filename="../QScintilla/MiniEditor.py" line="956" /> <location filename="../QScintilla/ShellWindow.py" line="683" /> <location filename="../QScintilla/ShellWindow.py" line="682" /> <location filename="../ViewManager/ViewManager.py" line="1890" /> @@ -95710,22 +95715,22 @@ <translation>Muovi in alto di una riga</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="958" /> + <location filename="../QScintilla/MiniEditor.py" line="959" /> <location filename="../QScintilla/ShellWindow.py" line="684" /> <location filename="../ViewManager/ViewManager.py" line="1891" /> <source>Up</source> <translation>Su</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="965" /> + <location filename="../QScintilla/MiniEditor.py" line="966" /> <location filename="../QScintilla/ShellWindow.py" line="691" /> <location filename="../ViewManager/ViewManager.py" line="1898" /> <source>Meta+P</source> <translation type="unfinished" /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="974" /> <location filename="../QScintilla/MiniEditor.py" line="973" /> - <location filename="../QScintilla/MiniEditor.py" line="972" /> <location filename="../QScintilla/ShellWindow.py" line="699" /> <location filename="../QScintilla/ShellWindow.py" line="698" /> <location filename="../ViewManager/ViewManager.py" line="1906" /> @@ -95734,30 +95739,30 @@ <translation>Muovi in basso di una riga</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="974" /> + <location filename="../QScintilla/MiniEditor.py" line="975" /> <location filename="../QScintilla/ShellWindow.py" line="700" /> <location filename="../ViewManager/ViewManager.py" line="1907" /> <source>Down</source> <translation>Giù</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="981" /> + <location filename="../QScintilla/MiniEditor.py" line="982" /> <location filename="../QScintilla/ShellWindow.py" line="707" /> <location filename="../ViewManager/ViewManager.py" line="1914" /> <source>Meta+N</source> <translation type="unfinished" /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="990" /> <location filename="../QScintilla/MiniEditor.py" line="989" /> - <location filename="../QScintilla/MiniEditor.py" line="988" /> <location filename="../ViewManager/ViewManager.py" line="1922" /> <location filename="../ViewManager/ViewManager.py" line="1921" /> <source>Move left one word part</source> <translation>Muovi a sinistra di una parte di parola</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1029" /> - <location filename="../QScintilla/MiniEditor.py" line="997" /> + <location filename="../QScintilla/MiniEditor.py" line="1030" /> + <location filename="../QScintilla/MiniEditor.py" line="998" /> <location filename="../QScintilla/ShellWindow.py" line="615" /> <location filename="../ViewManager/ViewManager.py" line="1962" /> <location filename="../ViewManager/ViewManager.py" line="1930" /> @@ -95765,25 +95770,25 @@ <translation>Alt+Sinistra</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1006" /> <location filename="../QScintilla/MiniEditor.py" line="1005" /> - <location filename="../QScintilla/MiniEditor.py" line="1004" /> <location filename="../ViewManager/ViewManager.py" line="1938" /> <location filename="../ViewManager/ViewManager.py" line="1937" /> <source>Move right one word part</source> <translation>Muovi a destra di una parte di parola</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2159" /> - <location filename="../QScintilla/MiniEditor.py" line="1049" /> - <location filename="../QScintilla/MiniEditor.py" line="1013" /> + <location filename="../QScintilla/MiniEditor.py" line="2160" /> + <location filename="../QScintilla/MiniEditor.py" line="1050" /> + <location filename="../QScintilla/MiniEditor.py" line="1014" /> <location filename="../ViewManager/ViewManager.py" line="3071" /> <location filename="../ViewManager/ViewManager.py" line="1946" /> <source>Alt+Right</source> <translation>Alt+Destra</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1022" /> <location filename="../QScintilla/MiniEditor.py" line="1021" /> - <location filename="../QScintilla/MiniEditor.py" line="1020" /> <location filename="../QScintilla/ShellWindow.py" line="607" /> <location filename="../QScintilla/ShellWindow.py" line="606" /> <location filename="../ViewManager/ViewManager.py" line="1954" /> @@ -95792,8 +95797,8 @@ <translation>Muovi a sinistra una parola</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1089" /> - <location filename="../QScintilla/MiniEditor.py" line="1033" /> + <location filename="../QScintilla/MiniEditor.py" line="1090" /> + <location filename="../QScintilla/MiniEditor.py" line="1034" /> <location filename="../QScintilla/ShellWindow.py" line="619" /> <location filename="../ViewManager/ViewManager.py" line="2018" /> <location filename="../ViewManager/ViewManager.py" line="1966" /> @@ -95801,8 +95806,8 @@ <translation>Ctrl+Left</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1042" /> <location filename="../QScintilla/MiniEditor.py" line="1041" /> - <location filename="../QScintilla/MiniEditor.py" line="1040" /> <location filename="../QScintilla/ShellWindow.py" line="627" /> <location filename="../QScintilla/ShellWindow.py" line="626" /> <location filename="../ViewManager/ViewManager.py" line="1974" /> @@ -95811,8 +95816,8 @@ <translation>Muovi a destra una parola</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1843" /> - <location filename="../QScintilla/MiniEditor.py" line="1053" /> + <location filename="../QScintilla/MiniEditor.py" line="1844" /> + <location filename="../QScintilla/MiniEditor.py" line="1054" /> <location filename="../QScintilla/ShellWindow.py" line="635" /> <location filename="../ViewManager/ViewManager.py" line="2755" /> <location filename="../ViewManager/ViewManager.py" line="1982" /> @@ -95820,8 +95825,8 @@ <translation>Ctrl+Right</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1063" /> - <location filename="../QScintilla/MiniEditor.py" line="1060" /> + <location filename="../QScintilla/MiniEditor.py" line="1064" /> + <location filename="../QScintilla/MiniEditor.py" line="1061" /> <location filename="../QScintilla/ShellWindow.py" line="645" /> <location filename="../QScintilla/ShellWindow.py" line="642" /> <location filename="../ViewManager/ViewManager.py" line="1992" /> @@ -95830,8 +95835,8 @@ <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2104" /> - <location filename="../QScintilla/MiniEditor.py" line="1073" /> + <location filename="../QScintilla/MiniEditor.py" line="2105" /> + <location filename="../QScintilla/MiniEditor.py" line="1074" /> <location filename="../QScintilla/ShellWindow.py" line="655" /> <location filename="../ViewManager/ViewManager.py" line="3016" /> <location filename="../ViewManager/ViewManager.py" line="2002" /> @@ -95839,22 +95844,22 @@ <translation>Home</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1082" /> <location filename="../QScintilla/MiniEditor.py" line="1081" /> - <location filename="../QScintilla/MiniEditor.py" line="1080" /> <location filename="../ViewManager/ViewManager.py" line="2010" /> <location filename="../ViewManager/ViewManager.py" line="2009" /> <source>Move to start of display line</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1093" /> + <location filename="../QScintilla/MiniEditor.py" line="1094" /> <location filename="../ViewManager/ViewManager.py" line="2022" /> <source>Alt+Home</source> <translation>Alt+Home</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1102" /> <location filename="../QScintilla/MiniEditor.py" line="1101" /> - <location filename="../QScintilla/MiniEditor.py" line="1100" /> <location filename="../QScintilla/ShellWindow.py" line="663" /> <location filename="../QScintilla/ShellWindow.py" line="662" /> <location filename="../ViewManager/ViewManager.py" line="2030" /> @@ -95863,15 +95868,15 @@ <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1109" /> + <location filename="../QScintilla/MiniEditor.py" line="1110" /> <location filename="../QScintilla/ShellWindow.py" line="671" /> <location filename="../ViewManager/ViewManager.py" line="2038" /> <source>Meta+E</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2121" /> - <location filename="../QScintilla/MiniEditor.py" line="1113" /> + <location filename="../QScintilla/MiniEditor.py" line="2122" /> + <location filename="../QScintilla/MiniEditor.py" line="1114" /> <location filename="../QScintilla/ShellWindow.py" line="675" /> <location filename="../ViewManager/ViewManager.py" line="3033" /> <location filename="../ViewManager/ViewManager.py" line="2042" /> @@ -95879,16 +95884,16 @@ <translation>Fine</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1122" /> <location filename="../QScintilla/MiniEditor.py" line="1121" /> - <location filename="../QScintilla/MiniEditor.py" line="1120" /> <location filename="../ViewManager/ViewManager.py" line="2050" /> <location filename="../ViewManager/ViewManager.py" line="2049" /> <source>Scroll view down one line</source> <translation>Scrolla la vista in basso di una riga</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1225" /> - <location filename="../QScintilla/MiniEditor.py" line="1122" /> + <location filename="../QScintilla/MiniEditor.py" line="1226" /> + <location filename="../QScintilla/MiniEditor.py" line="1123" /> <location filename="../QScintilla/ShellWindow.py" line="716" /> <location filename="../ViewManager/ViewManager.py" line="2154" /> <location filename="../ViewManager/ViewManager.py" line="2051" /> @@ -95896,16 +95901,16 @@ <translation>Ctrl+Down</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1134" /> <location filename="../QScintilla/MiniEditor.py" line="1133" /> - <location filename="../QScintilla/MiniEditor.py" line="1132" /> <location filename="../ViewManager/ViewManager.py" line="2062" /> <location filename="../ViewManager/ViewManager.py" line="2061" /> <source>Scroll view up one line</source> <translation>Scrolla la vista in alto di una riga</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1205" /> - <location filename="../QScintilla/MiniEditor.py" line="1134" /> + <location filename="../QScintilla/MiniEditor.py" line="1206" /> + <location filename="../QScintilla/MiniEditor.py" line="1135" /> <location filename="../QScintilla/ShellWindow.py" line="728" /> <location filename="../ViewManager/ViewManager.py" line="2134" /> <location filename="../ViewManager/ViewManager.py" line="2063" /> @@ -95913,36 +95918,36 @@ <translation>Ctrl+Up</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1146" /> <location filename="../QScintilla/MiniEditor.py" line="1145" /> - <location filename="../QScintilla/MiniEditor.py" line="1144" /> <location filename="../ViewManager/ViewManager.py" line="2074" /> <location filename="../ViewManager/ViewManager.py" line="2073" /> <source>Move up one paragraph</source> <translation>Muovi in alto di un paragrafo</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1146" /> + <location filename="../QScintilla/MiniEditor.py" line="1147" /> <location filename="../ViewManager/ViewManager.py" line="2075" /> <source>Alt+Up</source> <translation>Alt+Up</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1158" /> <location filename="../QScintilla/MiniEditor.py" line="1157" /> - <location filename="../QScintilla/MiniEditor.py" line="1156" /> <location filename="../ViewManager/ViewManager.py" line="2086" /> <location filename="../ViewManager/ViewManager.py" line="2085" /> <source>Move down one paragraph</source> <translation>Muovi in basso di un paragrafo</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1158" /> + <location filename="../QScintilla/MiniEditor.py" line="1159" /> <location filename="../ViewManager/ViewManager.py" line="2087" /> <source>Alt+Down</source> <translation>Alt+Down</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1170" /> <location filename="../QScintilla/MiniEditor.py" line="1169" /> - <location filename="../QScintilla/MiniEditor.py" line="1168" /> <location filename="../QScintilla/ShellWindow.py" line="739" /> <location filename="../QScintilla/ShellWindow.py" line="738" /> <location filename="../ViewManager/ViewManager.py" line="2098" /> @@ -95951,15 +95956,15 @@ <translation>Muovi in alto di una pagina</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1170" /> + <location filename="../QScintilla/MiniEditor.py" line="1171" /> <location filename="../QScintilla/ShellWindow.py" line="740" /> <location filename="../ViewManager/ViewManager.py" line="2099" /> <source>PgUp</source> <translation>PgUp</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1182" /> <location filename="../QScintilla/MiniEditor.py" line="1181" /> - <location filename="../QScintilla/MiniEditor.py" line="1180" /> <location filename="../QScintilla/ShellWindow.py" line="751" /> <location filename="../QScintilla/ShellWindow.py" line="750" /> <location filename="../ViewManager/ViewManager.py" line="2110" /> @@ -95968,50 +95973,50 @@ <translation>Muovi in basso di una pagina</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1182" /> + <location filename="../QScintilla/MiniEditor.py" line="1183" /> <location filename="../QScintilla/ShellWindow.py" line="752" /> <location filename="../ViewManager/ViewManager.py" line="2111" /> <source>PgDown</source> <translation>PgDown</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1189" /> + <location filename="../QScintilla/MiniEditor.py" line="1190" /> <location filename="../QScintilla/ShellWindow.py" line="759" /> <location filename="../ViewManager/ViewManager.py" line="2118" /> <source>Meta+V</source> <translation type="unfinished" /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1198" /> <location filename="../QScintilla/MiniEditor.py" line="1197" /> - <location filename="../QScintilla/MiniEditor.py" line="1196" /> <location filename="../ViewManager/ViewManager.py" line="2126" /> <location filename="../ViewManager/ViewManager.py" line="2125" /> <source>Move to start of document</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1209" /> + <location filename="../QScintilla/MiniEditor.py" line="1210" /> <location filename="../ViewManager/ViewManager.py" line="2138" /> <source>Ctrl+Home</source> <translation>Ctrl+Home</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1218" /> <location filename="../QScintilla/MiniEditor.py" line="1217" /> - <location filename="../QScintilla/MiniEditor.py" line="1216" /> <location filename="../ViewManager/ViewManager.py" line="2146" /> <location filename="../ViewManager/ViewManager.py" line="2145" /> <source>Move to end of document</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1229" /> + <location filename="../QScintilla/MiniEditor.py" line="1230" /> <location filename="../ViewManager/ViewManager.py" line="2158" /> <source>Ctrl+End</source> <translation>Ctrl+End</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1238" /> <location filename="../QScintilla/MiniEditor.py" line="1237" /> - <location filename="../QScintilla/MiniEditor.py" line="1236" /> <location filename="../QScintilla/ShellWindow.py" line="453" /> <location filename="../QScintilla/ShellWindow.py" line="452" /> <location filename="../ViewManager/ViewManager.py" line="2166" /> @@ -96020,29 +96025,29 @@ <translation>Indenta un livello</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1238" /> + <location filename="../QScintilla/MiniEditor.py" line="1239" /> <location filename="../QScintilla/ShellWindow.py" line="454" /> <location filename="../ViewManager/ViewManager.py" line="2167" /> <source>Tab</source> <translation>Tab</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1250" /> <location filename="../QScintilla/MiniEditor.py" line="1249" /> - <location filename="../QScintilla/MiniEditor.py" line="1248" /> <location filename="../ViewManager/ViewManager.py" line="2178" /> <location filename="../ViewManager/ViewManager.py" line="2177" /> <source>Unindent one level</source> <translation>Deindenta di un livello</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1250" /> + <location filename="../QScintilla/MiniEditor.py" line="1251" /> <location filename="../ViewManager/ViewManager.py" line="2179" /> <source>Shift+Tab</source> <translation>Shift+Tab</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1263" /> - <location filename="../QScintilla/MiniEditor.py" line="1260" /> + <location filename="../QScintilla/MiniEditor.py" line="1264" /> + <location filename="../QScintilla/MiniEditor.py" line="1261" /> <location filename="../QScintilla/ShellWindow.py" line="781" /> <location filename="../QScintilla/ShellWindow.py" line="778" /> <location filename="../ViewManager/ViewManager.py" line="2192" /> @@ -96051,22 +96056,22 @@ <translation>Estendi la selezione a sinistra di un carattere</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1266" /> + <location filename="../QScintilla/MiniEditor.py" line="1267" /> <location filename="../QScintilla/ShellWindow.py" line="784" /> <location filename="../ViewManager/ViewManager.py" line="2195" /> <source>Shift+Left</source> <translation>Shift+Left</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1273" /> + <location filename="../QScintilla/MiniEditor.py" line="1274" /> <location filename="../QScintilla/ShellWindow.py" line="791" /> <location filename="../ViewManager/ViewManager.py" line="2202" /> <source>Meta+Shift+B</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1283" /> - <location filename="../QScintilla/MiniEditor.py" line="1280" /> + <location filename="../QScintilla/MiniEditor.py" line="1284" /> + <location filename="../QScintilla/MiniEditor.py" line="1281" /> <location filename="../QScintilla/ShellWindow.py" line="801" /> <location filename="../QScintilla/ShellWindow.py" line="798" /> <location filename="../ViewManager/ViewManager.py" line="2212" /> @@ -96075,70 +96080,70 @@ <translation>Estendi la selezione a destra di un carattere</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1286" /> + <location filename="../QScintilla/MiniEditor.py" line="1287" /> <location filename="../QScintilla/ShellWindow.py" line="804" /> <location filename="../ViewManager/ViewManager.py" line="2215" /> <source>Shift+Right</source> <translation>Shift+Right</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1293" /> + <location filename="../QScintilla/MiniEditor.py" line="1294" /> <location filename="../QScintilla/ShellWindow.py" line="811" /> <location filename="../ViewManager/ViewManager.py" line="2222" /> <source>Meta+Shift+F</source> <translation type="unfinished" /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1302" /> <location filename="../QScintilla/MiniEditor.py" line="1301" /> - <location filename="../QScintilla/MiniEditor.py" line="1300" /> <location filename="../ViewManager/ViewManager.py" line="2230" /> <location filename="../ViewManager/ViewManager.py" line="2229" /> <source>Extend selection up one line</source> <translation>Estendi selezione in alto di una riga</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1302" /> + <location filename="../QScintilla/MiniEditor.py" line="1303" /> <location filename="../ViewManager/ViewManager.py" line="2231" /> <source>Shift+Up</source> <translation>Shift+Up</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1309" /> + <location filename="../QScintilla/MiniEditor.py" line="1310" /> <location filename="../ViewManager/ViewManager.py" line="2238" /> <source>Meta+Shift+P</source> <translation type="unfinished" /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1318" /> <location filename="../QScintilla/MiniEditor.py" line="1317" /> - <location filename="../QScintilla/MiniEditor.py" line="1316" /> <location filename="../ViewManager/ViewManager.py" line="2246" /> <location filename="../ViewManager/ViewManager.py" line="2245" /> <source>Extend selection down one line</source> <translation>Estendi selezione in basso di una riga</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1318" /> + <location filename="../QScintilla/MiniEditor.py" line="1319" /> <location filename="../ViewManager/ViewManager.py" line="2247" /> <source>Shift+Down</source> <translation>Shift+Down</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1325" /> + <location filename="../QScintilla/MiniEditor.py" line="1326" /> <location filename="../ViewManager/ViewManager.py" line="2254" /> <source>Meta+Shift+N</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1335" /> - <location filename="../QScintilla/MiniEditor.py" line="1332" /> + <location filename="../QScintilla/MiniEditor.py" line="1336" /> + <location filename="../QScintilla/MiniEditor.py" line="1333" /> <location filename="../ViewManager/ViewManager.py" line="2264" /> <location filename="../ViewManager/ViewManager.py" line="2261" /> <source>Extend selection left one word part</source> <translation>Estendi la selezione a sinistra di una parte di parola</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1386" /> - <location filename="../QScintilla/MiniEditor.py" line="1346" /> + <location filename="../QScintilla/MiniEditor.py" line="1387" /> + <location filename="../QScintilla/MiniEditor.py" line="1347" /> <location filename="../QScintilla/ShellWindow.py" line="828" /> <location filename="../ViewManager/ViewManager.py" line="2315" /> <location filename="../ViewManager/ViewManager.py" line="2275" /> @@ -96146,17 +96151,17 @@ <translation>Alt+Shift+Left</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1357" /> - <location filename="../QScintilla/MiniEditor.py" line="1354" /> + <location filename="../QScintilla/MiniEditor.py" line="1358" /> + <location filename="../QScintilla/MiniEditor.py" line="1355" /> <location filename="../ViewManager/ViewManager.py" line="2286" /> <location filename="../ViewManager/ViewManager.py" line="2283" /> <source>Extend selection right one word part</source> <translation>Estendi la selezione a destra di una parte di parola</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2181" /> - <location filename="../QScintilla/MiniEditor.py" line="1414" /> - <location filename="../QScintilla/MiniEditor.py" line="1368" /> + <location filename="../QScintilla/MiniEditor.py" line="2182" /> + <location filename="../QScintilla/MiniEditor.py" line="1415" /> + <location filename="../QScintilla/MiniEditor.py" line="1369" /> <location filename="../QScintilla/ShellWindow.py" line="856" /> <location filename="../ViewManager/ViewManager.py" line="3093" /> <location filename="../ViewManager/ViewManager.py" line="2343" /> @@ -96165,8 +96170,8 @@ <translation>Alt+Shift+Right</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1378" /> <location filename="../QScintilla/MiniEditor.py" line="1377" /> - <location filename="../QScintilla/MiniEditor.py" line="1376" /> <location filename="../QScintilla/ShellWindow.py" line="819" /> <location filename="../QScintilla/ShellWindow.py" line="818" /> <location filename="../ViewManager/ViewManager.py" line="2306" /> @@ -96175,8 +96180,8 @@ <translation>Estendi la selezione a sinistra di una parola</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2307" /> - <location filename="../QScintilla/MiniEditor.py" line="1392" /> + <location filename="../QScintilla/MiniEditor.py" line="2308" /> + <location filename="../QScintilla/MiniEditor.py" line="1393" /> <location filename="../QScintilla/ShellWindow.py" line="834" /> <location filename="../ViewManager/ViewManager.py" line="3219" /> <location filename="../ViewManager/ViewManager.py" line="2321" /> @@ -96184,8 +96189,8 @@ <translation>Ctrl+Shift+Left</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1403" /> - <location filename="../QScintilla/MiniEditor.py" line="1400" /> + <location filename="../QScintilla/MiniEditor.py" line="1404" /> + <location filename="../QScintilla/MiniEditor.py" line="1401" /> <location filename="../QScintilla/ShellWindow.py" line="845" /> <location filename="../QScintilla/ShellWindow.py" line="842" /> <location filename="../ViewManager/ViewManager.py" line="2332" /> @@ -96194,8 +96199,8 @@ <translation>Estendi la selezione a destra di una parola</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1868" /> - <location filename="../QScintilla/MiniEditor.py" line="1420" /> + <location filename="../QScintilla/MiniEditor.py" line="1869" /> + <location filename="../QScintilla/MiniEditor.py" line="1421" /> <location filename="../QScintilla/ShellWindow.py" line="862" /> <location filename="../ViewManager/ViewManager.py" line="2780" /> <location filename="../ViewManager/ViewManager.py" line="2349" /> @@ -96203,8 +96208,8 @@ <translation>Ctrl+Shift+Right</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1432" /> - <location filename="../QScintilla/MiniEditor.py" line="1428" /> + <location filename="../QScintilla/MiniEditor.py" line="1433" /> + <location filename="../QScintilla/MiniEditor.py" line="1429" /> <location filename="../QScintilla/ShellWindow.py" line="874" /> <location filename="../QScintilla/ShellWindow.py" line="870" /> <location filename="../ViewManager/ViewManager.py" line="2361" /> @@ -96213,15 +96218,15 @@ <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1443" /> + <location filename="../QScintilla/MiniEditor.py" line="1444" /> <location filename="../QScintilla/ShellWindow.py" line="885" /> <location filename="../ViewManager/ViewManager.py" line="2372" /> <source>Shift+Home</source> <translation>Shift+Home</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1453" /> - <location filename="../QScintilla/MiniEditor.py" line="1450" /> + <location filename="../QScintilla/MiniEditor.py" line="1454" /> + <location filename="../QScintilla/MiniEditor.py" line="1451" /> <location filename="../QScintilla/ShellWindow.py" line="895" /> <location filename="../QScintilla/ShellWindow.py" line="892" /> <location filename="../ViewManager/ViewManager.py" line="2382" /> @@ -96230,124 +96235,124 @@ <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1463" /> + <location filename="../QScintilla/MiniEditor.py" line="1464" /> <location filename="../QScintilla/ShellWindow.py" line="905" /> <location filename="../ViewManager/ViewManager.py" line="2392" /> <source>Meta+Shift+E</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1467" /> + <location filename="../QScintilla/MiniEditor.py" line="1468" /> <location filename="../QScintilla/ShellWindow.py" line="909" /> <location filename="../ViewManager/ViewManager.py" line="2396" /> <source>Shift+End</source> <translation>Shift+End</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1477" /> - <location filename="../QScintilla/MiniEditor.py" line="1474" /> + <location filename="../QScintilla/MiniEditor.py" line="1478" /> + <location filename="../QScintilla/MiniEditor.py" line="1475" /> <location filename="../ViewManager/ViewManager.py" line="2406" /> <location filename="../ViewManager/ViewManager.py" line="2403" /> <source>Extend selection up one paragraph</source> <translation>Estendi selezione in alto di un paragrafo</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1480" /> + <location filename="../QScintilla/MiniEditor.py" line="1481" /> <location filename="../ViewManager/ViewManager.py" line="2409" /> <source>Alt+Shift+Up</source> <translation>Alt+Shift+Up</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1493" /> - <location filename="../QScintilla/MiniEditor.py" line="1490" /> + <location filename="../QScintilla/MiniEditor.py" line="1494" /> + <location filename="../QScintilla/MiniEditor.py" line="1491" /> <location filename="../ViewManager/ViewManager.py" line="2422" /> <location filename="../ViewManager/ViewManager.py" line="2419" /> <source>Extend selection down one paragraph</source> <translation>Estendi selezione in basso di un paragrafo</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1496" /> + <location filename="../QScintilla/MiniEditor.py" line="1497" /> <location filename="../ViewManager/ViewManager.py" line="2425" /> <source>Alt+Shift+Down</source> <translation>Alt+Shift+Down</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1508" /> <location filename="../QScintilla/MiniEditor.py" line="1507" /> - <location filename="../QScintilla/MiniEditor.py" line="1506" /> <location filename="../ViewManager/ViewManager.py" line="2436" /> <location filename="../ViewManager/ViewManager.py" line="2435" /> <source>Extend selection up one page</source> <translation>Estendi selezione in alto di una pagina</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1508" /> + <location filename="../QScintilla/MiniEditor.py" line="1509" /> <location filename="../ViewManager/ViewManager.py" line="2437" /> <source>Shift+PgUp</source> <translation>Shift+PgUp</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1520" /> <location filename="../QScintilla/MiniEditor.py" line="1519" /> - <location filename="../QScintilla/MiniEditor.py" line="1518" /> <location filename="../ViewManager/ViewManager.py" line="2448" /> <location filename="../ViewManager/ViewManager.py" line="2447" /> <source>Extend selection down one page</source> <translation>Estendi selezione in basso di una pagina</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1520" /> + <location filename="../QScintilla/MiniEditor.py" line="1521" /> <location filename="../ViewManager/ViewManager.py" line="2449" /> <source>Shift+PgDown</source> <translation>Shift+PgDown</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1527" /> + <location filename="../QScintilla/MiniEditor.py" line="1528" /> <location filename="../ViewManager/ViewManager.py" line="2456" /> <source>Meta+Shift+V</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1537" /> - <location filename="../QScintilla/MiniEditor.py" line="1534" /> + <location filename="../QScintilla/MiniEditor.py" line="1538" /> + <location filename="../QScintilla/MiniEditor.py" line="1535" /> <location filename="../ViewManager/ViewManager.py" line="2466" /> <location filename="../ViewManager/ViewManager.py" line="2463" /> <source>Extend selection to start of document</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1547" /> + <location filename="../QScintilla/MiniEditor.py" line="1548" /> <location filename="../ViewManager/ViewManager.py" line="2476" /> <source>Ctrl+Shift+Up</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1552" /> + <location filename="../QScintilla/MiniEditor.py" line="1553" /> <location filename="../ViewManager/ViewManager.py" line="2481" /> <source>Ctrl+Shift+Home</source> <translation>Ctrl+Shift+Home</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1563" /> - <location filename="../QScintilla/MiniEditor.py" line="1560" /> + <location filename="../QScintilla/MiniEditor.py" line="1564" /> + <location filename="../QScintilla/MiniEditor.py" line="1561" /> <location filename="../ViewManager/ViewManager.py" line="2492" /> <location filename="../ViewManager/ViewManager.py" line="2489" /> <source>Extend selection to end of document</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1574" /> + <location filename="../QScintilla/MiniEditor.py" line="1575" /> <location filename="../ViewManager/ViewManager.py" line="2503" /> <source>Ctrl+Shift+Down</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1580" /> + <location filename="../QScintilla/MiniEditor.py" line="1581" /> <location filename="../ViewManager/ViewManager.py" line="2509" /> <source>Ctrl+Shift+End</source> <translation>Ctrl+Shift+End</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1590" /> <location filename="../QScintilla/MiniEditor.py" line="1589" /> - <location filename="../QScintilla/MiniEditor.py" line="1588" /> <location filename="../QScintilla/ShellWindow.py" line="477" /> <location filename="../QScintilla/ShellWindow.py" line="476" /> <location filename="../ViewManager/ViewManager.py" line="2518" /> @@ -96356,37 +96361,37 @@ <translation>Cancella caratteri precedenti</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1590" /> + <location filename="../QScintilla/MiniEditor.py" line="1591" /> <location filename="../QScintilla/ShellWindow.py" line="478" /> <location filename="../ViewManager/ViewManager.py" line="2519" /> <source>Backspace</source> <translation>Backspace</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1597" /> + <location filename="../QScintilla/MiniEditor.py" line="1598" /> <location filename="../QScintilla/ShellWindow.py" line="485" /> <location filename="../ViewManager/ViewManager.py" line="2526" /> <source>Meta+H</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1602" /> + <location filename="../QScintilla/MiniEditor.py" line="1603" /> <location filename="../QScintilla/ShellWindow.py" line="490" /> <location filename="../ViewManager/ViewManager.py" line="2531" /> <source>Shift+Backspace</source> <translation>Shift+Backspace</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1613" /> - <location filename="../QScintilla/MiniEditor.py" line="1610" /> + <location filename="../QScintilla/MiniEditor.py" line="1614" /> + <location filename="../QScintilla/MiniEditor.py" line="1611" /> <location filename="../ViewManager/ViewManager.py" line="2542" /> <location filename="../ViewManager/ViewManager.py" line="2539" /> <source>Delete previous character if not at start of line</source> <translation type="unfinished" /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1628" /> <location filename="../QScintilla/MiniEditor.py" line="1627" /> - <location filename="../QScintilla/MiniEditor.py" line="1626" /> <location filename="../QScintilla/ShellWindow.py" line="499" /> <location filename="../QScintilla/ShellWindow.py" line="498" /> <location filename="../ViewManager/ViewManager.py" line="2556" /> @@ -96395,22 +96400,22 @@ <translation>Cancella il carattere corrente</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1628" /> + <location filename="../QScintilla/MiniEditor.py" line="1629" /> <location filename="../QScintilla/ShellWindow.py" line="500" /> <location filename="../ViewManager/ViewManager.py" line="2557" /> <source>Del</source> <translation>Del</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1635" /> + <location filename="../QScintilla/MiniEditor.py" line="1636" /> <location filename="../QScintilla/ShellWindow.py" line="507" /> <location filename="../ViewManager/ViewManager.py" line="2564" /> <source>Meta+D</source> <translation type="unfinished" /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1644" /> <location filename="../QScintilla/MiniEditor.py" line="1643" /> - <location filename="../QScintilla/MiniEditor.py" line="1642" /> <location filename="../QScintilla/ShellWindow.py" line="515" /> <location filename="../QScintilla/ShellWindow.py" line="514" /> <location filename="../ViewManager/ViewManager.py" line="2572" /> @@ -96419,15 +96424,15 @@ <translation>Cancella parola a sinistra</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1644" /> + <location filename="../QScintilla/MiniEditor.py" line="1645" /> <location filename="../QScintilla/ShellWindow.py" line="516" /> <location filename="../ViewManager/ViewManager.py" line="2573" /> <source>Ctrl+Backspace</source> <translation>Ctrl+Backspace</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1656" /> <location filename="../QScintilla/MiniEditor.py" line="1655" /> - <location filename="../QScintilla/MiniEditor.py" line="1654" /> <location filename="../QScintilla/ShellWindow.py" line="527" /> <location filename="../QScintilla/ShellWindow.py" line="526" /> <location filename="../ViewManager/ViewManager.py" line="2584" /> @@ -96436,15 +96441,15 @@ <translation>Cancella parola a destra</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1656" /> + <location filename="../QScintilla/MiniEditor.py" line="1657" /> <location filename="../QScintilla/ShellWindow.py" line="528" /> <location filename="../ViewManager/ViewManager.py" line="2585" /> <source>Ctrl+Del</source> <translation>Ctrl+Del</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1668" /> <location filename="../QScintilla/MiniEditor.py" line="1667" /> - <location filename="../QScintilla/MiniEditor.py" line="1666" /> <location filename="../QScintilla/ShellWindow.py" line="539" /> <location filename="../QScintilla/ShellWindow.py" line="538" /> <location filename="../ViewManager/ViewManager.py" line="2596" /> @@ -96453,15 +96458,15 @@ <translation>Cancella riga a sinistra</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1669" /> + <location filename="../QScintilla/MiniEditor.py" line="1670" /> <location filename="../QScintilla/ShellWindow.py" line="541" /> <location filename="../ViewManager/ViewManager.py" line="2598" /> <source>Ctrl+Shift+Backspace</source> <translation>Ctrl+Shift+Backspace</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1682" /> <location filename="../QScintilla/MiniEditor.py" line="1681" /> - <location filename="../QScintilla/MiniEditor.py" line="1680" /> <location filename="../QScintilla/ShellWindow.py" line="553" /> <location filename="../QScintilla/ShellWindow.py" line="552" /> <location filename="../ViewManager/ViewManager.py" line="2610" /> @@ -96470,22 +96475,22 @@ <translation>Cancella riga a destra</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1689" /> + <location filename="../QScintilla/MiniEditor.py" line="1690" /> <location filename="../QScintilla/ShellWindow.py" line="561" /> <location filename="../ViewManager/ViewManager.py" line="2618" /> <source>Meta+K</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1694" /> + <location filename="../QScintilla/MiniEditor.py" line="1695" /> <location filename="../QScintilla/ShellWindow.py" line="566" /> <location filename="../ViewManager/ViewManager.py" line="2623" /> <source>Ctrl+Shift+Del</source> <translation>Ctrl+Shift+Del</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1704" /> <location filename="../QScintilla/MiniEditor.py" line="1703" /> - <location filename="../QScintilla/MiniEditor.py" line="1702" /> <location filename="../QScintilla/ShellWindow.py" line="465" /> <location filename="../QScintilla/ShellWindow.py" line="464" /> <location filename="../ViewManager/ViewManager.py" line="2632" /> @@ -96494,14 +96499,14 @@ <translation>Inserisci riga</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1704" /> + <location filename="../QScintilla/MiniEditor.py" line="1705" /> <location filename="../QScintilla/ShellWindow.py" line="466" /> <location filename="../ViewManager/ViewManager.py" line="2633" /> <source>Return</source> <translation>Return</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1705" /> + <location filename="../QScintilla/MiniEditor.py" line="1706" /> <location filename="../QScintilla/ShellWindow.py" line="467" /> <location filename="../ViewManager/ViewManager.py" line="2634" /> <source>Enter</source> @@ -96524,8 +96529,8 @@ <translation>Shift+Enter</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1716" /> <location filename="../QScintilla/MiniEditor.py" line="1715" /> - <location filename="../QScintilla/MiniEditor.py" line="1714" /> <location filename="../QScintilla/ShellWindow.py" line="441" /> <location filename="../QScintilla/ShellWindow.py" line="440" /> <location filename="../ViewManager/ViewManager.py" line="2659" /> @@ -96534,129 +96539,129 @@ <translation>Cancella riga</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1716" /> + <location filename="../QScintilla/MiniEditor.py" line="1717" /> <location filename="../QScintilla/ShellWindow.py" line="442" /> <location filename="../ViewManager/ViewManager.py" line="2660" /> <source>Ctrl+Shift+L</source> <translation>Ctrl+Shift+L</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1728" /> <location filename="../QScintilla/MiniEditor.py" line="1727" /> - <location filename="../QScintilla/MiniEditor.py" line="1726" /> <location filename="../ViewManager/ViewManager.py" line="2671" /> <location filename="../ViewManager/ViewManager.py" line="2670" /> <source>Duplicate current line</source> <translation>Duplica riga</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1728" /> + <location filename="../QScintilla/MiniEditor.py" line="1729" /> <location filename="../ViewManager/ViewManager.py" line="2672" /> <source>Ctrl+D</source> <translation>Ctrl+D</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1741" /> - <location filename="../QScintilla/MiniEditor.py" line="1738" /> + <location filename="../QScintilla/MiniEditor.py" line="1742" /> + <location filename="../QScintilla/MiniEditor.py" line="1739" /> <location filename="../ViewManager/ViewManager.py" line="2685" /> <location filename="../ViewManager/ViewManager.py" line="2682" /> <source>Swap current and previous lines</source> <translation>Scambia la riga con quella precedente</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1744" /> + <location filename="../QScintilla/MiniEditor.py" line="1745" /> <location filename="../ViewManager/ViewManager.py" line="2688" /> <source>Ctrl+T</source> <translation>Ctrl+T</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1756" /> <location filename="../QScintilla/MiniEditor.py" line="1755" /> - <location filename="../QScintilla/MiniEditor.py" line="1754" /> <location filename="../ViewManager/ViewManager.py" line="2699" /> <location filename="../ViewManager/ViewManager.py" line="2698" /> <source>Reverse selected lines</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1756" /> + <location filename="../QScintilla/MiniEditor.py" line="1757" /> <location filename="../ViewManager/ViewManager.py" line="2700" /> <source>Meta+Alt+R</source> <translation type="unfinished" /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1768" /> <location filename="../QScintilla/MiniEditor.py" line="1767" /> - <location filename="../QScintilla/MiniEditor.py" line="1766" /> <location filename="../ViewManager/ViewManager.py" line="2711" /> <location filename="../ViewManager/ViewManager.py" line="2710" /> <source>Cut current line</source> <translation>Taglia riga</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1768" /> + <location filename="../QScintilla/MiniEditor.py" line="1769" /> <location filename="../ViewManager/ViewManager.py" line="2712" /> <source>Alt+Shift+L</source> <translation>Alt+Shift+L</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1780" /> <location filename="../QScintilla/MiniEditor.py" line="1779" /> - <location filename="../QScintilla/MiniEditor.py" line="1778" /> <location filename="../ViewManager/ViewManager.py" line="2723" /> <location filename="../ViewManager/ViewManager.py" line="2722" /> <source>Copy current line</source> <translation>Copia riga</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1780" /> + <location filename="../QScintilla/MiniEditor.py" line="1781" /> <location filename="../ViewManager/ViewManager.py" line="2724" /> <source>Ctrl+Shift+T</source> <translation>Ctrl+Shift+T</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1792" /> <location filename="../QScintilla/MiniEditor.py" line="1791" /> - <location filename="../QScintilla/MiniEditor.py" line="1790" /> <location filename="../ViewManager/ViewManager.py" line="2735" /> <location filename="../ViewManager/ViewManager.py" line="2734" /> <source>Toggle insert/overtype</source> <translation>Scambia inserisci/sovrascrivi</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1792" /> + <location filename="../QScintilla/MiniEditor.py" line="1793" /> <location filename="../ViewManager/ViewManager.py" line="2736" /> <source>Ins</source> <translation>Ins</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1836" /> <location filename="../QScintilla/MiniEditor.py" line="1835" /> - <location filename="../QScintilla/MiniEditor.py" line="1834" /> <location filename="../ViewManager/ViewManager.py" line="2747" /> <location filename="../ViewManager/ViewManager.py" line="2746" /> <source>Move to end of display line</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1847" /> + <location filename="../QScintilla/MiniEditor.py" line="1848" /> <location filename="../ViewManager/ViewManager.py" line="2759" /> <source>Alt+End</source> <translation>Alt+End</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1857" /> - <location filename="../QScintilla/MiniEditor.py" line="1854" /> + <location filename="../QScintilla/MiniEditor.py" line="1858" /> + <location filename="../QScintilla/MiniEditor.py" line="1855" /> <location filename="../ViewManager/ViewManager.py" line="2769" /> <location filename="../ViewManager/ViewManager.py" line="2766" /> <source>Extend selection to end of display line</source> <translation type="unfinished" /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1878" /> <location filename="../QScintilla/MiniEditor.py" line="1877" /> - <location filename="../QScintilla/MiniEditor.py" line="1876" /> <location filename="../ViewManager/ViewManager.py" line="2789" /> <location filename="../ViewManager/ViewManager.py" line="2788" /> <source>Formfeed</source> <translation>Formfeed</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1890" /> <location filename="../QScintilla/MiniEditor.py" line="1889" /> - <location filename="../QScintilla/MiniEditor.py" line="1888" /> <location filename="../QScintilla/ShellWindow.py" line="767" /> <location filename="../QScintilla/ShellWindow.py" line="766" /> <location filename="../ViewManager/ViewManager.py" line="2801" /> @@ -96665,423 +96670,423 @@ <translation>Escape</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1890" /> + <location filename="../QScintilla/MiniEditor.py" line="1891" /> <location filename="../QScintilla/ShellWindow.py" line="768" /> <location filename="../ViewManager/ViewManager.py" line="2802" /> <source>Esc</source> <translation>Esc</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1903" /> - <location filename="../QScintilla/MiniEditor.py" line="1900" /> + <location filename="../QScintilla/MiniEditor.py" line="1904" /> + <location filename="../QScintilla/MiniEditor.py" line="1901" /> <location filename="../ViewManager/ViewManager.py" line="2815" /> <location filename="../ViewManager/ViewManager.py" line="2812" /> <source>Extend rectangular selection down one line</source> <translation>Estendi selezione rettagolare in basso di una riga</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1906" /> + <location filename="../QScintilla/MiniEditor.py" line="1907" /> <location filename="../ViewManager/ViewManager.py" line="2818" /> <source>Alt+Ctrl+Down</source> <translation>Alt+Ctrl+Down</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1914" /> + <location filename="../QScintilla/MiniEditor.py" line="1915" /> <location filename="../ViewManager/ViewManager.py" line="2826" /> <source>Meta+Alt+Shift+N</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1925" /> - <location filename="../QScintilla/MiniEditor.py" line="1922" /> + <location filename="../QScintilla/MiniEditor.py" line="1926" /> + <location filename="../QScintilla/MiniEditor.py" line="1923" /> <location filename="../ViewManager/ViewManager.py" line="2837" /> <location filename="../ViewManager/ViewManager.py" line="2834" /> <source>Extend rectangular selection up one line</source> <translation>Estendi selezione rettagolare in alto di una riga</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1928" /> + <location filename="../QScintilla/MiniEditor.py" line="1929" /> <location filename="../ViewManager/ViewManager.py" line="2840" /> <source>Alt+Ctrl+Up</source> <translation>Alt+Ctrl+Up</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1936" /> + <location filename="../QScintilla/MiniEditor.py" line="1937" /> <location filename="../ViewManager/ViewManager.py" line="2848" /> <source>Meta+Alt+Shift+P</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1947" /> - <location filename="../QScintilla/MiniEditor.py" line="1944" /> + <location filename="../QScintilla/MiniEditor.py" line="1948" /> + <location filename="../QScintilla/MiniEditor.py" line="1945" /> <location filename="../ViewManager/ViewManager.py" line="2859" /> <location filename="../ViewManager/ViewManager.py" line="2856" /> <source>Extend rectangular selection left one character</source> <translation>Estendi selezione rettagolare a sinistra di un carattere</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1950" /> + <location filename="../QScintilla/MiniEditor.py" line="1951" /> <location filename="../ViewManager/ViewManager.py" line="2862" /> <source>Alt+Ctrl+Left</source> <translation>Alt+Ctrl+Left</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1958" /> + <location filename="../QScintilla/MiniEditor.py" line="1959" /> <location filename="../ViewManager/ViewManager.py" line="2870" /> <source>Meta+Alt+Shift+B</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1969" /> - <location filename="../QScintilla/MiniEditor.py" line="1966" /> + <location filename="../QScintilla/MiniEditor.py" line="1970" /> + <location filename="../QScintilla/MiniEditor.py" line="1967" /> <location filename="../ViewManager/ViewManager.py" line="2881" /> <location filename="../ViewManager/ViewManager.py" line="2878" /> <source>Extend rectangular selection right one character</source> <translation>Estendi selezione rettagolare a destra di un carattere</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1972" /> + <location filename="../QScintilla/MiniEditor.py" line="1973" /> <location filename="../ViewManager/ViewManager.py" line="2884" /> <source>Alt+Ctrl+Right</source> <translation>Alt+Ctrl+Right</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1980" /> + <location filename="../QScintilla/MiniEditor.py" line="1981" /> <location filename="../ViewManager/ViewManager.py" line="2892" /> <source>Meta+Alt+Shift+F</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1993" /> - <location filename="../QScintilla/MiniEditor.py" line="1988" /> + <location filename="../QScintilla/MiniEditor.py" line="1994" /> + <location filename="../QScintilla/MiniEditor.py" line="1989" /> <location filename="../ViewManager/ViewManager.py" line="2905" /> <location filename="../ViewManager/ViewManager.py" line="2900" /> <source>Extend rectangular selection to first visible character in document line</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2006" /> + <location filename="../QScintilla/MiniEditor.py" line="2007" /> <location filename="../ViewManager/ViewManager.py" line="2918" /> <source>Alt+Shift+Home</source> <translation>Alt+Shift+Home</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2017" /> - <location filename="../QScintilla/MiniEditor.py" line="2014" /> + <location filename="../QScintilla/MiniEditor.py" line="2018" /> + <location filename="../QScintilla/MiniEditor.py" line="2015" /> <location filename="../ViewManager/ViewManager.py" line="2929" /> <location filename="../ViewManager/ViewManager.py" line="2926" /> <source>Extend rectangular selection to end of document line</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2028" /> + <location filename="../QScintilla/MiniEditor.py" line="2029" /> <location filename="../ViewManager/ViewManager.py" line="2940" /> <source>Meta+Alt+Shift+E</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2033" /> + <location filename="../QScintilla/MiniEditor.py" line="2034" /> <location filename="../ViewManager/ViewManager.py" line="2945" /> <source>Alt+Shift+End</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2043" /> - <location filename="../QScintilla/MiniEditor.py" line="2040" /> + <location filename="../QScintilla/MiniEditor.py" line="2044" /> + <location filename="../QScintilla/MiniEditor.py" line="2041" /> <location filename="../ViewManager/ViewManager.py" line="2955" /> <location filename="../ViewManager/ViewManager.py" line="2952" /> <source>Extend rectangular selection up one page</source> <translation>Estendi selezione rettagolare in alto di una pagina</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2046" /> + <location filename="../QScintilla/MiniEditor.py" line="2047" /> <location filename="../ViewManager/ViewManager.py" line="2958" /> <source>Alt+Shift+PgUp</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2059" /> - <location filename="../QScintilla/MiniEditor.py" line="2056" /> + <location filename="../QScintilla/MiniEditor.py" line="2060" /> + <location filename="../QScintilla/MiniEditor.py" line="2057" /> <location filename="../ViewManager/ViewManager.py" line="2971" /> <location filename="../ViewManager/ViewManager.py" line="2968" /> <source>Extend rectangular selection down one page</source> <translation>Estendi selezione rettagolare in basso di una pagina</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2062" /> + <location filename="../QScintilla/MiniEditor.py" line="2063" /> <location filename="../ViewManager/ViewManager.py" line="2974" /> <source>Alt+Shift+PgDown</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2070" /> + <location filename="../QScintilla/MiniEditor.py" line="2071" /> <location filename="../ViewManager/ViewManager.py" line="2982" /> <source>Meta+Alt+Shift+V</source> <translation type="unfinished" /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="2546" /> <location filename="../QScintilla/MiniEditor.py" line="2545" /> - <location filename="../QScintilla/MiniEditor.py" line="2544" /> + <location filename="../QScintilla/MiniEditor.py" line="2080" /> <location filename="../QScintilla/MiniEditor.py" line="2079" /> - <location filename="../QScintilla/MiniEditor.py" line="2078" /> <location filename="../ViewManager/ViewManager.py" line="2991" /> <location filename="../ViewManager/ViewManager.py" line="2990" /> <source>Duplicate current selection</source> <translation>Duplica la selezione corrente</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2546" /> - <location filename="../QScintilla/MiniEditor.py" line="2080" /> + <location filename="../QScintilla/MiniEditor.py" line="2547" /> + <location filename="../QScintilla/MiniEditor.py" line="2081" /> <location filename="../ViewManager/ViewManager.py" line="2992" /> <source>Ctrl+Shift+D</source> <translation>Ctrl+Shift+D</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2094" /> - <location filename="../QScintilla/MiniEditor.py" line="2091" /> + <location filename="../QScintilla/MiniEditor.py" line="2095" /> + <location filename="../QScintilla/MiniEditor.py" line="2092" /> <location filename="../ViewManager/ViewManager.py" line="3006" /> <location filename="../ViewManager/ViewManager.py" line="3003" /> <source>Scroll to start of document</source> <translation type="unfinished" /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="2114" /> <location filename="../QScintilla/MiniEditor.py" line="2113" /> - <location filename="../QScintilla/MiniEditor.py" line="2112" /> <location filename="../ViewManager/ViewManager.py" line="3025" /> <location filename="../ViewManager/ViewManager.py" line="3024" /> <source>Scroll to end of document</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2132" /> - <location filename="../QScintilla/MiniEditor.py" line="2129" /> + <location filename="../QScintilla/MiniEditor.py" line="2133" /> + <location filename="../QScintilla/MiniEditor.py" line="2130" /> <location filename="../ViewManager/ViewManager.py" line="3044" /> <location filename="../ViewManager/ViewManager.py" line="3041" /> <source>Scroll vertically to center current line</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2142" /> + <location filename="../QScintilla/MiniEditor.py" line="2143" /> <location filename="../ViewManager/ViewManager.py" line="3054" /> <source>Meta+L</source> <translation type="unfinished" /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="2152" /> <location filename="../QScintilla/MiniEditor.py" line="2151" /> - <location filename="../QScintilla/MiniEditor.py" line="2150" /> <location filename="../ViewManager/ViewManager.py" line="3063" /> <location filename="../ViewManager/ViewManager.py" line="3062" /> <source>Move to end of next word</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2170" /> - <location filename="../QScintilla/MiniEditor.py" line="2167" /> + <location filename="../QScintilla/MiniEditor.py" line="2171" /> + <location filename="../QScintilla/MiniEditor.py" line="2168" /> <location filename="../ViewManager/ViewManager.py" line="3082" /> <location filename="../ViewManager/ViewManager.py" line="3079" /> <source>Extend selection to end of next word</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2193" /> - <location filename="../QScintilla/MiniEditor.py" line="2190" /> + <location filename="../QScintilla/MiniEditor.py" line="2194" /> + <location filename="../QScintilla/MiniEditor.py" line="2191" /> <location filename="../ViewManager/ViewManager.py" line="3105" /> <location filename="../ViewManager/ViewManager.py" line="3102" /> <source>Move to end of previous word</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2210" /> - <location filename="../QScintilla/MiniEditor.py" line="2207" /> + <location filename="../QScintilla/MiniEditor.py" line="2211" /> + <location filename="../QScintilla/MiniEditor.py" line="2208" /> <location filename="../ViewManager/ViewManager.py" line="3122" /> <location filename="../ViewManager/ViewManager.py" line="3119" /> <source>Extend selection to end of previous word</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2227" /> - <location filename="../QScintilla/MiniEditor.py" line="2224" /> + <location filename="../QScintilla/MiniEditor.py" line="2228" /> + <location filename="../QScintilla/MiniEditor.py" line="2225" /> <location filename="../ViewManager/ViewManager.py" line="3139" /> <location filename="../ViewManager/ViewManager.py" line="3136" /> <source>Move to start of document line</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2237" /> + <location filename="../QScintilla/MiniEditor.py" line="2238" /> <location filename="../ViewManager/ViewManager.py" line="3149" /> <source>Meta+A</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2248" /> - <location filename="../QScintilla/MiniEditor.py" line="2245" /> + <location filename="../QScintilla/MiniEditor.py" line="2249" /> + <location filename="../QScintilla/MiniEditor.py" line="2246" /> <location filename="../ViewManager/ViewManager.py" line="3160" /> <location filename="../ViewManager/ViewManager.py" line="3157" /> <source>Extend selection to start of document line</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2259" /> + <location filename="../QScintilla/MiniEditor.py" line="2260" /> <location filename="../ViewManager/ViewManager.py" line="3171" /> <source>Meta+Shift+A</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2272" /> - <location filename="../QScintilla/MiniEditor.py" line="2268" /> + <location filename="../QScintilla/MiniEditor.py" line="2273" /> + <location filename="../QScintilla/MiniEditor.py" line="2269" /> <location filename="../ViewManager/ViewManager.py" line="3184" /> <location filename="../ViewManager/ViewManager.py" line="3180" /> <source>Extend rectangular selection to start of document line</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2284" /> + <location filename="../QScintilla/MiniEditor.py" line="2285" /> <location filename="../ViewManager/ViewManager.py" line="3196" /> <source>Meta+Alt+Shift+A</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2296" /> - <location filename="../QScintilla/MiniEditor.py" line="2293" /> + <location filename="../QScintilla/MiniEditor.py" line="2297" /> + <location filename="../QScintilla/MiniEditor.py" line="2294" /> <location filename="../ViewManager/ViewManager.py" line="3208" /> <location filename="../ViewManager/ViewManager.py" line="3205" /> <source>Extend selection to start of display line</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2319" /> - <location filename="../QScintilla/MiniEditor.py" line="2316" /> + <location filename="../QScintilla/MiniEditor.py" line="2320" /> + <location filename="../QScintilla/MiniEditor.py" line="2317" /> <location filename="../ViewManager/ViewManager.py" line="3231" /> <location filename="../ViewManager/ViewManager.py" line="3228" /> <source>Move to start of display or document line</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2337" /> - <location filename="../QScintilla/MiniEditor.py" line="2333" /> + <location filename="../QScintilla/MiniEditor.py" line="2338" /> + <location filename="../QScintilla/MiniEditor.py" line="2334" /> <location filename="../ViewManager/ViewManager.py" line="3249" /> <location filename="../ViewManager/ViewManager.py" line="3245" /> <source>Extend selection to start of display or document line</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2356" /> - <location filename="../QScintilla/MiniEditor.py" line="2352" /> + <location filename="../QScintilla/MiniEditor.py" line="2357" /> + <location filename="../QScintilla/MiniEditor.py" line="2353" /> <location filename="../ViewManager/ViewManager.py" line="3268" /> <location filename="../ViewManager/ViewManager.py" line="3264" /> <source>Move to first visible character in display or document line</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2376" /> - <location filename="../QScintilla/MiniEditor.py" line="2371" /> + <location filename="../QScintilla/MiniEditor.py" line="2377" /> + <location filename="../QScintilla/MiniEditor.py" line="2372" /> <location filename="../ViewManager/ViewManager.py" line="3288" /> <location filename="../ViewManager/ViewManager.py" line="3283" /> <source>Extend selection to first visible character in display or document line</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2395" /> - <location filename="../QScintilla/MiniEditor.py" line="2392" /> + <location filename="../QScintilla/MiniEditor.py" line="2396" /> + <location filename="../QScintilla/MiniEditor.py" line="2393" /> <location filename="../ViewManager/ViewManager.py" line="3307" /> <location filename="../ViewManager/ViewManager.py" line="3304" /> <source>Move to end of display or document line</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2412" /> - <location filename="../QScintilla/MiniEditor.py" line="2409" /> + <location filename="../QScintilla/MiniEditor.py" line="2413" /> + <location filename="../QScintilla/MiniEditor.py" line="2410" /> <location filename="../ViewManager/ViewManager.py" line="3324" /> <location filename="../ViewManager/ViewManager.py" line="3321" /> <source>Extend selection to end of display or document line</source> <translation type="unfinished" /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="2428" /> <location filename="../QScintilla/MiniEditor.py" line="2427" /> - <location filename="../QScintilla/MiniEditor.py" line="2426" /> <location filename="../ViewManager/ViewManager.py" line="3339" /> <location filename="../ViewManager/ViewManager.py" line="3338" /> <source>Stuttered move up one page</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2442" /> - <location filename="../QScintilla/MiniEditor.py" line="2439" /> + <location filename="../QScintilla/MiniEditor.py" line="2443" /> + <location filename="../QScintilla/MiniEditor.py" line="2440" /> <location filename="../ViewManager/ViewManager.py" line="3354" /> <location filename="../ViewManager/ViewManager.py" line="3351" /> <source>Stuttered extend selection up one page</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2459" /> - <location filename="../QScintilla/MiniEditor.py" line="2456" /> + <location filename="../QScintilla/MiniEditor.py" line="2460" /> + <location filename="../QScintilla/MiniEditor.py" line="2457" /> <location filename="../ViewManager/ViewManager.py" line="3371" /> <location filename="../ViewManager/ViewManager.py" line="3368" /> <source>Stuttered move down one page</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2476" /> - <location filename="../QScintilla/MiniEditor.py" line="2473" /> + <location filename="../QScintilla/MiniEditor.py" line="2477" /> + <location filename="../QScintilla/MiniEditor.py" line="2474" /> <location filename="../ViewManager/ViewManager.py" line="3388" /> <location filename="../ViewManager/ViewManager.py" line="3385" /> <source>Stuttered extend selection down one page</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2493" /> - <location filename="../QScintilla/MiniEditor.py" line="2490" /> + <location filename="../QScintilla/MiniEditor.py" line="2494" /> + <location filename="../QScintilla/MiniEditor.py" line="2491" /> <location filename="../ViewManager/ViewManager.py" line="3405" /> <location filename="../ViewManager/ViewManager.py" line="3402" /> <source>Delete right to end of next word</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2503" /> + <location filename="../QScintilla/MiniEditor.py" line="2504" /> <location filename="../ViewManager/ViewManager.py" line="3415" /> <source>Alt+Del</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2514" /> - <location filename="../QScintilla/MiniEditor.py" line="2511" /> + <location filename="../QScintilla/MiniEditor.py" line="2515" /> + <location filename="../QScintilla/MiniEditor.py" line="2512" /> <location filename="../ViewManager/ViewManager.py" line="3426" /> <location filename="../ViewManager/ViewManager.py" line="3423" /> <source>Move selected lines up one line</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2531" /> - <location filename="../QScintilla/MiniEditor.py" line="2528" /> + <location filename="../QScintilla/MiniEditor.py" line="2532" /> + <location filename="../QScintilla/MiniEditor.py" line="2529" /> <location filename="../ViewManager/ViewManager.py" line="3443" /> <location filename="../ViewManager/ViewManager.py" line="3440" /> <source>Move selected lines down one line</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1805" /> - <location filename="../QScintilla/MiniEditor.py" line="1802" /> + <location filename="../QScintilla/MiniEditor.py" line="1806" /> + <location filename="../QScintilla/MiniEditor.py" line="1803" /> <location filename="../ViewManager/ViewManager.py" line="3461" /> <location filename="../ViewManager/ViewManager.py" line="3458" /> <source>Convert selection to lower case</source> <translation>Converti selezione in minuscolo</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1808" /> + <location filename="../QScintilla/MiniEditor.py" line="1809" /> <location filename="../ViewManager/ViewManager.py" line="3464" /> <source>Alt+Shift+U</source> <translation>Alt+Shift+U</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1821" /> - <location filename="../QScintilla/MiniEditor.py" line="1818" /> + <location filename="../QScintilla/MiniEditor.py" line="1822" /> + <location filename="../QScintilla/MiniEditor.py" line="1819" /> <location filename="../ViewManager/ViewManager.py" line="3477" /> <location filename="../ViewManager/ViewManager.py" line="3474" /> <source>Convert selection to upper case</source> <translation>Converti selezione in maiuscolo</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1824" /> + <location filename="../QScintilla/MiniEditor.py" line="1825" /> <location filename="../ViewManager/ViewManager.py" line="3480" /> <source>Ctrl+Shift+U</source> <translation>Ctrl+Shift+U</translation> @@ -97098,7 +97103,7 @@ <translation>Modifica</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2563" /> + <location filename="../QScintilla/MiniEditor.py" line="2564" /> <location filename="../QScintilla/ShellWindow.py" line="923" /> <location filename="../ViewManager/ViewManager.py" line="4167" /> <location filename="../ViewManager/ViewManager.py" line="4165" /> @@ -97107,14 +97112,14 @@ <translation>Ricerca</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2565" /> + <location filename="../QScintilla/MiniEditor.py" line="2566" /> <location filename="../QScintilla/ShellWindow.py" line="925" /> <location filename="../ViewManager/ViewManager.py" line="3600" /> <source>&Search...</source> <translation>&Ricerca...</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2567" /> + <location filename="../QScintilla/MiniEditor.py" line="2568" /> <location filename="../QScintilla/ShellWindow.py" line="927" /> <location filename="../ViewManager/ViewManager.py" line="3602" /> <source>Ctrl+F</source> @@ -97122,34 +97127,34 @@ <translation>Ctrl+F</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2574" /> + <location filename="../QScintilla/MiniEditor.py" line="2575" /> <location filename="../QScintilla/ShellWindow.py" line="934" /> <location filename="../ViewManager/ViewManager.py" line="3609" /> <source>Search for a text</source> <translation>Cerca per un testo</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2577" /> + <location filename="../QScintilla/MiniEditor.py" line="2578" /> <location filename="../ViewManager/ViewManager.py" line="3612" /> <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>Cerca</b><p>Cerca per del testo nell'editor corrente. Viene mostrato in dialogo per inserire il testo cercato e le opzioni per la ricerca.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2589" /> + <location filename="../QScintilla/MiniEditor.py" line="2590" /> <location filename="../QScintilla/ShellWindow.py" line="949" /> <location filename="../ViewManager/ViewManager.py" line="3624" /> <source>Search next</source> <translation>Cerca seguente</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2591" /> + <location filename="../QScintilla/MiniEditor.py" line="2592" /> <location filename="../QScintilla/ShellWindow.py" line="951" /> <location filename="../ViewManager/ViewManager.py" line="3626" /> <source>Search &next</source> <translation>Cerca segue&nte</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2593" /> + <location filename="../QScintilla/MiniEditor.py" line="2594" /> <location filename="../QScintilla/ShellWindow.py" line="953" /> <location filename="../ViewManager/ViewManager.py" line="3628" /> <source>F3</source> @@ -97157,34 +97162,34 @@ <translation>F3</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2600" /> + <location filename="../QScintilla/MiniEditor.py" line="2601" /> <location filename="../QScintilla/ShellWindow.py" line="960" /> <location filename="../ViewManager/ViewManager.py" line="3635" /> <source>Search next occurrence of text</source> <translation>Cerca prossima ricorrenza del testo</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2603" /> + <location filename="../QScintilla/MiniEditor.py" line="2604" /> <location filename="../ViewManager/ViewManager.py" line="3638" /> <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>Trova successivo</b><p>Trova la prossima occorrenza di testo nell'editor corrente. Il testo inserito precedentemente e opzioni verranno riutilizzate.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2615" /> + <location filename="../QScintilla/MiniEditor.py" line="2616" /> <location filename="../QScintilla/ShellWindow.py" line="977" /> <location filename="../ViewManager/ViewManager.py" line="3650" /> <source>Search previous</source> <translation>Cerca precedente</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2617" /> + <location filename="../QScintilla/MiniEditor.py" line="2618" /> <location filename="../QScintilla/ShellWindow.py" line="979" /> <location filename="../ViewManager/ViewManager.py" line="3652" /> <source>Search &previous</source> <translation>Cerca &precedente</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2619" /> + <location filename="../QScintilla/MiniEditor.py" line="2620" /> <location filename="../QScintilla/ShellWindow.py" line="981" /> <location filename="../ViewManager/ViewManager.py" line="3654" /> <source>Shift+F3</source> @@ -97192,41 +97197,41 @@ <translation>Shift+F3</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2628" /> + <location filename="../QScintilla/MiniEditor.py" line="2629" /> <location filename="../QScintilla/ShellWindow.py" line="990" /> <location filename="../ViewManager/ViewManager.py" line="3663" /> <source>Search previous occurrence of text</source> <translation>Cerca la precedente ricorrenza del testo</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2633" /> + <location filename="../QScintilla/MiniEditor.py" line="2634" /> <location filename="../ViewManager/ViewManager.py" line="3668" /> <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>Trova precedente</b><p>Trova la precedente occorrenza di testo nell'editor corrente. Il testo inserito precedentemente e opzioni verranno riutilizzate.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2647" /> - <location filename="../QScintilla/MiniEditor.py" line="2645" /> + <location filename="../QScintilla/MiniEditor.py" line="2648" /> + <location filename="../QScintilla/MiniEditor.py" line="2646" /> <location filename="../ViewManager/ViewManager.py" line="3682" /> <location filename="../ViewManager/ViewManager.py" line="3680" /> <source>Clear search markers</source> <translation>Pulisci marcatori di ricerca</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2649" /> + <location filename="../QScintilla/MiniEditor.py" line="2650" /> <location filename="../ViewManager/ViewManager.py" line="3684" /> <source>Ctrl+3</source> <comment>Search|Clear search markers</comment> <translation>Ctrl+3</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2658" /> + <location filename="../QScintilla/MiniEditor.py" line="2659" /> <location filename="../ViewManager/ViewManager.py" line="3693" /> <source>Clear all displayed search markers</source> <translation>Pulisci tutti i marcatori di ricerca mostrati</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2663" /> + <location filename="../QScintilla/MiniEditor.py" line="2664" /> <location filename="../ViewManager/ViewManager.py" line="3698" /> <source><b>Clear search markers</b><p>Clear all displayed search markers.</p></source> <translation><b>Pulisci marcatori di ricerca</b><p>Pulisci tutti i marcatori di ricerca mostrati.</p></translation> @@ -97276,113 +97281,113 @@ <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2673" /> + <location filename="../QScintilla/MiniEditor.py" line="2674" /> <location filename="../ViewManager/ViewManager.py" line="3766" /> <source>Replace</source> <translation>Rimpiazza</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2674" /> + <location filename="../QScintilla/MiniEditor.py" line="2675" /> <location filename="../ViewManager/ViewManager.py" line="3767" /> <source>&Replace...</source> <translation>&Rimpiazza...</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2676" /> + <location filename="../QScintilla/MiniEditor.py" line="2677" /> <location filename="../ViewManager/ViewManager.py" line="3769" /> <source>Ctrl+R</source> <comment>Search|Replace</comment> <translation>Ctrl+R</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2683" /> + <location filename="../QScintilla/MiniEditor.py" line="2684" /> <location filename="../ViewManager/ViewManager.py" line="3776" /> <source>Replace some text</source> <translation>Sostituisci del testo</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2686" /> + <location filename="../QScintilla/MiniEditor.py" line="2687" /> <location filename="../ViewManager/ViewManager.py" line="3779" /> <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>Sostituisci</b><p>Cerca per del testo nell'editor corrente e lo sostituisce. Viene mostrato in dialogo per inserire il testo cercato, il testo sostituto e le opzioni per la ricerca e la sostituzione.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2700" /> - <location filename="../QScintilla/MiniEditor.py" line="2698" /> + <location filename="../QScintilla/MiniEditor.py" line="2701" /> + <location filename="../QScintilla/MiniEditor.py" line="2699" /> <location filename="../ViewManager/ViewManager.py" line="3793" /> <location filename="../ViewManager/ViewManager.py" line="3791" /> <source>Replace and Search</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2702" /> + <location filename="../QScintilla/MiniEditor.py" line="2703" /> <location filename="../ViewManager/ViewManager.py" line="3795" /> <source>Meta+R</source> <comment>Search|Replace and Search</comment> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2711" /> + <location filename="../QScintilla/MiniEditor.py" line="2712" /> <location filename="../ViewManager/ViewManager.py" line="3804" /> <source>Replace the found text and search the next occurrence</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2716" /> + <location filename="../QScintilla/MiniEditor.py" line="2717" /> <location filename="../ViewManager/ViewManager.py" line="3809" /> <source><b>Replace and Search</b><p>Replace the found occurrence of text in the current editor and search for the next one. The previously entered search text and options are reused.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2732" /> - <location filename="../QScintilla/MiniEditor.py" line="2730" /> + <location filename="../QScintilla/MiniEditor.py" line="2733" /> + <location filename="../QScintilla/MiniEditor.py" line="2731" /> <location filename="../ViewManager/ViewManager.py" line="3825" /> <location filename="../ViewManager/ViewManager.py" line="3823" /> <source>Replace Occurrence</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2734" /> + <location filename="../QScintilla/MiniEditor.py" line="2735" /> <location filename="../ViewManager/ViewManager.py" line="3827" /> <source>Ctrl+Meta+R</source> <comment>Search|Replace Occurrence</comment> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2743" /> + <location filename="../QScintilla/MiniEditor.py" line="2744" /> <location filename="../ViewManager/ViewManager.py" line="3836" /> <source>Replace the found text</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2746" /> + <location filename="../QScintilla/MiniEditor.py" line="2747" /> <location filename="../ViewManager/ViewManager.py" line="3839" /> <source><b>Replace Occurrence</b><p>Replace the found occurrence of the search text in the current editor.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2759" /> - <location filename="../QScintilla/MiniEditor.py" line="2757" /> + <location filename="../QScintilla/MiniEditor.py" line="2760" /> + <location filename="../QScintilla/MiniEditor.py" line="2758" /> <location filename="../ViewManager/ViewManager.py" line="3852" /> <location filename="../ViewManager/ViewManager.py" line="3850" /> <source>Replace All</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2761" /> + <location filename="../QScintilla/MiniEditor.py" line="2762" /> <location filename="../ViewManager/ViewManager.py" line="3854" /> <source>Shift+Meta+R</source> <comment>Search|Replace All</comment> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2770" /> + <location filename="../QScintilla/MiniEditor.py" line="2771" /> <location filename="../ViewManager/ViewManager.py" line="3863" /> <source>Replace search text occurrences</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2773" /> + <location filename="../QScintilla/MiniEditor.py" line="2774" /> <location filename="../ViewManager/ViewManager.py" line="3866" /> <source><b>Replace All</b><p>Replace all occurrences of the search text in the current editor.</p></source> <translation type="unfinished" /> @@ -97607,21 +97612,21 @@ <translation>&Ricerca</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2788" /> + <location filename="../QScintilla/MiniEditor.py" line="2789" /> <location filename="../QScintilla/ShellWindow.py" line="1016" /> <location filename="../ViewManager/ViewManager.py" line="4208" /> <source>Zoom in</source> <translation>Ingrandisci</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2790" /> + <location filename="../QScintilla/MiniEditor.py" line="2791" /> <location filename="../QScintilla/ShellWindow.py" line="1018" /> <location filename="../ViewManager/ViewManager.py" line="4210" /> <source>Zoom &in</source> <translation>Ingrand&isci</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2792" /> + <location filename="../QScintilla/MiniEditor.py" line="2793" /> <location filename="../QScintilla/ShellWindow.py" line="1020" /> <location filename="../ViewManager/ViewManager.py" line="4212" /> <source>Ctrl++</source> @@ -97629,7 +97634,7 @@ <translation>Ctrl++</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2795" /> + <location filename="../QScintilla/MiniEditor.py" line="2796" /> <location filename="../QScintilla/ShellWindow.py" line="1023" /> <location filename="../ViewManager/ViewManager.py" line="4215" /> <source>Zoom In</source> @@ -97637,35 +97642,35 @@ <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2801" /> + <location filename="../QScintilla/MiniEditor.py" line="2802" /> <location filename="../QScintilla/ShellWindow.py" line="1029" /> <location filename="../ViewManager/ViewManager.py" line="4221" /> <source>Zoom in on the text</source> <translation>Ingrandisci nel testo</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2804" /> + <location filename="../QScintilla/MiniEditor.py" line="2805" /> <location filename="../QScintilla/ShellWindow.py" line="1032" /> <location filename="../ViewManager/ViewManager.py" line="4224" /> <source><b>Zoom in</b><p>Zoom in on the text. This makes the text bigger.</p></source> <translation><b>Ingrandisci</b><p>Ingrandisci nel testo. Questo aumenta le dimensioni del testo.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2814" /> + <location filename="../QScintilla/MiniEditor.py" line="2815" /> <location filename="../QScintilla/ShellWindow.py" line="1042" /> <location filename="../ViewManager/ViewManager.py" line="4234" /> <source>Zoom out</source> <translation>Riduci</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2816" /> + <location filename="../QScintilla/MiniEditor.py" line="2817" /> <location filename="../QScintilla/ShellWindow.py" line="1044" /> <location filename="../ViewManager/ViewManager.py" line="4236" /> <source>Zoom &out</source> <translation>Rid&uci</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2818" /> + <location filename="../QScintilla/MiniEditor.py" line="2819" /> <location filename="../QScintilla/ShellWindow.py" line="1046" /> <location filename="../ViewManager/ViewManager.py" line="4238" /> <source>Ctrl+-</source> @@ -97673,7 +97678,7 @@ <translation>Ctrl+-</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2821" /> + <location filename="../QScintilla/MiniEditor.py" line="2822" /> <location filename="../QScintilla/ShellWindow.py" line="1049" /> <location filename="../ViewManager/ViewManager.py" line="4241" /> <source>Zoom Out</source> @@ -97681,35 +97686,35 @@ <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2827" /> + <location filename="../QScintilla/MiniEditor.py" line="2828" /> <location filename="../QScintilla/ShellWindow.py" line="1055" /> <location filename="../ViewManager/ViewManager.py" line="4247" /> <source>Zoom out on the text</source> <translation>Riduci il testo</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2830" /> + <location filename="../QScintilla/MiniEditor.py" line="2831" /> <location filename="../QScintilla/ShellWindow.py" line="1058" /> <location filename="../ViewManager/ViewManager.py" line="4250" /> <source><b>Zoom out</b><p>Zoom out on the text. This makes the text smaller.</p></source> <translation><b>Riduci</b><p>Riduci nel testo. Questo diminuisce le dimensioni del testo.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2840" /> + <location filename="../QScintilla/MiniEditor.py" line="2841" /> <location filename="../QScintilla/ShellWindow.py" line="1068" /> <location filename="../ViewManager/ViewManager.py" line="4260" /> <source>Zoom reset</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2842" /> + <location filename="../QScintilla/MiniEditor.py" line="2843" /> <location filename="../QScintilla/ShellWindow.py" line="1070" /> <location filename="../ViewManager/ViewManager.py" line="4262" /> <source>Zoom &reset</source> <translation type="unfinished">&Reset zoom</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2844" /> + <location filename="../QScintilla/MiniEditor.py" line="2845" /> <location filename="../QScintilla/ShellWindow.py" line="1072" /> <location filename="../ViewManager/ViewManager.py" line="4264" /> <source>Ctrl+0</source> @@ -97717,42 +97722,42 @@ <translation type="unfinished">Ctrl+0</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2851" /> + <location filename="../QScintilla/MiniEditor.py" line="2852" /> <location filename="../QScintilla/ShellWindow.py" line="1079" /> <location filename="../ViewManager/ViewManager.py" line="4271" /> <source>Reset the zoom of the text</source> <translation type="unfinished">Resetta lo zoom del testo</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2854" /> + <location filename="../QScintilla/MiniEditor.py" line="2855" /> <location filename="../QScintilla/ShellWindow.py" line="1082" /> <location filename="../ViewManager/ViewManager.py" line="4274" /> <source><b>Zoom reset</b><p>Reset the zoom of the text. This sets the zoom factor to 100%.</p></source> <translation type="unfinished"><b>Reset zoom</b><p>Reset dello zoom del testo. Imposta il fattore di zoom al 100%.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2865" /> + <location filename="../QScintilla/MiniEditor.py" line="2866" /> <location filename="../QScintilla/ShellWindow.py" line="1093" /> <location filename="../ViewManager/ViewManager.py" line="4285" /> <source>Zoom</source> <translation>Zoom</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2867" /> + <location filename="../QScintilla/MiniEditor.py" line="2868" /> <location filename="../QScintilla/ShellWindow.py" line="1095" /> <location filename="../ViewManager/ViewManager.py" line="4287" /> <source>&Zoom</source> <translation>&Zoom</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2874" /> + <location filename="../QScintilla/MiniEditor.py" line="2875" /> <location filename="../QScintilla/ShellWindow.py" line="1102" /> <location filename="../ViewManager/ViewManager.py" line="4294" /> <source>Zoom the text</source> <translation>Ingrandisci il testo</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2877" /> + <location filename="../QScintilla/MiniEditor.py" line="2878" /> <location filename="../QScintilla/ShellWindow.py" line="1105" /> <location filename="../ViewManager/ViewManager.py" line="4297" /> <source><b>Zoom</b><p>Zoom the text. This opens a dialog where the desired size can be entered.</p></source> @@ -98517,65 +98522,65 @@ <translation><p>Il file <b>{0}</b> contiene modifiche non salvate.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6077" /> + <location filename="../ViewManager/ViewManager.py" line="6078" /> <source>Line: {0:5}</source> <translation>Linea: {0:5}</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6083" /> + <location filename="../ViewManager/ViewManager.py" line="6084" /> <source>Pos: {0:5}</source> <translation>Pos: {0:5}</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6103" /> + <location filename="../ViewManager/ViewManager.py" line="6104" /> <source>Language: {0}</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6112" /> + <location filename="../ViewManager/ViewManager.py" line="6113" /> <source>EOL Mode: {0}</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6640" /> - <location filename="../ViewManager/ViewManager.py" line="6597" /> + <location filename="../ViewManager/ViewManager.py" line="6641" /> + <location filename="../ViewManager/ViewManager.py" line="6598" /> <source>&Clear</source> <translation>Pulis&ci</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6634" /> + <location filename="../ViewManager/ViewManager.py" line="6635" /> <source>&Add</source> <translation>&Aggiungi</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6637" /> + <location filename="../ViewManager/ViewManager.py" line="6638" /> <source>&Edit...</source> <translation>&Modifica...</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="7707" /> - <location filename="../ViewManager/ViewManager.py" line="7693" /> - <location filename="../ViewManager/ViewManager.py" line="7661" /> + <location filename="../ViewManager/ViewManager.py" line="7708" /> + <location filename="../ViewManager/ViewManager.py" line="7694" /> + <location filename="../ViewManager/ViewManager.py" line="7662" /> <source>Edit Spelling Dictionary</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="7664" /> + <location filename="../ViewManager/ViewManager.py" line="7665" /> <source><p>The spelling dictionary file <b>{0}</b> could not be read.</p><p>Reason: {1}</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="7680" /> + <location filename="../ViewManager/ViewManager.py" line="7681" /> <source>Editing {0}</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="7696" /> + <location filename="../ViewManager/ViewManager.py" line="7697" /> <source><p>The spelling dictionary file <b>{0}</b> could not be written.</p><p>Reason: {1}</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="7710" /> + <location filename="../ViewManager/ViewManager.py" line="7711" /> <source>The spelling dictionary was saved successfully.</source> <translation type="unfinished" /> </message> @@ -98585,28 +98590,28 @@ <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6819" /> + <location filename="../ViewManager/ViewManager.py" line="6820" /> <source>Clear Editor</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6820" /> + <location filename="../ViewManager/ViewManager.py" line="6821" /> <source>Do you really want to delete all text of the current editor?</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="8240" /> - <location filename="../ViewManager/ViewManager.py" line="8223" /> - <source>File System Watcher Error</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="8224" /> - <source><p>The operating system resources for file system watches are exhausted. This limit should be increased. On a Linux system you should <ul><li>sudo nano /etc/sysctl.conf</li><li>add to the bottom "fs.inotify.max_user_instances = 1024"</li><li>save and close the editor</li><li>sudo sysctl -p</li></ul></p><p>Error Message: {0}</p></source> - <translation type="unfinished" /> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="8241" /> + <location filename="../ViewManager/ViewManager.py" line="8224" /> + <source>File System Watcher Error</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="8225" /> + <source><p>The operating system resources for file system watches are exhausted. This limit should be increased. On a Linux system you should <ul><li>sudo nano /etc/sysctl.conf</li><li>add to the bottom "fs.inotify.max_user_instances = 1024"</li><li>save and close the editor</li><li>sudo sysctl -p</li></ul></p><p>Error Message: {0}</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="8242" /> <source>The file system watcher reported an error with code <b>{0}</b>.</p><p>Error Message: {1}</p></source> <translation type="unfinished" /> </message> @@ -106010,301 +106015,306 @@ <translation type="unfinished">spazio dopo '{0}'</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="95" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="96" /> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="94" /> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="93" /> <source>whitespace before '{0}'</source> <translation type="unfinished">spazio prima '{0}'</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="96" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="95" /> + <source>whitespace after decorator '@'</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="97" /> <source>multiple spaces before operator</source> <translation type="unfinished">spazi multipli prima dell'operatore</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="99" /> - <source>multiple spaces after operator</source> - <translation type="unfinished">spazi multipli dopo l'operatore</translation> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="100" /> - <source>tab before operator</source> - <translation type="unfinished">tab prima dell'operatore</translation> + <source>multiple spaces after operator</source> + <translation type="unfinished">spazi multipli dopo l'operatore</translation> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="101" /> - <source>tab after operator</source> - <translation type="unfinished">tab dopo l'operatore</translation> + <source>tab before operator</source> + <translation type="unfinished">tab prima dell'operatore</translation> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="102" /> + <source>tab after operator</source> + <translation type="unfinished">tab dopo l'operatore</translation> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="103" /> <source>missing whitespace around operator</source> <translation type="unfinished">spazi intorno all'operatore mancanti</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="105" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="106" /> <source>missing whitespace around arithmetic operator</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="108" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="109" /> <source>missing whitespace around bitwise or shift operator</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="111" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="112" /> <source>missing whitespace around modulo operator</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="114" /> - <source>missing whitespace after '{0}'</source> - <translation type="unfinished">spazi dopo '{0}' mancanti</translation> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="115" /> - <source>multiple spaces after '{0}'</source> - <translation type="unfinished">spazi multipli dopo '{0}'</translation> + <source>missing whitespace after '{0}'</source> + <translation type="unfinished">spazi dopo '{0}' mancanti</translation> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="116" /> - <source>tab after '{0}'</source> - <translation type="unfinished">tab dopo '{0}'</translation> + <source>multiple spaces after '{0}'</source> + <translation type="unfinished">spazi multipli dopo '{0}'</translation> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="117" /> + <source>tab after '{0}'</source> + <translation type="unfinished">tab dopo '{0}'</translation> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="118" /> <source>unexpected spaces around keyword / parameter equals</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="120" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="121" /> <source>missing whitespace around parameter equals</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="123" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="124" /> <source>at least two spaces before inline comment</source> <translation type="unfinished">al massimo due spazi prima di un commento inline</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="126" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="127" /> <source>inline comment should start with '# '</source> <translation type="unfinished">commento inline deve iniziare con '#'</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="129" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="130" /> <source>block comment should start with '# '</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="132" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="133" /> <source>too many leading '#' for block comment</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="135" /> - <source>multiple spaces after keyword</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="136" /> - <source>multiple spaces before keyword</source> + <source>multiple spaces after keyword</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="137" /> - <source>tab after keyword</source> + <source>multiple spaces before keyword</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="138" /> - <source>tab before keyword</source> + <source>tab after keyword</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="139" /> + <source>tab before keyword</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="140" /> <source>missing whitespace after keyword</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="145" /> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="142" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="146" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="143" /> <source>expected {0} blank lines, found {1}</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="148" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="149" /> <source>too many blank lines ({0}), expected {1}</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="151" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="152" /> <source>blank lines found after function decorator</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="154" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="155" /> <source>expected {0} blank lines after class or function definition, found {1}</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="158" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="159" /> <source>expected {0} blank lines before a nested definition, found {1}</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="161" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="162" /> <source>too many blank lines ({0}) before a nested definition, expected {1}</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="165" /> - <source>too many blank lines ({0})</source> - <translation type="unfinished">troppe linee vuote ({0})</translation> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="166" /> - <source>multiple imports on one line</source> - <translation type="unfinished">import multipli su una linea</translation> + <source>too many blank lines ({0})</source> + <translation type="unfinished">troppe linee vuote ({0})</translation> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="167" /> + <source>multiple imports on one line</source> + <translation type="unfinished">import multipli su una linea</translation> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="168" /> <source>module level import not at top of file</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="170" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="171" /> <source>line too long ({0} > {1} characters)</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="173" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="174" /> <source>the backslash is redundant between brackets</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="176" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="177" /> <source>multiple statements on one line (colon)</source> <translation type="unfinished">istruzioni multiple su una linea (due punti)</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="179" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="180" /> <source>multiple statements on one line (semicolon)</source> <translation type="unfinished">istruzioni multiple su una linea (punto e virgola)</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="182" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="183" /> <source>statement ends with a semicolon</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="185" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="186" /> <source>multiple statements on one line (def)</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="191" /> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="188" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="192" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="189" /> <source>comparison to {0} should be {1}</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="194" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="195" /> <source>test for membership should be 'not in'</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="197" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="198" /> <source>test for object identity should be 'is not'</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="200" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="201" /> <source>do not compare types, for exact checks use 'is' / 'is not', for instance checks use 'isinstance()'</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="205" /> - <source>do not use bare except</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="206" /> + <source>do not use bare except</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="207" /> <source>do not assign a lambda expression, use a def</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="209" /> - <source>ambiguous variable name '{0}'</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="210" /> + <source>ambiguous variable name '{0}'</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="211" /> <source>ambiguous class definition '{0}'</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="213" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="214" /> <source>ambiguous function definition '{0}'</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="216" /> - <source>{0}: {1}</source> - <translation type="unfinished">{0}: {1}</translation> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="217" /> + <source>{0}: {1}</source> + <translation type="unfinished">{0}: {1}</translation> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="218" /> <source>{0}</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="225" /> - <source>indentation contains tabs</source> - <translation type="unfinished">identazione contiene tab</translation> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="226" /> - <source>trailing whitespace</source> - <translation type="unfinished">spazi all'inizio</translation> + <source>indentation contains tabs</source> + <translation type="unfinished">identazione contiene tab</translation> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="227" /> - <source>no newline at end of file</source> - <translation type="unfinished">nessun ritorno a capo alla fine del file</translation> + <source>trailing whitespace</source> + <translation type="unfinished">spazi all'inizio</translation> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="228" /> - <source>blank line contains whitespace</source> - <translation type="unfinished">attesa 1 line vuota, 0 trovate</translation> + <source>no newline at end of file</source> + <translation type="unfinished">nessun ritorno a capo alla fine del file</translation> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="229" /> - <source>blank line at end of file</source> - <translation type="unfinished">linea vuota alla fine del file</translation> + <source>blank line contains whitespace</source> + <translation type="unfinished">attesa 1 line vuota, 0 trovate</translation> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="230" /> + <source>blank line at end of file</source> + <translation type="unfinished">linea vuota alla fine del file</translation> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="231" /> <source>line break before binary operator</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="233" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="234" /> <source>line break after binary operator</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="236" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="237" /> <source>doc line too long ({0} > {1} characters)</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="239" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="240" /> <source>invalid escape sequence '\{0}'</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="242" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="243" /> <source>'async' and 'await' are reserved keywords starting with Python 3.7</source> <translation type="unfinished" /> </message>
--- a/src/eric7/i18n/eric7_pt.ts Mon Jul 29 14:43:59 2024 +0200 +++ b/src/eric7/i18n/eric7_pt.ts Sat Aug 31 10:54:21 2024 +0200 @@ -5117,7 +5117,7 @@ <context> <name>CodeStyleChecker</name> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="515" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="516" /> <source>No message defined for code '{0}'.</source> <translation type="unfinished" /> </message> @@ -6260,146 +6260,146 @@ <context> <name>CodeStyleFixer</name> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="253" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="254" /> <source>Triple single quotes converted to triple double quotes.</source> <translation>Três aspas simples convertidas a três aspas duplas.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="256" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="257" /> <source>Introductory quotes corrected to be {0}"""</source> <translation>Corrigidas as aspas introdutórias para ser {0}"""</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="259" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="260" /> <source>Single line docstring put on one line.</source> <translation>Docstring de linha única posta numa linha.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="262" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="263" /> <source>Period added to summary line.</source> <translation>Ponto adicionado à linha sumário.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="289" /> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="265" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="290" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="266" /> <source>Blank line before function/method docstring removed.</source> <translation>Retirada a linha vazia antes da docstring de função/método.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="268" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="269" /> <source>Blank line inserted before class docstring.</source> <translation>Linha branca inserida antes da docstring de classe.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="271" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="272" /> <source>Blank line inserted after class docstring.</source> <translation>Inserida linha vazia depois da docstring de classe.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="274" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="275" /> <source>Blank line inserted after docstring summary.</source> <translation>Inserida linha vazia depois da docstring de sumário.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="277" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="278" /> <source>Blank line inserted after last paragraph of docstring.</source> <translation>Inserida linha vazia depois do último parágrafo da docstring.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="280" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="281" /> <source>Leading quotes put on separate line.</source> <translation>Aspas iniciais postas numa linha separada.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="283" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="284" /> <source>Trailing quotes put on separate line.</source> <translation>Aspas finais postas numa linha separada.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="286" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="287" /> <source>Blank line before class docstring removed.</source> <translation>Retirada linha vazia antes da docstring de classe.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="292" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="293" /> <source>Blank line after class docstring removed.</source> <translation>Retirada linha vazia depois da docstring de classe.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="295" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="296" /> <source>Blank line after function/method docstring removed.</source> <translation>Retirada a linha vazia depois da docstring de função/método.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="298" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="299" /> <source>Blank line after last paragraph removed.</source> <translation>Retirada linha vazia depois do último parágrafo.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="301" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="302" /> <source>Tab converted to 4 spaces.</source> <translation>Tabulação convertida a 4 espaços.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="304" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="305" /> <source>Indentation adjusted to be a multiple of four.</source> <translation>Ajustada a indentação a múltiplos de quatro.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="307" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="308" /> <source>Indentation of continuation line corrected.</source> <translation>Corrigida a indentação da linha de continuação.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="310" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="311" /> <source>Indentation of closing bracket corrected.</source> <translation>Corrigida a indentação de parêntesis de fecho.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="313" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="314" /> <source>Missing indentation of continuation line corrected.</source> <translation>Corrigida falta de indentação na linha de continuação.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="316" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="317" /> <source>Closing bracket aligned to opening bracket.</source> <translation>Parêntesis de fecho alinhado com parêntesis de abertura.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="319" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="320" /> <source>Indentation level changed.</source> <translation>Alterado o nível da indentação.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="322" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="323" /> <source>Indentation level of hanging indentation changed.</source> <translation>Alterado o nível da indentação pendente.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="325" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="326" /> <source>Visual indentation corrected.</source> <translation>Indentação visual corrigida.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="340" /> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="334" /> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="328" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="341" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="335" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="329" /> <source>Extraneous whitespace removed.</source> <translation>Espaço estranho retirado.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="337" /> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="331" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="338" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="332" /> <source>Missing whitespace added.</source> <translation>Adicionado espaço branco em falta.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="343" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="344" /> <source>Whitespace around comment sign corrected.</source> <translation>Corrigido espaço em volta do símbolo de comentário.</translation> </message> <message numerus="yes"> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="346" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="347" /> <source>%n blank line(s) inserted.</source> <translation> <numerusform>inserida uma linha vazia.</numerusform> @@ -6407,7 +6407,7 @@ </translation> </message> <message numerus="yes"> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="349" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="350" /> <source>%n superfluous lines removed</source> <translation> <numerusform>retirada uma linha desnecessária</numerusform> @@ -6415,73 +6415,73 @@ </translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="352" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="353" /> <source>Superfluous blank lines removed.</source> <translation>Retiradas linhas vazias desnecessárias.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="355" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="356" /> <source>Superfluous blank lines after function decorator removed.</source> <translation>Retiradas linhas vazias desnecessárias após o decorador de função.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="358" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="359" /> <source>Imports were put on separate lines.</source> <translation>Imports foram postos em linhas separadas.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="361" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="362" /> <source>Long lines have been shortened.</source> <translation>Foram encolhidas as linhas compridas.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="364" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="365" /> <source>Redundant backslash in brackets removed.</source> <translation>Retirada barra invertida redundante entre parêntesis.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="370" /> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="367" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="371" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="368" /> <source>Compound statement corrected.</source> <translation>Instrução composta corrigida.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="373" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="374" /> <source>Comparison to None/True/False corrected.</source> <translation>Corrigida a comparação a None/True/False.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="376" /> - <source>'{0}' argument added.</source> - <translation>Adicionado o argumento '{0}'.</translation> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="377" /> - <source>'{0}' argument removed.</source> - <translation>Removido o argumento '{0}'.</translation> + <source>'{0}' argument added.</source> + <translation>Adicionado o argumento '{0}'.</translation> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="378" /> + <source>'{0}' argument removed.</source> + <translation>Removido o argumento '{0}'.</translation> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="379" /> <source>Whitespace stripped from end of line.</source> <translation>Eliminado o espaço no fim de linha.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="381" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="382" /> <source>newline added to end of file.</source> <translation>adicionada uma linha nova ao fim do ficheiro.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="384" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="385" /> <source>Superfluous trailing blank lines removed from end of file.</source> <translation>Retiradas linhas vazias desnecessárias do fim do ficheiro.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="387" /> - <source>'<>' replaced by '!='.</source> - <translation>'<>' substituido por '!='.</translation> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="388" /> + <source>'<>' replaced by '!='.</source> + <translation>'<>' substituido por '!='.</translation> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="389" /> <source>Could not save the file! Skipping it. Reason: {0}</source> <translation>Não se pode gravar ficheiro! Saltando-o. Motivo: {0}</translation> </message> @@ -20715,45 +20715,45 @@ <context> <name>EricToolBarDialog</name> <message> - <location filename="../EricWidgets/EricToolBarDialog.py" line="89" /> + <location filename="../EricWidgets/EricToolBarDialog.py" line="90" /> <source>--Separator--</source> <translation type="unfinished">--Separador--</translation> </message> <message> - <location filename="../EricWidgets/EricToolBarDialog.py" line="169" /> - <location filename="../EricWidgets/EricToolBarDialog.py" line="160" /> + <location filename="../EricWidgets/EricToolBarDialog.py" line="164" /> + <location filename="../EricWidgets/EricToolBarDialog.py" line="155" /> <source>New Toolbar</source> <translation type="unfinished">Nova Barra de Ferramentas</translation> </message> <message> - <location filename="../EricWidgets/EricToolBarDialog.py" line="161" /> + <location filename="../EricWidgets/EricToolBarDialog.py" line="156" /> <source>Toolbar Name:</source> <translation type="unfinished">Nome da Barra de Ferramentas:</translation> </message> <message> - <location filename="../EricWidgets/EricToolBarDialog.py" line="238" /> - <location filename="../EricWidgets/EricToolBarDialog.py" line="170" /> + <location filename="../EricWidgets/EricToolBarDialog.py" line="233" /> + <location filename="../EricWidgets/EricToolBarDialog.py" line="165" /> <source>A toolbar with the name <b>{0}</b> already exists.</source> <translation type="unfinished">Já existe uma barra de ferramentas <b>{0}</b>.</translation> </message> <message> - <location filename="../EricWidgets/EricToolBarDialog.py" line="197" /> + <location filename="../EricWidgets/EricToolBarDialog.py" line="192" /> <source>Remove Toolbar</source> <translation type="unfinished">Retirar Barra de Ferramentas</translation> </message> <message> - <location filename="../EricWidgets/EricToolBarDialog.py" line="198" /> + <location filename="../EricWidgets/EricToolBarDialog.py" line="193" /> <source>Should the toolbar <b>{0}</b> really be removed?</source> <translation type="unfinished">A barra de ferramentas <b>{0}</b> deve realmente ser retirada?</translation> </message> <message> - <location filename="../EricWidgets/EricToolBarDialog.py" line="237" /> - <location filename="../EricWidgets/EricToolBarDialog.py" line="225" /> + <location filename="../EricWidgets/EricToolBarDialog.py" line="232" /> + <location filename="../EricWidgets/EricToolBarDialog.py" line="220" /> <source>Rename Toolbar</source> <translation type="unfinished">Renomear Barra de Ferramentas</translation> </message> <message> - <location filename="../EricWidgets/EricToolBarDialog.py" line="226" /> + <location filename="../EricWidgets/EricToolBarDialog.py" line="221" /> <source>New Toolbar Name:</source> <translation type="unfinished">Nome da Nova Barra de Ferramentas:</translation> </message> @@ -54492,723 +54492,723 @@ <context> <name>MiniEditor</name> <message> - <location filename="../QScintilla/MiniEditor.py" line="492" /> + <location filename="../QScintilla/MiniEditor.py" line="493" /> <source>About eric Mini Editor</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="493" /> + <location filename="../QScintilla/MiniEditor.py" line="494" /> <source>The eric 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 type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="562" /> + <location filename="../QScintilla/MiniEditor.py" line="563" /> <source>Line: {0:5}</source> <translation>Linha: {0:5}</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="566" /> + <location filename="../QScintilla/MiniEditor.py" line="567" /> <source>Pos: {0:5}</source> <translation /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="580" /> + <location filename="../QScintilla/MiniEditor.py" line="581" /> <source>Language: {0}</source> <translation type="unfinished">Linguagem: {0}</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="644" /> + <location filename="../QScintilla/MiniEditor.py" line="645" /> <source>New</source> <translation>Novo</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="646" /> - <source>&New</source> - <translation>&Novo</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="647" /> + <source>&New</source> + <translation>&Novo</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="648" /> <source>Ctrl+N</source> <comment>File|New</comment> <translation /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="652" /> + <location filename="../QScintilla/MiniEditor.py" line="653" /> <source>Open an empty editor window</source> <translation>Abrir uma janela do editor vazia</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="654" /> + <location filename="../QScintilla/MiniEditor.py" line="655" /> <source><b>New</b><p>An empty editor window will be created.</p></source> <translation><b>Novo</b><p>Será criada uma janela do editor vazia.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="660" /> + <location filename="../QScintilla/MiniEditor.py" line="661" /> <source>Open</source> <translation>Abrir</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="662" /> - <source>&Open...</source> - <translation>&Abrir...</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="663" /> + <source>&Open...</source> + <translation>&Abrir...</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="664" /> <source>Ctrl+O</source> <comment>File|Open</comment> <translation /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="668" /> + <location filename="../QScintilla/MiniEditor.py" line="669" /> <source>Open a file</source> <translation>Abrir um ficheiro</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="670" /> + <location filename="../QScintilla/MiniEditor.py" line="671" /> <source><b>Open a file</b><p>You will be asked for the name of a file to be opened.</p></source> <translation><b>Abrir um ficheiro</b><p>Será perguntado pelo nome de um ficheiro para abrir.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="679" /> + <location filename="../QScintilla/MiniEditor.py" line="680" /> <source>Save</source> <translation>Gravar</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="681" /> - <source>&Save</source> - <translation>&Gravar</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="682" /> + <source>&Save</source> + <translation>&Gravar</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="683" /> <source>Ctrl+S</source> <comment>File|Save</comment> <translation /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="687" /> + <location filename="../QScintilla/MiniEditor.py" line="688" /> <source>Save the current file</source> <translation>Gravar o ficheiro atual</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="689" /> + <location filename="../QScintilla/MiniEditor.py" line="690" /> <source><b>Save File</b><p>Save the contents of current editor window.</p></source> <translation><b>Gravar Ficheiro</b><p>Grava o conteúdo da janela atual do editor.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="698" /> + <location filename="../QScintilla/MiniEditor.py" line="699" /> <source>Save as</source> <translation>Gravar como</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="700" /> - <source>Save &as...</source> - <translation>Gr&avar como...</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="701" /> + <source>Save &as...</source> + <translation>Gr&avar como...</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="702" /> <source>Shift+Ctrl+S</source> <comment>File|Save As</comment> <translation /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="706" /> + <location filename="../QScintilla/MiniEditor.py" line="707" /> <source>Save the current file to a new one</source> <translation>Gravar o ficheiro atual para um novo</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="708" /> + <location filename="../QScintilla/MiniEditor.py" line="709" /> <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>Gravar Ficheiro como</b><p>Gravar o conteúdo da janela do editor atual num ficheiro novo. O ficheiro pode ser introduzido com uma caixa de diálogo de seleção de ficheiros.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="718" /> + <location filename="../QScintilla/MiniEditor.py" line="719" /> <source>Save Copy</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="720" /> + <location filename="../QScintilla/MiniEditor.py" line="721" /> <source>Save &Copy...</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="726" /> + <location filename="../QScintilla/MiniEditor.py" line="727" /> <source>Save a copy of the current file</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="728" /> + <location filename="../QScintilla/MiniEditor.py" line="729" /> <source><b>Save Copy</b><p>Save a copy of the contents of current editor window. The file can be entered in a file selection dialog.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="738" /> + <location filename="../QScintilla/MiniEditor.py" line="739" /> <source>Close</source> <translation>Fechar</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="740" /> - <source>&Close</source> - <translation>Fe&char</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="741" /> + <source>&Close</source> + <translation>Fe&char</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="742" /> <source>Ctrl+W</source> <comment>File|Close</comment> <translation /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="746" /> + <location filename="../QScintilla/MiniEditor.py" line="747" /> <source>Close the editor window</source> <translation>Fechar a janela do editor</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="748" /> + <location filename="../QScintilla/MiniEditor.py" line="749" /> <source><b>Close Window</b><p>Close the current window.</p></source> <translation><b>Fechar Janela</b><p>Fecha a janela atual.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="754" /> + <location filename="../QScintilla/MiniEditor.py" line="755" /> <source>Print</source> <translation>Imprimir</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="756" /> - <source>&Print</source> - <translation>Im&primir</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="757" /> + <source>&Print</source> + <translation>Im&primir</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="758" /> <source>Ctrl+P</source> <comment>File|Print</comment> <translation /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="762" /> + <location filename="../QScintilla/MiniEditor.py" line="763" /> <source>Print the current file</source> <translation>Imprimir o ficheiro atual</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="764" /> + <location filename="../QScintilla/MiniEditor.py" line="765" /> <source><b>Print File</b><p>Print the contents of the current file.</p></source> <translation><b>Imprimir Ficheiro</b><p>Imprime o conteúdo do ficheiro atual.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="773" /> + <location filename="../QScintilla/MiniEditor.py" line="774" /> <source>Print Preview</source> <translation>Antevisão da Impressão</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="781" /> + <location filename="../QScintilla/MiniEditor.py" line="782" /> <source>Print preview of the current file</source> <translation>Antevisão da impressão do ficheiro atual</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="783" /> + <location filename="../QScintilla/MiniEditor.py" line="784" /> <source><b>Print Preview</b><p>Print preview of the current file.</p></source> <translation><b>Antevisão da Impressão</b><p>Antevisão da Impressão do ficheiro atual.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="796" /> + <location filename="../QScintilla/MiniEditor.py" line="797" /> <source>Undo</source> <translation>Desfazer</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="798" /> - <source>&Undo</source> - <translation>Desfa&zer</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="799" /> - <source>Ctrl+Z</source> - <comment>Edit|Undo</comment> - <translation /> + <source>&Undo</source> + <translation>Desfa&zer</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="800" /> + <source>Ctrl+Z</source> + <comment>Edit|Undo</comment> + <translation /> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="801" /> <source>Alt+Backspace</source> <comment>Edit|Undo</comment> <translation /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="804" /> + <location filename="../QScintilla/MiniEditor.py" line="805" /> <source>Undo the last change</source> <translation>Desfazer a última alteração</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="806" /> + <location filename="../QScintilla/MiniEditor.py" line="807" /> <source><b>Undo</b><p>Undo the last change done in the current editor.</p></source> <translation><b>Desfazer</b><p>Desfazer a última alteração feita no editor atual.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="815" /> + <location filename="../QScintilla/MiniEditor.py" line="816" /> <source>Redo</source> <translation>Refazer</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="817" /> - <source>&Redo</source> - <translation>&Refazer</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="818" /> + <source>&Redo</source> + <translation>&Refazer</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="819" /> <source>Ctrl+Shift+Z</source> <comment>Edit|Redo</comment> <translation>Ctrl+Shift+Z</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="823" /> + <location filename="../QScintilla/MiniEditor.py" line="824" /> <source>Redo the last change</source> <translation>Refazer a última alteração</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="825" /> + <location filename="../QScintilla/MiniEditor.py" line="826" /> <source><b>Redo</b><p>Redo the last change done in the current editor.</p></source> <translation><b>Refazer</b><p>Refazer a últma alteração feita no editor atual.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="834" /> + <location filename="../QScintilla/MiniEditor.py" line="835" /> <source>Cut</source> <translation>Cortar</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="836" /> - <source>Cu&t</source> - <translation>Cor&tar</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="837" /> - <source>Ctrl+X</source> - <comment>Edit|Cut</comment> - <translation /> + <source>Cu&t</source> + <translation>Cor&tar</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="838" /> + <source>Ctrl+X</source> + <comment>Edit|Cut</comment> + <translation /> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="839" /> <source>Shift+Del</source> <comment>Edit|Cut</comment> <translation /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="842" /> + <location filename="../QScintilla/MiniEditor.py" line="843" /> <source>Cut the selection</source> <translation>Cortar a seleção</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="844" /> + <location filename="../QScintilla/MiniEditor.py" line="845" /> <source><b>Cut</b><p>Cut the selected text of the current editor to the clipboard.</p></source> <translation><b>Cortar</b><p>Recorta a seleção do texto do editor atual para a Área de Transferência.<p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="854" /> + <location filename="../QScintilla/MiniEditor.py" line="855" /> <source>Copy</source> <translation>Copiar</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="856" /> - <source>&Copy</source> - <translation>&Copiar</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="857" /> - <source>Ctrl+C</source> - <comment>Edit|Copy</comment> - <translation /> + <source>&Copy</source> + <translation>&Copiar</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="858" /> + <source>Ctrl+C</source> + <comment>Edit|Copy</comment> + <translation /> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="859" /> <source>Ctrl+Ins</source> <comment>Edit|Copy</comment> <translation /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="862" /> + <location filename="../QScintilla/MiniEditor.py" line="863" /> <source>Copy the selection</source> <translation>Copiar a seleção</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="864" /> + <location filename="../QScintilla/MiniEditor.py" line="865" /> <source><b>Copy</b><p>Copy the selected text of the current editor to the clipboard.</p></source> <translation><b>Copiar</b><p>Copia a seleção de texto do editor atual para a Área de Transferência.<p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="874" /> + <location filename="../QScintilla/MiniEditor.py" line="875" /> <source>Paste</source> <translation>Colar</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="876" /> - <source>&Paste</source> - <translation>Co&lar</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="877" /> - <source>Ctrl+V</source> - <comment>Edit|Paste</comment> - <translation /> + <source>&Paste</source> + <translation>Co&lar</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="878" /> + <source>Ctrl+V</source> + <comment>Edit|Paste</comment> + <translation /> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="879" /> <source>Shift+Ins</source> <comment>Edit|Paste</comment> <translation /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="882" /> + <location filename="../QScintilla/MiniEditor.py" line="883" /> <source>Paste the last cut/copied text</source> <translation>Colar o último texto cortado/copiado</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="884" /> + <location filename="../QScintilla/MiniEditor.py" line="885" /> <source><b>Paste</b><p>Paste the last cut/copied text from the clipboard to the current editor.</p></source> <translation><b>Colar</b><p>Cola o último texto cortado/copiado da área de transferência ao editor atual.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="894" /> + <location filename="../QScintilla/MiniEditor.py" line="895" /> <source>Clear</source> <translation>Limpar</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="896" /> - <source>Cl&ear</source> - <translation>Li&mpar</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="897" /> + <source>Cl&ear</source> + <translation>Li&mpar</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="898" /> <source>Alt+Shift+C</source> <comment>Edit|Clear</comment> <translation>Alt+Shift+C</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="902" /> + <location filename="../QScintilla/MiniEditor.py" line="903" /> <source>Clear all text</source> <translation>Limpar todo o texto</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="904" /> + <location filename="../QScintilla/MiniEditor.py" line="905" /> <source><b>Clear</b><p>Delete all text of the current editor.</p></source> <translation><b>Limpar</b><p>Apaga o texto todo do editor atual.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2892" /> + <location filename="../QScintilla/MiniEditor.py" line="2893" /> <source>About</source> <translation>Acerca</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2892" /> + <location filename="../QScintilla/MiniEditor.py" line="2893" /> <source>&About</source> <translation>A&cerca</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2894" /> + <location filename="../QScintilla/MiniEditor.py" line="2895" /> <source>Display information about this software</source> <translation>Mostra a informação acerca deste software</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2896" /> + <location filename="../QScintilla/MiniEditor.py" line="2897" /> <source><b>About</b><p>Display some information about this software.</p></source> <translation><b>Acerca</b><p>Mostra alguma informação acerca deste software.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2905" /> + <location filename="../QScintilla/MiniEditor.py" line="2906" /> <source>About Qt</source> <translation>Acerca de Qt</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2905" /> + <location filename="../QScintilla/MiniEditor.py" line="2906" /> <source>About &Qt</source> <translation>Acerca de &Qt</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2908" /> + <location filename="../QScintilla/MiniEditor.py" line="2909" /> <source>Display information about the Qt toolkit</source> <translation>Mostra informação acerca das Ferramentas de Qt</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2911" /> + <location filename="../QScintilla/MiniEditor.py" line="2912" /> <source><b>About Qt</b><p>Display some information about the Qt toolkit.</p></source> <translation><b>Acerca de Qt</b><p>Mostra alguma informação acerca das Ferramentas de Qt.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2920" /> + <location filename="../QScintilla/MiniEditor.py" line="2921" /> <source>What's This?</source> <translation>O que é Isto?</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2922" /> - <source>&What's This?</source> - <translation>O &que é Isto?</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="2923" /> + <source>&What's This?</source> + <translation>O &que é Isto?</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="2924" /> <source>Shift+F1</source> <comment>Help|What's This?'</comment> <translation /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2928" /> + <location filename="../QScintilla/MiniEditor.py" line="2929" /> <source>Context sensitive help</source> <translation>Ajuda sensível ao contexto</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2930" /> + <location filename="../QScintilla/MiniEditor.py" line="2931" /> <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>Mostrar ajuda sensível a contexto</b><p>No modo 'Que é Isto?' o cursor do rato mostra uma flecha com um ponto de interrogação, e pode clicar nos elementos da interface para ver uma breve descrição do que fazem e como se usam. Nas caixas de diálogo, pode-se aceder a esta característica através do botão de ajuda contextual da barra de título.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2948" /> + <location filename="../QScintilla/MiniEditor.py" line="2949" /> <source>Preferences</source> <translation type="unfinished">Preferências</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2950" /> + <location filename="../QScintilla/MiniEditor.py" line="2951" /> <source>&Preferences...</source> <translation type="unfinished">&Preferências...</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2956" /> + <location filename="../QScintilla/MiniEditor.py" line="2957" /> <source>Set the prefered configuration</source> <translation type="unfinished">Definir a configuração desejada</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2958" /> + <location filename="../QScintilla/MiniEditor.py" line="2959" /> <source><b>Preferences</b><p>Set the configuration items of the application with your prefered values.</p></source> <translation type="unfinished"><b>Preferências</b><p>Define os elementos de configuração da aplicação com os valores desejados.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2972" /> + <location filename="../QScintilla/MiniEditor.py" line="2973" /> <source>&File</source> <translation>&Ficheiro</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2984" /> + <location filename="../QScintilla/MiniEditor.py" line="2985" /> <source>&Edit</source> <translation>&Editar</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2994" /> + <location filename="../QScintilla/MiniEditor.py" line="2995" /> <source>&Search</source> <translation type="unfinished">&Procurar</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3004" /> + <location filename="../QScintilla/MiniEditor.py" line="3005" /> <source>&View</source> <translation type="unfinished">&Vista</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3010" /> + <location filename="../QScintilla/MiniEditor.py" line="3011" /> <source>Se&ttings</source> <translation type="unfinished">Definiçõe&s</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3015" /> + <location filename="../QScintilla/MiniEditor.py" line="3016" /> <source>&Help</source> <translation>&Ajuda</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3027" /> + <location filename="../QScintilla/MiniEditor.py" line="3028" /> <source>File</source> <translation>Ficheiro</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3039" /> + <location filename="../QScintilla/MiniEditor.py" line="3040" /> <source>Edit</source> <translation>Editar</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3048" /> + <location filename="../QScintilla/MiniEditor.py" line="3049" /> <source>Search</source> <translation type="unfinished">Procurar</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3054" /> + <location filename="../QScintilla/MiniEditor.py" line="3055" /> <source>View</source> <translation type="unfinished">Vista</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3060" /> + <location filename="../QScintilla/MiniEditor.py" line="3061" /> <source>Settings</source> <translation type="unfinished">Definições</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3063" /> + <location filename="../QScintilla/MiniEditor.py" line="3064" /> <source>Help</source> <translation>Ajuda</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3076" /> + <location filename="../QScintilla/MiniEditor.py" line="3077" /> <source><p>This part of the status bar displays the editor language.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3086" /> + <location filename="../QScintilla/MiniEditor.py" line="3087" /> <source><p>This part of the status bar displays an indication of the editors files writability.</p></source> <translation><p>Esta parte da barra de estado mostra as permissões dos ficheiro do editor.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3095" /> + <location filename="../QScintilla/MiniEditor.py" line="3096" /> <source><p>This part of the status bar displays the line number of the editor.</p></source> <translation><p>Esta parte da barra de estado mostra a linha do cursor do editor.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3104" /> + <location filename="../QScintilla/MiniEditor.py" line="3105" /> <source><p>This part of the status bar displays the cursor position of the editor.</p></source> <translation><p>Esta parte da barra de estado mostra a posição do cursor do editor.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3118" /> + <location filename="../QScintilla/MiniEditor.py" line="3119" /> <source><p>This part of the status bar allows zooming the editor.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3125" /> + <location filename="../QScintilla/MiniEditor.py" line="3126" /> <source>Ready</source> <translation>Preparado</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3201" /> - <source>eric Mini Editor</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="3202" /> + <source>eric Mini Editor</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="3203" /> <source>The document has unsaved changes.</source> <translation>O documento tem alterações por gravar.</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3231" /> - <source>Open File</source> - <translation>Abrir Ficheiro</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="3232" /> + <source>Open File</source> + <translation>Abrir Ficheiro</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="3233" /> <source><p>The file <b>{0}</b> could not be opened.</p><p>Reason: {1}</p></source> <translation><p>Não se pôde abrir o ficheiro <b>{0}</b>.</p><p> Motivo: {1}</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3260" /> + <location filename="../QScintilla/MiniEditor.py" line="3261" /> <source>File loaded</source> <translation>Ficheiro carregado</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3341" /> - <source>Save File</source> - <translation>Gravar Ficheiro</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="3342" /> + <source>Save File</source> + <translation>Gravar Ficheiro</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="3343" /> <source><p>The file <b>{0}</b> could not be saved.<br/>Reason: {1}</p></source> <translation><p>O ficheiro <b>{0}</b> não se pôde gravar. <br/>Motivo: {1}</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3348" /> + <location filename="../QScintilla/MiniEditor.py" line="3349" /> <source>File saved</source> <translation>Ficheiro gravado</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3360" /> + <location filename="../QScintilla/MiniEditor.py" line="3361" /> <source>[*] - {0}</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3380" /> - <location filename="../QScintilla/MiniEditor.py" line="3360" /> + <location filename="../QScintilla/MiniEditor.py" line="3381" /> + <location filename="../QScintilla/MiniEditor.py" line="3361" /> <source>Mini Editor</source> <translation>Mini Editor</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3735" /> - <location filename="../QScintilla/MiniEditor.py" line="3706" /> - <location filename="../QScintilla/MiniEditor.py" line="3373" /> + <location filename="../QScintilla/MiniEditor.py" line="3736" /> + <location filename="../QScintilla/MiniEditor.py" line="3707" /> + <location filename="../QScintilla/MiniEditor.py" line="3374" /> <source>Untitled</source> <translation>Sem Título</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3380" /> + <location filename="../QScintilla/MiniEditor.py" line="3381" /> <source>{0}[*] - {1}</source> <translation /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3701" /> + <location filename="../QScintilla/MiniEditor.py" line="3702" /> <source>Printing...</source> <translation>A imprimir...</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3717" /> + <location filename="../QScintilla/MiniEditor.py" line="3718" /> <source>Printing completed</source> <translation>Impressão completa</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3719" /> + <location filename="../QScintilla/MiniEditor.py" line="3720" /> <source>Error while printing</source> <translation>Erro durante a impressão</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3722" /> + <location filename="../QScintilla/MiniEditor.py" line="3723" /> <source>Printing aborted</source> <translation>Impressão cancelada</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3777" /> - <source>Select all</source> - <translation>Selecionar tudo</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="3778" /> + <source>Select all</source> + <translation>Selecionar tudo</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="3779" /> <source>Deselect all</source> <translation>Desselecionar tudo</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3792" /> + <location filename="../QScintilla/MiniEditor.py" line="3793" /> <source>Languages</source> <translation>Idiomas</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3795" /> + <location filename="../QScintilla/MiniEditor.py" line="3796" /> <source>No Language</source> <translation>Sem Idioma</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3816" /> + <location filename="../QScintilla/MiniEditor.py" line="3817" /> <source>Guessed</source> <translation>Adivinhado</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3838" /> - <location filename="../QScintilla/MiniEditor.py" line="3820" /> + <location filename="../QScintilla/MiniEditor.py" line="3839" /> + <location filename="../QScintilla/MiniEditor.py" line="3821" /> <source>Alternatives</source> <translation>Alternativas</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3835" /> + <location filename="../QScintilla/MiniEditor.py" line="3836" /> <source>Alternatives ({0})</source> <translation>Alternativas ({0})</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3867" /> - <source>Pygments Lexer</source> - <translation>Analizador Léxico Pygments</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="3868" /> + <source>Pygments Lexer</source> + <translation>Analizador Léxico Pygments</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="3869" /> <source>Select the Pygments lexer to apply.</source> <translation>Selecionar o analizador léxico Pygments a aplicar.</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="4413" /> - <source>EditorConfig Properties</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="4414" /> + <source>EditorConfig Properties</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="4415" /> <source><p>The EditorConfig properties for file <b>{0}</b> could not be loaded.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="4601" /> - <source>Save File to Device</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="4602" /> + <source>Save File to Device</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="4603" /> <source>Enter the complete device file path:</source> <translation type="unfinished" /> </message> @@ -55425,499 +55425,504 @@ <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="135" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="134" /> + <source>unnecessary {0} comprehension - rewrite using dict.fromkeys()</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="139" /> <source>sort keys - '{0}' should be before '{1}'</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="140" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="144" /> <source>the number of arguments for property getter method is wrong (should be 1 instead of {0})</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="145" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="149" /> <source>the number of arguments for property setter method is wrong (should be 2 instead of {0})</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="150" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="154" /> <source>the number of arguments for property deleter method is wrong (should be 1 instead of {0})</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="155" /> - <source>the name of the setter method is wrong (should be '{0}' instead of '{1}')</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="159" /> - <source>the name of the deleter method is wrong (should be '{0}' instead of '{1}')</source> + <source>the name of the setter method is wrong (should be '{0}' instead of '{1}')</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="163" /> - <source>the name of the setter decorator is wrong (should be '{0}' instead of '{1}')</source> + <source>the name of the deleter method is wrong (should be '{0}' instead of '{1}')</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="167" /> - <source>the name of the deleter decorator is wrong (should be '{0}' instead of '{1}')</source> + <source>the name of the setter decorator is wrong (should be '{0}' instead of '{1}')</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="171" /> + <source>the name of the deleter decorator is wrong (should be '{0}' instead of '{1}')</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="175" /> <source>multiple decorators were used to declare property '{0}'</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="176" /> - <source>use of 'datetime.datetime()' without 'tzinfo' argument should be avoided</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="180" /> + <source>use of 'datetime.datetime()' without 'tzinfo' argument should be avoided</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="184" /> <source>use of 'datetime.datetime.today()' should be avoided. Use 'datetime.datetime.now(tz=)' instead.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="185" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="189" /> <source>use of 'datetime.datetime.utcnow()' should be avoided. Use 'datetime.datetime.now(tz=datetime.timezone.utc)' instead.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="190" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="194" /> <source>use of 'datetime.datetime.utcfromtimestamp()' should be avoided. Use 'datetime.datetime.fromtimestamp(..., tz=datetime.timezone.utc)' instead.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="195" /> - <source>use of 'datetime.datetime.now()' without 'tz' argument should be avoided</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="199" /> + <source>use of 'datetime.datetime.now()' without 'tz' argument should be avoided</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="203" /> <source>use of 'datetime.datetime.fromtimestamp()' without 'tz' argument should be avoided</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="204" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="208" /> <source>use of 'datetime.datetime.strptime()' should be followed by '.replace(tzinfo=)'</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="209" /> - <source>use of 'datetime.datetime.fromordinal()' should be avoided</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="213" /> + <source>use of 'datetime.datetime.fromordinal()' should be avoided</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="217" /> <source>use of 'datetime.date()' should be avoided. Use 'datetime.datetime(, tzinfo=).date()' instead.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="218" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="222" /> <source>use of 'datetime.date.today()' should be avoided. Use 'datetime.datetime.now(tz=).date()' instead.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="223" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="227" /> <source>use of 'datetime.date.fromtimestamp()' should be avoided. Use 'datetime.datetime.fromtimestamp(tz=).date()' instead.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="228" /> - <source>use of 'datetime.date.fromordinal()' should be avoided</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="232" /> - <source>use of 'datetime.date.fromisoformat()' should be avoided</source> + <source>use of 'datetime.date.fromordinal()' should be avoided</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="236" /> + <source>use of 'datetime.date.fromisoformat()' should be avoided</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="240" /> <source>use of 'datetime.time()' without 'tzinfo' argument should be avoided</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="241" /> - <source>'sys.version[:3]' referenced (Python 3.10), use 'sys.version_info'</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="245" /> - <source>'sys.version[2]' referenced (Python 3.10), use 'sys.version_info'</source> + <source>'sys.version[:3]' referenced (Python 3.10), use 'sys.version_info'</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="249" /> - <source>'sys.version' compared to string (Python 3.10), use 'sys.version_info'</source> + <source>'sys.version[2]' referenced (Python 3.10), use 'sys.version_info'</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="253" /> - <source>'sys.version_info[0] == 3' referenced (Python 4), use '>='</source> + <source>'sys.version' compared to string (Python 3.10), use 'sys.version_info'</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="257" /> - <source>'six.PY3' referenced (Python 4), use 'not six.PY2'</source> + <source>'sys.version_info[0] == 3' referenced (Python 4), use '>='</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="261" /> + <source>'six.PY3' referenced (Python 4), use 'not six.PY2'</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="265" /> <source>'sys.version_info[1]' compared to integer (Python 4), compare 'sys.version_info' to tuple</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="266" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="270" /> <source>'sys.version_info.minor' compared to integer (Python 4), compare 'sys.version_info' to tuple</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="271" /> - <source>'sys.version[0]' referenced (Python 10), use 'sys.version_info'</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="275" /> - <source>'sys.version' compared to string (Python 10), use 'sys.version_info'</source> + <source>'sys.version[0]' referenced (Python 10), use 'sys.version_info'</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="279" /> + <source>'sys.version' compared to string (Python 10), use 'sys.version_info'</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="283" /> <source>'sys.version[:1]' referenced (Python 10), use 'sys.version_info'</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="284" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="288" /> <source>Do not use bare 'except:', it also catches unexpected events like memory errors, interrupts, system exit, and so on. Prefer excepting specific exceptions. If you're sure what you're doing, be explicit and write 'except BaseException:'.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="291" /> - <source>Python does not support the unary prefix increment</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="295" /> + <source>Python does not support the unary prefix increment</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="299" /> <source>assigning to 'os.environ' does not clear the environment - use 'os.environ.clear()'</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="300" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="304" /> <source>using 'hasattr(x, "__call__")' to test if 'x' is callable is unreliable. Use 'callable(x)' for consistent results.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="305" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="309" /> <source>using .strip() with multi-character strings is misleading. Use .replace(), .removeprefix(), .removesuffix(), or regular expressions to remove string fragments.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="311" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="315" /> <source>loop control variable {0} not used within the loop body - start the name with an underscore</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="316" /> - <source>do not call getattr with a constant attribute value</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="320" /> - <source>do not call setattr with a constant attribute value</source> + <source>do not call getattr with a constant attribute value</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="324" /> - <source>do not call assert False since python -O removes these calls</source> + <source>do not call setattr with a constant attribute value</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="328" /> + <source>do not call assert False since python -O removes these calls</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="332" /> <source>return/continue/break inside finally blocks cause exceptions to be silenced. Exceptions should be silenced in except blocks. Control statements can be moved outside the finally block.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="334" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="338" /> <source>A length-one tuple literal is redundant. Write 'except {0}:' instead of 'except ({0},):'.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="339" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="343" /> <source>Redundant exception types in 'except ({0}){1}:'. Write 'except {2}{1}:', which catches exactly the same exceptions.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="344" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="348" /> <source>Result of comparison is not used. This line doesn't do anything. Did you intend to prepend it with assert?</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="349" /> - <source>Cannot raise a literal. Did you intend to return it or raise an Exception?</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="353" /> + <source>Cannot raise a literal. Did you intend to return it or raise an Exception?</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="357" /> <source>'assertRaises(Exception)' and 'pytest.raises(Exception)' should be considered evil. They can lead to your test passing even if the code being tested is never executed due to a typo. Assert for a more specific exception (builtin or custom), or use 'assertRaisesRegex' (if using 'assertRaises'), or add the 'match' keyword argument (if using 'pytest.raises'), or use the context manager form with a target.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="362" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="366" /> <source>Found useless {0} expression. Consider either assigning it to a variable or removing it.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="367" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="371" /> <source>Use of 'functools.lru_cache' or 'functools.cache' on methods can lead to memory leaks. The cache may retain instance references, preventing garbage collection.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="373" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="377" /> <source>Found for loop that reassigns the iterable it is iterating with each iterable value.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="378" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="382" /> <source>f-string used as docstring. This will be interpreted by python as a joined string rather than a docstring.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="383" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="387" /> <source>No arguments passed to 'contextlib.suppress'. No exceptions will be suppressed and therefore this context manager is redundant.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="388" /> - <source>Function definition does not bind loop variable '{0}'.</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="392" /> + <source>Function definition does not bind loop variable '{0}'.</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="396" /> <source>{0} is an abstract base class, but none of the methods it defines are abstract. This is not necessarily an error, but you might have forgotten to add the @abstractmethod decorator, potentially in conjunction with @classmethod, @property and/or @staticmethod.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="399" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="403" /> <source>Exception '{0}' has been caught multiple times. Only the first except will be considered and all other except catches can be safely removed.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="404" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="408" /> <source>Star-arg unpacking after a keyword argument is strongly discouraged, because it only works when the keyword parameter is declared after all parameters supplied by the unpacked sequence, and this change of ordering can surprise and mislead readers.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="411" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="415" /> <source>{0} is an empty method in an abstract base class, but has no abstract decorator. Consider adding @abstractmethod.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="416" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="420" /> <source>No explicit stacklevel argument found. The warn method from the warnings module uses a stacklevel of 1 by default. This will only show a stack trace for the line on which the warn method is called. It is therefore recommended to use a stacklevel of 2 or greater to provide more information to the user.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="424" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="428" /> <source>Using 'except ():' with an empty tuple does not handle/catch anything. Add exceptions to handle.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="429" /> - <source>Except handlers should only be names of exception classes</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="433" /> + <source>Except handlers should only be names of exception classes</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="437" /> <source>Using the generator returned from 'itertools.groupby()' more than once will do nothing on the second usage. Save the result to a list, if the result is needed multiple times.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="439" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="443" /> <source>Possible unintentional type annotation (using ':'). Did you mean to assign (using '=')?</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="444" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="448" /> <source>Set should not contain duplicate item '{0}'. Duplicate items will be replaced with a single item at runtime.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="449" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="453" /> <source>re.{0} should get '{1}' and 'flags' passed as keyword arguments to avoid confusion due to unintuitive argument positions.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="454" /> - <source>Static key in dict comprehension: {0!r}.</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="458" /> - <source>Don't except 'BaseException' unless you plan to re-raise it.</source> + <source>Static key in dict comprehension: {0!r}.</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="462" /> + <source>Don't except 'BaseException' unless you plan to re-raise it.</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="466" /> <source>Class '__init__' methods must not return or yield and any values.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="467" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="471" /> <source>Editing a loop's mutable iterable often leads to unexpected results/bugs.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="472" /> - <source>unncessary f-string</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="476" /> + <source>unncessary f-string</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="480" /> <source>cannot use 'self.__class__' as first argument of 'super()' call</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="481" /> - <source>found {0} formatter</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="485" /> - <source>format string does contain unindexed parameters</source> + <source>found {0} formatter</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="489" /> - <source>docstring does contain unindexed parameters</source> + <source>format string does contain unindexed parameters</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="493" /> - <source>other string does contain unindexed parameters</source> + <source>docstring does contain unindexed parameters</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="497" /> - <source>format call uses too large index ({0})</source> + <source>other string does contain unindexed parameters</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="501" /> - <source>format call uses missing keyword ({0})</source> + <source>format call uses too large index ({0})</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="505" /> - <source>format call uses keyword arguments but no named entries</source> + <source>format call uses missing keyword ({0})</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="509" /> - <source>format call uses variable arguments but no numbered entries</source> + <source>format call uses keyword arguments but no named entries</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="513" /> - <source>format call uses implicit and explicit indexes together</source> + <source>format call uses variable arguments but no numbered entries</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="517" /> - <source>format call provides unused index ({0})</source> + <source>format call uses implicit and explicit indexes together</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="521" /> + <source>format call provides unused index ({0})</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="525" /> <source>format call provides unused keyword ({0})</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="526" /> - <source>expected these __future__ imports: {0}; but only got: {1}</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="530" /> + <source>expected these __future__ imports: {0}; but only got: {1}</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="534" /> <source>expected these __future__ imports: {0}; but got none</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="535" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="539" /> <source>gettext import with alias _ found: {0}</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="540" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="544" /> <source>print statement found</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="545" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="549" /> <source>one element tuple found</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="554" /> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="550" /> - <source>mutable default argument of type {0}</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="558" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="554" /> + <source>mutable default argument of type {0}</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="562" /> <source>mutable default argument of function call '{0}'</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="563" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="567" /> <source>None should not be added at any return if function has no return value except None</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="568" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="572" /> <source>an explicit value at every return should be added if function has a return value except None</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="573" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="577" /> <source>an explicit return at the end of the function should be added if it has a return value except None</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="578" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="582" /> <source>a value should not be assigned to a variable if it will be used as a return value only</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="584" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="588" /> <source>prefer implied line continuation inside parentheses, brackets and braces as opposed to a backslash</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="590" /> - <source>implicitly concatenated string or bytes literals on one line</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="594" /> - <source>implicitly concatenated string or bytes literals over continuation line</source> + <source>implicitly concatenated string or bytes literals on one line</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="598" /> + <source>implicitly concatenated string or bytes literals over continuation line</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="602" /> <source>explicitly concatenated string or bytes should be implicitly concatenated</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="603" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="607" /> <source>commented code lines should be removed</source> <translation type="unfinished" /> </message> @@ -86286,15 +86291,15 @@ <context> <name>Tabview</name> <message> - <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="1132" /> - <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="1067" /> + <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="1134" /> + <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="1069" /> <source>Untitled {0}</source> <translation>Sem título {0}</translation> </message> <message> - <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="1532" /> - <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="1143" /> - <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="1088" /> + <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="1534" /> + <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="1145" /> + <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="1090" /> <source>{0} (ro)</source> <translation /> </message> @@ -91014,7 +91019,7 @@ <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7844" /> + <location filename="../UI/UserInterface.py" line="7860" /> <location filename="../UI/UserInterface.py" line="1946" /> <location filename="../UI/UserInterface.py" line="1939" /> <source>Load session</source> @@ -92105,7 +92110,7 @@ <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6593" /> + <location filename="../UI/UserInterface.py" line="6609" /> <location filename="../UI/UserInterface.py" line="3163" /> <source>Snapshot</source> <translation type="unfinished" /> @@ -92342,8 +92347,8 @@ <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7552" /> - <location filename="../UI/UserInterface.py" line="7533" /> + <location filename="../UI/UserInterface.py" line="7568" /> + <location filename="../UI/UserInterface.py" line="7549" /> <location filename="../UI/UserInterface.py" line="3393" /> <source>Export Keyboard Shortcuts</source> <translation>Exportar Atalhos de Teclado</translation> @@ -92364,7 +92369,7 @@ <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7571" /> + <location filename="../UI/UserInterface.py" line="7587" /> <location filename="../UI/UserInterface.py" line="3412" /> <source>Import Keyboard Shortcuts</source> <translation>Importar Atalhos de Teclado</translation> @@ -92773,7 +92778,7 @@ <translation>Definições</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6321" /> + <location filename="../UI/UserInterface.py" line="6337" /> <location filename="../UI/UserInterface.py" line="4185" /> <location filename="../UI/UserInterface.py" line="4170" /> <source>Help</source> @@ -92951,314 +92956,314 @@ <translation>&Esconder tudo</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6458" /> - <location filename="../UI/UserInterface.py" line="6447" /> - <location filename="../UI/UserInterface.py" line="6399" /> - <location filename="../UI/UserInterface.py" line="6389" /> - <location filename="../UI/UserInterface.py" line="6210" /> - <location filename="../UI/UserInterface.py" line="6200" /> - <location filename="../UI/UserInterface.py" line="6142" /> - <location filename="../UI/UserInterface.py" line="6132" /> + <location filename="../UI/UserInterface.py" line="6474" /> + <location filename="../UI/UserInterface.py" line="6463" /> + <location filename="../UI/UserInterface.py" line="6415" /> + <location filename="../UI/UserInterface.py" line="6405" /> + <location filename="../UI/UserInterface.py" line="6228" /> + <location filename="../UI/UserInterface.py" line="6218" /> + <location filename="../UI/UserInterface.py" line="6160" /> + <location filename="../UI/UserInterface.py" line="6150" /> <source>Problem</source> <translation>Problema</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6459" /> - <location filename="../UI/UserInterface.py" line="6448" /> - <location filename="../UI/UserInterface.py" line="6400" /> - <location filename="../UI/UserInterface.py" line="6390" /> - <location filename="../UI/UserInterface.py" line="6211" /> - <location filename="../UI/UserInterface.py" line="6201" /> - <location filename="../UI/UserInterface.py" line="6143" /> - <location filename="../UI/UserInterface.py" line="6133" /> + <location filename="../UI/UserInterface.py" line="6475" /> + <location filename="../UI/UserInterface.py" line="6464" /> + <location filename="../UI/UserInterface.py" line="6416" /> + <location filename="../UI/UserInterface.py" line="6406" /> + <location filename="../UI/UserInterface.py" line="6229" /> + <location filename="../UI/UserInterface.py" line="6219" /> + <location filename="../UI/UserInterface.py" line="6161" /> + <location filename="../UI/UserInterface.py" line="6151" /> <source><p>The file <b>{0}</b> does not exist or is zero length.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6702" /> - <location filename="../UI/UserInterface.py" line="6613" /> - <location filename="../UI/UserInterface.py" line="6494" /> - <location filename="../UI/UserInterface.py" line="6471" /> - <location filename="../UI/UserInterface.py" line="6412" /> - <location filename="../UI/UserInterface.py" line="6359" /> - <location filename="../UI/UserInterface.py" line="6337" /> - <location filename="../UI/UserInterface.py" line="6286" /> - <location filename="../UI/UserInterface.py" line="6277" /> - <location filename="../UI/UserInterface.py" line="6242" /> - <location filename="../UI/UserInterface.py" line="6233" /> - <location filename="../UI/UserInterface.py" line="6174" /> - <location filename="../UI/UserInterface.py" line="6165" /> + <location filename="../UI/UserInterface.py" line="6718" /> + <location filename="../UI/UserInterface.py" line="6629" /> + <location filename="../UI/UserInterface.py" line="6510" /> + <location filename="../UI/UserInterface.py" line="6487" /> + <location filename="../UI/UserInterface.py" line="6428" /> + <location filename="../UI/UserInterface.py" line="6375" /> + <location filename="../UI/UserInterface.py" line="6353" /> + <location filename="../UI/UserInterface.py" line="6304" /> + <location filename="../UI/UserInterface.py" line="6295" /> + <location filename="../UI/UserInterface.py" line="6260" /> + <location filename="../UI/UserInterface.py" line="6251" /> + <location filename="../UI/UserInterface.py" line="6192" /> + <location filename="../UI/UserInterface.py" line="6183" /> <source>Process Generation Error</source> <translation>Erro na Criação de Processo</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6166" /> + <location filename="../UI/UserInterface.py" line="6184" /> <source><p>Could not start Qt-Designer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6175" /> + <location filename="../UI/UserInterface.py" line="6193" /> <source><p>Could not find the Qt-Designer executable.<br>Ensure that it is installed and optionally configured on the Qt configuration page.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6234" /> + <location filename="../UI/UserInterface.py" line="6252" /> <source><p>Could not start Qt-Linguist.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6243" /> + <location filename="../UI/UserInterface.py" line="6261" /> <source><p>Could not find the Qt-Linguist executable.<br>Ensure that it is installed and optionally configured on the Qt configuration page.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6278" /> + <location filename="../UI/UserInterface.py" line="6296" /> <source><p>Could not start Qt-Assistant.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6287" /> + <location filename="../UI/UserInterface.py" line="6305" /> <source><p>Could not find the Qt-Assistant executable.<br>Ensure that it is installed and optionally configured on the Qt configuration page.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6322" /> - <source>Currently no custom viewer is selected. Please use the preferences dialog to specify one.</source> - <translation>Não há nenhum visor personalizado selecionado. Por favor use a caixa de diálogo das preferências para escolher um.</translation> - </message> - <message> <location filename="../UI/UserInterface.py" line="6338" /> + <source>Currently no custom viewer is selected. Please use the preferences dialog to specify one.</source> + <translation>Não há nenhum visor personalizado selecionado. Por favor use a caixa de diálogo das preferências para escolher um.</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="6354" /> <source><p>Could not start custom viewer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6360" /> + <location filename="../UI/UserInterface.py" line="6376" /> <source><p>Could not start the help viewer.<br>Ensure that it is available as <b>hh</b>.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6413" /> + <location filename="../UI/UserInterface.py" line="6429" /> <source><p>Could not start UI Previewer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6472" /> + <location filename="../UI/UserInterface.py" line="6488" /> <source><p>Could not start Translation Previewer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6495" /> + <location filename="../UI/UserInterface.py" line="6511" /> <source><p>Could not start SQL Browser.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6594" /> + <location filename="../UI/UserInterface.py" line="6610" /> <source><p>The snapshot utility is not available for Wayland desktop sessions.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6614" /> + <location filename="../UI/UserInterface.py" line="6630" /> <source><p>Could not start Snapshot tool.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6647" /> - <location filename="../UI/UserInterface.py" line="6637" /> + <location filename="../UI/UserInterface.py" line="6663" /> + <location filename="../UI/UserInterface.py" line="6653" /> <source>External Tools</source> <translation>Ferramentas Externas</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6638" /> + <location filename="../UI/UserInterface.py" line="6654" /> <source>No tool entry found for external tool '{0}' in tool group '{1}'.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6648" /> + <location filename="../UI/UserInterface.py" line="6664" /> <source>No toolgroup entry '{0}' found.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6685" /> + <location filename="../UI/UserInterface.py" line="6701" /> <source>Starting process '{0} {1}'. </source> <translation>A iniciar processo '{0} {1}'. </translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6703" /> + <location filename="../UI/UserInterface.py" line="6719" /> <source><p>Could not start the tool entry <b>{0}</b>.<br>Ensure that it is available as <b>{1}</b>.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6782" /> + <location filename="../UI/UserInterface.py" line="6798" /> <source>Process '{0}' has exited. </source> <translation>Processo '{0}' saiu.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7069" /> - <location filename="../UI/UserInterface.py" line="7007" /> - <location filename="../UI/UserInterface.py" line="6963" /> - <location filename="../UI/UserInterface.py" line="6889" /> - <location filename="../UI/UserInterface.py" line="6825" /> + <location filename="../UI/UserInterface.py" line="7085" /> + <location filename="../UI/UserInterface.py" line="7023" /> + <location filename="../UI/UserInterface.py" line="6979" /> + <location filename="../UI/UserInterface.py" line="6905" /> + <location filename="../UI/UserInterface.py" line="6841" /> <source>Documentation Missing</source> <translation>Falta a Documentação</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7070" /> - <location filename="../UI/UserInterface.py" line="7008" /> - <location filename="../UI/UserInterface.py" line="6964" /> - <location filename="../UI/UserInterface.py" line="6890" /> - <location filename="../UI/UserInterface.py" line="6826" /> + <location filename="../UI/UserInterface.py" line="7086" /> + <location filename="../UI/UserInterface.py" line="7024" /> + <location filename="../UI/UserInterface.py" line="6980" /> + <location filename="../UI/UserInterface.py" line="6906" /> + <location filename="../UI/UserInterface.py" line="6842" /> <source><p>The documentation starting point "<b>{0}</b>" could not be found.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7051" /> - <location filename="../UI/UserInterface.py" line="6933" /> + <location filename="../UI/UserInterface.py" line="7067" /> + <location filename="../UI/UserInterface.py" line="6949" /> <source>Documentation</source> <translation>Documentação</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6934" /> + <location filename="../UI/UserInterface.py" line="6950" /> <source><p>The PyQt{0} documentation starting point has not been configured.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7052" /> + <location filename="../UI/UserInterface.py" line="7068" /> <source><p>The PySide{0} documentation starting point has not been configured.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7231" /> - <location filename="../UI/UserInterface.py" line="7167" /> + <location filename="../UI/UserInterface.py" line="7247" /> + <location filename="../UI/UserInterface.py" line="7183" /> <source>Start Web Browser</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7168" /> + <location filename="../UI/UserInterface.py" line="7184" /> <source>The eric web browser could not be started.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7232" /> + <location filename="../UI/UserInterface.py" line="7248" /> <source><p>The eric web browser is not started.</p><p>Reason: {0}</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7278" /> + <location filename="../UI/UserInterface.py" line="7294" /> <source>Open Browser</source> <translation>Abrir Navegador</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7278" /> + <location filename="../UI/UserInterface.py" line="7294" /> <source>Could not start a web browser</source> <translation>Não se pôde iniciar um navegador web</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7573" /> - <location filename="../UI/UserInterface.py" line="7535" /> + <location filename="../UI/UserInterface.py" line="7589" /> + <location filename="../UI/UserInterface.py" line="7551" /> <source>Keyboard Shortcuts File (*.ekj)</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7553" /> + <location filename="../UI/UserInterface.py" line="7569" /> <source><p>The keyboard shortcuts file <b>{0}</b> exists already. Overwrite it?</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7757" /> + <location filename="../UI/UserInterface.py" line="7773" /> <source>Load crash session...</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7760" /> + <location filename="../UI/UserInterface.py" line="7776" /> <source>Clean crash sessions...</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7797" /> + <location filename="../UI/UserInterface.py" line="7813" /> <source>Read Session</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7798" /> + <location filename="../UI/UserInterface.py" line="7814" /> <source><p>The session file <b>{0}</b> could not be read.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7821" /> + <location filename="../UI/UserInterface.py" line="7837" /> <source>Save Session</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7846" /> - <location filename="../UI/UserInterface.py" line="7823" /> + <location filename="../UI/UserInterface.py" line="7862" /> + <location filename="../UI/UserInterface.py" line="7839" /> <source>eric Session Files (*.esj)</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7913" /> + <location filename="../UI/UserInterface.py" line="7929" /> <source>Found Crash Sessions</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7914" /> + <location filename="../UI/UserInterface.py" line="7930" /> <source>These crash session files were found. Select the one to open. Select 'Cancel' to not open a crash session.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7987" /> + <location filename="../UI/UserInterface.py" line="8003" /> <source>Clean stale crash sessions</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7988" /> + <location filename="../UI/UserInterface.py" line="8004" /> <source>Do you really want to delete these stale crash session files?</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="8364" /> + <location filename="../UI/UserInterface.py" line="8380" /> <source>Drop Error</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="8365" /> + <location filename="../UI/UserInterface.py" line="8381" /> <source><p><b>{0}</b> is not a file.</p></source> <translation><p><b>{0}</b> não é um ficheiro.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="8551" /> + <location filename="../UI/UserInterface.py" line="8567" /> <source>Upgrade available</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="8552" /> + <location filename="../UI/UserInterface.py" line="8568" /> <source><p>A newer version of the <b>eric-ide</b> package is available at <a href="{0}/eric-ide/">PyPI</a>.</p><p>Installed: {1}<br/>Available: <b>{2}</b></p><p>Shall <b>eric-ide</b> be upgraded?</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="8597" /> + <location filename="../UI/UserInterface.py" line="8613" /> <source>First time usage</source> <translation>Usado a primeira vez</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="8598" /> + <location filename="../UI/UserInterface.py" line="8614" /> <source>eric has not been configured yet. The configuration dialog will be started.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="8620" /> + <location filename="../UI/UserInterface.py" line="8636" /> <source>Select Workspace Directory</source> <translation>Selecionar o Diretório de Trabalho</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="8788" /> + <location filename="../UI/UserInterface.py" line="8804" /> <source>Unsaved Data Detected</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="8789" /> + <location filename="../UI/UserInterface.py" line="8805" /> <source>Some editors contain unsaved data. Shall these be saved?</source> <translation type="unfinished" /> </message> @@ -94722,7 +94727,7 @@ <translation><b>Imprimir Ficheiro</b><p>Imprime o conteúdo da janela do editor atual.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="775" /> + <location filename="../QScintilla/MiniEditor.py" line="776" /> <location filename="../ViewManager/ViewManager.py" line="913" /> <location filename="../ViewManager/ViewManager.py" line="911" /> <source>Print Preview</source> @@ -95499,8 +95504,8 @@ <translation type="unfinished" /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="926" /> <location filename="../QScintilla/MiniEditor.py" line="925" /> - <location filename="../QScintilla/MiniEditor.py" line="924" /> <location filename="../QScintilla/ShellWindow.py" line="575" /> <location filename="../QScintilla/ShellWindow.py" line="574" /> <location filename="../ViewManager/ViewManager.py" line="1858" /> @@ -95509,22 +95514,22 @@ <translation>Mover um caráter à esquerda</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="926" /> + <location filename="../QScintilla/MiniEditor.py" line="927" /> <location filename="../QScintilla/ShellWindow.py" line="576" /> <location filename="../ViewManager/ViewManager.py" line="1859" /> <source>Left</source> <translation /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="934" /> + <location filename="../QScintilla/MiniEditor.py" line="935" /> <location filename="../QScintilla/ShellWindow.py" line="584" /> <location filename="../ViewManager/ViewManager.py" line="1867" /> <source>Meta+B</source> <translation>Meta+B</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="942" /> <location filename="../QScintilla/MiniEditor.py" line="941" /> - <location filename="../QScintilla/MiniEditor.py" line="940" /> <location filename="../QScintilla/ShellWindow.py" line="591" /> <location filename="../QScintilla/ShellWindow.py" line="590" /> <location filename="../ViewManager/ViewManager.py" line="1874" /> @@ -95533,22 +95538,22 @@ <translation>Mover um caráter à direita</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="942" /> + <location filename="../QScintilla/MiniEditor.py" line="943" /> <location filename="../QScintilla/ShellWindow.py" line="592" /> <location filename="../ViewManager/ViewManager.py" line="1875" /> <source>Right</source> <translation /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="949" /> + <location filename="../QScintilla/MiniEditor.py" line="950" /> <location filename="../QScintilla/ShellWindow.py" line="599" /> <location filename="../ViewManager/ViewManager.py" line="1882" /> <source>Meta+F</source> <translation>Meta+F</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="958" /> <location filename="../QScintilla/MiniEditor.py" line="957" /> - <location filename="../QScintilla/MiniEditor.py" line="956" /> <location filename="../QScintilla/ShellWindow.py" line="683" /> <location filename="../QScintilla/ShellWindow.py" line="682" /> <location filename="../ViewManager/ViewManager.py" line="1890" /> @@ -95557,22 +95562,22 @@ <translation>Mover uma linha acima</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="958" /> + <location filename="../QScintilla/MiniEditor.py" line="959" /> <location filename="../QScintilla/ShellWindow.py" line="684" /> <location filename="../ViewManager/ViewManager.py" line="1891" /> <source>Up</source> <translation /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="965" /> + <location filename="../QScintilla/MiniEditor.py" line="966" /> <location filename="../QScintilla/ShellWindow.py" line="691" /> <location filename="../ViewManager/ViewManager.py" line="1898" /> <source>Meta+P</source> <translation type="unfinished">Meta+P</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="974" /> <location filename="../QScintilla/MiniEditor.py" line="973" /> - <location filename="../QScintilla/MiniEditor.py" line="972" /> <location filename="../QScintilla/ShellWindow.py" line="699" /> <location filename="../QScintilla/ShellWindow.py" line="698" /> <location filename="../ViewManager/ViewManager.py" line="1906" /> @@ -95581,30 +95586,30 @@ <translation>Mover uma linha abaixo</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="974" /> + <location filename="../QScintilla/MiniEditor.py" line="975" /> <location filename="../QScintilla/ShellWindow.py" line="700" /> <location filename="../ViewManager/ViewManager.py" line="1907" /> <source>Down</source> <translation /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="981" /> + <location filename="../QScintilla/MiniEditor.py" line="982" /> <location filename="../QScintilla/ShellWindow.py" line="707" /> <location filename="../ViewManager/ViewManager.py" line="1914" /> <source>Meta+N</source> <translation type="unfinished">Meta+N</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="990" /> <location filename="../QScintilla/MiniEditor.py" line="989" /> - <location filename="../QScintilla/MiniEditor.py" line="988" /> <location filename="../ViewManager/ViewManager.py" line="1922" /> <location filename="../ViewManager/ViewManager.py" line="1921" /> <source>Move left one word part</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1029" /> - <location filename="../QScintilla/MiniEditor.py" line="997" /> + <location filename="../QScintilla/MiniEditor.py" line="1030" /> + <location filename="../QScintilla/MiniEditor.py" line="998" /> <location filename="../QScintilla/ShellWindow.py" line="615" /> <location filename="../ViewManager/ViewManager.py" line="1962" /> <location filename="../ViewManager/ViewManager.py" line="1930" /> @@ -95612,25 +95617,25 @@ <translation /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1006" /> <location filename="../QScintilla/MiniEditor.py" line="1005" /> - <location filename="../QScintilla/MiniEditor.py" line="1004" /> <location filename="../ViewManager/ViewManager.py" line="1938" /> <location filename="../ViewManager/ViewManager.py" line="1937" /> <source>Move right one word part</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2159" /> - <location filename="../QScintilla/MiniEditor.py" line="1049" /> - <location filename="../QScintilla/MiniEditor.py" line="1013" /> + <location filename="../QScintilla/MiniEditor.py" line="2160" /> + <location filename="../QScintilla/MiniEditor.py" line="1050" /> + <location filename="../QScintilla/MiniEditor.py" line="1014" /> <location filename="../ViewManager/ViewManager.py" line="3071" /> <location filename="../ViewManager/ViewManager.py" line="1946" /> <source>Alt+Right</source> <translation /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1022" /> <location filename="../QScintilla/MiniEditor.py" line="1021" /> - <location filename="../QScintilla/MiniEditor.py" line="1020" /> <location filename="../QScintilla/ShellWindow.py" line="607" /> <location filename="../QScintilla/ShellWindow.py" line="606" /> <location filename="../ViewManager/ViewManager.py" line="1954" /> @@ -95639,8 +95644,8 @@ <translation>Mover uma palavra à esquerda</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1089" /> - <location filename="../QScintilla/MiniEditor.py" line="1033" /> + <location filename="../QScintilla/MiniEditor.py" line="1090" /> + <location filename="../QScintilla/MiniEditor.py" line="1034" /> <location filename="../QScintilla/ShellWindow.py" line="619" /> <location filename="../ViewManager/ViewManager.py" line="2018" /> <location filename="../ViewManager/ViewManager.py" line="1966" /> @@ -95648,8 +95653,8 @@ <translation /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1042" /> <location filename="../QScintilla/MiniEditor.py" line="1041" /> - <location filename="../QScintilla/MiniEditor.py" line="1040" /> <location filename="../QScintilla/ShellWindow.py" line="627" /> <location filename="../QScintilla/ShellWindow.py" line="626" /> <location filename="../ViewManager/ViewManager.py" line="1974" /> @@ -95658,8 +95663,8 @@ <translation>Mover uma palavra à direita</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1843" /> - <location filename="../QScintilla/MiniEditor.py" line="1053" /> + <location filename="../QScintilla/MiniEditor.py" line="1844" /> + <location filename="../QScintilla/MiniEditor.py" line="1054" /> <location filename="../QScintilla/ShellWindow.py" line="635" /> <location filename="../ViewManager/ViewManager.py" line="2755" /> <location filename="../ViewManager/ViewManager.py" line="1982" /> @@ -95667,8 +95672,8 @@ <translation /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1063" /> - <location filename="../QScintilla/MiniEditor.py" line="1060" /> + <location filename="../QScintilla/MiniEditor.py" line="1064" /> + <location filename="../QScintilla/MiniEditor.py" line="1061" /> <location filename="../QScintilla/ShellWindow.py" line="645" /> <location filename="../QScintilla/ShellWindow.py" line="642" /> <location filename="../ViewManager/ViewManager.py" line="1992" /> @@ -95677,8 +95682,8 @@ <translation>Mover ao primeiro caráter vísivel da linha do documento</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2104" /> - <location filename="../QScintilla/MiniEditor.py" line="1073" /> + <location filename="../QScintilla/MiniEditor.py" line="2105" /> + <location filename="../QScintilla/MiniEditor.py" line="1074" /> <location filename="../QScintilla/ShellWindow.py" line="655" /> <location filename="../ViewManager/ViewManager.py" line="3016" /> <location filename="../ViewManager/ViewManager.py" line="2002" /> @@ -95686,22 +95691,22 @@ <translation type="unfinished">Página Inicial</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1082" /> <location filename="../QScintilla/MiniEditor.py" line="1081" /> - <location filename="../QScintilla/MiniEditor.py" line="1080" /> <location filename="../ViewManager/ViewManager.py" line="2010" /> <location filename="../ViewManager/ViewManager.py" line="2009" /> <source>Move to start of display line</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1093" /> + <location filename="../QScintilla/MiniEditor.py" line="1094" /> <location filename="../ViewManager/ViewManager.py" line="2022" /> <source>Alt+Home</source> <translation /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1102" /> <location filename="../QScintilla/MiniEditor.py" line="1101" /> - <location filename="../QScintilla/MiniEditor.py" line="1100" /> <location filename="../QScintilla/ShellWindow.py" line="663" /> <location filename="../QScintilla/ShellWindow.py" line="662" /> <location filename="../ViewManager/ViewManager.py" line="2030" /> @@ -95710,15 +95715,15 @@ <translation>Mover ao fim da linha do documento</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1109" /> + <location filename="../QScintilla/MiniEditor.py" line="1110" /> <location filename="../QScintilla/ShellWindow.py" line="671" /> <location filename="../ViewManager/ViewManager.py" line="2038" /> <source>Meta+E</source> <translation type="unfinished">Meta+E</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2121" /> - <location filename="../QScintilla/MiniEditor.py" line="1113" /> + <location filename="../QScintilla/MiniEditor.py" line="2122" /> + <location filename="../QScintilla/MiniEditor.py" line="1114" /> <location filename="../QScintilla/ShellWindow.py" line="675" /> <location filename="../ViewManager/ViewManager.py" line="3033" /> <location filename="../ViewManager/ViewManager.py" line="2042" /> @@ -95726,16 +95731,16 @@ <translation type="unfinished">Fim</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1122" /> <location filename="../QScintilla/MiniEditor.py" line="1121" /> - <location filename="../QScintilla/MiniEditor.py" line="1120" /> <location filename="../ViewManager/ViewManager.py" line="2050" /> <location filename="../ViewManager/ViewManager.py" line="2049" /> <source>Scroll view down one line</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1225" /> - <location filename="../QScintilla/MiniEditor.py" line="1122" /> + <location filename="../QScintilla/MiniEditor.py" line="1226" /> + <location filename="../QScintilla/MiniEditor.py" line="1123" /> <location filename="../QScintilla/ShellWindow.py" line="716" /> <location filename="../ViewManager/ViewManager.py" line="2154" /> <location filename="../ViewManager/ViewManager.py" line="2051" /> @@ -95743,16 +95748,16 @@ <translation /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1134" /> <location filename="../QScintilla/MiniEditor.py" line="1133" /> - <location filename="../QScintilla/MiniEditor.py" line="1132" /> <location filename="../ViewManager/ViewManager.py" line="2062" /> <location filename="../ViewManager/ViewManager.py" line="2061" /> <source>Scroll view up one line</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1205" /> - <location filename="../QScintilla/MiniEditor.py" line="1134" /> + <location filename="../QScintilla/MiniEditor.py" line="1206" /> + <location filename="../QScintilla/MiniEditor.py" line="1135" /> <location filename="../QScintilla/ShellWindow.py" line="728" /> <location filename="../ViewManager/ViewManager.py" line="2134" /> <location filename="../ViewManager/ViewManager.py" line="2063" /> @@ -95760,36 +95765,36 @@ <translation /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1146" /> <location filename="../QScintilla/MiniEditor.py" line="1145" /> - <location filename="../QScintilla/MiniEditor.py" line="1144" /> <location filename="../ViewManager/ViewManager.py" line="2074" /> <location filename="../ViewManager/ViewManager.py" line="2073" /> <source>Move up one paragraph</source> <translation>Mover um parágrafo acima</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1146" /> + <location filename="../QScintilla/MiniEditor.py" line="1147" /> <location filename="../ViewManager/ViewManager.py" line="2075" /> <source>Alt+Up</source> <translation /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1158" /> <location filename="../QScintilla/MiniEditor.py" line="1157" /> - <location filename="../QScintilla/MiniEditor.py" line="1156" /> <location filename="../ViewManager/ViewManager.py" line="2086" /> <location filename="../ViewManager/ViewManager.py" line="2085" /> <source>Move down one paragraph</source> <translation>Mover um parágrafo abaixo</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1158" /> + <location filename="../QScintilla/MiniEditor.py" line="1159" /> <location filename="../ViewManager/ViewManager.py" line="2087" /> <source>Alt+Down</source> <translation /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1170" /> <location filename="../QScintilla/MiniEditor.py" line="1169" /> - <location filename="../QScintilla/MiniEditor.py" line="1168" /> <location filename="../QScintilla/ShellWindow.py" line="739" /> <location filename="../QScintilla/ShellWindow.py" line="738" /> <location filename="../ViewManager/ViewManager.py" line="2098" /> @@ -95798,15 +95803,15 @@ <translation>Mover uma página acima</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1170" /> + <location filename="../QScintilla/MiniEditor.py" line="1171" /> <location filename="../QScintilla/ShellWindow.py" line="740" /> <location filename="../ViewManager/ViewManager.py" line="2099" /> <source>PgUp</source> <translation /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1182" /> <location filename="../QScintilla/MiniEditor.py" line="1181" /> - <location filename="../QScintilla/MiniEditor.py" line="1180" /> <location filename="../QScintilla/ShellWindow.py" line="751" /> <location filename="../QScintilla/ShellWindow.py" line="750" /> <location filename="../ViewManager/ViewManager.py" line="2110" /> @@ -95815,50 +95820,50 @@ <translation>Mover uma pagina abaixo</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1182" /> + <location filename="../QScintilla/MiniEditor.py" line="1183" /> <location filename="../QScintilla/ShellWindow.py" line="752" /> <location filename="../ViewManager/ViewManager.py" line="2111" /> <source>PgDown</source> <translation /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1189" /> + <location filename="../QScintilla/MiniEditor.py" line="1190" /> <location filename="../QScintilla/ShellWindow.py" line="759" /> <location filename="../ViewManager/ViewManager.py" line="2118" /> <source>Meta+V</source> <translation type="unfinished">Meta+V</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1198" /> <location filename="../QScintilla/MiniEditor.py" line="1197" /> - <location filename="../QScintilla/MiniEditor.py" line="1196" /> <location filename="../ViewManager/ViewManager.py" line="2126" /> <location filename="../ViewManager/ViewManager.py" line="2125" /> <source>Move to start of document</source> <translation>Mover ao princípio do documento</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1209" /> + <location filename="../QScintilla/MiniEditor.py" line="1210" /> <location filename="../ViewManager/ViewManager.py" line="2138" /> <source>Ctrl+Home</source> <translation /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1218" /> <location filename="../QScintilla/MiniEditor.py" line="1217" /> - <location filename="../QScintilla/MiniEditor.py" line="1216" /> <location filename="../ViewManager/ViewManager.py" line="2146" /> <location filename="../ViewManager/ViewManager.py" line="2145" /> <source>Move to end of document</source> <translation>Mover ao final do documento</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1229" /> + <location filename="../QScintilla/MiniEditor.py" line="1230" /> <location filename="../ViewManager/ViewManager.py" line="2158" /> <source>Ctrl+End</source> <translation /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1238" /> <location filename="../QScintilla/MiniEditor.py" line="1237" /> - <location filename="../QScintilla/MiniEditor.py" line="1236" /> <location filename="../QScintilla/ShellWindow.py" line="453" /> <location filename="../QScintilla/ShellWindow.py" line="452" /> <location filename="../ViewManager/ViewManager.py" line="2166" /> @@ -95867,29 +95872,29 @@ <translation>Indentar um nivel</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1238" /> + <location filename="../QScintilla/MiniEditor.py" line="1239" /> <location filename="../QScintilla/ShellWindow.py" line="454" /> <location filename="../ViewManager/ViewManager.py" line="2167" /> <source>Tab</source> <translation /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1250" /> <location filename="../QScintilla/MiniEditor.py" line="1249" /> - <location filename="../QScintilla/MiniEditor.py" line="1248" /> <location filename="../ViewManager/ViewManager.py" line="2178" /> <location filename="../ViewManager/ViewManager.py" line="2177" /> <source>Unindent one level</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1250" /> + <location filename="../QScintilla/MiniEditor.py" line="1251" /> <location filename="../ViewManager/ViewManager.py" line="2179" /> <source>Shift+Tab</source> <translation /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1263" /> - <location filename="../QScintilla/MiniEditor.py" line="1260" /> + <location filename="../QScintilla/MiniEditor.py" line="1264" /> + <location filename="../QScintilla/MiniEditor.py" line="1261" /> <location filename="../QScintilla/ShellWindow.py" line="781" /> <location filename="../QScintilla/ShellWindow.py" line="778" /> <location filename="../ViewManager/ViewManager.py" line="2192" /> @@ -95898,22 +95903,22 @@ <translation>Estende a seleção um caráter à esquerda</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1266" /> + <location filename="../QScintilla/MiniEditor.py" line="1267" /> <location filename="../QScintilla/ShellWindow.py" line="784" /> <location filename="../ViewManager/ViewManager.py" line="2195" /> <source>Shift+Left</source> <translation /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1273" /> + <location filename="../QScintilla/MiniEditor.py" line="1274" /> <location filename="../QScintilla/ShellWindow.py" line="791" /> <location filename="../ViewManager/ViewManager.py" line="2202" /> <source>Meta+Shift+B</source> <translation /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1283" /> - <location filename="../QScintilla/MiniEditor.py" line="1280" /> + <location filename="../QScintilla/MiniEditor.py" line="1284" /> + <location filename="../QScintilla/MiniEditor.py" line="1281" /> <location filename="../QScintilla/ShellWindow.py" line="801" /> <location filename="../QScintilla/ShellWindow.py" line="798" /> <location filename="../ViewManager/ViewManager.py" line="2212" /> @@ -95922,70 +95927,70 @@ <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1286" /> + <location filename="../QScintilla/MiniEditor.py" line="1287" /> <location filename="../QScintilla/ShellWindow.py" line="804" /> <location filename="../ViewManager/ViewManager.py" line="2215" /> <source>Shift+Right</source> <translation /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1293" /> + <location filename="../QScintilla/MiniEditor.py" line="1294" /> <location filename="../QScintilla/ShellWindow.py" line="811" /> <location filename="../ViewManager/ViewManager.py" line="2222" /> <source>Meta+Shift+F</source> <translation /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1302" /> <location filename="../QScintilla/MiniEditor.py" line="1301" /> - <location filename="../QScintilla/MiniEditor.py" line="1300" /> <location filename="../ViewManager/ViewManager.py" line="2230" /> <location filename="../ViewManager/ViewManager.py" line="2229" /> <source>Extend selection up one line</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1302" /> + <location filename="../QScintilla/MiniEditor.py" line="1303" /> <location filename="../ViewManager/ViewManager.py" line="2231" /> <source>Shift+Up</source> <translation /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1309" /> + <location filename="../QScintilla/MiniEditor.py" line="1310" /> <location filename="../ViewManager/ViewManager.py" line="2238" /> <source>Meta+Shift+P</source> <translation /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1318" /> <location filename="../QScintilla/MiniEditor.py" line="1317" /> - <location filename="../QScintilla/MiniEditor.py" line="1316" /> <location filename="../ViewManager/ViewManager.py" line="2246" /> <location filename="../ViewManager/ViewManager.py" line="2245" /> <source>Extend selection down one line</source> <translation>Estende a seleção abaixo uma linha</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1318" /> + <location filename="../QScintilla/MiniEditor.py" line="1319" /> <location filename="../ViewManager/ViewManager.py" line="2247" /> <source>Shift+Down</source> <translation /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1325" /> + <location filename="../QScintilla/MiniEditor.py" line="1326" /> <location filename="../ViewManager/ViewManager.py" line="2254" /> <source>Meta+Shift+N</source> <translation>Meta+Shift+N</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1335" /> - <location filename="../QScintilla/MiniEditor.py" line="1332" /> + <location filename="../QScintilla/MiniEditor.py" line="1336" /> + <location filename="../QScintilla/MiniEditor.py" line="1333" /> <location filename="../ViewManager/ViewManager.py" line="2264" /> <location filename="../ViewManager/ViewManager.py" line="2261" /> <source>Extend selection left one word part</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1386" /> - <location filename="../QScintilla/MiniEditor.py" line="1346" /> + <location filename="../QScintilla/MiniEditor.py" line="1387" /> + <location filename="../QScintilla/MiniEditor.py" line="1347" /> <location filename="../QScintilla/ShellWindow.py" line="828" /> <location filename="../ViewManager/ViewManager.py" line="2315" /> <location filename="../ViewManager/ViewManager.py" line="2275" /> @@ -95993,17 +95998,17 @@ <translation /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1357" /> - <location filename="../QScintilla/MiniEditor.py" line="1354" /> + <location filename="../QScintilla/MiniEditor.py" line="1358" /> + <location filename="../QScintilla/MiniEditor.py" line="1355" /> <location filename="../ViewManager/ViewManager.py" line="2286" /> <location filename="../ViewManager/ViewManager.py" line="2283" /> <source>Extend selection right one word part</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2181" /> - <location filename="../QScintilla/MiniEditor.py" line="1414" /> - <location filename="../QScintilla/MiniEditor.py" line="1368" /> + <location filename="../QScintilla/MiniEditor.py" line="2182" /> + <location filename="../QScintilla/MiniEditor.py" line="1415" /> + <location filename="../QScintilla/MiniEditor.py" line="1369" /> <location filename="../QScintilla/ShellWindow.py" line="856" /> <location filename="../ViewManager/ViewManager.py" line="3093" /> <location filename="../ViewManager/ViewManager.py" line="2343" /> @@ -96012,8 +96017,8 @@ <translation /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1378" /> <location filename="../QScintilla/MiniEditor.py" line="1377" /> - <location filename="../QScintilla/MiniEditor.py" line="1376" /> <location filename="../QScintilla/ShellWindow.py" line="819" /> <location filename="../QScintilla/ShellWindow.py" line="818" /> <location filename="../ViewManager/ViewManager.py" line="2306" /> @@ -96022,8 +96027,8 @@ <translation>Estende a seleção uma palavra à esquerda</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2307" /> - <location filename="../QScintilla/MiniEditor.py" line="1392" /> + <location filename="../QScintilla/MiniEditor.py" line="2308" /> + <location filename="../QScintilla/MiniEditor.py" line="1393" /> <location filename="../QScintilla/ShellWindow.py" line="834" /> <location filename="../ViewManager/ViewManager.py" line="3219" /> <location filename="../ViewManager/ViewManager.py" line="2321" /> @@ -96031,8 +96036,8 @@ <translation /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1403" /> - <location filename="../QScintilla/MiniEditor.py" line="1400" /> + <location filename="../QScintilla/MiniEditor.py" line="1404" /> + <location filename="../QScintilla/MiniEditor.py" line="1401" /> <location filename="../QScintilla/ShellWindow.py" line="845" /> <location filename="../QScintilla/ShellWindow.py" line="842" /> <location filename="../ViewManager/ViewManager.py" line="2332" /> @@ -96041,8 +96046,8 @@ <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1868" /> - <location filename="../QScintilla/MiniEditor.py" line="1420" /> + <location filename="../QScintilla/MiniEditor.py" line="1869" /> + <location filename="../QScintilla/MiniEditor.py" line="1421" /> <location filename="../QScintilla/ShellWindow.py" line="862" /> <location filename="../ViewManager/ViewManager.py" line="2780" /> <location filename="../ViewManager/ViewManager.py" line="2349" /> @@ -96050,8 +96055,8 @@ <translation /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1432" /> - <location filename="../QScintilla/MiniEditor.py" line="1428" /> + <location filename="../QScintilla/MiniEditor.py" line="1433" /> + <location filename="../QScintilla/MiniEditor.py" line="1429" /> <location filename="../QScintilla/ShellWindow.py" line="874" /> <location filename="../QScintilla/ShellWindow.py" line="870" /> <location filename="../ViewManager/ViewManager.py" line="2361" /> @@ -96060,15 +96065,15 @@ <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1443" /> + <location filename="../QScintilla/MiniEditor.py" line="1444" /> <location filename="../QScintilla/ShellWindow.py" line="885" /> <location filename="../ViewManager/ViewManager.py" line="2372" /> <source>Shift+Home</source> <translation /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1453" /> - <location filename="../QScintilla/MiniEditor.py" line="1450" /> + <location filename="../QScintilla/MiniEditor.py" line="1454" /> + <location filename="../QScintilla/MiniEditor.py" line="1451" /> <location filename="../QScintilla/ShellWindow.py" line="895" /> <location filename="../QScintilla/ShellWindow.py" line="892" /> <location filename="../ViewManager/ViewManager.py" line="2382" /> @@ -96077,124 +96082,124 @@ <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1463" /> + <location filename="../QScintilla/MiniEditor.py" line="1464" /> <location filename="../QScintilla/ShellWindow.py" line="905" /> <location filename="../ViewManager/ViewManager.py" line="2392" /> <source>Meta+Shift+E</source> <translation>Meta+Shift+E</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1467" /> + <location filename="../QScintilla/MiniEditor.py" line="1468" /> <location filename="../QScintilla/ShellWindow.py" line="909" /> <location filename="../ViewManager/ViewManager.py" line="2396" /> <source>Shift+End</source> <translation /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1477" /> - <location filename="../QScintilla/MiniEditor.py" line="1474" /> + <location filename="../QScintilla/MiniEditor.py" line="1478" /> + <location filename="../QScintilla/MiniEditor.py" line="1475" /> <location filename="../ViewManager/ViewManager.py" line="2406" /> <location filename="../ViewManager/ViewManager.py" line="2403" /> <source>Extend selection up one paragraph</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1480" /> + <location filename="../QScintilla/MiniEditor.py" line="1481" /> <location filename="../ViewManager/ViewManager.py" line="2409" /> <source>Alt+Shift+Up</source> <translation /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1493" /> - <location filename="../QScintilla/MiniEditor.py" line="1490" /> + <location filename="../QScintilla/MiniEditor.py" line="1494" /> + <location filename="../QScintilla/MiniEditor.py" line="1491" /> <location filename="../ViewManager/ViewManager.py" line="2422" /> <location filename="../ViewManager/ViewManager.py" line="2419" /> <source>Extend selection down one paragraph</source> <translation>Estende a seleção abaixo uma parágrafo</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1496" /> + <location filename="../QScintilla/MiniEditor.py" line="1497" /> <location filename="../ViewManager/ViewManager.py" line="2425" /> <source>Alt+Shift+Down</source> <translation /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1508" /> <location filename="../QScintilla/MiniEditor.py" line="1507" /> - <location filename="../QScintilla/MiniEditor.py" line="1506" /> <location filename="../ViewManager/ViewManager.py" line="2436" /> <location filename="../ViewManager/ViewManager.py" line="2435" /> <source>Extend selection up one page</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1508" /> + <location filename="../QScintilla/MiniEditor.py" line="1509" /> <location filename="../ViewManager/ViewManager.py" line="2437" /> <source>Shift+PgUp</source> <translation /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1520" /> <location filename="../QScintilla/MiniEditor.py" line="1519" /> - <location filename="../QScintilla/MiniEditor.py" line="1518" /> <location filename="../ViewManager/ViewManager.py" line="2448" /> <location filename="../ViewManager/ViewManager.py" line="2447" /> <source>Extend selection down one page</source> <translation>Estende a seleção abaixo uma página</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1520" /> + <location filename="../QScintilla/MiniEditor.py" line="1521" /> <location filename="../ViewManager/ViewManager.py" line="2449" /> <source>Shift+PgDown</source> <translation /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1527" /> + <location filename="../QScintilla/MiniEditor.py" line="1528" /> <location filename="../ViewManager/ViewManager.py" line="2456" /> <source>Meta+Shift+V</source> <translation>Meta+Shift+V</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1537" /> - <location filename="../QScintilla/MiniEditor.py" line="1534" /> + <location filename="../QScintilla/MiniEditor.py" line="1538" /> + <location filename="../QScintilla/MiniEditor.py" line="1535" /> <location filename="../ViewManager/ViewManager.py" line="2466" /> <location filename="../ViewManager/ViewManager.py" line="2463" /> <source>Extend selection to start of document</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1547" /> + <location filename="../QScintilla/MiniEditor.py" line="1548" /> <location filename="../ViewManager/ViewManager.py" line="2476" /> <source>Ctrl+Shift+Up</source> <translation>Ctrl+Shift+Up</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1552" /> + <location filename="../QScintilla/MiniEditor.py" line="1553" /> <location filename="../ViewManager/ViewManager.py" line="2481" /> <source>Ctrl+Shift+Home</source> <translation /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1563" /> - <location filename="../QScintilla/MiniEditor.py" line="1560" /> + <location filename="../QScintilla/MiniEditor.py" line="1564" /> + <location filename="../QScintilla/MiniEditor.py" line="1561" /> <location filename="../ViewManager/ViewManager.py" line="2492" /> <location filename="../ViewManager/ViewManager.py" line="2489" /> <source>Extend selection to end of document</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1574" /> + <location filename="../QScintilla/MiniEditor.py" line="1575" /> <location filename="../ViewManager/ViewManager.py" line="2503" /> <source>Ctrl+Shift+Down</source> <translation /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1580" /> + <location filename="../QScintilla/MiniEditor.py" line="1581" /> <location filename="../ViewManager/ViewManager.py" line="2509" /> <source>Ctrl+Shift+End</source> <translation /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1590" /> <location filename="../QScintilla/MiniEditor.py" line="1589" /> - <location filename="../QScintilla/MiniEditor.py" line="1588" /> <location filename="../QScintilla/ShellWindow.py" line="477" /> <location filename="../QScintilla/ShellWindow.py" line="476" /> <location filename="../ViewManager/ViewManager.py" line="2518" /> @@ -96203,37 +96208,37 @@ <translation>Apagar o caratér anterior</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1590" /> + <location filename="../QScintilla/MiniEditor.py" line="1591" /> <location filename="../QScintilla/ShellWindow.py" line="478" /> <location filename="../ViewManager/ViewManager.py" line="2519" /> <source>Backspace</source> <translation /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1597" /> + <location filename="../QScintilla/MiniEditor.py" line="1598" /> <location filename="../QScintilla/ShellWindow.py" line="485" /> <location filename="../ViewManager/ViewManager.py" line="2526" /> <source>Meta+H</source> <translation>Meta+H</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1602" /> + <location filename="../QScintilla/MiniEditor.py" line="1603" /> <location filename="../QScintilla/ShellWindow.py" line="490" /> <location filename="../ViewManager/ViewManager.py" line="2531" /> <source>Shift+Backspace</source> <translation /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1613" /> - <location filename="../QScintilla/MiniEditor.py" line="1610" /> + <location filename="../QScintilla/MiniEditor.py" line="1614" /> + <location filename="../QScintilla/MiniEditor.py" line="1611" /> <location filename="../ViewManager/ViewManager.py" line="2542" /> <location filename="../ViewManager/ViewManager.py" line="2539" /> <source>Delete previous character if not at start of line</source> <translation>Apagar o caratér anterior se não está ao princípio da linha</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1628" /> <location filename="../QScintilla/MiniEditor.py" line="1627" /> - <location filename="../QScintilla/MiniEditor.py" line="1626" /> <location filename="../QScintilla/ShellWindow.py" line="499" /> <location filename="../QScintilla/ShellWindow.py" line="498" /> <location filename="../ViewManager/ViewManager.py" line="2556" /> @@ -96242,22 +96247,22 @@ <translation>Apagar o caratér atual</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1628" /> + <location filename="../QScintilla/MiniEditor.py" line="1629" /> <location filename="../QScintilla/ShellWindow.py" line="500" /> <location filename="../ViewManager/ViewManager.py" line="2557" /> <source>Del</source> <translation /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1635" /> + <location filename="../QScintilla/MiniEditor.py" line="1636" /> <location filename="../QScintilla/ShellWindow.py" line="507" /> <location filename="../ViewManager/ViewManager.py" line="2564" /> <source>Meta+D</source> <translation>Meta+D</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1644" /> <location filename="../QScintilla/MiniEditor.py" line="1643" /> - <location filename="../QScintilla/MiniEditor.py" line="1642" /> <location filename="../QScintilla/ShellWindow.py" line="515" /> <location filename="../QScintilla/ShellWindow.py" line="514" /> <location filename="../ViewManager/ViewManager.py" line="2572" /> @@ -96266,15 +96271,15 @@ <translation>Apagar palavra à esquerda</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1644" /> + <location filename="../QScintilla/MiniEditor.py" line="1645" /> <location filename="../QScintilla/ShellWindow.py" line="516" /> <location filename="../ViewManager/ViewManager.py" line="2573" /> <source>Ctrl+Backspace</source> <translation /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1656" /> <location filename="../QScintilla/MiniEditor.py" line="1655" /> - <location filename="../QScintilla/MiniEditor.py" line="1654" /> <location filename="../QScintilla/ShellWindow.py" line="527" /> <location filename="../QScintilla/ShellWindow.py" line="526" /> <location filename="../ViewManager/ViewManager.py" line="2584" /> @@ -96283,15 +96288,15 @@ <translation>Apagar palavra à direita</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1656" /> + <location filename="../QScintilla/MiniEditor.py" line="1657" /> <location filename="../QScintilla/ShellWindow.py" line="528" /> <location filename="../ViewManager/ViewManager.py" line="2585" /> <source>Ctrl+Del</source> <translation /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1668" /> <location filename="../QScintilla/MiniEditor.py" line="1667" /> - <location filename="../QScintilla/MiniEditor.py" line="1666" /> <location filename="../QScintilla/ShellWindow.py" line="539" /> <location filename="../QScintilla/ShellWindow.py" line="538" /> <location filename="../ViewManager/ViewManager.py" line="2596" /> @@ -96300,15 +96305,15 @@ <translation>Apagar a linha à esquerda</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1669" /> + <location filename="../QScintilla/MiniEditor.py" line="1670" /> <location filename="../QScintilla/ShellWindow.py" line="541" /> <location filename="../ViewManager/ViewManager.py" line="2598" /> <source>Ctrl+Shift+Backspace</source> <translation /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1682" /> <location filename="../QScintilla/MiniEditor.py" line="1681" /> - <location filename="../QScintilla/MiniEditor.py" line="1680" /> <location filename="../QScintilla/ShellWindow.py" line="553" /> <location filename="../QScintilla/ShellWindow.py" line="552" /> <location filename="../ViewManager/ViewManager.py" line="2610" /> @@ -96317,22 +96322,22 @@ <translation>Apagar a linha à direita</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1689" /> + <location filename="../QScintilla/MiniEditor.py" line="1690" /> <location filename="../QScintilla/ShellWindow.py" line="561" /> <location filename="../ViewManager/ViewManager.py" line="2618" /> <source>Meta+K</source> <translation>Meta+K</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1694" /> + <location filename="../QScintilla/MiniEditor.py" line="1695" /> <location filename="../QScintilla/ShellWindow.py" line="566" /> <location filename="../ViewManager/ViewManager.py" line="2623" /> <source>Ctrl+Shift+Del</source> <translation /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1704" /> <location filename="../QScintilla/MiniEditor.py" line="1703" /> - <location filename="../QScintilla/MiniEditor.py" line="1702" /> <location filename="../QScintilla/ShellWindow.py" line="465" /> <location filename="../QScintilla/ShellWindow.py" line="464" /> <location filename="../ViewManager/ViewManager.py" line="2632" /> @@ -96341,14 +96346,14 @@ <translation>Inserir linha nova</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1704" /> + <location filename="../QScintilla/MiniEditor.py" line="1705" /> <location filename="../QScintilla/ShellWindow.py" line="466" /> <location filename="../ViewManager/ViewManager.py" line="2633" /> <source>Return</source> <translation /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1705" /> + <location filename="../QScintilla/MiniEditor.py" line="1706" /> <location filename="../QScintilla/ShellWindow.py" line="467" /> <location filename="../ViewManager/ViewManager.py" line="2634" /> <source>Enter</source> @@ -96371,8 +96376,8 @@ <translation /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1716" /> <location filename="../QScintilla/MiniEditor.py" line="1715" /> - <location filename="../QScintilla/MiniEditor.py" line="1714" /> <location filename="../QScintilla/ShellWindow.py" line="441" /> <location filename="../QScintilla/ShellWindow.py" line="440" /> <location filename="../ViewManager/ViewManager.py" line="2659" /> @@ -96381,129 +96386,129 @@ <translation>Apagar a linha atual</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1716" /> + <location filename="../QScintilla/MiniEditor.py" line="1717" /> <location filename="../QScintilla/ShellWindow.py" line="442" /> <location filename="../ViewManager/ViewManager.py" line="2660" /> <source>Ctrl+Shift+L</source> <translation /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1728" /> <location filename="../QScintilla/MiniEditor.py" line="1727" /> - <location filename="../QScintilla/MiniEditor.py" line="1726" /> <location filename="../ViewManager/ViewManager.py" line="2671" /> <location filename="../ViewManager/ViewManager.py" line="2670" /> <source>Duplicate current line</source> <translation>Duplicar a linha atual</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1728" /> + <location filename="../QScintilla/MiniEditor.py" line="1729" /> <location filename="../ViewManager/ViewManager.py" line="2672" /> <source>Ctrl+D</source> <translation /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1741" /> - <location filename="../QScintilla/MiniEditor.py" line="1738" /> + <location filename="../QScintilla/MiniEditor.py" line="1742" /> + <location filename="../QScintilla/MiniEditor.py" line="1739" /> <location filename="../ViewManager/ViewManager.py" line="2685" /> <location filename="../ViewManager/ViewManager.py" line="2682" /> <source>Swap current and previous lines</source> <translation>Trocar a linha atual pela anterior</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1744" /> + <location filename="../QScintilla/MiniEditor.py" line="1745" /> <location filename="../ViewManager/ViewManager.py" line="2688" /> <source>Ctrl+T</source> <translation /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1756" /> <location filename="../QScintilla/MiniEditor.py" line="1755" /> - <location filename="../QScintilla/MiniEditor.py" line="1754" /> <location filename="../ViewManager/ViewManager.py" line="2699" /> <location filename="../ViewManager/ViewManager.py" line="2698" /> <source>Reverse selected lines</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1756" /> + <location filename="../QScintilla/MiniEditor.py" line="1757" /> <location filename="../ViewManager/ViewManager.py" line="2700" /> <source>Meta+Alt+R</source> <translation type="unfinished" /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1768" /> <location filename="../QScintilla/MiniEditor.py" line="1767" /> - <location filename="../QScintilla/MiniEditor.py" line="1766" /> <location filename="../ViewManager/ViewManager.py" line="2711" /> <location filename="../ViewManager/ViewManager.py" line="2710" /> <source>Cut current line</source> <translation>Cortar a linha atual</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1768" /> + <location filename="../QScintilla/MiniEditor.py" line="1769" /> <location filename="../ViewManager/ViewManager.py" line="2712" /> <source>Alt+Shift+L</source> <translation /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1780" /> <location filename="../QScintilla/MiniEditor.py" line="1779" /> - <location filename="../QScintilla/MiniEditor.py" line="1778" /> <location filename="../ViewManager/ViewManager.py" line="2723" /> <location filename="../ViewManager/ViewManager.py" line="2722" /> <source>Copy current line</source> <translation>Copiar a linha atual</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1780" /> + <location filename="../QScintilla/MiniEditor.py" line="1781" /> <location filename="../ViewManager/ViewManager.py" line="2724" /> <source>Ctrl+Shift+T</source> <translation /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1792" /> <location filename="../QScintilla/MiniEditor.py" line="1791" /> - <location filename="../QScintilla/MiniEditor.py" line="1790" /> <location filename="../ViewManager/ViewManager.py" line="2735" /> <location filename="../ViewManager/ViewManager.py" line="2734" /> <source>Toggle insert/overtype</source> <translation>Alternar inserir/sobreescrever</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1792" /> + <location filename="../QScintilla/MiniEditor.py" line="1793" /> <location filename="../ViewManager/ViewManager.py" line="2736" /> <source>Ins</source> <translation /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1836" /> <location filename="../QScintilla/MiniEditor.py" line="1835" /> - <location filename="../QScintilla/MiniEditor.py" line="1834" /> <location filename="../ViewManager/ViewManager.py" line="2747" /> <location filename="../ViewManager/ViewManager.py" line="2746" /> <source>Move to end of display line</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1847" /> + <location filename="../QScintilla/MiniEditor.py" line="1848" /> <location filename="../ViewManager/ViewManager.py" line="2759" /> <source>Alt+End</source> <translation /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1857" /> - <location filename="../QScintilla/MiniEditor.py" line="1854" /> + <location filename="../QScintilla/MiniEditor.py" line="1858" /> + <location filename="../QScintilla/MiniEditor.py" line="1855" /> <location filename="../ViewManager/ViewManager.py" line="2769" /> <location filename="../ViewManager/ViewManager.py" line="2766" /> <source>Extend selection to end of display line</source> <translation type="unfinished" /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1878" /> <location filename="../QScintilla/MiniEditor.py" line="1877" /> - <location filename="../QScintilla/MiniEditor.py" line="1876" /> <location filename="../ViewManager/ViewManager.py" line="2789" /> <location filename="../ViewManager/ViewManager.py" line="2788" /> <source>Formfeed</source> <translation type="unfinished" /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1890" /> <location filename="../QScintilla/MiniEditor.py" line="1889" /> - <location filename="../QScintilla/MiniEditor.py" line="1888" /> <location filename="../QScintilla/ShellWindow.py" line="767" /> <location filename="../QScintilla/ShellWindow.py" line="766" /> <location filename="../ViewManager/ViewManager.py" line="2801" /> @@ -96512,423 +96517,423 @@ <translation /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1890" /> + <location filename="../QScintilla/MiniEditor.py" line="1891" /> <location filename="../QScintilla/ShellWindow.py" line="768" /> <location filename="../ViewManager/ViewManager.py" line="2802" /> <source>Esc</source> <translation /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1903" /> - <location filename="../QScintilla/MiniEditor.py" line="1900" /> + <location filename="../QScintilla/MiniEditor.py" line="1904" /> + <location filename="../QScintilla/MiniEditor.py" line="1901" /> <location filename="../ViewManager/ViewManager.py" line="2815" /> <location filename="../ViewManager/ViewManager.py" line="2812" /> <source>Extend rectangular selection down one line</source> <translation>Aumentar a seleção retangular uma linha abaixo</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1906" /> + <location filename="../QScintilla/MiniEditor.py" line="1907" /> <location filename="../ViewManager/ViewManager.py" line="2818" /> <source>Alt+Ctrl+Down</source> <translation /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1914" /> + <location filename="../QScintilla/MiniEditor.py" line="1915" /> <location filename="../ViewManager/ViewManager.py" line="2826" /> <source>Meta+Alt+Shift+N</source> <translation>Meta+Alt+Shift+N</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1925" /> - <location filename="../QScintilla/MiniEditor.py" line="1922" /> + <location filename="../QScintilla/MiniEditor.py" line="1926" /> + <location filename="../QScintilla/MiniEditor.py" line="1923" /> <location filename="../ViewManager/ViewManager.py" line="2837" /> <location filename="../ViewManager/ViewManager.py" line="2834" /> <source>Extend rectangular selection up one line</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1928" /> + <location filename="../QScintilla/MiniEditor.py" line="1929" /> <location filename="../ViewManager/ViewManager.py" line="2840" /> <source>Alt+Ctrl+Up</source> <translation /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1936" /> + <location filename="../QScintilla/MiniEditor.py" line="1937" /> <location filename="../ViewManager/ViewManager.py" line="2848" /> <source>Meta+Alt+Shift+P</source> <translation>Meta+Alt+Shift+P</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1947" /> - <location filename="../QScintilla/MiniEditor.py" line="1944" /> + <location filename="../QScintilla/MiniEditor.py" line="1948" /> + <location filename="../QScintilla/MiniEditor.py" line="1945" /> <location filename="../ViewManager/ViewManager.py" line="2859" /> <location filename="../ViewManager/ViewManager.py" line="2856" /> <source>Extend rectangular selection left one character</source> <translation>Aumentar a seleção retangular um caratér à esquerda</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1950" /> + <location filename="../QScintilla/MiniEditor.py" line="1951" /> <location filename="../ViewManager/ViewManager.py" line="2862" /> <source>Alt+Ctrl+Left</source> <translation /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1958" /> + <location filename="../QScintilla/MiniEditor.py" line="1959" /> <location filename="../ViewManager/ViewManager.py" line="2870" /> <source>Meta+Alt+Shift+B</source> <translation>Meta+Alt+Shift+B</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1969" /> - <location filename="../QScintilla/MiniEditor.py" line="1966" /> + <location filename="../QScintilla/MiniEditor.py" line="1970" /> + <location filename="../QScintilla/MiniEditor.py" line="1967" /> <location filename="../ViewManager/ViewManager.py" line="2881" /> <location filename="../ViewManager/ViewManager.py" line="2878" /> <source>Extend rectangular selection right one character</source> <translation>Aumentar a seleção retangular um caratér à direita</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1972" /> + <location filename="../QScintilla/MiniEditor.py" line="1973" /> <location filename="../ViewManager/ViewManager.py" line="2884" /> <source>Alt+Ctrl+Right</source> <translation /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1980" /> + <location filename="../QScintilla/MiniEditor.py" line="1981" /> <location filename="../ViewManager/ViewManager.py" line="2892" /> <source>Meta+Alt+Shift+F</source> <translation>Meta+Alt+Shift+F</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1993" /> - <location filename="../QScintilla/MiniEditor.py" line="1988" /> + <location filename="../QScintilla/MiniEditor.py" line="1994" /> + <location filename="../QScintilla/MiniEditor.py" line="1989" /> <location filename="../ViewManager/ViewManager.py" line="2905" /> <location filename="../ViewManager/ViewManager.py" line="2900" /> <source>Extend rectangular selection to first visible character in document line</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2006" /> + <location filename="../QScintilla/MiniEditor.py" line="2007" /> <location filename="../ViewManager/ViewManager.py" line="2918" /> <source>Alt+Shift+Home</source> <translation /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2017" /> - <location filename="../QScintilla/MiniEditor.py" line="2014" /> + <location filename="../QScintilla/MiniEditor.py" line="2018" /> + <location filename="../QScintilla/MiniEditor.py" line="2015" /> <location filename="../ViewManager/ViewManager.py" line="2929" /> <location filename="../ViewManager/ViewManager.py" line="2926" /> <source>Extend rectangular selection to end of document line</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2028" /> + <location filename="../QScintilla/MiniEditor.py" line="2029" /> <location filename="../ViewManager/ViewManager.py" line="2940" /> <source>Meta+Alt+Shift+E</source> <translation>Meta+Alt+Shift+E</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2033" /> + <location filename="../QScintilla/MiniEditor.py" line="2034" /> <location filename="../ViewManager/ViewManager.py" line="2945" /> <source>Alt+Shift+End</source> <translation>Alt+Shift+End</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2043" /> - <location filename="../QScintilla/MiniEditor.py" line="2040" /> + <location filename="../QScintilla/MiniEditor.py" line="2044" /> + <location filename="../QScintilla/MiniEditor.py" line="2041" /> <location filename="../ViewManager/ViewManager.py" line="2955" /> <location filename="../ViewManager/ViewManager.py" line="2952" /> <source>Extend rectangular selection up one page</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2046" /> + <location filename="../QScintilla/MiniEditor.py" line="2047" /> <location filename="../ViewManager/ViewManager.py" line="2958" /> <source>Alt+Shift+PgUp</source> <translation>Alt+Shift+PgUp</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2059" /> - <location filename="../QScintilla/MiniEditor.py" line="2056" /> + <location filename="../QScintilla/MiniEditor.py" line="2060" /> + <location filename="../QScintilla/MiniEditor.py" line="2057" /> <location filename="../ViewManager/ViewManager.py" line="2971" /> <location filename="../ViewManager/ViewManager.py" line="2968" /> <source>Extend rectangular selection down one page</source> <translation>Aumentar a seleção retangular uma página abaixo</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2062" /> + <location filename="../QScintilla/MiniEditor.py" line="2063" /> <location filename="../ViewManager/ViewManager.py" line="2974" /> <source>Alt+Shift+PgDown</source> <translation>Alt+Shift+PgDown</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2070" /> + <location filename="../QScintilla/MiniEditor.py" line="2071" /> <location filename="../ViewManager/ViewManager.py" line="2982" /> <source>Meta+Alt+Shift+V</source> <translation>Meta+Alt+Shift+V</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="2546" /> <location filename="../QScintilla/MiniEditor.py" line="2545" /> - <location filename="../QScintilla/MiniEditor.py" line="2544" /> + <location filename="../QScintilla/MiniEditor.py" line="2080" /> <location filename="../QScintilla/MiniEditor.py" line="2079" /> - <location filename="../QScintilla/MiniEditor.py" line="2078" /> <location filename="../ViewManager/ViewManager.py" line="2991" /> <location filename="../ViewManager/ViewManager.py" line="2990" /> <source>Duplicate current selection</source> <translation>Duplicar a seleção atual</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2546" /> - <location filename="../QScintilla/MiniEditor.py" line="2080" /> + <location filename="../QScintilla/MiniEditor.py" line="2547" /> + <location filename="../QScintilla/MiniEditor.py" line="2081" /> <location filename="../ViewManager/ViewManager.py" line="2992" /> <source>Ctrl+Shift+D</source> <translation /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2094" /> - <location filename="../QScintilla/MiniEditor.py" line="2091" /> + <location filename="../QScintilla/MiniEditor.py" line="2095" /> + <location filename="../QScintilla/MiniEditor.py" line="2092" /> <location filename="../ViewManager/ViewManager.py" line="3006" /> <location filename="../ViewManager/ViewManager.py" line="3003" /> <source>Scroll to start of document</source> <translation type="unfinished" /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="2114" /> <location filename="../QScintilla/MiniEditor.py" line="2113" /> - <location filename="../QScintilla/MiniEditor.py" line="2112" /> <location filename="../ViewManager/ViewManager.py" line="3025" /> <location filename="../ViewManager/ViewManager.py" line="3024" /> <source>Scroll to end of document</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2132" /> - <location filename="../QScintilla/MiniEditor.py" line="2129" /> + <location filename="../QScintilla/MiniEditor.py" line="2133" /> + <location filename="../QScintilla/MiniEditor.py" line="2130" /> <location filename="../ViewManager/ViewManager.py" line="3044" /> <location filename="../ViewManager/ViewManager.py" line="3041" /> <source>Scroll vertically to center current line</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2142" /> + <location filename="../QScintilla/MiniEditor.py" line="2143" /> <location filename="../ViewManager/ViewManager.py" line="3054" /> <source>Meta+L</source> <translation>Meta+L</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="2152" /> <location filename="../QScintilla/MiniEditor.py" line="2151" /> - <location filename="../QScintilla/MiniEditor.py" line="2150" /> <location filename="../ViewManager/ViewManager.py" line="3063" /> <location filename="../ViewManager/ViewManager.py" line="3062" /> <source>Move to end of next word</source> <translation>Mover ao fim da palavra seguinte</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2170" /> - <location filename="../QScintilla/MiniEditor.py" line="2167" /> + <location filename="../QScintilla/MiniEditor.py" line="2171" /> + <location filename="../QScintilla/MiniEditor.py" line="2168" /> <location filename="../ViewManager/ViewManager.py" line="3082" /> <location filename="../ViewManager/ViewManager.py" line="3079" /> <source>Extend selection to end of next word</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2193" /> - <location filename="../QScintilla/MiniEditor.py" line="2190" /> + <location filename="../QScintilla/MiniEditor.py" line="2194" /> + <location filename="../QScintilla/MiniEditor.py" line="2191" /> <location filename="../ViewManager/ViewManager.py" line="3105" /> <location filename="../ViewManager/ViewManager.py" line="3102" /> <source>Move to end of previous word</source> <translation>Mover ao fim da palavra anterior</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2210" /> - <location filename="../QScintilla/MiniEditor.py" line="2207" /> + <location filename="../QScintilla/MiniEditor.py" line="2211" /> + <location filename="../QScintilla/MiniEditor.py" line="2208" /> <location filename="../ViewManager/ViewManager.py" line="3122" /> <location filename="../ViewManager/ViewManager.py" line="3119" /> <source>Extend selection to end of previous word</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2227" /> - <location filename="../QScintilla/MiniEditor.py" line="2224" /> + <location filename="../QScintilla/MiniEditor.py" line="2228" /> + <location filename="../QScintilla/MiniEditor.py" line="2225" /> <location filename="../ViewManager/ViewManager.py" line="3139" /> <location filename="../ViewManager/ViewManager.py" line="3136" /> <source>Move to start of document line</source> <translation>Mover ao início da linha do documento</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2237" /> + <location filename="../QScintilla/MiniEditor.py" line="2238" /> <location filename="../ViewManager/ViewManager.py" line="3149" /> <source>Meta+A</source> <translation>Meta+A</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2248" /> - <location filename="../QScintilla/MiniEditor.py" line="2245" /> + <location filename="../QScintilla/MiniEditor.py" line="2249" /> + <location filename="../QScintilla/MiniEditor.py" line="2246" /> <location filename="../ViewManager/ViewManager.py" line="3160" /> <location filename="../ViewManager/ViewManager.py" line="3157" /> <source>Extend selection to start of document line</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2259" /> + <location filename="../QScintilla/MiniEditor.py" line="2260" /> <location filename="../ViewManager/ViewManager.py" line="3171" /> <source>Meta+Shift+A</source> <translation>Meta+Shift+A</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2272" /> - <location filename="../QScintilla/MiniEditor.py" line="2268" /> + <location filename="../QScintilla/MiniEditor.py" line="2273" /> + <location filename="../QScintilla/MiniEditor.py" line="2269" /> <location filename="../ViewManager/ViewManager.py" line="3184" /> <location filename="../ViewManager/ViewManager.py" line="3180" /> <source>Extend rectangular selection to start of document line</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2284" /> + <location filename="../QScintilla/MiniEditor.py" line="2285" /> <location filename="../ViewManager/ViewManager.py" line="3196" /> <source>Meta+Alt+Shift+A</source> <translation>Meta+Alt+Shift+A</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2296" /> - <location filename="../QScintilla/MiniEditor.py" line="2293" /> + <location filename="../QScintilla/MiniEditor.py" line="2297" /> + <location filename="../QScintilla/MiniEditor.py" line="2294" /> <location filename="../ViewManager/ViewManager.py" line="3208" /> <location filename="../ViewManager/ViewManager.py" line="3205" /> <source>Extend selection to start of display line</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2319" /> - <location filename="../QScintilla/MiniEditor.py" line="2316" /> + <location filename="../QScintilla/MiniEditor.py" line="2320" /> + <location filename="../QScintilla/MiniEditor.py" line="2317" /> <location filename="../ViewManager/ViewManager.py" line="3231" /> <location filename="../ViewManager/ViewManager.py" line="3228" /> <source>Move to start of display or document line</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2337" /> - <location filename="../QScintilla/MiniEditor.py" line="2333" /> + <location filename="../QScintilla/MiniEditor.py" line="2338" /> + <location filename="../QScintilla/MiniEditor.py" line="2334" /> <location filename="../ViewManager/ViewManager.py" line="3249" /> <location filename="../ViewManager/ViewManager.py" line="3245" /> <source>Extend selection to start of display or document line</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2356" /> - <location filename="../QScintilla/MiniEditor.py" line="2352" /> + <location filename="../QScintilla/MiniEditor.py" line="2357" /> + <location filename="../QScintilla/MiniEditor.py" line="2353" /> <location filename="../ViewManager/ViewManager.py" line="3268" /> <location filename="../ViewManager/ViewManager.py" line="3264" /> <source>Move to first visible character in display or document line</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2376" /> - <location filename="../QScintilla/MiniEditor.py" line="2371" /> + <location filename="../QScintilla/MiniEditor.py" line="2377" /> + <location filename="../QScintilla/MiniEditor.py" line="2372" /> <location filename="../ViewManager/ViewManager.py" line="3288" /> <location filename="../ViewManager/ViewManager.py" line="3283" /> <source>Extend selection to first visible character in display or document line</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2395" /> - <location filename="../QScintilla/MiniEditor.py" line="2392" /> + <location filename="../QScintilla/MiniEditor.py" line="2396" /> + <location filename="../QScintilla/MiniEditor.py" line="2393" /> <location filename="../ViewManager/ViewManager.py" line="3307" /> <location filename="../ViewManager/ViewManager.py" line="3304" /> <source>Move to end of display or document line</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2412" /> - <location filename="../QScintilla/MiniEditor.py" line="2409" /> + <location filename="../QScintilla/MiniEditor.py" line="2413" /> + <location filename="../QScintilla/MiniEditor.py" line="2410" /> <location filename="../ViewManager/ViewManager.py" line="3324" /> <location filename="../ViewManager/ViewManager.py" line="3321" /> <source>Extend selection to end of display or document line</source> <translation type="unfinished" /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="2428" /> <location filename="../QScintilla/MiniEditor.py" line="2427" /> - <location filename="../QScintilla/MiniEditor.py" line="2426" /> <location filename="../ViewManager/ViewManager.py" line="3339" /> <location filename="../ViewManager/ViewManager.py" line="3338" /> <source>Stuttered move up one page</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2442" /> - <location filename="../QScintilla/MiniEditor.py" line="2439" /> + <location filename="../QScintilla/MiniEditor.py" line="2443" /> + <location filename="../QScintilla/MiniEditor.py" line="2440" /> <location filename="../ViewManager/ViewManager.py" line="3354" /> <location filename="../ViewManager/ViewManager.py" line="3351" /> <source>Stuttered extend selection up one page</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2459" /> - <location filename="../QScintilla/MiniEditor.py" line="2456" /> + <location filename="../QScintilla/MiniEditor.py" line="2460" /> + <location filename="../QScintilla/MiniEditor.py" line="2457" /> <location filename="../ViewManager/ViewManager.py" line="3371" /> <location filename="../ViewManager/ViewManager.py" line="3368" /> <source>Stuttered move down one page</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2476" /> - <location filename="../QScintilla/MiniEditor.py" line="2473" /> + <location filename="../QScintilla/MiniEditor.py" line="2477" /> + <location filename="../QScintilla/MiniEditor.py" line="2474" /> <location filename="../ViewManager/ViewManager.py" line="3388" /> <location filename="../ViewManager/ViewManager.py" line="3385" /> <source>Stuttered extend selection down one page</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2493" /> - <location filename="../QScintilla/MiniEditor.py" line="2490" /> + <location filename="../QScintilla/MiniEditor.py" line="2494" /> + <location filename="../QScintilla/MiniEditor.py" line="2491" /> <location filename="../ViewManager/ViewManager.py" line="3405" /> <location filename="../ViewManager/ViewManager.py" line="3402" /> <source>Delete right to end of next word</source> <translation>Apagar até ao final da proxima palavra</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2503" /> + <location filename="../QScintilla/MiniEditor.py" line="2504" /> <location filename="../ViewManager/ViewManager.py" line="3415" /> <source>Alt+Del</source> <translation>Alt+Del</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2514" /> - <location filename="../QScintilla/MiniEditor.py" line="2511" /> + <location filename="../QScintilla/MiniEditor.py" line="2515" /> + <location filename="../QScintilla/MiniEditor.py" line="2512" /> <location filename="../ViewManager/ViewManager.py" line="3426" /> <location filename="../ViewManager/ViewManager.py" line="3423" /> <source>Move selected lines up one line</source> <translation>Mover as linhas selecionadas acima uma linha</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2531" /> - <location filename="../QScintilla/MiniEditor.py" line="2528" /> + <location filename="../QScintilla/MiniEditor.py" line="2532" /> + <location filename="../QScintilla/MiniEditor.py" line="2529" /> <location filename="../ViewManager/ViewManager.py" line="3443" /> <location filename="../ViewManager/ViewManager.py" line="3440" /> <source>Move selected lines down one line</source> <translation>Mover as linhas selecionadas abaixo uma linha</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1805" /> - <location filename="../QScintilla/MiniEditor.py" line="1802" /> + <location filename="../QScintilla/MiniEditor.py" line="1806" /> + <location filename="../QScintilla/MiniEditor.py" line="1803" /> <location filename="../ViewManager/ViewManager.py" line="3461" /> <location filename="../ViewManager/ViewManager.py" line="3458" /> <source>Convert selection to lower case</source> <translation>Convertir a seleção para minúsculas</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1808" /> + <location filename="../QScintilla/MiniEditor.py" line="1809" /> <location filename="../ViewManager/ViewManager.py" line="3464" /> <source>Alt+Shift+U</source> <translation /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1821" /> - <location filename="../QScintilla/MiniEditor.py" line="1818" /> + <location filename="../QScintilla/MiniEditor.py" line="1822" /> + <location filename="../QScintilla/MiniEditor.py" line="1819" /> <location filename="../ViewManager/ViewManager.py" line="3477" /> <location filename="../ViewManager/ViewManager.py" line="3474" /> <source>Convert selection to upper case</source> <translation>Convertir a seleção para maiúsculas</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1824" /> + <location filename="../QScintilla/MiniEditor.py" line="1825" /> <location filename="../ViewManager/ViewManager.py" line="3480" /> <source>Ctrl+Shift+U</source> <translation /> @@ -96945,7 +96950,7 @@ <translation>Editar</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2563" /> + <location filename="../QScintilla/MiniEditor.py" line="2564" /> <location filename="../QScintilla/ShellWindow.py" line="923" /> <location filename="../ViewManager/ViewManager.py" line="4167" /> <location filename="../ViewManager/ViewManager.py" line="4165" /> @@ -96954,14 +96959,14 @@ <translation>Procurar</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2565" /> + <location filename="../QScintilla/MiniEditor.py" line="2566" /> <location filename="../QScintilla/ShellWindow.py" line="925" /> <location filename="../ViewManager/ViewManager.py" line="3600" /> <source>&Search...</source> <translation>&Procurar...</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2567" /> + <location filename="../QScintilla/MiniEditor.py" line="2568" /> <location filename="../QScintilla/ShellWindow.py" line="927" /> <location filename="../ViewManager/ViewManager.py" line="3602" /> <source>Ctrl+F</source> @@ -96969,34 +96974,34 @@ <translation /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2574" /> + <location filename="../QScintilla/MiniEditor.py" line="2575" /> <location filename="../QScintilla/ShellWindow.py" line="934" /> <location filename="../ViewManager/ViewManager.py" line="3609" /> <source>Search for a text</source> <translation>Procurar um texto</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2577" /> + <location filename="../QScintilla/MiniEditor.py" line="2578" /> <location filename="../ViewManager/ViewManager.py" line="3612" /> <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 type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2589" /> + <location filename="../QScintilla/MiniEditor.py" line="2590" /> <location filename="../QScintilla/ShellWindow.py" line="949" /> <location filename="../ViewManager/ViewManager.py" line="3624" /> <source>Search next</source> <translation>Procurar próximo</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2591" /> + <location filename="../QScintilla/MiniEditor.py" line="2592" /> <location filename="../QScintilla/ShellWindow.py" line="951" /> <location filename="../ViewManager/ViewManager.py" line="3626" /> <source>Search &next</source> <translation>Procurar &próximo</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2593" /> + <location filename="../QScintilla/MiniEditor.py" line="2594" /> <location filename="../QScintilla/ShellWindow.py" line="953" /> <location filename="../ViewManager/ViewManager.py" line="3628" /> <source>F3</source> @@ -97004,34 +97009,34 @@ <translation /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2600" /> + <location filename="../QScintilla/MiniEditor.py" line="2601" /> <location filename="../QScintilla/ShellWindow.py" line="960" /> <location filename="../ViewManager/ViewManager.py" line="3635" /> <source>Search next occurrence of text</source> <translation>Procurar a próxima ocurrência do texto</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2603" /> + <location filename="../QScintilla/MiniEditor.py" line="2604" /> <location filename="../ViewManager/ViewManager.py" line="3638" /> <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 type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2615" /> + <location filename="../QScintilla/MiniEditor.py" line="2616" /> <location filename="../QScintilla/ShellWindow.py" line="977" /> <location filename="../ViewManager/ViewManager.py" line="3650" /> <source>Search previous</source> <translation>Procurar anterior</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2617" /> + <location filename="../QScintilla/MiniEditor.py" line="2618" /> <location filename="../QScintilla/ShellWindow.py" line="979" /> <location filename="../ViewManager/ViewManager.py" line="3652" /> <source>Search &previous</source> <translation>Procurar &anterior</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2619" /> + <location filename="../QScintilla/MiniEditor.py" line="2620" /> <location filename="../QScintilla/ShellWindow.py" line="981" /> <location filename="../ViewManager/ViewManager.py" line="3654" /> <source>Shift+F3</source> @@ -97039,41 +97044,41 @@ <translation /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2628" /> + <location filename="../QScintilla/MiniEditor.py" line="2629" /> <location filename="../QScintilla/ShellWindow.py" line="990" /> <location filename="../ViewManager/ViewManager.py" line="3663" /> <source>Search previous occurrence of text</source> <translation>Procurar ocurrência anterior do texto</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2633" /> + <location filename="../QScintilla/MiniEditor.py" line="2634" /> <location filename="../ViewManager/ViewManager.py" line="3668" /> <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 type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2647" /> - <location filename="../QScintilla/MiniEditor.py" line="2645" /> + <location filename="../QScintilla/MiniEditor.py" line="2648" /> + <location filename="../QScintilla/MiniEditor.py" line="2646" /> <location filename="../ViewManager/ViewManager.py" line="3682" /> <location filename="../ViewManager/ViewManager.py" line="3680" /> <source>Clear search markers</source> <translation>Limpar marcadores de pesquisa</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2649" /> + <location filename="../QScintilla/MiniEditor.py" line="2650" /> <location filename="../ViewManager/ViewManager.py" line="3684" /> <source>Ctrl+3</source> <comment>Search|Clear search markers</comment> <translation /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2658" /> + <location filename="../QScintilla/MiniEditor.py" line="2659" /> <location filename="../ViewManager/ViewManager.py" line="3693" /> <source>Clear all displayed search markers</source> <translation>Limpar todos os marcadores de pesquisa mostrados</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2663" /> + <location filename="../QScintilla/MiniEditor.py" line="2664" /> <location filename="../ViewManager/ViewManager.py" line="3698" /> <source><b>Clear search markers</b><p>Clear all displayed search markers.</p></source> <translation type="unfinished" /> @@ -97123,113 +97128,113 @@ <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2673" /> + <location filename="../QScintilla/MiniEditor.py" line="2674" /> <location filename="../ViewManager/ViewManager.py" line="3766" /> <source>Replace</source> <translation>Substituir</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2674" /> + <location filename="../QScintilla/MiniEditor.py" line="2675" /> <location filename="../ViewManager/ViewManager.py" line="3767" /> <source>&Replace...</source> <translation>&Substituir...</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2676" /> + <location filename="../QScintilla/MiniEditor.py" line="2677" /> <location filename="../ViewManager/ViewManager.py" line="3769" /> <source>Ctrl+R</source> <comment>Search|Replace</comment> <translation /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2683" /> + <location filename="../QScintilla/MiniEditor.py" line="2684" /> <location filename="../ViewManager/ViewManager.py" line="3776" /> <source>Replace some text</source> <translation>Substituir algum texto</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2686" /> + <location filename="../QScintilla/MiniEditor.py" line="2687" /> <location filename="../ViewManager/ViewManager.py" line="3779" /> <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 type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2700" /> - <location filename="../QScintilla/MiniEditor.py" line="2698" /> + <location filename="../QScintilla/MiniEditor.py" line="2701" /> + <location filename="../QScintilla/MiniEditor.py" line="2699" /> <location filename="../ViewManager/ViewManager.py" line="3793" /> <location filename="../ViewManager/ViewManager.py" line="3791" /> <source>Replace and Search</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2702" /> + <location filename="../QScintilla/MiniEditor.py" line="2703" /> <location filename="../ViewManager/ViewManager.py" line="3795" /> <source>Meta+R</source> <comment>Search|Replace and Search</comment> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2711" /> + <location filename="../QScintilla/MiniEditor.py" line="2712" /> <location filename="../ViewManager/ViewManager.py" line="3804" /> <source>Replace the found text and search the next occurrence</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2716" /> + <location filename="../QScintilla/MiniEditor.py" line="2717" /> <location filename="../ViewManager/ViewManager.py" line="3809" /> <source><b>Replace and Search</b><p>Replace the found occurrence of text in the current editor and search for the next one. The previously entered search text and options are reused.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2732" /> - <location filename="../QScintilla/MiniEditor.py" line="2730" /> + <location filename="../QScintilla/MiniEditor.py" line="2733" /> + <location filename="../QScintilla/MiniEditor.py" line="2731" /> <location filename="../ViewManager/ViewManager.py" line="3825" /> <location filename="../ViewManager/ViewManager.py" line="3823" /> <source>Replace Occurrence</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2734" /> + <location filename="../QScintilla/MiniEditor.py" line="2735" /> <location filename="../ViewManager/ViewManager.py" line="3827" /> <source>Ctrl+Meta+R</source> <comment>Search|Replace Occurrence</comment> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2743" /> + <location filename="../QScintilla/MiniEditor.py" line="2744" /> <location filename="../ViewManager/ViewManager.py" line="3836" /> <source>Replace the found text</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2746" /> + <location filename="../QScintilla/MiniEditor.py" line="2747" /> <location filename="../ViewManager/ViewManager.py" line="3839" /> <source><b>Replace Occurrence</b><p>Replace the found occurrence of the search text in the current editor.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2759" /> - <location filename="../QScintilla/MiniEditor.py" line="2757" /> + <location filename="../QScintilla/MiniEditor.py" line="2760" /> + <location filename="../QScintilla/MiniEditor.py" line="2758" /> <location filename="../ViewManager/ViewManager.py" line="3852" /> <location filename="../ViewManager/ViewManager.py" line="3850" /> <source>Replace All</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2761" /> + <location filename="../QScintilla/MiniEditor.py" line="2762" /> <location filename="../ViewManager/ViewManager.py" line="3854" /> <source>Shift+Meta+R</source> <comment>Search|Replace All</comment> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2770" /> + <location filename="../QScintilla/MiniEditor.py" line="2771" /> <location filename="../ViewManager/ViewManager.py" line="3863" /> <source>Replace search text occurrences</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2773" /> + <location filename="../QScintilla/MiniEditor.py" line="2774" /> <location filename="../ViewManager/ViewManager.py" line="3866" /> <source><b>Replace All</b><p>Replace all occurrences of the search text in the current editor.</p></source> <translation type="unfinished" /> @@ -97454,21 +97459,21 @@ <translation>&Procurar</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2788" /> + <location filename="../QScintilla/MiniEditor.py" line="2789" /> <location filename="../QScintilla/ShellWindow.py" line="1016" /> <location filename="../ViewManager/ViewManager.py" line="4208" /> <source>Zoom in</source> <translation>Aproximar</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2790" /> + <location filename="../QScintilla/MiniEditor.py" line="2791" /> <location filename="../QScintilla/ShellWindow.py" line="1018" /> <location filename="../ViewManager/ViewManager.py" line="4210" /> <source>Zoom &in</source> <translation>Apro&ximar</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2792" /> + <location filename="../QScintilla/MiniEditor.py" line="2793" /> <location filename="../QScintilla/ShellWindow.py" line="1020" /> <location filename="../ViewManager/ViewManager.py" line="4212" /> <source>Ctrl++</source> @@ -97476,7 +97481,7 @@ <translation /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2795" /> + <location filename="../QScintilla/MiniEditor.py" line="2796" /> <location filename="../QScintilla/ShellWindow.py" line="1023" /> <location filename="../ViewManager/ViewManager.py" line="4215" /> <source>Zoom In</source> @@ -97484,35 +97489,35 @@ <translation>Aproximar</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2801" /> + <location filename="../QScintilla/MiniEditor.py" line="2802" /> <location filename="../QScintilla/ShellWindow.py" line="1029" /> <location filename="../ViewManager/ViewManager.py" line="4221" /> <source>Zoom in on the text</source> <translation>Aproximar no texto</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2804" /> + <location filename="../QScintilla/MiniEditor.py" line="2805" /> <location filename="../QScintilla/ShellWindow.py" line="1032" /> <location filename="../ViewManager/ViewManager.py" line="4224" /> <source><b>Zoom in</b><p>Zoom in on the text. This makes the text bigger.</p></source> <translation><b>Aproximar</b><p>Aproximar no texto. Isto faz o texto mais grande.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2814" /> + <location filename="../QScintilla/MiniEditor.py" line="2815" /> <location filename="../QScintilla/ShellWindow.py" line="1042" /> <location filename="../ViewManager/ViewManager.py" line="4234" /> <source>Zoom out</source> <translation>Afastar</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2816" /> + <location filename="../QScintilla/MiniEditor.py" line="2817" /> <location filename="../QScintilla/ShellWindow.py" line="1044" /> <location filename="../ViewManager/ViewManager.py" line="4236" /> <source>Zoom &out</source> <translation>A&fastar</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2818" /> + <location filename="../QScintilla/MiniEditor.py" line="2819" /> <location filename="../QScintilla/ShellWindow.py" line="1046" /> <location filename="../ViewManager/ViewManager.py" line="4238" /> <source>Ctrl+-</source> @@ -97520,7 +97525,7 @@ <translation /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2821" /> + <location filename="../QScintilla/MiniEditor.py" line="2822" /> <location filename="../QScintilla/ShellWindow.py" line="1049" /> <location filename="../ViewManager/ViewManager.py" line="4241" /> <source>Zoom Out</source> @@ -97528,35 +97533,35 @@ <translation>Afastar</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2827" /> + <location filename="../QScintilla/MiniEditor.py" line="2828" /> <location filename="../QScintilla/ShellWindow.py" line="1055" /> <location filename="../ViewManager/ViewManager.py" line="4247" /> <source>Zoom out on the text</source> <translation>Afastar no texto</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2830" /> + <location filename="../QScintilla/MiniEditor.py" line="2831" /> <location filename="../QScintilla/ShellWindow.py" line="1058" /> <location filename="../ViewManager/ViewManager.py" line="4250" /> <source><b>Zoom out</b><p>Zoom out on the text. This makes the text smaller.</p></source> <translation><b>Afastar</b><p>Afastar no texto. Isto faz o texto mais pequeno.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2840" /> + <location filename="../QScintilla/MiniEditor.py" line="2841" /> <location filename="../QScintilla/ShellWindow.py" line="1068" /> <location filename="../ViewManager/ViewManager.py" line="4260" /> <source>Zoom reset</source> <translation>Restaurar zoom</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2842" /> + <location filename="../QScintilla/MiniEditor.py" line="2843" /> <location filename="../QScintilla/ShellWindow.py" line="1070" /> <location filename="../ViewManager/ViewManager.py" line="4262" /> <source>Zoom &reset</source> <translation>&Restaurar zoom</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2844" /> + <location filename="../QScintilla/MiniEditor.py" line="2845" /> <location filename="../QScintilla/ShellWindow.py" line="1072" /> <location filename="../ViewManager/ViewManager.py" line="4264" /> <source>Ctrl+0</source> @@ -97564,42 +97569,42 @@ <translation>Ctrl+0</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2851" /> + <location filename="../QScintilla/MiniEditor.py" line="2852" /> <location filename="../QScintilla/ShellWindow.py" line="1079" /> <location filename="../ViewManager/ViewManager.py" line="4271" /> <source>Reset the zoom of the text</source> <translation>Reiniciar o zoom do texto</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2854" /> + <location filename="../QScintilla/MiniEditor.py" line="2855" /> <location filename="../QScintilla/ShellWindow.py" line="1082" /> <location filename="../ViewManager/ViewManager.py" line="4274" /> <source><b>Zoom reset</b><p>Reset the zoom of the text. This sets the zoom factor to 100%.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2865" /> + <location filename="../QScintilla/MiniEditor.py" line="2866" /> <location filename="../QScintilla/ShellWindow.py" line="1093" /> <location filename="../ViewManager/ViewManager.py" line="4285" /> <source>Zoom</source> <translation /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2867" /> + <location filename="../QScintilla/MiniEditor.py" line="2868" /> <location filename="../QScintilla/ShellWindow.py" line="1095" /> <location filename="../ViewManager/ViewManager.py" line="4287" /> <source>&Zoom</source> <translation /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2874" /> + <location filename="../QScintilla/MiniEditor.py" line="2875" /> <location filename="../QScintilla/ShellWindow.py" line="1102" /> <location filename="../ViewManager/ViewManager.py" line="4294" /> <source>Zoom the text</source> <translation>Zoom no texto</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2877" /> + <location filename="../QScintilla/MiniEditor.py" line="2878" /> <location filename="../QScintilla/ShellWindow.py" line="1105" /> <location filename="../ViewManager/ViewManager.py" line="4297" /> <source><b>Zoom</b><p>Zoom the text. This opens a dialog where the desired size can be entered.</p></source> @@ -98364,65 +98369,65 @@ <translation><p>O ficheiro <b>{0}</b> tem alterações por gravar.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6077" /> + <location filename="../ViewManager/ViewManager.py" line="6078" /> <source>Line: {0:5}</source> <translation>Linha: {0:5}</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6083" /> + <location filename="../ViewManager/ViewManager.py" line="6084" /> <source>Pos: {0:5}</source> <translation /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6103" /> + <location filename="../ViewManager/ViewManager.py" line="6104" /> <source>Language: {0}</source> <translation>Linguagem: {0}</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6112" /> + <location filename="../ViewManager/ViewManager.py" line="6113" /> <source>EOL Mode: {0}</source> <translation>Modo EOL: {0}</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6640" /> - <location filename="../ViewManager/ViewManager.py" line="6597" /> + <location filename="../ViewManager/ViewManager.py" line="6641" /> + <location filename="../ViewManager/ViewManager.py" line="6598" /> <source>&Clear</source> <translation>&Limpar</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6634" /> + <location filename="../ViewManager/ViewManager.py" line="6635" /> <source>&Add</source> <translation>&Adicionar</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6637" /> + <location filename="../ViewManager/ViewManager.py" line="6638" /> <source>&Edit...</source> <translation>&Editar...</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="7707" /> - <location filename="../ViewManager/ViewManager.py" line="7693" /> - <location filename="../ViewManager/ViewManager.py" line="7661" /> + <location filename="../ViewManager/ViewManager.py" line="7708" /> + <location filename="../ViewManager/ViewManager.py" line="7694" /> + <location filename="../ViewManager/ViewManager.py" line="7662" /> <source>Edit Spelling Dictionary</source> <translation>Editar Dicionário Ortográfico</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="7664" /> + <location filename="../ViewManager/ViewManager.py" line="7665" /> <source><p>The spelling dictionary file <b>{0}</b> could not be read.</p><p>Reason: {1}</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="7680" /> + <location filename="../ViewManager/ViewManager.py" line="7681" /> <source>Editing {0}</source> <translation>A editar {0}</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="7696" /> + <location filename="../ViewManager/ViewManager.py" line="7697" /> <source><p>The spelling dictionary file <b>{0}</b> could not be written.</p><p>Reason: {1}</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="7710" /> + <location filename="../ViewManager/ViewManager.py" line="7711" /> <source>The spelling dictionary was saved successfully.</source> <translation>O dicionário ortográfico foi guradado com êxito.</translation> </message> @@ -98432,28 +98437,28 @@ <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6819" /> + <location filename="../ViewManager/ViewManager.py" line="6820" /> <source>Clear Editor</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6820" /> + <location filename="../ViewManager/ViewManager.py" line="6821" /> <source>Do you really want to delete all text of the current editor?</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="8240" /> - <location filename="../ViewManager/ViewManager.py" line="8223" /> - <source>File System Watcher Error</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="8224" /> - <source><p>The operating system resources for file system watches are exhausted. This limit should be increased. On a Linux system you should <ul><li>sudo nano /etc/sysctl.conf</li><li>add to the bottom "fs.inotify.max_user_instances = 1024"</li><li>save and close the editor</li><li>sudo sysctl -p</li></ul></p><p>Error Message: {0}</p></source> - <translation type="unfinished" /> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="8241" /> + <location filename="../ViewManager/ViewManager.py" line="8224" /> + <source>File System Watcher Error</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="8225" /> + <source><p>The operating system resources for file system watches are exhausted. This limit should be increased. On a Linux system you should <ul><li>sudo nano /etc/sysctl.conf</li><li>add to the bottom "fs.inotify.max_user_instances = 1024"</li><li>save and close the editor</li><li>sudo sysctl -p</li></ul></p><p>Error Message: {0}</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="8242" /> <source>The file system watcher reported an error with code <b>{0}</b>.</p><p>Error Message: {1}</p></source> <translation type="unfinished" /> </message> @@ -105859,301 +105864,306 @@ <translation type="unfinished">espaço depois de '{0}'</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="95" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="96" /> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="94" /> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="93" /> <source>whitespace before '{0}'</source> <translation type="unfinished">espaço antes de '{0}</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="96" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="95" /> + <source>whitespace after decorator '@'</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="97" /> <source>multiple spaces before operator</source> <translation type="unfinished">espaços múltiplos antes do operador</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="99" /> - <source>multiple spaces after operator</source> - <translation type="unfinished">espaços múltiplos depois do operador</translation> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="100" /> - <source>tab before operator</source> - <translation type="unfinished">tabulação antes do operador</translation> + <source>multiple spaces after operator</source> + <translation type="unfinished">espaços múltiplos depois do operador</translation> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="101" /> - <source>tab after operator</source> - <translation type="unfinished">tabulação depois do operador</translation> + <source>tab before operator</source> + <translation type="unfinished">tabulação antes do operador</translation> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="102" /> + <source>tab after operator</source> + <translation type="unfinished">tabulação depois do operador</translation> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="103" /> <source>missing whitespace around operator</source> <translation type="unfinished">falta espaço à volta do operador</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="105" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="106" /> <source>missing whitespace around arithmetic operator</source> <translation type="unfinished">falta espaço à volta do operador aritmético</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="108" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="109" /> <source>missing whitespace around bitwise or shift operator</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="111" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="112" /> <source>missing whitespace around modulo operator</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="114" /> - <source>missing whitespace after '{0}'</source> - <translation type="unfinished">falta espaço depois de '{0}'</translation> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="115" /> - <source>multiple spaces after '{0}'</source> - <translation type="unfinished">múltiplos espaços depois de '{0}'</translation> + <source>missing whitespace after '{0}'</source> + <translation type="unfinished">falta espaço depois de '{0}'</translation> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="116" /> - <source>tab after '{0}'</source> - <translation type="unfinished">tabulação depois de '{0}'</translation> + <source>multiple spaces after '{0}'</source> + <translation type="unfinished">múltiplos espaços depois de '{0}'</translation> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="117" /> + <source>tab after '{0}'</source> + <translation type="unfinished">tabulação depois de '{0}'</translation> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="118" /> <source>unexpected spaces around keyword / parameter equals</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="120" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="121" /> <source>missing whitespace around parameter equals</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="123" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="124" /> <source>at least two spaces before inline comment</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="126" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="127" /> <source>inline comment should start with '# '</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="129" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="130" /> <source>block comment should start with '# '</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="132" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="133" /> <source>too many leading '#' for block comment</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="135" /> - <source>multiple spaces after keyword</source> - <translation type="unfinished">múltiplos espaços depois da palavra-chave</translation> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="136" /> - <source>multiple spaces before keyword</source> - <translation type="unfinished">múltiplos espaços antes da palavra-chave</translation> + <source>multiple spaces after keyword</source> + <translation type="unfinished">múltiplos espaços depois da palavra-chave</translation> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="137" /> - <source>tab after keyword</source> - <translation type="unfinished">tabulação depois da palavra-chave</translation> + <source>multiple spaces before keyword</source> + <translation type="unfinished">múltiplos espaços antes da palavra-chave</translation> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="138" /> - <source>tab before keyword</source> - <translation type="unfinished">tabulação antes da palavra-chave</translation> + <source>tab after keyword</source> + <translation type="unfinished">tabulação depois da palavra-chave</translation> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="139" /> + <source>tab before keyword</source> + <translation type="unfinished">tabulação antes da palavra-chave</translation> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="140" /> <source>missing whitespace after keyword</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="145" /> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="142" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="146" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="143" /> <source>expected {0} blank lines, found {1}</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="148" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="149" /> <source>too many blank lines ({0}), expected {1}</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="151" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="152" /> <source>blank lines found after function decorator</source> <translation type="unfinished">encontradas linhas vazias depois do decorador de função</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="154" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="155" /> <source>expected {0} blank lines after class or function definition, found {1}</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="158" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="159" /> <source>expected {0} blank lines before a nested definition, found {1}</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="161" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="162" /> <source>too many blank lines ({0}) before a nested definition, expected {1}</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="165" /> - <source>too many blank lines ({0})</source> - <translation type="unfinished">demasiadas linhas vazias ({0})</translation> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="166" /> - <source>multiple imports on one line</source> - <translation type="unfinished">múltiplos imports numa linha</translation> + <source>too many blank lines ({0})</source> + <translation type="unfinished">demasiadas linhas vazias ({0})</translation> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="167" /> + <source>multiple imports on one line</source> + <translation type="unfinished">múltiplos imports numa linha</translation> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="168" /> <source>module level import not at top of file</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="170" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="171" /> <source>line too long ({0} > {1} characters)</source> <translation type="unfinished">linha demasiado comprida ({0} > {1} caráteres)</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="173" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="174" /> <source>the backslash is redundant between brackets</source> <translation type="unfinished">barra invertida é redundante entre parêntesis</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="176" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="177" /> <source>multiple statements on one line (colon)</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="179" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="180" /> <source>multiple statements on one line (semicolon)</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="182" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="183" /> <source>statement ends with a semicolon</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="185" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="186" /> <source>multiple statements on one line (def)</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="191" /> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="188" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="192" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="189" /> <source>comparison to {0} should be {1}</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="194" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="195" /> <source>test for membership should be 'not in'</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="197" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="198" /> <source>test for object identity should be 'is not'</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="200" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="201" /> <source>do not compare types, for exact checks use 'is' / 'is not', for instance checks use 'isinstance()'</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="205" /> - <source>do not use bare except</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="206" /> + <source>do not use bare except</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="207" /> <source>do not assign a lambda expression, use a def</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="209" /> - <source>ambiguous variable name '{0}'</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="210" /> + <source>ambiguous variable name '{0}'</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="211" /> <source>ambiguous class definition '{0}'</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="213" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="214" /> <source>ambiguous function definition '{0}'</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="216" /> - <source>{0}: {1}</source> - <translation type="unfinished">{0}: {1}</translation> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="217" /> + <source>{0}: {1}</source> + <translation type="unfinished">{0}: {1}</translation> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="218" /> <source>{0}</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="225" /> - <source>indentation contains tabs</source> - <translation type="unfinished">indentação com tabluações</translation> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="226" /> - <source>trailing whitespace</source> - <translation type="unfinished">espaço ao final</translation> + <source>indentation contains tabs</source> + <translation type="unfinished">indentação com tabluações</translation> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="227" /> - <source>no newline at end of file</source> - <translation type="unfinished">não há linha nova no final do ficheiro</translation> + <source>trailing whitespace</source> + <translation type="unfinished">espaço ao final</translation> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="228" /> - <source>blank line contains whitespace</source> - <translation type="unfinished">esperada 1 linha vazia, encontradas 0</translation> + <source>no newline at end of file</source> + <translation type="unfinished">não há linha nova no final do ficheiro</translation> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="229" /> - <source>blank line at end of file</source> - <translation type="unfinished">linha vazia no fim do ficheiro</translation> + <source>blank line contains whitespace</source> + <translation type="unfinished">esperada 1 linha vazia, encontradas 0</translation> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="230" /> + <source>blank line at end of file</source> + <translation type="unfinished">linha vazia no fim do ficheiro</translation> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="231" /> <source>line break before binary operator</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="233" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="234" /> <source>line break after binary operator</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="236" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="237" /> <source>doc line too long ({0} > {1} characters)</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="239" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="240" /> <source>invalid escape sequence '\{0}'</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="242" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="243" /> <source>'async' and 'await' are reserved keywords starting with Python 3.7</source> <translation type="unfinished" /> </message>
--- a/src/eric7/i18n/eric7_ru.ts Mon Jul 29 14:43:59 2024 +0200 +++ b/src/eric7/i18n/eric7_ru.ts Sat Aug 31 10:54:21 2024 +0200 @@ -5132,7 +5132,7 @@ <context> <name>CodeStyleChecker</name> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="515" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="516" /> <source>No message defined for code '{0}'.</source> <translation>Не определено сообщение для кода '{0}'.</translation> </message> @@ -6274,146 +6274,146 @@ <context> <name>CodeStyleFixer</name> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="253" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="254" /> <source>Triple single quotes converted to triple double quotes.</source> <translation>Утроенные одинарные кавычки заменены утроенными двойными.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="256" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="257" /> <source>Introductory quotes corrected to be {0}"""</source> <translation>Кавычки во введении исправлены на {0}"""</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="259" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="260" /> <source>Single line docstring put on one line.</source> <translation>Одиночная строка документации располагается в одной строке.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="262" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="263" /> <source>Period added to summary line.</source> <translation>Добавлена точка в строке резюме.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="289" /> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="265" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="290" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="266" /> <source>Blank line before function/method docstring removed.</source> <translation>Удалена пустая строка перед строкой документации для function/method.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="268" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="269" /> <source>Blank line inserted before class docstring.</source> <translation>Добавлена пустая строка перед строкой документации для class.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="271" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="272" /> <source>Blank line inserted after class docstring.</source> <translation>Добавлена пустая строка после строки документации для class.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="274" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="275" /> <source>Blank line inserted after docstring summary.</source> <translation>Добавлена пустая строка после резюме строки документации.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="277" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="278" /> <source>Blank line inserted after last paragraph of docstring.</source> <translation>Добавлена пустая строка после последнего абзаца строки документации.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="280" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="281" /> <source>Leading quotes put on separate line.</source> <translation>Открывающие кавычки размещены на отдельной строке.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="283" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="284" /> <source>Trailing quotes put on separate line.</source> <translation>Закрывающие кавычки размещены на отдельной строке.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="286" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="287" /> <source>Blank line before class docstring removed.</source> <translation>Удалена пустая строка перед строкой документации для class.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="292" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="293" /> <source>Blank line after class docstring removed.</source> <translation>Удалена пустая строка после строки документации для class.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="295" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="296" /> <source>Blank line after function/method docstring removed.</source> <translation>Удалена пустая строка после строки документации для function/method.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="298" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="299" /> <source>Blank line after last paragraph removed.</source> <translation>Удалена пустая строка после последнего абзаца.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="301" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="302" /> <source>Tab converted to 4 spaces.</source> <translation>Символы табуляции заменяются на 4 пробела.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="304" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="305" /> <source>Indentation adjusted to be a multiple of four.</source> <translation>Величина отступа задана кратной четырём.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="307" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="308" /> <source>Indentation of continuation line corrected.</source> <translation>Исправлен размер отступа строки продолжения.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="310" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="311" /> <source>Indentation of closing bracket corrected.</source> <translation>Исправлен размер отступа закрывающей скобки.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="313" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="314" /> <source>Missing indentation of continuation line corrected.</source> <translation>Добавлен отступ к строке продолжения.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="316" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="317" /> <source>Closing bracket aligned to opening bracket.</source> <translation>Закрывающая скобка выровнена с открывающей.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="319" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="320" /> <source>Indentation level changed.</source> <translation>Изменен размер отступа.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="322" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="323" /> <source>Indentation level of hanging indentation changed.</source> <translation>Изменен размер отступа для висячих отступов.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="325" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="326" /> <source>Visual indentation corrected.</source> <translation>Исправленена величина визуального отступа.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="340" /> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="334" /> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="328" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="341" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="335" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="329" /> <source>Extraneous whitespace removed.</source> <translation>Посторонние пробельные символы удалены.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="337" /> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="331" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="338" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="332" /> <source>Missing whitespace added.</source> <translation>Добавлены недостающие пробельные символы.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="343" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="344" /> <source>Whitespace around comment sign corrected.</source> <translation>Пробельные символы вокруг символа комментария откорректированы.</translation> </message> <message numerus="yes"> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="346" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="347" /> <source>%n blank line(s) inserted.</source> <translation> <numerusform>%n пустая строка вставлена.</numerusform> @@ -6422,7 +6422,7 @@ </translation> </message> <message numerus="yes"> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="349" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="350" /> <source>%n superfluous lines removed</source> <translation> <numerusform>%n лишняя пустая строка удалена</numerusform> @@ -6431,73 +6431,73 @@ </translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="352" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="353" /> <source>Superfluous blank lines removed.</source> <translation>Удалены лишние пустые строки.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="355" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="356" /> <source>Superfluous blank lines after function decorator removed.</source> <translation>Удалены лишние пустые строки после декоратора функции.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="358" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="359" /> <source>Imports were put on separate lines.</source> <translation>Операторы импорта помещены на отдельных строках.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="361" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="362" /> <source>Long lines have been shortened.</source> <translation>Укорочены длинные строки.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="364" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="365" /> <source>Redundant backslash in brackets removed.</source> <translation>Удалены излишние символы '\'.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="370" /> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="367" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="371" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="368" /> <source>Compound statement corrected.</source> <translation>Составная инструкция исправлена.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="373" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="374" /> <source>Comparison to None/True/False corrected.</source> <translation>Исправлено сравнение с None/True/False.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="376" /> - <source>'{0}' argument added.</source> - <translation>Добавлен '{0}' аргумент.</translation> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="377" /> - <source>'{0}' argument removed.</source> - <translation>Удалён '{0}' аргумент.</translation> + <source>'{0}' argument added.</source> + <translation>Добавлен '{0}' аргумент.</translation> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="378" /> + <source>'{0}' argument removed.</source> + <translation>Удалён '{0}' аргумент.</translation> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="379" /> <source>Whitespace stripped from end of line.</source> <translation>Завершающие пробельные символы обрезаны.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="381" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="382" /> <source>newline added to end of file.</source> <translation>символ новой строки добавлен в конец файла.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="384" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="385" /> <source>Superfluous trailing blank lines removed from end of file.</source> <translation>Удалены пустые строки в конце файла.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="387" /> - <source>'<>' replaced by '!='.</source> - <translation>'<>' заменен на '!='.</translation> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="388" /> + <source>'<>' replaced by '!='.</source> + <translation>'<>' заменен на '!='.</translation> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="389" /> <source>Could not save the file! Skipping it. Reason: {0}</source> <translation>Не удалось сохранить файл! Пропускаем. Причина: {0}</translation> </message> @@ -7540,7 +7540,7 @@ <message> <location filename="../CondaInterface/CondaPackagesWidget.py" line="714" /> <source><p>Shall the environment <b>{0}</b> really be deleted?</p></source> - <translation><p>Должна ли среда окружения <b>{0}</b> действительно быть удалена? </p></translation> + <translation><p>Действительно ли среда окружения <b>{0}</b> должна быть удалена? </p></translation> </message> <message> <location filename="../CondaInterface/CondaPackagesWidget.py" line="739" /> @@ -22999,12 +22999,12 @@ <message> <location filename="../WebBrowser/WebAuth/Fido2Management.py" line="59" /> <source>HMAC Secret</source> - <translation>HMAC безопасность</translation> + <translation>HMAC Secret</translation> </message> <message> <location filename="../WebBrowser/WebAuth/Fido2Management.py" line="60" /> <source>Large Blob Key</source> - <translation>Большой Blob-ключ</translation> + <translation>Большой двоичный ключ</translation> </message> <message> <location filename="../WebBrowser/WebAuth/Fido2Management.py" line="61" /> @@ -23029,7 +23029,7 @@ <message> <location filename="../WebBrowser/WebAuth/Fido2Management.py" line="70" /> <source>Extensions</source> - <translation>Плагины</translation> + <translation>Расширения</translation> </message> <message> <location filename="../WebBrowser/WebAuth/Fido2Management.py" line="172" /> @@ -23094,38 +23094,38 @@ <message> <location filename="../WebBrowser/WebAuth/Fido2Management.py" line="201" /> <source>switched on</source> - <translation>включен</translation> + <translation>включено</translation> </message> <message> <location filename="../WebBrowser/WebAuth/Fido2Management.py" line="201" /> <source>switched off</source> - <translation>выключен</translation> + <translation>выключено</translation> </message> <message> <location filename="../WebBrowser/WebAuth/Fido2Management.py" line="203" /> <source>Always require User Verification</source> - <translation>Всегда требуется подтверждение пользователя</translation> + <translation>Всегда требуется верификация пользователя</translation> </message> <message> <location filename="../WebBrowser/WebAuth/Fido2Management.py" line="208" /> <source>Passkeys storage remaining</source> - <translation>Осталось сохранить ключи доступа</translation> + <translation>Осталось место для хранения ключей доступа</translation> </message> <message> <location filename="../WebBrowser/WebAuth/Fido2Management.py" line="353" /> <location filename="../WebBrowser/WebAuth/Fido2Management.py" line="215" /> <source>Enterprise Attestation</source> - <translation>Аттестация предприятия</translation> + <translation>Аттестация компании</translation> </message> <message> <location filename="../WebBrowser/WebAuth/Fido2Management.py" line="216" /> <source>enabled</source> - <translation>enabled</translation> + <translation>включена</translation> </message> <message> <location filename="../WebBrowser/WebAuth/Fido2Management.py" line="216" /> <source>disabled</source> - <translation>disabled</translation> + <translation>отключена</translation> </message> <message> <location filename="../WebBrowser/WebAuth/Fido2Management.py" line="223" /> @@ -23179,12 +23179,12 @@ <location filename="../WebBrowser/WebAuth/Fido2Management.py" line="274" /> <location filename="../WebBrowser/WebAuth/Fido2Management.py" line="255" /> <source>supported</source> - <translation>поддерживается</translation> + <translation>поддерживаемый</translation> </message> <message> <location filename="../WebBrowser/WebAuth/Fido2Management.py" line="266" /> <source>Is Platform Device</source> - <translation>Является платформенным устройством</translation> + <translation>Является устройством платформы</translation> </message> <message> <location filename="../WebBrowser/WebAuth/Fido2Management.py" line="267" /> @@ -23209,12 +23209,12 @@ <message> <location filename="../WebBrowser/WebAuth/Fido2Management.py" line="288" /> <source>supported, PIN set</source> - <translation>поддерживается, установлен PIN-код</translation> + <translation>supported, PIN set</translation> </message> <message> <location filename="../WebBrowser/WebAuth/Fido2Management.py" line="290" /> <source>supported, PIN not set</source> - <translation>поддерживается, PIN-код не установлен</translation> + <translation>supported, PIN not set</translation> </message> <message> <location filename="../WebBrowser/WebAuth/Fido2Management.py" line="297" /> @@ -23224,22 +23224,22 @@ <message> <location filename="../WebBrowser/WebAuth/Fido2Management.py" line="308" /> <source>User Verification</source> - <translation>Проверка пользователя</translation> + <translation>Верификация пользователя</translation> </message> <message> <location filename="../WebBrowser/WebAuth/Fido2Management.py" line="313" /> <source>supported, configured</source> - <translation>поддерживается, настроен</translation> + <translation>supported, configured</translation> </message> <message> <location filename="../WebBrowser/WebAuth/Fido2Management.py" line="315" /> <source>supported, not configured</source> - <translation>поддерживается,не настроен</translation> + <translation>supported, not configured</translation> </message> <message> <location filename="../WebBrowser/WebAuth/Fido2Management.py" line="322" /> <source>Verify User with Client PIN</source> - <translation>Верификация пользователя с помощью PIN-кода клиента</translation> + <translation>Верификация пользователя посредством PIN-кода клиента</translation> </message> <message> <location filename="../WebBrowser/WebAuth/Fido2Management.py" line="334" /> @@ -23295,12 +23295,12 @@ <message> <location filename="../WebBrowser/WebAuth/Fido2Management.py" line="383" /> <source>CTAP2.1 Preview Fingerprint</source> - <translation>Просмотр отпечатка пальца в CTAP2.1</translation> + <translation>Предварительный просмотр отпечатка пальца CTAP2.1</translation> </message> <message> <location filename="../WebBrowser/WebAuth/Fido2Management.py" line="397" /> <source>Verify User for Fingerprint Registration</source> - <translation>Проверка пользователя для регистрации по отпечатку пальца</translation> + <translation>Верификация пользователя для регистрации по отпечатку пальца</translation> </message> <message> <location filename="../WebBrowser/WebAuth/Fido2Management.py" line="407" /> @@ -23310,7 +23310,7 @@ <message> <location filename="../WebBrowser/WebAuth/Fido2Management.py" line="417" /> <source>Verify User for Security Key Configuration</source> - <translation>Проверка пользователя на конфигурацию ключа безопасности</translation> + <translation>Верификация пользователя для настройки ключа безопасности</translation> </message> <message> <location filename="../WebBrowser/WebAuth/Fido2Management.py" line="427" /> @@ -23320,7 +23320,7 @@ <message> <location filename="../WebBrowser/WebAuth/Fido2Management.py" line="437" /> <source>CTAP2.1 Preview Credential Management</source> - <translation>Просмот управления учетными данными CTAP2.1</translation> + <translation>Предварительный просмотр управления учетными данными CTAP2.1</translation> </message> <message> <location filename="../WebBrowser/WebAuth/Fido2Management.py" line="447" /> @@ -23330,17 +23330,17 @@ <message> <location filename="../WebBrowser/WebAuth/Fido2Management.py" line="457" /> <source>Make Non-Resident Passkey without User Verification</source> - <translation>Создайте нерезидентный пароль без проверки пользователя</translation> + <translation>Создание нерезидентного ключа доступа без верификации пользователя</translation> </message> <message> <location filename="../WebBrowser/WebAuth/Fido2Management.py" line="459" /> <source>allowed</source> - <translation>разрешено</translation> + <translation>allowed</translation> </message> <message> <location filename="../WebBrowser/WebAuth/Fido2Management.py" line="461" /> <source>not allowed</source> - <translation>не разрешено</translation> + <translation>not allowed</translation> </message> <message> <location filename="../WebBrowser/WebAuth/Fido2Management.py" line="468" /> @@ -23358,22 +23358,22 @@ <message> <location filename="../WebBrowser/WebAuth/Fido2Management.py" line="507" /> <source>Reset failed. The security key was not removed and re-inserted within 30 seconds.</source> - <translation>Ошибка сброса. Ключ безопасности не был удален и не был вставлен повторно в течение 30 секунд.</translation> + <translation>Сбой сброса. Ключ безопасности не был удален и повторно вставлен в течение 30 секунд.</translation> </message> <message> <location filename="../WebBrowser/WebAuth/Fido2Management.py" line="517" /> <source>You need to touch your security key to confirm the reset.</source> - <translation>Для подтверждения сброса необходимо прикоснуться к своему ключу безопасности.</translation> + <translation>Вам нужно прикоснуться к своему ключу безопасности, чтобы подтвердить сброс настроек.</translation> </message> <message> <location filename="../WebBrowser/WebAuth/Fido2Management.py" line="524" /> <source>Reset must be triggered within 5 seconds after the security key is inserted.</source> - <translation>Сброс должен быть произведен в течение 5 секунд после установки ключа безопасности.</translation> + <translation>Сброс должен быть произведен в течение 5 секунд после вставки ключа безопасности.</translation> </message> <message> <location filename="../WebBrowser/WebAuth/Fido2Management.py" line="531" /> <source>Reset failed. {0}</source> - <translation>Ошибка сброса. {0}</translation> + <translation>Сбой сброса. {0}</translation> </message> <message> <location filename="../WebBrowser/WebAuth/Fido2Management.py" line="533" /> @@ -23446,12 +23446,12 @@ <location filename="../WebBrowser/WebAuth/Fido2Management.py" line="861" /> <location filename="../WebBrowser/WebAuth/Fido2Management.py" line="812" /> <source>Connected security key unplugged. Reinsert and try again.</source> - <translation>Установите устройство на место и повторите попытку.</translation> + <translation>Подключенный ключ безопасности отсоединен. Установите его повторно и повторите попытку.</translation> </message> <message> <location filename="../WebBrowser/WebAuth/Fido2Management.py" line="848" /> <source>The selected security key does not support configuration.</source> - <translation>Выбранный ключ безопасности не поддерживает настройку.</translation> + <translation>Выбранный ключ безопасности не поддерживает конфигурацию.</translation> </message> <message> <location filename="../WebBrowser/WebAuth/Fido2Management.py" line="920" /> @@ -23521,7 +23521,7 @@ <location filename="../WebBrowser/WebAuth/Fido2ManagementDialog.py" line="201" /> <location filename="../WebBrowser/WebAuth/Fido2ManagementDialog.py" line="152" /> <source>FIDO2 Security Key Management</source> - <translation>Управление ключами безопасности FIDO 2</translation> + <translation>Управление ключами безопасности FIDO2</translation> </message> <message> <location filename="../WebBrowser/WebAuth/Fido2ManagementDialog.py" line="153" /> @@ -23544,7 +23544,7 @@ <message> <location filename="../WebBrowser/WebAuth/Fido2ManagementDialog.py" line="195" /> <source>A PIN change is required.</source> - <translation>Требуется сменить PIN-код.</translation> + <translation>Требуется изменение PIN-кода.</translation> </message> <message> <location filename="../WebBrowser/WebAuth/Fido2ManagementDialog.py" line="197" /> @@ -23570,7 +23570,7 @@ <message> <location filename="../WebBrowser/WebAuth/Fido2ManagementDialog.py" line="298" /> <source>Confirm this dialog then remove and re-insert the security key. Confirm the reset by touching it.</source> - <translation>Подтвердите этот диалог, затем извлеките и снова вставьте ключ безопасности. Подтвердите сброс, коснувшись его.</translation> + <translation>Подтвердите этот диалог, затем извлеките и повторно вставьте ключ безопасности. Подтвердите сброс, коснувшись его.</translation> </message> <message> <location filename="../WebBrowser/WebAuth/Fido2ManagementDialog.py" line="325" /> @@ -54676,734 +54676,734 @@ <context> <name>MiniEditor</name> <message> - <location filename="../QScintilla/MiniEditor.py" line="492" /> + <location filename="../QScintilla/MiniEditor.py" line="493" /> <source>About eric Mini Editor</source> <translation>О eric миниредакторе</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="493" /> + <location filename="../QScintilla/MiniEditor.py" line="494" /> <source>The eric 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>Eric миниредактор — это компонент, основанный на QScintilla. Его можно использовать для простых задач редактирования, не требующих полномасштабного редактора.</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="562" /> + <location filename="../QScintilla/MiniEditor.py" line="563" /> <source>Line: {0:5}</source> <translation>Строка: {0:5}</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="566" /> + <location filename="../QScintilla/MiniEditor.py" line="567" /> <source>Pos: {0:5}</source> <translation>Позиция: {0:5}</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="580" /> + <location filename="../QScintilla/MiniEditor.py" line="581" /> <source>Language: {0}</source> <translation>Язык: {0}</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="644" /> + <location filename="../QScintilla/MiniEditor.py" line="645" /> <source>New</source> <translation>Новое окно</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="646" /> - <source>&New</source> - <translation>&Новое окно</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="647" /> + <source>&New</source> + <translation>&Новое окно</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="648" /> <source>Ctrl+N</source> <comment>File|New</comment> <translation>Ctrl+N</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="652" /> + <location filename="../QScintilla/MiniEditor.py" line="653" /> <source>Open an empty editor window</source> <translation>Открыть пустое окно редактора</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="654" /> + <location filename="../QScintilla/MiniEditor.py" line="655" /> <source><b>New</b><p>An empty editor window will be created.</p></source> <translation><b>Новый документ</b> <p>Создание пустого окна редактора.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="660" /> + <location filename="../QScintilla/MiniEditor.py" line="661" /> <source>Open</source> <translation>Открыть</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="662" /> - <source>&Open...</source> - <translation>&Открыть...</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="663" /> + <source>&Open...</source> + <translation>&Открыть...</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="664" /> <source>Ctrl+O</source> <comment>File|Open</comment> <translation>Ctrl+O</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="668" /> + <location filename="../QScintilla/MiniEditor.py" line="669" /> <source>Open a file</source> <translation>Открыть файл</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="670" /> + <location filename="../QScintilla/MiniEditor.py" line="671" /> <source><b>Open a file</b><p>You will be asked for the name of a file to be opened.</p></source> <translation><b>Открыть файл</b><p>Вам будет предложено задать имя файла, который нужно открыть.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="679" /> + <location filename="../QScintilla/MiniEditor.py" line="680" /> <source>Save</source> <translation>Сохранить</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="681" /> - <source>&Save</source> - <translation>&Сохранить</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="682" /> + <source>&Save</source> + <translation>&Сохранить</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="683" /> <source>Ctrl+S</source> <comment>File|Save</comment> <translation>Ctrl+S</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="687" /> + <location filename="../QScintilla/MiniEditor.py" line="688" /> <source>Save the current file</source> <translation>Сохранить текущий файл</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="689" /> + <location filename="../QScintilla/MiniEditor.py" line="690" /> <source><b>Save File</b><p>Save the contents of current editor window.</p></source> <translation><b>Сохранить файл</b> <p>Сохранение содержания текущего окна редактора.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="698" /> + <location filename="../QScintilla/MiniEditor.py" line="699" /> <source>Save as</source> <translation>Сохранить как</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="700" /> - <source>Save &as...</source> - <translation>Сохранить &как...</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="701" /> + <source>Save &as...</source> + <translation>Сохранить &как...</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="702" /> <source>Shift+Ctrl+S</source> <comment>File|Save As</comment> <translation>Shift+Ctrl+S</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="706" /> + <location filename="../QScintilla/MiniEditor.py" line="707" /> <source>Save the current file to a new one</source> <translation>Сохранить текущий файл в новый</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="708" /> + <location filename="../QScintilla/MiniEditor.py" line="709" /> <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>Сохранить файл как</b> <p>Сохранение содержания текущего окна редактора в новый файл. Имя файла будет запрошено с помощью диалога выбора файлов.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="718" /> + <location filename="../QScintilla/MiniEditor.py" line="719" /> <source>Save Copy</source> <translation>Сохранить копию</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="720" /> + <location filename="../QScintilla/MiniEditor.py" line="721" /> <source>Save &Copy...</source> <translation>Сохранить &копию...</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="726" /> + <location filename="../QScintilla/MiniEditor.py" line="727" /> <source>Save a copy of the current file</source> <translation>Сохранить копию текущего файла</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="728" /> + <location filename="../QScintilla/MiniEditor.py" line="729" /> <source><b>Save Copy</b><p>Save a copy of the contents of current editor window. The file can be entered in a file selection dialog.</p></source> <translation><b>Сохранить копию</b><p>Сохранение контента текущего окна редактора. Имя файла может быть введено в диалоге выбора файла.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="738" /> + <location filename="../QScintilla/MiniEditor.py" line="739" /> <source>Close</source> <translation>Закрыть</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="740" /> - <source>&Close</source> - <translation>&Закрыть</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="741" /> + <source>&Close</source> + <translation>&Закрыть</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="742" /> <source>Ctrl+W</source> <comment>File|Close</comment> <translation>Ctrl+W</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="746" /> + <location filename="../QScintilla/MiniEditor.py" line="747" /> <source>Close the editor window</source> <translation>Закрыть окно редактора</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="748" /> + <location filename="../QScintilla/MiniEditor.py" line="749" /> <source><b>Close Window</b><p>Close the current window.</p></source> <translation><b>Закрыть окно</b> <p>Закрытие текущего окна.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="754" /> + <location filename="../QScintilla/MiniEditor.py" line="755" /> <source>Print</source> <translation>Печать</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="756" /> - <source>&Print</source> - <translation>&Печать</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="757" /> + <source>&Print</source> + <translation>&Печать</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="758" /> <source>Ctrl+P</source> <comment>File|Print</comment> <translation>Ctrl+P</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="762" /> + <location filename="../QScintilla/MiniEditor.py" line="763" /> <source>Print the current file</source> <translation>Печать текущего файла</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="764" /> + <location filename="../QScintilla/MiniEditor.py" line="765" /> <source><b>Print File</b><p>Print the contents of the current file.</p></source> <translation><b>Печать файла</b><p>Распечатать содержимое текущего файла.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="773" /> + <location filename="../QScintilla/MiniEditor.py" line="774" /> <source>Print Preview</source> <translation>Предварительный просмотр печати</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="781" /> + <location filename="../QScintilla/MiniEditor.py" line="782" /> <source>Print preview of the current file</source> <translation>Предварительный просмотр печати текущего файла</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="783" /> + <location filename="../QScintilla/MiniEditor.py" line="784" /> <source><b>Print Preview</b><p>Print preview of the current file.</p></source> <translation><b>Предварительный просмотр печати</b><p>Предварительный просмотр печати текущего файла.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="796" /> + <location filename="../QScintilla/MiniEditor.py" line="797" /> <source>Undo</source> <translation>Отменить</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="798" /> - <source>&Undo</source> - <translation>&Отменить</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="799" /> + <source>&Undo</source> + <translation>&Отменить</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="800" /> <source>Ctrl+Z</source> <comment>Edit|Undo</comment> <translation>Ctrl+Z</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="800" /> + <location filename="../QScintilla/MiniEditor.py" line="801" /> <source>Alt+Backspace</source> <comment>Edit|Undo</comment> <translation>Alt+Backspace</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="804" /> + <location filename="../QScintilla/MiniEditor.py" line="805" /> <source>Undo the last change</source> <translation>Отменить последнее изменение</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="806" /> + <location filename="../QScintilla/MiniEditor.py" line="807" /> <source><b>Undo</b><p>Undo the last change done in the current editor.</p></source> <translation><b>Отмена</b> <p>Отмена последнего изменения в текущем сеансе редактирования.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="815" /> + <location filename="../QScintilla/MiniEditor.py" line="816" /> <source>Redo</source> <translation>Повторить</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="817" /> - <source>&Redo</source> - <translation>&Повторить</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="818" /> + <source>&Redo</source> + <translation>&Повторить</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="819" /> <source>Ctrl+Shift+Z</source> <comment>Edit|Redo</comment> <translation>Ctrl+Shift+Z</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="823" /> + <location filename="../QScintilla/MiniEditor.py" line="824" /> <source>Redo the last change</source> <translation>Восстановить последнее отменённое изменение</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="825" /> + <location filename="../QScintilla/MiniEditor.py" line="826" /> <source><b>Redo</b><p>Redo the last change done in the current editor.</p></source> <translation><b>Повтор</b> <p>Восстановление последнего отменённого изменения.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="834" /> + <location filename="../QScintilla/MiniEditor.py" line="835" /> <source>Cut</source> <translation>Вырезать</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="836" /> - <source>Cu&t</source> - <translation>В&ырезать</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="837" /> + <source>Cu&t</source> + <translation>В&ырезать</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="838" /> <source>Ctrl+X</source> <comment>Edit|Cut</comment> <translation>Ctrl+X</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="838" /> + <location filename="../QScintilla/MiniEditor.py" line="839" /> <source>Shift+Del</source> <comment>Edit|Cut</comment> <translation>Shift+Del</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="842" /> + <location filename="../QScintilla/MiniEditor.py" line="843" /> <source>Cut the selection</source> <translation>Вырезать выделение</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="844" /> + <location filename="../QScintilla/MiniEditor.py" line="845" /> <source><b>Cut</b><p>Cut the selected text of the current editor to the clipboard.</p></source> <translation><b>Вырезать</b> <p>Вырезать выделение и поместить его в буфер обмена.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="854" /> + <location filename="../QScintilla/MiniEditor.py" line="855" /> <source>Copy</source> <translation>Копировать</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="856" /> - <source>&Copy</source> - <translation>&Копировать</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="857" /> + <source>&Copy</source> + <translation>&Копировать</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="858" /> <source>Ctrl+C</source> <comment>Edit|Copy</comment> <translation>Ctrl+C</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="858" /> + <location filename="../QScintilla/MiniEditor.py" line="859" /> <source>Ctrl+Ins</source> <comment>Edit|Copy</comment> <translation>Ctrl+Ins</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="862" /> + <location filename="../QScintilla/MiniEditor.py" line="863" /> <source>Copy the selection</source> <translation>Копировать выделение</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="864" /> + <location filename="../QScintilla/MiniEditor.py" line="865" /> <source><b>Copy</b><p>Copy the selected text of the current editor to the clipboard.</p></source> <translation><b>Копировать</b> <p>Копировать выделение и поместить его в буфер обмена.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="874" /> + <location filename="../QScintilla/MiniEditor.py" line="875" /> <source>Paste</source> <translation>Вставить</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="876" /> - <source>&Paste</source> - <translation>Вс&тавить</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="877" /> + <source>&Paste</source> + <translation>Вс&тавить</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="878" /> <source>Ctrl+V</source> <comment>Edit|Paste</comment> <translation>Ctrl+V</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="878" /> + <location filename="../QScintilla/MiniEditor.py" line="879" /> <source>Shift+Ins</source> <comment>Edit|Paste</comment> <translation>Shift+Ins</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="882" /> + <location filename="../QScintilla/MiniEditor.py" line="883" /> <source>Paste the last cut/copied text</source> <translation>Вставить вырезанный/скопированный текст</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="884" /> + <location filename="../QScintilla/MiniEditor.py" line="885" /> <source><b>Paste</b><p>Paste the last cut/copied text from the clipboard to the current editor.</p></source> <translation><b>Вставить</b> <p>Вставить текст из буфера обмена в текущую позицию редактора.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="894" /> + <location filename="../QScintilla/MiniEditor.py" line="895" /> <source>Clear</source> <translation>Очистить</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="896" /> - <source>Cl&ear</source> - <translation>О&чистить</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="897" /> + <source>Cl&ear</source> + <translation>О&чистить</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="898" /> <source>Alt+Shift+C</source> <comment>Edit|Clear</comment> <translation>Alt+Shift+C</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="902" /> + <location filename="../QScintilla/MiniEditor.py" line="903" /> <source>Clear all text</source> <translation>Убрать весь текст</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="904" /> + <location filename="../QScintilla/MiniEditor.py" line="905" /> <source><b>Clear</b><p>Delete all text of the current editor.</p></source> <translation><b>Очистить</b> <p>Удаление всего текста из текущего редактора.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2892" /> + <location filename="../QScintilla/MiniEditor.py" line="2893" /> <source>About</source> <translation>О программе</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2892" /> + <location filename="../QScintilla/MiniEditor.py" line="2893" /> <source>&About</source> <translation>&О программе</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2894" /> + <location filename="../QScintilla/MiniEditor.py" line="2895" /> <source>Display information about this software</source> <translation>Информация о программе</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2896" /> + <location filename="../QScintilla/MiniEditor.py" line="2897" /> <source><b>About</b><p>Display some information about this software.</p></source> <translation><b>О программе</b><p>Информация об этом программном продукте.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2905" /> + <location filename="../QScintilla/MiniEditor.py" line="2906" /> <source>About Qt</source> <translation>О Qt</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2905" /> + <location filename="../QScintilla/MiniEditor.py" line="2906" /> <source>About &Qt</source> <translation>О &Qt</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2908" /> + <location filename="../QScintilla/MiniEditor.py" line="2909" /> <source>Display information about the Qt toolkit</source> <translation>Информация о наборе инструментов Qt</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2911" /> + <location filename="../QScintilla/MiniEditor.py" line="2912" /> <source><b>About Qt</b><p>Display some information about the Qt toolkit.</p></source> <translation><b>О Qt</b><p>Информация о библиотеке Qt.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2920" /> + <location filename="../QScintilla/MiniEditor.py" line="2921" /> <source>What's This?</source> <translation>Что это?</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2922" /> - <source>&What's This?</source> - <translation>&Что это?</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="2923" /> + <source>&What's This?</source> + <translation>&Что это?</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="2924" /> <source>Shift+F1</source> <comment>Help|What's This?'</comment> <translation>Shift+F1</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2928" /> + <location filename="../QScintilla/MiniEditor.py" line="2929" /> <source>Context sensitive help</source> <translation>Контекстнозависимая справка</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2930" /> + <location filename="../QScintilla/MiniEditor.py" line="2931" /> <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>Показ контекстнозависимой справки</b><p>В режиме "What's This?"(Что это?)курсор мыши отображается как стрелка со знаком вопроса, и вы можете, кликнув по элементу интерфейса, получить краткое описание того, что он делает и как его использовать. В диалоговом окне эта функция может быть вызвана кнопкой контекстной справки в панели заголовка.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2948" /> + <location filename="../QScintilla/MiniEditor.py" line="2949" /> <source>Preferences</source> <translation>Предпочтения</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2950" /> + <location filename="../QScintilla/MiniEditor.py" line="2951" /> <source>&Preferences...</source> <translation>&Предпочтения...</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2956" /> + <location filename="../QScintilla/MiniEditor.py" line="2957" /> <source>Set the prefered configuration</source> <translation>Установите предпочтительную конфигурацию</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2958" /> + <location filename="../QScintilla/MiniEditor.py" line="2959" /> <source><b>Preferences</b><p>Set the configuration items of the application with your prefered values.</p></source> <translation><b>Предпочтения</b><p>Установка элементов конфигурации приложения согласно вашим предпочтениям.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2972" /> + <location filename="../QScintilla/MiniEditor.py" line="2973" /> <source>&File</source> <translation>&Файл</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2984" /> + <location filename="../QScintilla/MiniEditor.py" line="2985" /> <source>&Edit</source> <translation>&Правка</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2994" /> + <location filename="../QScintilla/MiniEditor.py" line="2995" /> <source>&Search</source> <translation>&Поиск</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3004" /> + <location filename="../QScintilla/MiniEditor.py" line="3005" /> <source>&View</source> <translation>&Вид</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3010" /> + <location filename="../QScintilla/MiniEditor.py" line="3011" /> <source>Se&ttings</source> <translation>&Настройки</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3015" /> + <location filename="../QScintilla/MiniEditor.py" line="3016" /> <source>&Help</source> <translation>&Справка</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3027" /> + <location filename="../QScintilla/MiniEditor.py" line="3028" /> <source>File</source> <translation>Файл</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3039" /> + <location filename="../QScintilla/MiniEditor.py" line="3040" /> <source>Edit</source> <translation>Редактировать</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3048" /> + <location filename="../QScintilla/MiniEditor.py" line="3049" /> <source>Search</source> <translation>Поиск</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3054" /> + <location filename="../QScintilla/MiniEditor.py" line="3055" /> <source>View</source> <translation>Вид</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3060" /> + <location filename="../QScintilla/MiniEditor.py" line="3061" /> <source>Settings</source> <translation>Настройки</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3063" /> + <location filename="../QScintilla/MiniEditor.py" line="3064" /> <source>Help</source> <translation>Справка</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3076" /> + <location filename="../QScintilla/MiniEditor.py" line="3077" /> <source><p>This part of the status bar displays the editor language.</p></source> <translation><p>В этой части строки состояния отображается язык редактора.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3086" /> + <location filename="../QScintilla/MiniEditor.py" line="3087" /> <source><p>This part of the status bar displays an indication of the editors files writability.</p></source> <translation><p>В этой части строки состояния отображается режим ro/rw файла, открытого в редакторе.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3095" /> + <location filename="../QScintilla/MiniEditor.py" line="3096" /> <source><p>This part of the status bar displays the line number of the editor.</p></source> <translation><p>В этой части строки состояния отображается номер текущей строки редактора.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3104" /> + <location filename="../QScintilla/MiniEditor.py" line="3105" /> <source><p>This part of the status bar displays the cursor position of the editor.</p></source> <translation><p>В этой части строки состояния отображается текущая позиция курсора в редакторе.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3118" /> + <location filename="../QScintilla/MiniEditor.py" line="3119" /> <source><p>This part of the status bar allows zooming the editor.</p></source> <translation><p>В этой части строки состояния разрешено масштабирование редактора.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3125" /> + <location filename="../QScintilla/MiniEditor.py" line="3126" /> <source>Ready</source> <translation>Готово</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3201" /> - <source>eric Mini Editor</source> - <translation>Eric миниредактор</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="3202" /> + <source>eric Mini Editor</source> + <translation>Eric миниредактор</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="3203" /> <source>The document has unsaved changes.</source> <translation>Изменения в текущем документе не сохранены.</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3231" /> - <source>Open File</source> - <translation>Открыть файл</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="3232" /> + <source>Open File</source> + <translation>Открыть файл</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="3233" /> <source><p>The file <b>{0}</b> could not be opened.</p><p>Reason: {1}</p></source> <translation><p>Невозможно прочитать файл <b>{0}</b>.</p><p>Причина: {1}</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3260" /> + <location filename="../QScintilla/MiniEditor.py" line="3261" /> <source>File loaded</source> <translation>Файл загружен</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3341" /> - <source>Save File</source> - <translation>Сохранить файл</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="3342" /> + <source>Save File</source> + <translation>Сохранить файл</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="3343" /> <source><p>The file <b>{0}</b> could not be saved.<br/>Reason: {1}</p></source> <translation><p>Невозможно сохранить файл <b>{0}</b>.<br/>Причина: {1}.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3348" /> + <location filename="../QScintilla/MiniEditor.py" line="3349" /> <source>File saved</source> <translation>Файл сохранён</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3360" /> + <location filename="../QScintilla/MiniEditor.py" line="3361" /> <source>[*] - {0}</source> <translation>[*] - {0}</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3380" /> - <location filename="../QScintilla/MiniEditor.py" line="3360" /> + <location filename="../QScintilla/MiniEditor.py" line="3381" /> + <location filename="../QScintilla/MiniEditor.py" line="3361" /> <source>Mini Editor</source> <translation>Миниредактор</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3735" /> - <location filename="../QScintilla/MiniEditor.py" line="3706" /> - <location filename="../QScintilla/MiniEditor.py" line="3373" /> + <location filename="../QScintilla/MiniEditor.py" line="3736" /> + <location filename="../QScintilla/MiniEditor.py" line="3707" /> + <location filename="../QScintilla/MiniEditor.py" line="3374" /> <source>Untitled</source> <translation>Без имени</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3380" /> + <location filename="../QScintilla/MiniEditor.py" line="3381" /> <source>{0}[*] - {1}</source> <translation>{0}[*] - {1}</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3701" /> + <location filename="../QScintilla/MiniEditor.py" line="3702" /> <source>Printing...</source> <translation>Печать...</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3717" /> + <location filename="../QScintilla/MiniEditor.py" line="3718" /> <source>Printing completed</source> <translation>Печать завершена</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3719" /> + <location filename="../QScintilla/MiniEditor.py" line="3720" /> <source>Error while printing</source> <translation>Ошибка печати</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3722" /> + <location filename="../QScintilla/MiniEditor.py" line="3723" /> <source>Printing aborted</source> <translation>Печать прервана</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3777" /> - <source>Select all</source> - <translation>Выделить всё</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="3778" /> + <source>Select all</source> + <translation>Выделить всё</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="3779" /> <source>Deselect all</source> <translation>Снять выделение</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3792" /> + <location filename="../QScintilla/MiniEditor.py" line="3793" /> <source>Languages</source> <translation>Языки</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3795" /> + <location filename="../QScintilla/MiniEditor.py" line="3796" /> <source>No Language</source> <translation>Нет языка</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3816" /> + <location filename="../QScintilla/MiniEditor.py" line="3817" /> <source>Guessed</source> <translation>Предполагаемый язык</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3838" /> - <location filename="../QScintilla/MiniEditor.py" line="3820" /> + <location filename="../QScintilla/MiniEditor.py" line="3839" /> + <location filename="../QScintilla/MiniEditor.py" line="3821" /> <source>Alternatives</source> <translation>Альтернативная подсветка</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3835" /> + <location filename="../QScintilla/MiniEditor.py" line="3836" /> <source>Alternatives ({0})</source> <translation>Альтернативы ({0})</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3867" /> - <source>Pygments Lexer</source> - <translation>Лексер Pygments</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="3868" /> + <source>Pygments Lexer</source> + <translation>Лексер Pygments</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="3869" /> <source>Select the Pygments lexer to apply.</source> <translation>Выберите для использования лексер Pygments.</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="4413" /> - <source>EditorConfig Properties</source> - <translation>Свойства EditorConfig</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="4414" /> + <source>EditorConfig Properties</source> + <translation>Свойства EditorConfig</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="4415" /> <source><p>The EditorConfig properties for file <b>{0}</b> could not be loaded.</p></source> <translation><p>Не удается загрузить свойства EditorConfig для файла <b>{0}</b>.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="4601" /> - <source>Save File to Device</source> - <translation>Сохранить файл на устройство</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="4602" /> + <source>Save File to Device</source> + <translation>Сохранить файл на устройство</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="4603" /> <source>Enter the complete device file path:</source> <translation>Введите полный путь к файлу устройства:</translation> </message> @@ -55622,505 +55622,510 @@ <translation>ненужное списковое включение, переданное в {0}(), предотвращает короткое замыкание - перезаписать как генератор</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="135" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="134" /> + <source>unnecessary {0} comprehension - rewrite using dict.fromkeys()</source> + <translation>ненужное включение {0} - перепигите с использованием dict.fromkeys()</translation> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="139" /> <source>sort keys - '{0}' should be before '{1}'</source> <translation>ключи сортировки - '{0}' должны быть прежде чем '{1}'</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="140" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="144" /> <source>the number of arguments for property getter method is wrong (should be 1 instead of {0})</source> <translation>неправильное количество аргументов для метода получения свойства (должeн быть 1 вместо {0})</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="145" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="149" /> <source>the number of arguments for property setter method is wrong (should be 2 instead of {0})</source> <translation>неправильное количество аргументов для метода установки свойства (должно быть 2 вместо {0})</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="150" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="154" /> <source>the number of arguments for property deleter method is wrong (should be 1 instead of {0})</source> <translation>количество аргументов для метода удаления свойств неверно (должно быть 1 вместо {0})</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="155" /> - <source>the name of the setter method is wrong (should be '{0}' instead of '{1}')</source> - <translation>неправильное имя метода установки (должно быть '{0}' вместо '{1}')</translation> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="159" /> - <source>the name of the deleter method is wrong (should be '{0}' instead of '{1}')</source> - <translation>неправильное имя метода удаления (должно быть '{0}' вместо '{1}')</translation> + <source>the name of the setter method is wrong (should be '{0}' instead of '{1}')</source> + <translation>неправильное имя метода установки (должно быть '{0}' вместо '{1}')</translation> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="163" /> - <source>the name of the setter decorator is wrong (should be '{0}' instead of '{1}')</source> - <translation>неправильное имя декоратора-установщика (должно быть '{0}' вместо '{1}')</translation> + <source>the name of the deleter method is wrong (should be '{0}' instead of '{1}')</source> + <translation>неправильное имя метода удаления (должно быть '{0}' вместо '{1}')</translation> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="167" /> - <source>the name of the deleter decorator is wrong (should be '{0}' instead of '{1}')</source> - <translation>неправильное имя декоратора удаления (должно быть '{0}' вместо '{1}')</translation> + <source>the name of the setter decorator is wrong (should be '{0}' instead of '{1}')</source> + <translation>неправильное имя декоратора-установщика (должно быть '{0}' вместо '{1}')</translation> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="171" /> + <source>the name of the deleter decorator is wrong (should be '{0}' instead of '{1}')</source> + <translation>неправильное имя декоратора удаления (должно быть '{0}' вместо '{1}')</translation> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="175" /> <source>multiple decorators were used to declare property '{0}'</source> <translation>несколько декораторов использовались для объявления свойства '{0}'</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="176" /> - <source>use of 'datetime.datetime()' without 'tzinfo' argument should be avoided</source> - <translation>следует избегать использования 'datetime.datetime()' без аргумента 'tzinfo'</translation> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="180" /> + <source>use of 'datetime.datetime()' without 'tzinfo' argument should be avoided</source> + <translation>следует избегать использования 'datetime.datetime()' без аргумента 'tzinfo'</translation> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="184" /> <source>use of 'datetime.datetime.today()' should be avoided. Use 'datetime.datetime.now(tz=)' instead.</source> <translation>следует избегать использования 'datetime.datetime.today()'. Взамен используйте 'datetime.datetime.now(tz=)'.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="185" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="189" /> <source>use of 'datetime.datetime.utcnow()' should be avoided. Use 'datetime.datetime.now(tz=datetime.timezone.utc)' instead.</source> <translation>следует избегать использования 'datetime.datetime.utcnow()'. Вместо этого используйте 'datetime.datetime.now(tz=datetime.timezone.utc)'.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="190" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="194" /> <source>use of 'datetime.datetime.utcfromtimestamp()' should be avoided. Use 'datetime.datetime.fromtimestamp(..., tz=datetime.timezone.utc)' instead.</source> <translation>следует избегать использования 'datetime.datetime.utcfromtimestamp()'. Вместо этого используйте 'datetime.datetime.fromtimestamp(..., tz=datetime.timezone.utc)'.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="195" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="199" /> <source>use of 'datetime.datetime.now()' without 'tz' argument should be avoided</source> <translation>следует избегать использования 'datetime.datetime.now()' без аргумента 'tz'</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="199" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="203" /> <source>use of 'datetime.datetime.fromtimestamp()' without 'tz' argument should be avoided</source> <translation>следует избегать использования 'datetime.datetime.fromtimestamp()' без аргумента 'tz'</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="204" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="208" /> <source>use of 'datetime.datetime.strptime()' should be followed by '.replace(tzinfo=)'</source> <translation>применение 'datetime.datetime.strptime()' должно сопровождаться '.replace(tzinfo=)'</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="209" /> - <source>use of 'datetime.datetime.fromordinal()' should be avoided</source> - <translation>следует избегать использования 'datetime.datetime.fromordinal()'</translation> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="213" /> + <source>use of 'datetime.datetime.fromordinal()' should be avoided</source> + <translation>следует избегать использования 'datetime.datetime.fromordinal()'</translation> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="217" /> <source>use of 'datetime.date()' should be avoided. Use 'datetime.datetime(, tzinfo=).date()' instead.</source> <translation>следует избегать использования 'datetime.date()'. Взамен используйте 'datetime.datetime(, tzinfo=).date()'.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="218" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="222" /> <source>use of 'datetime.date.today()' should be avoided. Use 'datetime.datetime.now(tz=).date()' instead.</source> <translation>следует избегать использования 'datetime.date.today()'. Взамен используйте 'datetime.datetime.now(tz=).date()'.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="223" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="227" /> <source>use of 'datetime.date.fromtimestamp()' should be avoided. Use 'datetime.datetime.fromtimestamp(tz=).date()' instead.</source> <translation>следует избегать использования 'datetime.date.fromtimestamp()'. Взамен используйте 'datetime.datetime.fromtimestamp(tz=).date()'.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="228" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="232" /> <source>use of 'datetime.date.fromordinal()' should be avoided</source> <translation>следует избегать использования 'datetime.date.fromordinal()'</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="232" /> - <source>use of 'datetime.date.fromisoformat()' should be avoided</source> - <translation>следует избегать использования 'datetime.date.fromordinal()'</translation> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="236" /> + <source>use of 'datetime.date.fromisoformat()' should be avoided</source> + <translation>следует избегать использования 'datetime.date.fromordinal()'</translation> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="240" /> <source>use of 'datetime.time()' without 'tzinfo' argument should be avoided</source> <translation>следует избегать использования 'datetime.time()' без аргумента 'tzinfo'</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="241" /> - <source>'sys.version[:3]' referenced (Python 3.10), use 'sys.version_info'</source> - <translation>'sys.version[:3]' referenced (Python 3.10), используйте 'sys.version_info'</translation> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="245" /> - <source>'sys.version[2]' referenced (Python 3.10), use 'sys.version_info'</source> - <translation>'sys.version[2]' referenced (Python 3.10), используйте 'sys.version_info'</translation> + <source>'sys.version[:3]' referenced (Python 3.10), use 'sys.version_info'</source> + <translation>'sys.version[:3]' referenced (Python 3.10), используйте 'sys.version_info'</translation> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="249" /> - <source>'sys.version' compared to string (Python 3.10), use 'sys.version_info'</source> - <translation>'sys.version' compared to string (Python 3.10), используйте 'sys.version_info'</translation> + <source>'sys.version[2]' referenced (Python 3.10), use 'sys.version_info'</source> + <translation>'sys.version[2]' referenced (Python 3.10), используйте 'sys.version_info'</translation> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="253" /> - <source>'sys.version_info[0] == 3' referenced (Python 4), use '>='</source> - <translation>'sys.version_info[0] == 3' referenced (Python 4), используйте '>='</translation> + <source>'sys.version' compared to string (Python 3.10), use 'sys.version_info'</source> + <translation>'sys.version' compared to string (Python 3.10), используйте 'sys.version_info'</translation> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="257" /> - <source>'six.PY3' referenced (Python 4), use 'not six.PY2'</source> - <translation>'six.PY3' referenced (Python 4), используйте 'not six.PY2'</translation> + <source>'sys.version_info[0] == 3' referenced (Python 4), use '>='</source> + <translation>'sys.version_info[0] == 3' referenced (Python 4), используйте '>='</translation> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="261" /> + <source>'six.PY3' referenced (Python 4), use 'not six.PY2'</source> + <translation>'six.PY3' referenced (Python 4), используйте 'not six.PY2'</translation> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="265" /> <source>'sys.version_info[1]' compared to integer (Python 4), compare 'sys.version_info' to tuple</source> <translation>'sys.version_info[1]' compared to integer (Python 4), compare 'sys.version_info' to tuple</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="266" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="270" /> <source>'sys.version_info.minor' compared to integer (Python 4), compare 'sys.version_info' to tuple</source> <translation>'sys.version_info.minor' compared to integer (Python 4), compare 'sys.version_info' to tuple</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="271" /> - <source>'sys.version[0]' referenced (Python 10), use 'sys.version_info'</source> - <translation>'sys.version[0]' referenced (Python 10), используйте 'sys.version_info'</translation> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="275" /> - <source>'sys.version' compared to string (Python 10), use 'sys.version_info'</source> - <translation>'sys.version' compared to string (Python 10), используйте 'sys.version_info'</translation> + <source>'sys.version[0]' referenced (Python 10), use 'sys.version_info'</source> + <translation>'sys.version[0]' referenced (Python 10), используйте 'sys.version_info'</translation> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="279" /> + <source>'sys.version' compared to string (Python 10), use 'sys.version_info'</source> + <translation>'sys.version' compared to string (Python 10), используйте 'sys.version_info'</translation> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="283" /> <source>'sys.version[:1]' referenced (Python 10), use 'sys.version_info'</source> <translation>'sys.version[:1]' referenced (Python 10), используйте 'sys.version_info'</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="284" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="288" /> <source>Do not use bare 'except:', it also catches unexpected events like memory errors, interrupts, system exit, and so on. Prefer excepting specific exceptions. If you're sure what you're doing, be explicit and write 'except BaseException:'.</source> <translation>Не используйте только 'except:', он также перехватывает неожиданные события, такие как ошибки памяти, прерывания, выход из системы и т. д. Предпочтительно использовать 'except Exception:'. Если вы уверены в том, что делаете, напишите 'except BaseException:'.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="291" /> - <source>Python does not support the unary prefix increment</source> - <translation>Python не поддерживает инкремент унарного префикса</translation> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="295" /> + <source>Python does not support the unary prefix increment</source> + <translation>Python не поддерживает инкремент унарного префикса</translation> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="299" /> <source>assigning to 'os.environ' does not clear the environment - use 'os.environ.clear()'</source> <translation>назначение 'os.environ' не очищает среду окружения - используйте 'os.environ.clear()'</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="300" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="304" /> <source>using 'hasattr(x, "__call__")' to test if 'x' is callable is unreliable. Use 'callable(x)' for consistent results.</source> <translation>использование 'hasattr(x, "__call__")' для проверки возможности вызова 'x' ненадежно. Используйте 'callable(x)' для получения стабильных результатов.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="305" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="309" /> <source>using .strip() with multi-character strings is misleading. Use .replace(), .removeprefix(), .removesuffix(), or regular expressions to remove string fragments.</source> <translation>использование .strip() с многосимвольными строками приводит к обманчивым результатам. Используйте .replace(), .removeprefix(), .removesuffix() или регулярные выражения для удаления фрагментов строки.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="311" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="315" /> <source>loop control variable {0} not used within the loop body - start the name with an underscore</source> <translation>переменная {0} управления циклом не используется внутри цикла - начните имя символом подчеркивания</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="316" /> - <source>do not call getattr with a constant attribute value</source> - <translation>не используйте вызовы getattr с постоянным значением атрибута</translation> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="320" /> - <source>do not call setattr with a constant attribute value</source> - <translation>не используйте вызовы setattr с постоянным значением атрибута</translation> + <source>do not call getattr with a constant attribute value</source> + <translation>не используйте вызовы getattr с постоянным значением атрибута</translation> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="324" /> - <source>do not call assert False since python -O removes these calls</source> - <translation>не используйте вызовы assert False, так как python -O удаляет эти вызовы</translation> + <source>do not call setattr with a constant attribute value</source> + <translation>не используйте вызовы setattr с постоянным значением атрибута</translation> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="328" /> + <source>do not call assert False since python -O removes these calls</source> + <translation>не используйте вызовы assert False, так как python -O удаляет эти вызовы</translation> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="332" /> <source>return/continue/break inside finally blocks cause exceptions to be silenced. Exceptions should be silenced in except blocks. Control statements can be moved outside the finally block.</source> <translation>return/continue/break внутри блоков finally заставляют исключения отключаться. Исключения должны быть отключены в блоках except. Управляющие операторы могут быть перемещены за пределы блока finally.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="334" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="338" /> <source>A length-one tuple literal is redundant. Write 'except {0}:' instead of 'except ({0},):'.</source> <translation>Литерал односимвольного кортежа является избыточным. Используйте 'except {0}:' вместо 'except ({0},):'.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="339" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="343" /> <source>Redundant exception types in 'except ({0}){1}:'. Write 'except {2}{1}:', which catches exactly the same exceptions.</source> <translation>Избыточные типы исключений в 'except ({0}){1}:'. Используйте 'except {2}{1}:', чтобы перехватывать точно такие же исключения.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="344" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="348" /> <source>Result of comparison is not used. This line doesn't do anything. Did you intend to prepend it with assert?</source> <translation>Результат сравнения не используется. Эта строка ничего не делает. Вы намеревались добавить к нему assert?</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="349" /> - <source>Cannot raise a literal. Did you intend to return it or raise an Exception?</source> - <translation>Невозможно вызвать литерал. Вы намеревались вернуть его или вызвать Exception?</translation> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="353" /> + <source>Cannot raise a literal. Did you intend to return it or raise an Exception?</source> + <translation>Невозможно вызвать литерал. Вы намеревались вернуть его или вызвать Exception?</translation> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="357" /> <source>'assertRaises(Exception)' and 'pytest.raises(Exception)' should be considered evil. They can lead to your test passing even if the code being tested is never executed due to a typo. Assert for a more specific exception (builtin or custom), or use 'assertRaisesRegex' (if using 'assertRaises'), or add the 'match' keyword argument (if using 'pytest.raises'), or use the context manager form with a target.</source> <translation>'assertRaises(Exception):' следует считать злом. Это может привести к прохождению теста, даже если тестируемый код никогда не выполняется из-за опечатки. Либо подтвердите для более конкретного исключения (встроенного или пользовательского), используйте 'assertRaisesRegex', либо используйте форму 'assertRaises' диспетчера контекста.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="362" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="366" /> <source>Found useless {0} expression. Consider either assigning it to a variable or removing it.</source> <translation>Найдено бесполезное выражение. Рассмотрите возможность назначения его переменной или удалить.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="367" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="371" /> <source>Use of 'functools.lru_cache' or 'functools.cache' on methods can lead to memory leaks. The cache may retain instance references, preventing garbage collection.</source> <translation>Использование 'functools.lru_cache' или 'functools.cache' в методах может привести к утечке памяти. Кэш может сохранять ссылки на экземпляры, предотвращая сборку мусора.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="373" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="377" /> <source>Found for loop that reassigns the iterable it is iterating with each iterable value.</source> <translation>Найден цикл for, который переназначает итерируемый объект, который повторяется с каждым итерируемым значением.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="378" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="382" /> <source>f-string used as docstring. This will be interpreted by python as a joined string rather than a docstring.</source> <translation>f-string используется в качестве строки документации. Python будет интерпретировать это скорее как объединенную строку, а не как строку документации.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="383" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="387" /> <source>No arguments passed to 'contextlib.suppress'. No exceptions will be suppressed and therefore this context manager is redundant.</source> <translation>В 'contextlib.suppress' не переданы аргументы. Никакие исключения не будут подавляться, поэтому этот менеджер контекста является избыточным.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="388" /> - <source>Function definition does not bind loop variable '{0}'.</source> - <translation>Определение функции не связывает переменную цикла '{0}'.</translation> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="392" /> + <source>Function definition does not bind loop variable '{0}'.</source> + <translation>Определение функции не связывает переменную цикла '{0}'.</translation> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="396" /> <source>{0} is an abstract base class, but none of the methods it defines are abstract. This is not necessarily an error, but you might have forgotten to add the @abstractmethod decorator, potentially in conjunction with @classmethod, @property and/or @staticmethod.</source> <translation>{0} — это абстрактный базовый класс, но он не имеет абстрактных методов. Не забудьте использовать декоратор @abstractmethod, возможно, в сочетании с @classmethod, @property и/или @staticmethod.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="399" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="403" /> <source>Exception '{0}' has been caught multiple times. Only the first except will be considered and all other except catches can be safely removed.</source> <translation>Исключение '{0}' было перехвачено несколько раз. Будет рассмотрено только первое исключение, а все остальные исключения могут быть безопасно удалены.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="404" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="408" /> <source>Star-arg unpacking after a keyword argument is strongly discouraged, because it only works when the keyword parameter is declared after all parameters supplied by the unpacked sequence, and this change of ordering can surprise and mislead readers.</source> <translation>Настоятельно не рекомендуется распаковывать star-arg после аргумента ключевого слова, потому что он работает только тогда, когда параметр ключевого слова объявляется после всех параметров, предоставленных распакованной последовательностью, и такое изменение порядка может удивить и ввести в заблуждение читателей.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="411" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="415" /> <source>{0} is an empty method in an abstract base class, but has no abstract decorator. Consider adding @abstractmethod.</source> <translation>{0} — это пустой метод в абстрактном базовом классе, но без абстрактного декоратора. Рассмотрите возможность добавления @abstractmethod.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="416" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="420" /> <source>No explicit stacklevel argument found. The warn method from the warnings module uses a stacklevel of 1 by default. This will only show a stack trace for the line on which the warn method is called. It is therefore recommended to use a stacklevel of 2 or greater to provide more information to the user.</source> <translation>Явный аргумент уровня стека не найден. Метод warn из модуля warnings по умолчанию использует уровень стека 1. Это покажет только трассировку стека для строки, для которой вызывается метод warn. Поэтому рекомендуется использовать уровень стека 2 или выше, чтобы предоставить пользователю больше информации.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="424" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="428" /> <source>Using 'except ():' with an empty tuple does not handle/catch anything. Add exceptions to handle.</source> <translation>Использование 'except ():' с пустым кортежем ничего не обрабатывает/не перехватывает. Добавьте исключения для обработки.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="429" /> - <source>Except handlers should only be names of exception classes</source> - <translation>Обработчики исключений должны быть только именами классов исключений</translation> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="433" /> + <source>Except handlers should only be names of exception classes</source> + <translation>Обработчики исключений должны быть только именами классов исключений</translation> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="437" /> <source>Using the generator returned from 'itertools.groupby()' more than once will do nothing on the second usage. Save the result to a list, if the result is needed multiple times.</source> <translation>Использование генератора, возвращенного из 'itertools.groupby()' более одного раза, ничего не даст при повторном использовании. Сохраните результат в список, если результат требуется несколько раз.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="439" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="443" /> <source>Possible unintentional type annotation (using ':'). Did you mean to assign (using '=')?</source> <translation>Возможно непреднамеренная аннотация типа (using ':'). Вы имели в виду assign (using '=')?</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="444" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="448" /> <source>Set should not contain duplicate item '{0}'. Duplicate items will be replaced with a single item at runtime.</source> <translation>Набор не должен содержать повторяющихся элементов '{0}'. Повторяющиеся элементы будут заменены одним элементом во время выполнения.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="449" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="453" /> <source>re.{0} should get '{1}' and 'flags' passed as keyword arguments to avoid confusion due to unintuitive argument positions.</source> <translation>re.{0} должен получать '{1}' и 'flags', передаваемые в качестве аргументов ключевых слов, чтобы избежать путаницы из-за неинтуитивных позиций аргументов.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="454" /> - <source>Static key in dict comprehension: {0!r}.</source> - <translation>Статический ключ во включении словарей: {0!r}.</translation> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="458" /> - <source>Don't except 'BaseException' unless you plan to re-raise it.</source> - <translation>Не исключайте 'BaseException', если только вы не планируете повторно вызвать его.</translation> + <source>Static key in dict comprehension: {0!r}.</source> + <translation>Статический ключ во включении словарей: {0!r}.</translation> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="462" /> + <source>Don't except 'BaseException' unless you plan to re-raise it.</source> + <translation>Не исключайте 'BaseException', если только вы не планируете повторно вызвать его.</translation> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="466" /> <source>Class '__init__' methods must not return or yield and any values.</source> <translation>Методы класса '__init__' не должны возвращать или выдавать какие-либо значения.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="467" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="471" /> <source>Editing a loop's mutable iterable often leads to unexpected results/bugs.</source> <translation>Редактирование изменяемого итерационного параметра цикла часто приводит к неожиданным результатам/ошибкам.</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="472" /> - <source>unncessary f-string</source> - <translation>ненужная f-string</translation> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="476" /> + <source>unncessary f-string</source> + <translation>ненужная f-string</translation> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="480" /> <source>cannot use 'self.__class__' as first argument of 'super()' call</source> <translation>не используйте 'self .__ class__' в качестве первого аргумента вызова 'super ()'</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="481" /> - <source>found {0} formatter</source> - <translation>найден {0} форматтер</translation> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="485" /> - <source>format string does contain unindexed parameters</source> - <translation>строка формата действительно содержит неиндексированные параметры</translation> + <source>found {0} formatter</source> + <translation>найден {0} форматтер</translation> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="489" /> - <source>docstring does contain unindexed parameters</source> - <translation>строка документации действительно содержит неиндексированные параметры</translation> + <source>format string does contain unindexed parameters</source> + <translation>строка формата действительно содержит неиндексированные параметры</translation> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="493" /> - <source>other string does contain unindexed parameters</source> - <translation>другая строка действительно содержит неиндексированные параметры</translation> + <source>docstring does contain unindexed parameters</source> + <translation>строка документации действительно содержит неиндексированные параметры</translation> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="497" /> - <source>format call uses too large index ({0})</source> - <translation>формат вызова использует слишком большой индекс ({0})</translation> + <source>other string does contain unindexed parameters</source> + <translation>другая строка действительно содержит неиндексированные параметры</translation> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="501" /> - <source>format call uses missing keyword ({0})</source> - <translation>формат вызова использует отсутствующее ключевое слово ({0})</translation> + <source>format call uses too large index ({0})</source> + <translation>формат вызова использует слишком большой индекс ({0})</translation> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="505" /> - <source>format call uses keyword arguments but no named entries</source> - <translation>формат вызова использует ключевые аргументы, но нет именованных записей</translation> + <source>format call uses missing keyword ({0})</source> + <translation>формат вызова использует отсутствующее ключевое слово ({0})</translation> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="509" /> - <source>format call uses variable arguments but no numbered entries</source> - <translation>формат ячейки использует переменные аргументы, но нет пронумерованных записей</translation> + <source>format call uses keyword arguments but no named entries</source> + <translation>формат вызова использует ключевые аргументы, но нет именованных записей</translation> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="513" /> - <source>format call uses implicit and explicit indexes together</source> - <translation>формат вызова использует скрытые и явные индексы вместе</translation> + <source>format call uses variable arguments but no numbered entries</source> + <translation>формат ячейки использует переменные аргументы, но нет пронумерованных записей</translation> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="517" /> - <source>format call provides unused index ({0})</source> - <translation>формат вызова предоставляет неиспользованный индекс ({0})</translation> + <source>format call uses implicit and explicit indexes together</source> + <translation>формат вызова использует скрытые и явные индексы вместе</translation> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="521" /> + <source>format call provides unused index ({0})</source> + <translation>формат вызова предоставляет неиспользованный индекс ({0})</translation> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="525" /> <source>format call provides unused keyword ({0})</source> <translation>формат вызова предоставляет неиспользуемое ключевое слово ({0})</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="526" /> - <source>expected these __future__ imports: {0}; but only got: {1}</source> - <translation>ожидался __future__ imports: {0}; получены только: {1}</translation> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="530" /> + <source>expected these __future__ imports: {0}; but only got: {1}</source> + <translation>ожидался __future__ imports: {0}; получены только: {1}</translation> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="534" /> <source>expected these __future__ imports: {0}; but got none</source> <translation>ожидался __future__ imports: {0}; не получено ничего</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="535" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="539" /> <source>gettext import with alias _ found: {0}</source> <translation>gettext import with alias _ found: {0}</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="540" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="544" /> <source>print statement found</source> <translation>обнаружена инструкция печати</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="545" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="549" /> <source>one element tuple found</source> <translation>найден одноэлементный кортеж</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="554" /> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="550" /> - <source>mutable default argument of type {0}</source> - <translation>изменяемый аргумент по умолчанию типа {0}</translation> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="558" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="554" /> + <source>mutable default argument of type {0}</source> + <translation>изменяемый аргумент по умолчанию типа {0}</translation> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="562" /> <source>mutable default argument of function call '{0}'</source> <translation>измененный аргумент по умолчанию для вызова функции '{0}'</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="563" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="567" /> <source>None should not be added at any return if function has no return value except None</source> <translation>если функция не имеет возвращаемого значения, (кроме None), None не следует добавлять в каждый return</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="568" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="572" /> <source>an explicit value at every return should be added if function has a return value except None</source> <translation>если функция имеет возвращаемое значение, (кроме None), то явное значение должно быть добавлено каждому return</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="573" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="577" /> <source>an explicit return at the end of the function should be added if it has a return value except None</source> <translation>в конец функции, если она имеет возвращаемое значение, (кроме None), должен быть добавлен явный return</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="578" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="582" /> <source>a value should not be assigned to a variable if it will be used as a return value only</source> <translation>значение не должно присваиваться переменной, если оно будет использоваться только как возвращаемое значение</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="584" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="588" /> <source>prefer implied line continuation inside parentheses, brackets and braces as opposed to a backslash</source> <translation>для предполагаемого продолжения строки предпочтительнее использование круглых, квадратных или фигурных скобок, а не обратного слеша</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="590" /> - <source>implicitly concatenated string or bytes literals on one line</source> - <translation>неявно объединенные строковые или байтовые литералы в одной строке</translation> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="594" /> - <source>implicitly concatenated string or bytes literals over continuation line</source> - <translation>неявно объединенные строковые или байтовые литералы в строке продолжения</translation> + <source>implicitly concatenated string or bytes literals on one line</source> + <translation>неявно объединенные строковые или байтовые литералы в одной строке</translation> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="598" /> + <source>implicitly concatenated string or bytes literals over continuation line</source> + <translation>неявно объединенные строковые или байтовые литералы в строке продолжения</translation> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="602" /> <source>explicitly concatenated string or bytes should be implicitly concatenated</source> <translation>явно объединенные строковые или байтовые литералы должны быть неявно объединены</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="603" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="607" /> <source>commented code lines should be removed</source> <translation>закомментированные строки кода должны быть удалены</translation> </message> @@ -63087,333 +63092,333 @@ <translation>Все файлы (*)</translation> </message> <message> - <location filename="../Project/Project.py" line="1331" /> + <location filename="../Project/Project.py" line="1332" /> <source>Read Project Session</source> <translation>Загрузить сеанс проекта</translation> </message> <message> - <location filename="../Project/Project.py" line="1577" /> - <location filename="../Project/Project.py" line="1551" /> - <location filename="../Project/Project.py" line="1515" /> - <location filename="../Project/Project.py" line="1433" /> - <location filename="../Project/Project.py" line="1394" /> - <location filename="../Project/Project.py" line="1369" /> - <location filename="../Project/Project.py" line="1332" /> + <location filename="../Project/Project.py" line="1578" /> + <location filename="../Project/Project.py" line="1552" /> + <location filename="../Project/Project.py" line="1516" /> + <location filename="../Project/Project.py" line="1434" /> + <location filename="../Project/Project.py" line="1395" /> + <location filename="../Project/Project.py" line="1370" /> + <location filename="../Project/Project.py" line="1333" /> <source>Please save the project first.</source> <translation>Пожалуйста, сначала сохраните проект.</translation> </message> <message> - <location filename="../Project/Project.py" line="1368" /> + <location filename="../Project/Project.py" line="1369" /> <source>Save Project Session</source> <translation>Сохранить сеанс проекта</translation> </message> <message> - <location filename="../Project/Project.py" line="1410" /> - <location filename="../Project/Project.py" line="1393" /> + <location filename="../Project/Project.py" line="1411" /> + <location filename="../Project/Project.py" line="1394" /> <source>Delete Project Session</source> <translation>Удалить сеанс проекта</translation> </message> <message> - <location filename="../Project/Project.py" line="1400" /> + <location filename="../Project/Project.py" line="1401" /> <source>Delete Remote Project Session</source> <translation>Удалить сеанс удаленного проекта</translation> </message> <message> - <location filename="../Project/Project.py" line="1419" /> + <location filename="../Project/Project.py" line="1420" /> <source><p>The project session file <b>{0}</b> could not be deleted.</p></source> <translation><p>Невозможно удалить выбранный файл с сеансом: <b>{0}</b>.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="1432" /> + <location filename="../Project/Project.py" line="1433" /> <source>Read Tasks</source> <translation>Прочитать задачи</translation> </message> <message> - <location filename="../Project/Project.py" line="1514" /> + <location filename="../Project/Project.py" line="1515" /> <source>Read Debugger Properties</source> <translation>Прочитать свойства отладчика</translation> </message> <message> - <location filename="../Project/Project.py" line="1550" /> + <location filename="../Project/Project.py" line="1551" /> <source>Save Debugger Properties</source> <translation>Сохранить свойства отладчика</translation> </message> <message> - <location filename="../Project/Project.py" line="1593" /> - <location filename="../Project/Project.py" line="1576" /> + <location filename="../Project/Project.py" line="1594" /> + <location filename="../Project/Project.py" line="1577" /> <source>Delete Debugger Properties</source> <translation>Удалить свойства отладчика</translation> </message> <message> - <location filename="../Project/Project.py" line="1583" /> + <location filename="../Project/Project.py" line="1584" /> <source>Delete Remote Debugger Properties</source> <translation>Удалить свойства удаленного отладчика</translation> </message> <message> - <location filename="../Project/Project.py" line="1602" /> + <location filename="../Project/Project.py" line="1603" /> <source><p>The project debugger properties file <b>{0}</b> could not be deleted.</p></source> <translation><p>Невозможно удалить файл свойств отладчика <b>{0}</b>.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="1773" /> - <source>Add Language</source> - <translation>Добавить язык перевода</translation> - </message> - <message> <location filename="../Project/Project.py" line="1774" /> + <source>Add Language</source> + <translation>Добавить язык перевода</translation> + </message> + <message> + <location filename="../Project/Project.py" line="1775" /> <source>You have to specify a translation pattern first.</source> <translation>Необходимо сначала задать шаблон перевода.</translation> </message> <message> - <location filename="../Project/Project.py" line="1915" /> + <location filename="../Project/Project.py" line="1916" /> <source>Delete Translation</source> <translation>Удалить перевод</translation> </message> <message> + <location filename="../Project/Project.py" line="1943" /> + <location filename="../Project/Project.py" line="1917" /> + <source><p>The selected translation file <b>{0}</b> could not be deleted.</p><p>Reason: {1}</p></source> + <translation><p>Невозможно удалить файла перевода <b>{0}</b>.</p><p>Причина: {1}</p></translation> + </message> + <message> <location filename="../Project/Project.py" line="1942" /> - <location filename="../Project/Project.py" line="1916" /> - <source><p>The selected translation file <b>{0}</b> could not be deleted.</p><p>Reason: {1}</p></source> - <translation><p>Невозможно удалить файла перевода <b>{0}</b>.</p><p>Причина: {1}</p></translation> - </message> - <message> - <location filename="../Project/Project.py" line="1941" /> <source>Delete translation</source> <translation>Удалить перевод</translation> </message> <message> - <location filename="../Project/Project.py" line="2092" /> - <location filename="../Project/Project.py" line="2075" /> + <location filename="../Project/Project.py" line="2093" /> + <location filename="../Project/Project.py" line="2076" /> <source>Add File</source> <translation>Добавить файл</translation> </message> <message> + <location filename="../Project/Project.py" line="2195" /> + <location filename="../Project/Project.py" line="2077" /> + <source><p>The file <b>{0}</b> already exists.</p><p>Overwrite it?</p></source> + <translation><p>Файл <b>{0}</b> уже существует. Переписать?</p></translation> + </message> + <message> + <location filename="../Project/Project.py" line="2094" /> + <source><p>The selected file <b>{0}</b> could not be added to <b>{1}</b>.</p><p>Reason: {2}</p></source> + <translation><p>Невозможно добавить выделенный файл <b>{0}</b> в архив <b>{1}</b>. </p><p>Причина: {2}</p></translation> + </message> + <message> + <location filename="../Project/Project.py" line="2106" /> + <source>Add file</source> + <translation>Добавить файл</translation> + </message> + <message> + <location filename="../Project/Project.py" line="2289" /> + <location filename="../Project/Project.py" line="2107" /> + <source>The target directory must not be empty.</source> + <translation>Целевая директория не должна быть пустой.</translation> + </message> + <message> <location filename="../Project/Project.py" line="2194" /> - <location filename="../Project/Project.py" line="2076" /> - <source><p>The file <b>{0}</b> already exists.</p><p>Overwrite it?</p></source> - <translation><p>Файл <b>{0}</b> уже существует. Переписать?</p></translation> - </message> - <message> - <location filename="../Project/Project.py" line="2093" /> - <source><p>The selected file <b>{0}</b> could not be added to <b>{1}</b>.</p><p>Reason: {2}</p></source> - <translation><p>Невозможно добавить выделенный файл <b>{0}</b> в архив <b>{1}</b>. </p><p>Причина: {2}</p></translation> - </message> - <message> - <location filename="../Project/Project.py" line="2105" /> - <source>Add file</source> - <translation>Добавить файл</translation> - </message> - <message> - <location filename="../Project/Project.py" line="2288" /> - <location filename="../Project/Project.py" line="2106" /> - <source>The target directory must not be empty.</source> - <translation>Целевая директория не должна быть пустой.</translation> - </message> - <message> - <location filename="../Project/Project.py" line="2193" /> - <location filename="../Project/Project.py" line="2166" /> - <location filename="../Project/Project.py" line="2146" /> + <location filename="../Project/Project.py" line="2167" /> + <location filename="../Project/Project.py" line="2147" /> <source>Add Directory</source> <translation>Добавить директорию</translation> </message> <message> - <location filename="../Project/Project.py" line="2147" /> + <location filename="../Project/Project.py" line="2148" /> <source><p>The source directory doesn't contain any files belonging to the selected category.</p></source> <translation><p>Директория не содержит ни одного файла, принадлежащего к заданной категории.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="2167" /> + <location filename="../Project/Project.py" line="2168" /> <source><p>The target directory <b>{0}</b> could not be created.</p><p>Reason: {1}</p></source> <translation><p>Невозможно создать директорию <b>{0}</b></p><p>Причина: {1}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="2299" /> - <location filename="../Project/Project.py" line="2287" /> - <source>Add directory</source> - <translation>Добавить директорию</translation> - </message> - <message> <location filename="../Project/Project.py" line="2300" /> + <location filename="../Project/Project.py" line="2288" /> + <source>Add directory</source> + <translation>Добавить директорию</translation> + </message> + <message> + <location filename="../Project/Project.py" line="2301" /> <source>The source directory must not be empty.</source> <translation>Исходная директория не должна быть пустой.</translation> </message> <message> - <location filename="../Project/Project.py" line="2414" /> - <location filename="../Project/Project.py" line="2396" /> - <location filename="../Project/Project.py" line="2380" /> - <location filename="../Project/Project.py" line="2373" /> - <source>Rename File</source> - <translation>Переименовать файл</translation> - </message> - <message> - <location filename="../Project/Project.py" line="8049" /> - <location filename="../Project/Project.py" line="3900" /> - <location filename="../Project/Project.py" line="2397" /> - <source><p>The file <b>{0}</b> already exists. Overwrite it?</p></source> - <translation><p>Файл <b>{0}</b> уже существует. Переписать?</p></translation> - </message> - <message> <location filename="../Project/Project.py" line="2415" /> + <location filename="../Project/Project.py" line="2397" /> + <location filename="../Project/Project.py" line="2381" /> + <location filename="../Project/Project.py" line="2374" /> + <source>Rename File</source> + <translation>Переименовать файл</translation> + </message> + <message> + <location filename="../Project/Project.py" line="8050" /> + <location filename="../Project/Project.py" line="3901" /> + <location filename="../Project/Project.py" line="2398" /> + <source><p>The file <b>{0}</b> already exists. Overwrite it?</p></source> + <translation><p>Файл <b>{0}</b> уже существует. Переписать?</p></translation> + </message> + <message> + <location filename="../Project/Project.py" line="2416" /> <source><p>The file <b>{0}</b> could not be renamed.<br />Reason: {1}</p></source> <translation><p>Невозможно переименовать файл <b>{0}</b>:<br>Причина: {1}.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="2682" /> - <source>Delete File</source> - <translation>Удалить файл</translation> - </message> - <message> <location filename="../Project/Project.py" line="2683" /> + <source>Delete File</source> + <translation>Удалить файл</translation> + </message> + <message> + <location filename="../Project/Project.py" line="2684" /> <source><p>The selected file <b>{0}</b> could not be deleted.</p><p>Reason: {1}</p></source> <translation><p>Невозможно удалить выбранный файл <b>{0}</b>.</p><p>Причина: {1}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="2711" /> - <source>Delete Directory</source> - <translation>Удалить директорию</translation> - </message> - <message> <location filename="../Project/Project.py" line="2712" /> + <source>Delete Directory</source> + <translation>Удалить директорию</translation> + </message> + <message> + <location filename="../Project/Project.py" line="2713" /> <source><p>The selected directory <b>{0}</b> could not be deleted.</p><p>Reason: {1}</p></source> <translation><p>Невозможно удалить выбранную директорию <b>{0}</b>.</p><p>Причина: {1}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="2845" /> - <source>Create project directory</source> - <translation>Создать директорию проекта</translation> - </message> - <message> <location filename="../Project/Project.py" line="2846" /> + <source>Create project directory</source> + <translation>Создать директорию проекта</translation> + </message> + <message> + <location filename="../Project/Project.py" line="2847" /> <source><p>The project directory <b>{0}</b> could not be created.</p></source> <translation><p>Невозможно создать директорию проекта <b>{0}</b>.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3670" /> - <location filename="../Project/Project.py" line="2946" /> - <source>Create project management directory</source> - <translation>Создать служебную директорию проекта</translation> - </message> - <message> <location filename="../Project/Project.py" line="3671" /> <location filename="../Project/Project.py" line="2947" /> + <source>Create project management directory</source> + <translation>Создать служебную директорию проекта</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3672" /> + <location filename="../Project/Project.py" line="2948" /> <source><p>The project directory <b>{0}</b> is not writable.</p></source> <translation><p>Директория проекта <b>{0}</b> не доступна для записи.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="2987" /> - <source>Create main script</source> - <translation>Создать главный сценарий</translation> - </message> - <message> <location filename="../Project/Project.py" line="2988" /> + <source>Create main script</source> + <translation>Создать главный сценарий</translation> + </message> + <message> + <location filename="../Project/Project.py" line="2989" /> <source><p>The main script <b>{0}</b> could not be created.<br/>Reason: {1}</p></source> <translation><p>Не удается создать основной скрипт <b>{0}</b>.<br/>Причина: {1}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3453" /> - <location filename="../Project/Project.py" line="3012" /> - <source>Create Makefile</source> - <translation>Создать Makefile</translation> - </message> - <message> <location filename="../Project/Project.py" line="3454" /> <location filename="../Project/Project.py" line="3013" /> + <source>Create Makefile</source> + <translation>Создать Makefile</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3455" /> + <location filename="../Project/Project.py" line="3014" /> <source><p>The makefile <b>{0}</b> could not be created.<br/>Reason: {1}</p></source> <translation><p>Файл makefile <b>{0}</b> невозможно создать.<br/>Причина: {1}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3700" /> - <location filename="../Project/Project.py" line="3163" /> - <location filename="../Project/Project.py" line="3134" /> - <location filename="../Project/Project.py" line="3102" /> - <location filename="../Project/Project.py" line="3086" /> - <location filename="../Project/Project.py" line="3061" /> - <location filename="../Project/Project.py" line="3023" /> - <source>New Project</source> - <translation>Новый проект</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3024" /> - <source>Add existing files to the project?</source> - <translation>Добавить существующие файлы в проект?</translation> - </message> - <message> <location filename="../Project/Project.py" line="3701" /> + <location filename="../Project/Project.py" line="3164" /> + <location filename="../Project/Project.py" line="3135" /> + <location filename="../Project/Project.py" line="3103" /> + <location filename="../Project/Project.py" line="3087" /> <location filename="../Project/Project.py" line="3062" /> + <location filename="../Project/Project.py" line="3024" /> + <source>New Project</source> + <translation>Новый проект</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3025" /> + <source>Add existing files to the project?</source> + <translation>Добавить существующие файлы в проект?</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3702" /> + <location filename="../Project/Project.py" line="3063" /> <source>Select Version Control System</source> <translation>Выберите систему контроля версий (VCS)</translation> </message> <message> - <location filename="../Project/Project.py" line="3164" /> - <location filename="../Project/Project.py" line="3087" /> + <location filename="../Project/Project.py" line="3165" /> + <location filename="../Project/Project.py" line="3088" /> <source>Would you like to edit the VCS command options?</source> <translation>Вы хотите редактировать параметры команд VCS?</translation> </message> <message> - <location filename="../Project/Project.py" line="3103" /> + <location filename="../Project/Project.py" line="3104" /> <source>Shall the project file be added to the repository?</source> <translation>Должен ли файл проекта быть добавлен в репозиторий?</translation> </message> <message> - <location filename="../Project/Project.py" line="3140" /> - <location filename="../Project/Project.py" line="3129" /> + <location filename="../Project/Project.py" line="3141" /> + <location filename="../Project/Project.py" line="3130" /> <source>None</source> <translation>None</translation> </message> <message> - <location filename="../Project/Project.py" line="3135" /> + <location filename="../Project/Project.py" line="3136" /> <source>Select version control system for the project</source> <translation>Выберите систему контроля версий для проекта</translation> </message> <message> - <location filename="../Project/Project.py" line="3346" /> - <source>Translation Pattern</source> - <translation>Шаблон перевода</translation> - </message> - <message> <location filename="../Project/Project.py" line="3347" /> + <source>Translation Pattern</source> + <translation>Шаблон перевода</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3348" /> <source>Enter the path pattern for translation files (use '%language%' in place of the language code):</source> <translation>Введите шаблон пути для файлов переводов (используйте '%language%' вместо language code):</translation> </message> <message> - <location filename="../Project/Project.py" line="3649" /> + <location filename="../Project/Project.py" line="3650" /> <source>Open Project</source> <translation>Открыть проект</translation> </message> <message> - <location filename="../Project/Project.py" line="8035" /> - <location filename="../Project/Project.py" line="8029" /> - <location filename="../Project/Project.py" line="8019" /> - <location filename="../Project/Project.py" line="3885" /> - <location filename="../Project/Project.py" line="3875" /> - <location filename="../Project/Project.py" line="3651" /> + <location filename="../Project/Project.py" line="8036" /> + <location filename="../Project/Project.py" line="8030" /> + <location filename="../Project/Project.py" line="8020" /> + <location filename="../Project/Project.py" line="3886" /> + <location filename="../Project/Project.py" line="3876" /> + <location filename="../Project/Project.py" line="3652" /> <source>Project Files (*.epj)</source> <translation>Файлы проекта (*.epj)</translation> </message> <message> - <location filename="../Project/Project.py" line="3899" /> - <location filename="../Project/Project.py" line="3883" /> + <location filename="../Project/Project.py" line="3900" /> + <location filename="../Project/Project.py" line="3884" /> <source>Save Project</source> <translation>Сохранить проект</translation> </message> <message> - <location filename="../Project/Project.py" line="3938" /> - <source>Close Project</source> - <translation>Закрыть проект</translation> - </message> - <message> <location filename="../Project/Project.py" line="3939" /> + <source>Close Project</source> + <translation>Закрыть проект</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3940" /> <source>The current project has unsaved changes.</source> <translation>Изменения в текущем проекте не сохранены.</translation> </message> <message> - <location filename="../Project/Project.py" line="4139" /> - <location filename="../Project/Project.py" line="4103" /> + <location filename="../Project/Project.py" line="4140" /> + <location filename="../Project/Project.py" line="4104" /> <source>Syntax Errors Detected</source> <translation>Обнаружены синтаксические ошибки</translation> </message> <message numerus="yes"> - <location filename="../Project/Project.py" line="4140" /> - <location filename="../Project/Project.py" line="4104" /> + <location filename="../Project/Project.py" line="4141" /> + <location filename="../Project/Project.py" line="4105" /> <source>The project contains %n file(s) with syntax errors.</source> <translation> <numerusform>Проект содержит %n файл с синтаксической ошибкой.</numerusform> @@ -63422,464 +63427,464 @@ </translation> </message> <message> - <location filename="../Project/Project.py" line="4798" /> + <location filename="../Project/Project.py" line="4799" /> <source>New project</source> <translation>Новый проект</translation> </message> <message> - <location filename="../Project/Project.py" line="4800" /> + <location filename="../Project/Project.py" line="4801" /> <source>&New...</source> <translation>&Новый...</translation> </message> <message> - <location filename="../Project/Project.py" line="4806" /> + <location filename="../Project/Project.py" line="4807" /> <source>Generate a new project</source> <translation>Создать новый проект</translation> </message> <message> - <location filename="../Project/Project.py" line="4808" /> + <location filename="../Project/Project.py" line="4809" /> <source><b>New...</b><p>This opens a dialog for entering the info for a new project.</p></source> <translation><b>Новый...</b><p>Открытие диалога ввода информации о новом проекте.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4818" /> + <location filename="../Project/Project.py" line="4819" /> <source>Open project</source> <translation>Открыть проект</translation> </message> <message> - <location filename="../Project/Project.py" line="4820" /> + <location filename="../Project/Project.py" line="4821" /> <source>&Open...</source> <translation>&Открыть...</translation> </message> <message> - <location filename="../Project/Project.py" line="4826" /> + <location filename="../Project/Project.py" line="4827" /> <source>Open an existing project</source> <translation>Открыть существующий проект</translation> </message> <message> - <location filename="../Project/Project.py" line="4828" /> + <location filename="../Project/Project.py" line="4829" /> <source><b>Open...</b><p>This opens an existing project.</p></source> <translation><b>Открыть...</b><p>Открытие существующего проекта.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4834" /> + <location filename="../Project/Project.py" line="4835" /> <source>Open remote project</source> <translation>Открыть удаленный проект</translation> </message> <message> - <location filename="../Project/Project.py" line="4836" /> + <location filename="../Project/Project.py" line="4837" /> <source>Open (Remote)...</source> <translation>Открыть (удаленно)...</translation> </message> <message> - <location filename="../Project/Project.py" line="4842" /> + <location filename="../Project/Project.py" line="4843" /> <source>Open an existing remote project</source> <translation>Открыть существующий удаленный проект</translation> </message> <message> - <location filename="../Project/Project.py" line="4844" /> + <location filename="../Project/Project.py" line="4845" /> <source><b>Open (Remote)...</b><p>This opens an existing remote project.</p></source> <translation><b>Открыть (удаленно)...</b><p>Открывает существующий удаленный проект.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4853" /> + <location filename="../Project/Project.py" line="4854" /> <source>Reload project</source> <translation>Перезагрузить проект</translation> </message> <message> - <location filename="../Project/Project.py" line="4855" /> + <location filename="../Project/Project.py" line="4856" /> <source>Re&load</source> <translation>П&ерезагрузить</translation> </message> <message> - <location filename="../Project/Project.py" line="4861" /> + <location filename="../Project/Project.py" line="4862" /> <source>Reload the current project</source> <translation>Перезагрузить текущий проект</translation> </message> <message> - <location filename="../Project/Project.py" line="4863" /> + <location filename="../Project/Project.py" line="4864" /> <source><b>Reload</b><p>This reloads the current project.</p></source> <translation><b>Перезагрузить</b><p>Перезагружает текущий проект.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4869" /> + <location filename="../Project/Project.py" line="4870" /> <source>Close project</source> <translation>Закрыть проект</translation> </message> <message> - <location filename="../Project/Project.py" line="4871" /> + <location filename="../Project/Project.py" line="4872" /> <source>&Close</source> <translation>&Закрыть</translation> </message> <message> - <location filename="../Project/Project.py" line="4877" /> + <location filename="../Project/Project.py" line="4878" /> <source>Close the current project</source> <translation>Закрыть текущий проект</translation> </message> <message> - <location filename="../Project/Project.py" line="4879" /> + <location filename="../Project/Project.py" line="4880" /> <source><b>Close</b><p>This closes the current project.</p></source> <translation><b>Закрыть</b><p>Закрытие текущего проекта.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4885" /> + <location filename="../Project/Project.py" line="4886" /> <source>Save project</source> <translation>Сохранить проект</translation> </message> <message> - <location filename="../Project/Project.py" line="5182" /> - <location filename="../Project/Project.py" line="4887" /> + <location filename="../Project/Project.py" line="5183" /> + <location filename="../Project/Project.py" line="4888" /> <source>&Save</source> <translation>&Сохранить</translation> </message> <message> - <location filename="../Project/Project.py" line="4893" /> + <location filename="../Project/Project.py" line="4894" /> <source>Save the current project</source> <translation>Сохранить текущий проект</translation> </message> <message> - <location filename="../Project/Project.py" line="4895" /> + <location filename="../Project/Project.py" line="4896" /> <source><b>Save</b><p>This saves the current project.</p></source> <translation><b>Сохранить</b><p>Сохранение текущего проекта.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4901" /> + <location filename="../Project/Project.py" line="4902" /> <source>Save project as</source> <translation>Сохранить проект как</translation> </message> <message> - <location filename="../Project/Project.py" line="4903" /> + <location filename="../Project/Project.py" line="4904" /> <source>Save &as...</source> <translation>Сохранить &как...</translation> </message> <message> - <location filename="../Project/Project.py" line="4909" /> + <location filename="../Project/Project.py" line="4910" /> <source>Save the current project to a new file</source> <translation>Сохранить текущий проект в новый файл</translation> </message> <message> - <location filename="../Project/Project.py" line="4911" /> + <location filename="../Project/Project.py" line="4912" /> <source><b>Save as</b><p>This saves the current project to a new file.</p></source> <translation><b>Сохранить как</b><p> Сохранение текущего проекта в новый файл.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4920" /> + <location filename="../Project/Project.py" line="4921" /> <source>Save project as (Remote)</source> <translation>Сохранить проект как (удаленно)</translation> </message> <message> - <location filename="../Project/Project.py" line="4922" /> + <location filename="../Project/Project.py" line="4923" /> <source>Save as (Remote)...</source> <translation>Сохранить как (удаленно)...</translation> </message> <message> - <location filename="../Project/Project.py" line="4929" /> + <location filename="../Project/Project.py" line="4930" /> <source>Save the current project to a new remote file</source> <translation>Сохранить текущий проект в новом удаленном файле</translation> </message> <message> - <location filename="../Project/Project.py" line="4932" /> + <location filename="../Project/Project.py" line="4933" /> <source><b>Save as (Remote)</b><p>This saves the current project to a new remote file.</p></source> <translation><b>Сохранить как (удаленно)</b><p>При этом текущий проект сохраняется в новом удаленном файле.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4948" /> + <location filename="../Project/Project.py" line="4949" /> <source>Add files to project</source> <translation>Добавить файлы в проект</translation> </message> <message> - <location filename="../Project/Project.py" line="4950" /> + <location filename="../Project/Project.py" line="4951" /> <source>Add &files...</source> <translation>Добавить &файлы...</translation> </message> <message> - <location filename="../Project/Project.py" line="4956" /> + <location filename="../Project/Project.py" line="4957" /> <source>Add files to the current project</source> <translation>Добавить файлы в текущий проект</translation> </message> <message> - <location filename="../Project/Project.py" line="4958" /> + <location filename="../Project/Project.py" line="4959" /> <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>Добавить файлы</b> <p>Открытие диалога добавления файлов в текущий проект. Место добавления определяется расширением файла.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4969" /> + <location filename="../Project/Project.py" line="4970" /> <source>Add directory to project</source> <translation>Добавить директорию в проект</translation> </message> <message> - <location filename="../Project/Project.py" line="4971" /> + <location filename="../Project/Project.py" line="4972" /> <source>Add directory...</source> <translation>Добавить директорию...</translation> </message> <message> - <location filename="../Project/Project.py" line="4978" /> + <location filename="../Project/Project.py" line="4979" /> <source>Add a directory to the current project</source> <translation>Добавить директорию в текущий проект</translation> </message> <message> - <location filename="../Project/Project.py" line="4981" /> + <location filename="../Project/Project.py" line="4982" /> <source><b>Add directory...</b><p>This opens a dialog for adding a directory to the current project.</p></source> <translation><b>Добавить директорию...</b> <p>Открытие диалога добавления директории к текущему проекту.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4991" /> + <location filename="../Project/Project.py" line="4992" /> <source>Add translation to project</source> <translation>Добавить перевод в проект</translation> </message> <message> - <location filename="../Project/Project.py" line="4993" /> + <location filename="../Project/Project.py" line="4994" /> <source>Add &translation...</source> <translation>Добавить &перевод...</translation> </message> <message> - <location filename="../Project/Project.py" line="5000" /> + <location filename="../Project/Project.py" line="5001" /> <source>Add a translation to the current project</source> <translation>Добавить перевод в текущий проект</translation> </message> <message> - <location filename="../Project/Project.py" line="5003" /> + <location filename="../Project/Project.py" line="5004" /> <source><b>Add translation...</b><p>This opens a dialog for add a translation to the current project.</p></source> <translation><b>Добавить перевод...</b><p>Открытие диалога добавления перевода в текущий проект.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5013" /> - <source>Search new files</source> - <translation>Поиск новых файлов</translation> - </message> - <message> <location filename="../Project/Project.py" line="5014" /> + <source>Search new files</source> + <translation>Поиск новых файлов</translation> + </message> + <message> + <location filename="../Project/Project.py" line="5015" /> <source>Searc&h new files...</source> <translation>Поис&к новых файлов...</translation> </message> <message> - <location filename="../Project/Project.py" line="5020" /> + <location filename="../Project/Project.py" line="5021" /> <source>Search new files in the project directory.</source> <translation>Поиск новых файлов в директории проекта.</translation> </message> <message> - <location filename="../Project/Project.py" line="5022" /> + <location filename="../Project/Project.py" line="5023" /> <source><b>Search new files...</b><p>This searches for new files (sources, forms, ...) in the project directory and registered subdirectories.</p></source> <translation><b>Поиск новых файлов...</b><p>Поиск новых файлов (источники, формы, ...) в директории проекта и зарегистрированных поддиректориях..</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5032" /> - <source>Search Project File</source> - <translation>Поиск файла проекта</translation> - </message> - <message> <location filename="../Project/Project.py" line="5033" /> - <source>Search Project File...</source> - <translation>Поиск файла проекта...</translation> + <source>Search Project File</source> + <translation>Поиск файла проекта</translation> </message> <message> <location filename="../Project/Project.py" line="5034" /> + <source>Search Project File...</source> + <translation>Поиск файла проекта...</translation> + </message> + <message> + <location filename="../Project/Project.py" line="5035" /> <source>Alt+Ctrl+P</source> <comment>Project|Search Project File</comment> <translation>Alt+Ctrl+P</translation> </message> <message> - <location filename="../Project/Project.py" line="5039" /> + <location filename="../Project/Project.py" line="5040" /> <source>Search for a file in the project list of files.</source> <translation>Поиск файла в списке файлов проекта.</translation> </message> <message> - <location filename="../Project/Project.py" line="5041" /> + <location filename="../Project/Project.py" line="5042" /> <source><b>Search Project File</b><p>This searches for a file in the project list of files.</p></source> <translation><b>Поиск файла проекта</b><p>Поиск файла в списке файлов проекта.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5050" /> + <location filename="../Project/Project.py" line="5051" /> <source>Project properties</source> <translation>Свойства проекта</translation> </message> <message> - <location filename="../Project/Project.py" line="5052" /> + <location filename="../Project/Project.py" line="5053" /> <source>&Properties...</source> <translation>&Свойства...</translation> </message> <message> - <location filename="../Project/Project.py" line="5058" /> + <location filename="../Project/Project.py" line="5059" /> <source>Show the project properties</source> <translation>Показать свойства проекта</translation> </message> <message> - <location filename="../Project/Project.py" line="5060" /> + <location filename="../Project/Project.py" line="5061" /> <source><b>Properties...</b><p>This shows a dialog to edit the project properties.</p></source> <translation><b>Свойства...</b><p>Отображение диалога для редактирования свойств проекта.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5069" /> + <location filename="../Project/Project.py" line="5070" /> <source>User project properties</source> <translation>Пользовательские настройки проекта</translation> </message> <message> - <location filename="../Project/Project.py" line="5071" /> + <location filename="../Project/Project.py" line="5072" /> <source>&User Properties...</source> <translation>&Пользовательские свойства...</translation> </message> <message> - <location filename="../Project/Project.py" line="5078" /> + <location filename="../Project/Project.py" line="5079" /> <source>Show the user specific project properties</source> <translation>Показать пользовательские свойства проекта</translation> </message> <message> - <location filename="../Project/Project.py" line="5081" /> + <location filename="../Project/Project.py" line="5082" /> <source><b>User Properties...</b><p>This shows a dialog to edit the user specific project properties.</p></source> <translation><b>Пользовательские свойства...</b><p>Отображает диалог редактирования пользовательских свойств проекта.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5091" /> - <source>Filetype Associations</source> - <translation>Ассоциации типов файлов</translation> - </message> - <message> <location filename="../Project/Project.py" line="5092" /> + <source>Filetype Associations</source> + <translation>Ассоциации типов файлов</translation> + </message> + <message> + <location filename="../Project/Project.py" line="5093" /> <source>Filetype Associations...</source> <translation>Ассоциации типов файлов...</translation> </message> <message> - <location filename="../Project/Project.py" line="5099" /> + <location filename="../Project/Project.py" line="5100" /> <source>Show the project file type associations</source> <translation>Показать ассоциации типов файлов для проекта</translation> </message> <message> - <location filename="../Project/Project.py" line="5102" /> + <location filename="../Project/Project.py" line="5103" /> <source><b>Filetype Associations...</b><p>This shows a dialog to edit the file type associations of the project. These associations determine the type (source, form, interface, protocol 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>Ассоциации типов файлов...</b><p>Отображается диалоговое окно для редактирования ассоциаций типов файлов проекта. Эти ассоциации определяют тип (источник, форму, интерфейс, протокол или другие) с шаблоном имени файла. Они используются при добавлении файла в проект и при поиске новых файлов.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5115" /> - <source>Lexer Associations</source> - <translation>Ассоциации для лексеров</translation> - </message> - <message> <location filename="../Project/Project.py" line="5116" /> + <source>Lexer Associations</source> + <translation>Ассоциации для лексеров</translation> + </message> + <message> + <location filename="../Project/Project.py" line="5117" /> <source>Lexer Associations...</source> <translation>Ассоциации для лексеров...</translation> </message> <message> - <location filename="../Project/Project.py" line="5123" /> + <location filename="../Project/Project.py" line="5124" /> <source>Show the project lexer associations (overriding defaults)</source> <translation>Показать ассоциации для лексеров проекта (переопределяющие по умолчанию)</translation> </message> <message> - <location filename="../Project/Project.py" line="5126" /> + <location filename="../Project/Project.py" line="5127" /> <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>Ассоциации для лексеров...</b><p>Показать ассоциации лексеров для проекта. Эти ассоциации переопределяют глобальные ассоциации лексеров. Лексеры используются для подсвечивания текста в редакторе.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5144" /> - <source>Debugger Properties</source> - <translation>Свойства отладчика</translation> - </message> - <message> <location filename="../Project/Project.py" line="5145" /> + <source>Debugger Properties</source> + <translation>Свойства отладчика</translation> + </message> + <message> + <location filename="../Project/Project.py" line="5146" /> <source>Debugger &Properties...</source> <translation>&Свойства отладчика...</translation> </message> <message> - <location filename="../Project/Project.py" line="5151" /> + <location filename="../Project/Project.py" line="5152" /> <source>Show the debugger properties</source> <translation>Показать свойства отладчика</translation> </message> <message> - <location filename="../Project/Project.py" line="5153" /> + <location filename="../Project/Project.py" line="5154" /> <source><b>Debugger Properties...</b><p>This shows a dialog to edit project specific debugger settings.</p></source> <translation><b>Свойства отладчика...</b> <p>Отображение диалога редактирования свойств отладчика, специфичных для данного проекта.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5163" /> + <location filename="../Project/Project.py" line="5164" /> <source>Load</source> <translation>Загрузить</translation> </message> <message> - <location filename="../Project/Project.py" line="5164" /> + <location filename="../Project/Project.py" line="5165" /> <source>&Load</source> <translation>&Загрузить</translation> </message> <message> - <location filename="../Project/Project.py" line="5170" /> + <location filename="../Project/Project.py" line="5171" /> <source>Load the debugger properties</source> <translation>Загрузить свойства отладчика</translation> </message> <message> - <location filename="../Project/Project.py" line="5172" /> + <location filename="../Project/Project.py" line="5173" /> <source><b>Load Debugger Properties</b><p>This loads the project specific debugger settings.</p></source> <translation><b>Загрузить свойства отладчика</b> <p>Загрузить свойства отладчика, специфичные для данного проекта.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5181" /> + <location filename="../Project/Project.py" line="5182" /> <source>Save</source> <translation>Сохранить</translation> </message> <message> - <location filename="../Project/Project.py" line="5188" /> + <location filename="../Project/Project.py" line="5189" /> <source>Save the debugger properties</source> <translation>Сохранить свойства отладчика</translation> </message> <message> - <location filename="../Project/Project.py" line="5190" /> + <location filename="../Project/Project.py" line="5191" /> <source><b>Save Debugger Properties</b><p>This saves the project specific debugger settings.</p></source> <translation><b>Сохранить свойства отладчика</b><p>Сохранить свойства отладчика, специфичные для данного проекта.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5199" /> - <source>Delete</source> - <translation>Удалить</translation> - </message> - <message> <location filename="../Project/Project.py" line="5200" /> + <source>Delete</source> + <translation>Удалить</translation> + </message> + <message> + <location filename="../Project/Project.py" line="5201" /> <source>&Delete</source> <translation>&Удалить</translation> </message> <message> - <location filename="../Project/Project.py" line="5206" /> + <location filename="../Project/Project.py" line="5207" /> <source>Delete the debugger properties</source> <translation>Удалить свойства отладчика</translation> </message> <message> - <location filename="../Project/Project.py" line="5208" /> + <location filename="../Project/Project.py" line="5209" /> <source><b>Delete Debugger Properties</b><p>This deletes the file containing the project specific debugger settings.</p></source> <translation><b>Удалить свойства отладчика</b><p>Удалить свойства отладчика, специфичные для данного проекта.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5218" /> - <source>Reset</source> - <translation>Рестарт</translation> - </message> - <message> <location filename="../Project/Project.py" line="5219" /> + <source>Reset</source> + <translation>Рестарт</translation> + </message> + <message> + <location filename="../Project/Project.py" line="5220" /> <source>&Reset</source> <translation>&Рестарт</translation> </message> <message> - <location filename="../Project/Project.py" line="5225" /> + <location filename="../Project/Project.py" line="5226" /> <source>Reset the debugger properties</source> <translation>Сбросить свойства отладчика</translation> </message> <message> - <location filename="../Project/Project.py" line="5227" /> + <location filename="../Project/Project.py" line="5228" /> <source><b>Reset Debugger Properties</b><p>This resets the project specific debugger settings.</p></source> <translation><b>Сбросить свойства отладчика</b><p>Сбросить свойства отладчика, специфичные для данного проекта.</p></translation> </message> <message> + <location filename="../Project/Project.py" line="5244" /> <location filename="../Project/Project.py" line="5243" /> - <location filename="../Project/Project.py" line="5242" /> <source>Load session</source> <translation>Загрузить сеанс</translation> </message> <message> - <location filename="../Project/Project.py" line="5249" /> + <location filename="../Project/Project.py" line="5250" /> <source>Load the projects session file.</source> <translation>Загрузить файл с сеансом проекта.</translation> </message> <message> - <location filename="../Project/Project.py" line="5251" /> + <location filename="../Project/Project.py" line="5252" /> <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>Загрузить сеанс</b> <p>Загрузить файл с сеансом проекта. Сеанс содержит следующие данные:<br> @@ -63891,18 +63896,18 @@ </p></translation> </message> <message> + <location filename="../Project/Project.py" line="5268" /> <location filename="../Project/Project.py" line="5267" /> - <location filename="../Project/Project.py" line="5266" /> <source>Save session</source> <translation>Сохранить сеанс</translation> </message> <message> - <location filename="../Project/Project.py" line="5273" /> + <location filename="../Project/Project.py" line="5274" /> <source>Save the projects session file.</source> <translation>Сохранить файл с сеансом проекта.</translation> </message> <message> - <location filename="../Project/Project.py" line="5275" /> + <location filename="../Project/Project.py" line="5276" /> <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>Сохранить сеанс</b> <p>Сохранить файл с сеансом проекта. Сеанс содержит следующие данные:<br> @@ -63914,794 +63919,794 @@ </p></translation> </message> <message> + <location filename="../Project/Project.py" line="5292" /> <location filename="../Project/Project.py" line="5291" /> - <location filename="../Project/Project.py" line="5290" /> <source>Delete session</source> <translation>Удалить сеанс</translation> </message> <message> - <location filename="../Project/Project.py" line="5297" /> + <location filename="../Project/Project.py" line="5298" /> <source>Delete the projects session file.</source> <translation>Удалить файл с сеансом проекта.</translation> </message> <message> - <location filename="../Project/Project.py" line="5299" /> + <location filename="../Project/Project.py" line="5300" /> <source><b>Delete session</b><p>This deletes the projects session file</p></source> <translation><b>Удалить сеанс</b><p>Удалить файл с сеансом проекта</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5314" /> - <source>Code Metrics</source> - <translation>Метрики кода</translation> - </message> - <message> <location filename="../Project/Project.py" line="5315" /> + <source>Code Metrics</source> + <translation>Метрики кода</translation> + </message> + <message> + <location filename="../Project/Project.py" line="5316" /> <source>&Code Metrics...</source> <translation>&Метрики кода...</translation> </message> <message> - <location filename="../Project/Project.py" line="5322" /> + <location filename="../Project/Project.py" line="5323" /> <source>Show some code metrics for the project.</source> <translation>Отображение некоторых метрик кода проекта.</translation> </message> <message> - <location filename="../Project/Project.py" line="5325" /> + <location filename="../Project/Project.py" line="5326" /> <source><b>Code Metrics...</b><p>This shows some code metrics for all Python files in the project.</p></source> <translation><b>Метрики кода...</b><p>Отображение некоторых метрик кода для всех Python-файлов проекта.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5335" /> - <source>Python Code Coverage</source> - <translation>Покрытие кода Python</translation> - </message> - <message> <location filename="../Project/Project.py" line="5336" /> + <source>Python Code Coverage</source> + <translation>Покрытие кода Python</translation> + </message> + <message> + <location filename="../Project/Project.py" line="5337" /> <source>Code Co&verage...</source> <translation>&Покрытие кода...</translation> </message> <message> - <location filename="../Project/Project.py" line="5343" /> + <location filename="../Project/Project.py" line="5344" /> <source>Show code coverage information for the project.</source> <translation>Показать информацию покрытия кода проекта.</translation> </message> <message> - <location filename="../Project/Project.py" line="5346" /> + <location filename="../Project/Project.py" line="5347" /> <source><b>Code Coverage...</b><p>This shows the code coverage information for all Python files in the project.</p></source> <translation><b>Покрытие кода...</b><p>Показать информацию покрытия кода всех Python-файлов проекта.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="6780" /> - <location filename="../Project/Project.py" line="6767" /> - <location filename="../Project/Project.py" line="5356" /> + <location filename="../Project/Project.py" line="6781" /> + <location filename="../Project/Project.py" line="6768" /> + <location filename="../Project/Project.py" line="5357" /> <source>Profile Data</source> <translation>Данные профайлера</translation> </message> <message> - <location filename="../Project/Project.py" line="5357" /> + <location filename="../Project/Project.py" line="5358" /> <source>&Profile Data...</source> <translation>&Данные профайлера...</translation> </message> <message> - <location filename="../Project/Project.py" line="5364" /> + <location filename="../Project/Project.py" line="5365" /> <source>Show profiling data for the project.</source> <translation>Отображение результатов профилирования проекта.</translation> </message> <message> - <location filename="../Project/Project.py" line="5367" /> + <location filename="../Project/Project.py" line="5368" /> <source><b>Profile Data...</b><p>This shows the profiling data for the project.</p></source> <translation><b>Данные профайлера...</b><p>Отображение результатов профилирования проекта.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="6832" /> - <location filename="../Project/Project.py" line="5382" /> + <location filename="../Project/Project.py" line="6833" /> + <location filename="../Project/Project.py" line="5383" /> <source>Application Diagram</source> <translation>Диаграмма приложения</translation> </message> <message> - <location filename="../Project/Project.py" line="5383" /> + <location filename="../Project/Project.py" line="5384" /> <source>&Application Diagram...</source> <translation>&Диаграмма приложения...</translation> </message> <message> - <location filename="../Project/Project.py" line="5390" /> + <location filename="../Project/Project.py" line="5391" /> <source>Show a diagram of the project.</source> <translation>Показать диаграмму проекта.</translation> </message> <message> - <location filename="../Project/Project.py" line="5393" /> + <location filename="../Project/Project.py" line="5394" /> <source><b>Application Diagram...</b><p>This shows a diagram of the project.</p></source> <translation><b>Диаграмма приложения...</b><p>Отображает диаграмму проекта.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5402" /> - <source>Load Diagram</source> - <translation>Загрузить диаграмму</translation> - </message> - <message> <location filename="../Project/Project.py" line="5403" /> + <source>Load Diagram</source> + <translation>Загрузить диаграмму</translation> + </message> + <message> + <location filename="../Project/Project.py" line="5404" /> <source>&Load Diagram...</source> <translation>&Загрузить диаграмму...</translation> </message> <message> - <location filename="../Project/Project.py" line="5409" /> + <location filename="../Project/Project.py" line="5410" /> <source>Load a diagram from file.</source> <translation>Загрузить диаграмму из файла.</translation> </message> <message> - <location filename="../Project/Project.py" line="5411" /> + <location filename="../Project/Project.py" line="5412" /> <source><b>Load Diagram...</b><p>This loads a diagram from file.</p></source> <translation><b>Загрузить диаграмму...</b><p>Загрузить диаграмму из файла.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="7000" /> - <location filename="../Project/Project.py" line="6945" /> - <location filename="../Project/Project.py" line="5426" /> + <location filename="../Project/Project.py" line="7001" /> + <location filename="../Project/Project.py" line="6946" /> + <location filename="../Project/Project.py" line="5427" /> <source>Create Package List</source> <translation>Создать список пакета</translation> </message> <message> - <location filename="../Project/Project.py" line="5428" /> + <location filename="../Project/Project.py" line="5429" /> <source>Create &Package List</source> <translation>&Создать список пакета</translation> </message> <message> - <location filename="../Project/Project.py" line="5435" /> + <location filename="../Project/Project.py" line="5436" /> <source>Create an initial PKGLIST file for an eric plugin.</source> <translation>Создать первичный файл PKGLIST для плагина eric.</translation> </message> <message> - <location filename="../Project/Project.py" line="5438" /> + <location filename="../Project/Project.py" line="5439" /> <source><b>Create Package List</b><p>This creates an initial list of files to include in an eric plugin archive. The list is created from the project file.</p></source> <translation><b>Создать список пакета</b><p>Создаёт начальный список файлов для включения в архив плагина eric. Список создаётся из файла проекта.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="7070" /> - <location filename="../Project/Project.py" line="5449" /> + <location filename="../Project/Project.py" line="7071" /> + <location filename="../Project/Project.py" line="5450" /> <source>Create Plugin Archives</source> <translation>Создать архивы плагина</translation> </message> <message> - <location filename="../Project/Project.py" line="5451" /> + <location filename="../Project/Project.py" line="5452" /> <source>Create Plugin &Archives</source> <translation>Создать архивы &плагина</translation> </message> <message> - <location filename="../Project/Project.py" line="5457" /> + <location filename="../Project/Project.py" line="5458" /> <source>Create eric plugin archive files.</source> <translation>Создание архивных файлов плагина eric.</translation> </message> <message> - <location filename="../Project/Project.py" line="5459" /> + <location filename="../Project/Project.py" line="5460" /> <source><b>Create Plugin Archives</b><p>This creates eric plugin archive files using the list of files given in a PKGLIST* file. The archive name is built from the main script name if not designated in the package list file.</p></source> <translation><b>Создать архивы плагина</b><p>Создание архивных файлов плагина eric, используя список файлов, приведенный в файле PKGLIST. Имя архива, если оно не задано в файле со списком пакета, создается из имени главного сценария.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5471" /> + <location filename="../Project/Project.py" line="5472" /> <source>Create Plugin Archives (Snapshot)</source> <translation>Создать архивы плагина (Snapshot)</translation> </message> <message> - <location filename="../Project/Project.py" line="5473" /> + <location filename="../Project/Project.py" line="5474" /> <source>Create Plugin Archives (&Snapshot)</source> <translation>Создать архивы плагина (&Snapshot)</translation> </message> <message> - <location filename="../Project/Project.py" line="5480" /> + <location filename="../Project/Project.py" line="5481" /> <source>Create eric plugin archive files (snapshot releases).</source> <translation>Создание архивных файлов плагина eric (snapshot releases).</translation> </message> <message> - <location filename="../Project/Project.py" line="5483" /> + <location filename="../Project/Project.py" line="5484" /> <source><b>Create Plugin Archives (Snapshot)</b><p>This creates eric plugin archive files using the list of files given in the PKGLIST* file. The archive name is built from the main script name if not designated in the package list file. The version entry of the main script is modified to reflect a snapshot release.</p></source> <translation><b>Создать архивы плагина (Snapshot)</b><p>Создание архивных файлов плагина eric, используя список файлов, приведенный в файле PKGLIST. Имя архива, если оно не задано в файле со списком пакета, создается из имени главного сценария. Версия главного скрипта изменяется в соответствии релизом snapshot.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="7512" /> - <location filename="../Project/Project.py" line="7483" /> - <location filename="../Project/Project.py" line="7437" /> - <location filename="../Project/Project.py" line="7389" /> - <location filename="../Project/Project.py" line="5502" /> + <location filename="../Project/Project.py" line="7513" /> + <location filename="../Project/Project.py" line="7484" /> + <location filename="../Project/Project.py" line="7438" /> + <location filename="../Project/Project.py" line="7390" /> + <location filename="../Project/Project.py" line="5503" /> <source>Execute Make</source> <translation>Выполнить Make</translation> </message> <message> - <location filename="../Project/Project.py" line="5503" /> + <location filename="../Project/Project.py" line="5504" /> <source>&Execute Make</source> <translation>&Выполнить Make</translation> </message> <message> - <location filename="../Project/Project.py" line="5509" /> + <location filename="../Project/Project.py" line="5510" /> <source>Perform a 'make' run.</source> <translation>Выполнить прогон 'make'.</translation> </message> <message> - <location filename="../Project/Project.py" line="5511" /> + <location filename="../Project/Project.py" line="5512" /> <source><b>Execute Make</b><p>This performs a 'make' run to rebuild the configured target.</p></source> <translation><b>Выполнить Make</b><p>Выполнение прогона 'make' для пересборки настроеной цели.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="7489" /> - <location filename="../Project/Project.py" line="5521" /> + <location filename="../Project/Project.py" line="7490" /> + <location filename="../Project/Project.py" line="5522" /> <source>Test for Changes</source> <translation>Проверить изменения</translation> </message> <message> - <location filename="../Project/Project.py" line="5522" /> + <location filename="../Project/Project.py" line="5523" /> <source>&Test for Changes</source> <translation>&Проверить изменения</translation> </message> <message> - <location filename="../Project/Project.py" line="5529" /> + <location filename="../Project/Project.py" line="5530" /> <source>Question 'make', if a rebuild is needed.</source> <translation>Запрос 'make', если необходима пересборка.</translation> </message> <message> - <location filename="../Project/Project.py" line="5532" /> + <location filename="../Project/Project.py" line="5533" /> <source><b>Test for Changes</b><p>This questions 'make', if a rebuild of the configured target is necessary.</p></source> <translation><b>Проверка изменений</b><p>Запрос 'make', если требуется пересборка настроенной цели.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5550" /> - <source>Create SBOM File</source> - <translation>Создать файл SBOM</translation> - </message> - <message> <location filename="../Project/Project.py" line="5551" /> + <source>Create SBOM File</source> + <translation>Создать файл SBOM</translation> + </message> + <message> + <location filename="../Project/Project.py" line="5552" /> <source>Create &SBOM File</source> <translation>Создать файл &SBOM</translation> </message> <message> - <location filename="../Project/Project.py" line="5558" /> + <location filename="../Project/Project.py" line="5559" /> <source>Create a SBOM file of the project dependencies.</source> <translation>Создайте SBOM файл зависимостей проекта.</translation> </message> <message> - <location filename="../Project/Project.py" line="5561" /> + <location filename="../Project/Project.py" line="5562" /> <source><b>Create SBOM File</b><p>This allows the creation of a SBOM file of the project dependencies. This may be based on various input sources and will be saved as a CycloneDX SBOM file.</p></source> <translation><b>Создать файл SBOM</b><p>Создание SBOM файла зависимостей проекта. Он может быть основан на различных источниках ввода и будет сохранен как файл CycloneDX SBOM.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5572" /> - <source>Clear Byte Code Caches</source> - <translation>Очистить кэши байт-кода</translation> - </message> - <message> <location filename="../Project/Project.py" line="5573" /> + <source>Clear Byte Code Caches</source> + <translation>Очистить кэши байт-кода</translation> + </message> + <message> + <location filename="../Project/Project.py" line="5574" /> <source>Clear Byte Code &Caches</source> <translation>Очистить &кэши байт-кода</translation> </message> <message> - <location filename="../Project/Project.py" line="5580" /> + <location filename="../Project/Project.py" line="5581" /> <source>Clear the byte code caches of the project.</source> <translation>Очистить кэши байт-кода проекта.</translation> </message> <message> - <location filename="../Project/Project.py" line="5583" /> + <location filename="../Project/Project.py" line="5584" /> <source><b>Clear Byte Code Caches</b><p>This deletes all directories containing byte code cache files.</p></source> <translation><b>Очистить кэш байт-кода</b><p>При этом будут удалены все каталоги, содержащие файлы кэша байт-кода.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5599" /> - <source>About Black</source> - <translation>О Black</translation> - </message> - <message> <location filename="../Project/Project.py" line="5600" /> + <source>About Black</source> + <translation>О Black</translation> + </message> + <message> + <location filename="../Project/Project.py" line="5601" /> <source>&Black</source> <translation>&Black</translation> </message> <message> - <location filename="../Project/Project.py" line="5606" /> + <location filename="../Project/Project.py" line="5607" /> <source>Show some information about 'Black'.</source> <translation>Отображение некоторой информации о форматере 'Black'.</translation> </message> <message> - <location filename="../Project/Project.py" line="5608" /> + <location filename="../Project/Project.py" line="5609" /> <source><b>Black</b><p>This shows some information about the installed 'Black' tool.</p></source> <translation><b>Black</b><p>Отображение некоторой информации об установленном форматере 'Black'.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5620" /> - <source>Format Code</source> - <translation>Форматировать код</translation> - </message> - <message> <location filename="../Project/Project.py" line="5621" /> + <source>Format Code</source> + <translation>Форматировать код</translation> + </message> + <message> + <location filename="../Project/Project.py" line="5622" /> <source>&Format Code</source> <translation>&Форматировать код</translation> </message> <message> - <location filename="../Project/Project.py" line="5628" /> + <location filename="../Project/Project.py" line="5629" /> <source>Format the project sources with 'Black'.</source> <translation>Форматирование исходников проекта с помощью 'Black'.</translation> </message> <message> - <location filename="../Project/Project.py" line="5631" /> + <location filename="../Project/Project.py" line="5632" /> <source><b>Format Code</b><p>This shows a dialog to enter parameters for the formatting run and reformats the project sources using 'Black'.</p></source> <translation><b>Форматировать код</b><p>Отображение диалога задания параметров для форматирования и переформатирование исходников проекта с помощью 'Black'.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5643" /> - <source>Check Code Formatting</source> - <translation>Проверить форматирование кода</translation> - </message> - <message> <location filename="../Project/Project.py" line="5644" /> + <source>Check Code Formatting</source> + <translation>Проверить форматирование кода</translation> + </message> + <message> + <location filename="../Project/Project.py" line="5645" /> <source>&Check Code Formatting</source> <translation>&Проверить форматирование кода</translation> </message> <message> - <location filename="../Project/Project.py" line="5651" /> + <location filename="../Project/Project.py" line="5652" /> <source>Check, if the project sources need to be reformatted with 'Black'.</source> <translation>Проверка возможности переформатирования исходников проекта с помощью 'Black'.</translation> </message> <message> - <location filename="../Project/Project.py" line="5656" /> + <location filename="../Project/Project.py" line="5657" /> <source><b>Check Code Formatting</b><p>This shows a dialog to enter parameters for the format check run and performs a check, if the project sources need to be reformatted using 'Black'.</p></source> <translation><b>Проверить форматирование кода</b><p>Отображение диалога задания параметров для запуска проверки формата и выполнение проверки, если исходный проект необходимо переформатировать посредством 'Black'.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5669" /> - <source>Code Formatting Diff</source> - <translation>Различия форматирования кода</translation> - </message> - <message> <location filename="../Project/Project.py" line="5670" /> + <source>Code Formatting Diff</source> + <translation>Различия форматирования кода</translation> + </message> + <message> + <location filename="../Project/Project.py" line="5671" /> <source>Code Formatting &Diff</source> <translation>&Различия форматирования кода</translation> </message> <message> - <location filename="../Project/Project.py" line="5677" /> + <location filename="../Project/Project.py" line="5678" /> <source>Generate a unified diff of potential project source reformatting with 'Black'.</source> <translation>Генерация унифицированного diff потенциального переформатирования исходников проекта с помощью 'Black'.</translation> </message> <message> - <location filename="../Project/Project.py" line="5683" /> + <location filename="../Project/Project.py" line="5684" /> <source><b>Diff Code Formatting</b><p>This shows a dialog to enter parameters for the format diff run and generates a unified diff of potential project source reformatting using 'Black'.</p></source> <translation><b>Различия форматирования кода</b><p>Отображение диалога задания параметров для запуска сравнения форматов и генерации единого diff потенциального переформатирования исходного проекта с помощью 'Black'.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5848" /> + <location filename="../Project/Project.py" line="5849" /> + <location filename="../Project/Project.py" line="5799" /> <location filename="../Project/Project.py" line="5798" /> - <location filename="../Project/Project.py" line="5797" /> + <location filename="../Project/Project.py" line="5698" /> <location filename="../Project/Project.py" line="5697" /> - <location filename="../Project/Project.py" line="5696" /> <source>Configure</source> <translation>Конфигурация</translation> </message> <message> - <location filename="../Project/Project.py" line="5704" /> + <location filename="../Project/Project.py" line="5705" /> <source>Enter the parameters for formatting the project sources with 'Black'.</source> <translation>Задание параметров форматирования исходников проекта с помощью 'Black'.</translation> </message> <message> - <location filename="../Project/Project.py" line="5709" /> + <location filename="../Project/Project.py" line="5710" /> <source><b>Configure</b><p>This shows a dialog to enter the parameters for formatting the project sources with 'Black'.</p></source> <translation><b>Конфигурация</b><p>Отображение диалога задания параметров для форматирования исходников проекта с помощью 'Black'.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5725" /> - <source>About isort</source> - <translation>О isort</translation> - </message> - <message> <location filename="../Project/Project.py" line="5726" /> + <source>About isort</source> + <translation>О isort</translation> + </message> + <message> + <location filename="../Project/Project.py" line="5727" /> <source>&isort</source> <translation>&isort</translation> </message> <message> - <location filename="../Project/Project.py" line="5732" /> + <location filename="../Project/Project.py" line="5733" /> <source>Show some information about 'isort'.</source> <translation>Отображение некоторой информации о утилите 'isort'.</translation> </message> <message> - <location filename="../Project/Project.py" line="5734" /> + <location filename="../Project/Project.py" line="5735" /> <source><b>isort</b><p>This shows some information about the installed 'isort' tool.</p></source> <translation><b>isort</b><p>Отображение некоторой информацим об установленном инструменте isort.</p></translation> </message> <message> + <location filename="../Project/Project.py" line="5748" /> <location filename="../Project/Project.py" line="5747" /> - <location filename="../Project/Project.py" line="5746" /> <source>Sort Imports</source> <translation>Сортировать импорт</translation> </message> <message> - <location filename="../Project/Project.py" line="5754" /> + <location filename="../Project/Project.py" line="5755" /> <source>Sort the import statements of the project sources with 'isort'.</source> <translation>Сортировка операторов импорта исходников проекта с помощью 'isort'.</translation> </message> <message> - <location filename="../Project/Project.py" line="5757" /> + <location filename="../Project/Project.py" line="5758" /> <source><b>Sort Imports</b><p>This shows a dialog to enter parameters for the imports sorting run and sorts the import statements of the project sources using 'isort'.</p></source> <translation><b>Сортировка импорта</b><p>Отображение диалога задания параметров для запуска сортировки импорта и сортировки операторов импорта исходного проекта с помощью 'isort'.</p></translation> </message> <message> + <location filename="../Project/Project.py" line="5772" /> <location filename="../Project/Project.py" line="5771" /> - <location filename="../Project/Project.py" line="5770" /> <source>Imports Sorting Diff</source> <translation>Различия сортировки импорта</translation> </message> <message> - <location filename="../Project/Project.py" line="5778" /> + <location filename="../Project/Project.py" line="5779" /> <source>Generate a unified diff of potential project source imports resorting with 'isort'.</source> <translation>Создание унифицированного diff потенциального импорта исходников проекта c помощью 'isort'.</translation> </message> <message> - <location filename="../Project/Project.py" line="5784" /> + <location filename="../Project/Project.py" line="5785" /> <source><b>Imports Sorting Diff</b><p>This shows a dialog to enter parameters for the imports sorting diff run and generates a unified diff of potential project source changes using 'isort'.</p></source> <translation><b>Различия сортировки импорта</b><p>Отображение диалога задания параметров для запуска сравнения сортировки импорта и создания унифицированного diff потенциальных изменений исходников проекта с помощью 'isort'.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5805" /> + <location filename="../Project/Project.py" line="5806" /> <source>Enter the parameters for resorting the project sources import statements with 'isort'.</source> <translation>Задание параметров сортировки операторов импорта исходников проекта с помощью 'isort'.</translation> </message> <message> - <location filename="../Project/Project.py" line="5811" /> + <location filename="../Project/Project.py" line="5812" /> <source><b>Configure</b><p>This shows a dialog to enter the parameters for resorting the import statements of the project sources with 'isort'.</p></source> <translation><b>Конфигурация</b><p>Отображение диалогового окна ввода параметров для сортировки операторов импорта исходников проекта с помощью 'isort'.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5827" /> - <source>Install Project</source> - <translation>Установить проект</translation> - </message> - <message> <location filename="../Project/Project.py" line="5828" /> + <source>Install Project</source> + <translation>Установить проект</translation> + </message> + <message> + <location filename="../Project/Project.py" line="5829" /> <source>&Install Project</source> <translation>&Установить проект</translation> </message> <message> - <location filename="../Project/Project.py" line="5835" /> + <location filename="../Project/Project.py" line="5836" /> <source>Install the project into the embedded environment.</source> <translation>Установка проекта во встроенную среду.</translation> </message> <message> - <location filename="../Project/Project.py" line="5838" /> + <location filename="../Project/Project.py" line="5839" /> <source><b>Install Project</b><p>This installs the project into the embedded virtual environment in editable mode (i.e. development mode).</p></source> <translation><b>Установить проект</b><p>Установка проекта во встроенное виртуальное окружение в режиме редактирования (т.е. в режиме разработки).</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5849" /> + <location filename="../Project/Project.py" line="5850" /> <source>&Configure</source> <translation>&Настройки</translation> </message> <message> - <location filename="../Project/Project.py" line="5856" /> + <location filename="../Project/Project.py" line="5857" /> <source>Configure the embedded environment.</source> <translation>Настройка встроенного виртуального окружения.</translation> </message> <message> - <location filename="../Project/Project.py" line="5859" /> + <location filename="../Project/Project.py" line="5860" /> <source><b>Configure</b><p>This opens a dialog to configure the embedded virtual environment of the project.</p></source> <translation><b>Настройки</b><p>Открытие диалогового окна для настройки встроенного виртуального окружения проекта.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5869" /> - <source>Upgrade</source> - <translation>Модернизировать</translation> - </message> - <message> <location filename="../Project/Project.py" line="5870" /> + <source>Upgrade</source> + <translation>Модернизировать</translation> + </message> + <message> + <location filename="../Project/Project.py" line="5871" /> <source>&Upgrade</source> <translation>&Модернизировать</translation> </message> <message> - <location filename="../Project/Project.py" line="5876" /> + <location filename="../Project/Project.py" line="5877" /> <source>Upgrade the embedded environment.</source> <translation>Модернизация встроенного виртуального окружения.</translation> </message> <message> - <location filename="../Project/Project.py" line="5878" /> + <location filename="../Project/Project.py" line="5879" /> <source><b>Upgrade</b><p>This opens a dialog to enter the parameters to upgrade the embedded virtual environment of the project.</p></source> <translation><b>Модернизировать</b><p>Открытие диалогового окна для ввода параметров обновления встроенной виртуальной среды проекта.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5890" /> - <source>Recreate</source> - <translation>Пересоздать</translation> - </message> - <message> <location filename="../Project/Project.py" line="5891" /> + <source>Recreate</source> + <translation>Пересоздать</translation> + </message> + <message> + <location filename="../Project/Project.py" line="5892" /> <source>&Recreate</source> <translation>&Пересоздать</translation> </message> <message> - <location filename="../Project/Project.py" line="5897" /> + <location filename="../Project/Project.py" line="5898" /> <source>Recreate the embedded environment.</source> <translation>Пересоздание встроенного виртуального окружения.</translation> </message> <message> - <location filename="../Project/Project.py" line="5899" /> + <location filename="../Project/Project.py" line="5900" /> <source><b>Recreate</b><p>This opens a dialog to enter the parameters to recreate the embedded virtual environment of the project. The existing environment is cleared first.</p></source> <translation><b>Пересоздать</b><p>При этом открывается диалоговое окно для ввода параметров для воссоздания встроенной виртуальной среды проекта. Сначала очищается существующая среда.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5931" /> - <source>&Project</source> - <translation>&Проект</translation> - </message> - <message> <location filename="../Project/Project.py" line="5932" /> + <source>&Project</source> + <translation>&Проект</translation> + </message> + <message> + <location filename="../Project/Project.py" line="5933" /> <source>Open &Recent Projects</source> <translation>Открыть &недавние проекты</translation> </message> <message> - <location filename="../Project/Project.py" line="5934" /> - <source>Session</source> - <translation>Сеанс</translation> - </message> - <message> <location filename="../Project/Project.py" line="5935" /> - <source>Debugger</source> - <translation>Отладка</translation> + <source>Session</source> + <translation>Сеанс</translation> </message> <message> <location filename="../Project/Project.py" line="5936" /> + <source>Debugger</source> + <translation>Отладка</translation> + </message> + <message> + <location filename="../Project/Project.py" line="5937" /> <source>Embedded Environment</source> <translation>Встроенная среда окружения</translation> </message> <message> - <location filename="../Project/Project.py" line="5938" /> - <source>Project-T&ools</source> - <translation>&Инструменты-проекта</translation> - </message> - <message> <location filename="../Project/Project.py" line="5939" /> + <source>Project-T&ools</source> + <translation>&Инструменты-проекта</translation> + </message> + <message> + <location filename="../Project/Project.py" line="5940" /> <source>&Version Control</source> <translation>Контроль &версий</translation> </message> <message> - <location filename="../Project/Project.py" line="5943" /> + <location filename="../Project/Project.py" line="5944" /> <source>Chec&k</source> <translation>&Проверить</translation> </message> <message> - <location filename="../Project/Project.py" line="5945" /> + <location filename="../Project/Project.py" line="5946" /> <source>Code &Formatting</source> <translation>&Форматировать код</translation> </message> <message> - <location filename="../Project/Project.py" line="5947" /> - <source>Sho&w</source> - <translation>По&казать</translation> - </message> - <message> <location filename="../Project/Project.py" line="5948" /> - <source>&Diagrams</source> - <translation>&Диаграммы</translation> + <source>Sho&w</source> + <translation>По&казать</translation> </message> <message> <location filename="../Project/Project.py" line="5949" /> - <source>Pac&kagers</source> - <translation>У&паковщики</translation> + <source>&Diagrams</source> + <translation>&Диаграммы</translation> </message> <message> <location filename="../Project/Project.py" line="5950" /> + <source>Pac&kagers</source> + <translation>У&паковщики</translation> + </message> + <message> + <location filename="../Project/Project.py" line="5951" /> <source>Source &Documentation</source> <translation>&Документация исходников</translation> </message> <message> - <location filename="../Project/Project.py" line="5952" /> - <source>Make</source> - <translation>Make</translation> - </message> - <message> <location filename="../Project/Project.py" line="5953" /> + <source>Make</source> + <translation>Make</translation> + </message> + <message> + <location filename="../Project/Project.py" line="5954" /> <source>Other Tools</source> <translation>Другие инструменты</translation> </message> <message> - <location filename="../Project/Project.py" line="6115" /> - <location filename="../Project/Project.py" line="6113" /> + <location filename="../Project/Project.py" line="6116" /> + <location filename="../Project/Project.py" line="6114" /> <source>Project</source> <translation>Проект</translation> </message> <message> - <location filename="../Project/Project.py" line="6197" /> + <location filename="../Project/Project.py" line="6198" /> <source>&Clear</source> <translation>&Очистить</translation> </message> <message> - <location filename="../Project/Project.py" line="6394" /> - <source>Search New Files</source> - <translation>Поиск новых файлов</translation> - </message> - <message> <location filename="../Project/Project.py" line="6395" /> + <source>Search New Files</source> + <translation>Поиск новых файлов</translation> + </message> + <message> + <location filename="../Project/Project.py" line="6396" /> <source>There were no new files found to be added.</source> <translation>Не найдено новых файлов для добавления.</translation> </message> <message> - <location filename="../Project/Project.py" line="6556" /> - <location filename="../Project/Project.py" line="6543" /> - <source>Version Control System</source> - <translation>Система контроля версий</translation> - </message> - <message> - <location filename="../Project/Project.py" line="6544" /> - <source><p>The selected VCS <b>{0}</b> could not be found. <br/>Reverting override.</p><p>{1}</p></source> - <translation><p>Выбранная VCS <b>{0}</b> не найдена.<br/>Возврат отвергнут.</p><p>{1}</p></translation> - </message> - <message> <location filename="../Project/Project.py" line="6557" /> + <location filename="../Project/Project.py" line="6544" /> + <source>Version Control System</source> + <translation>Система контроля версий</translation> + </message> + <message> + <location filename="../Project/Project.py" line="6545" /> + <source><p>The selected VCS <b>{0}</b> could not be found. <br/>Reverting override.</p><p>{1}</p></source> + <translation><p>Выбранная VCS <b>{0}</b> не найдена.<br/>Возврат отвергнут.</p><p>{1}</p></translation> + </message> + <message> + <location filename="../Project/Project.py" line="6558" /> <source><p>The selected VCS <b>{0}</b> could not be found.<br/>Disabling version control.</p><p>{1}</p></source> <translation><p>Выбранная VCS <b>{0}</b> не найдена.<br/>Контроль версий отключен.</p><p>{1}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="6714" /> + <location filename="../Project/Project.py" line="6715" /> <source>Coverage Data</source> <translation>Данные покрытия</translation> </message> <message> - <location filename="../Project/Project.py" line="6768" /> - <location filename="../Project/Project.py" line="6715" /> + <location filename="../Project/Project.py" line="6769" /> + <location filename="../Project/Project.py" line="6716" /> <source>There is no main script defined for the current project. Aborting</source> <translation>Для текущего проекта не определён главный сценарий. Отмена</translation> </message> <message> - <location filename="../Project/Project.py" line="6727" /> - <source>Code Coverage</source> - <translation>Покрытие кода</translation> - </message> - <message> <location filename="../Project/Project.py" line="6728" /> + <source>Code Coverage</source> + <translation>Покрытие кода</translation> + </message> + <message> + <location filename="../Project/Project.py" line="6729" /> <source>Please select a coverage file</source> <translation>Пожалуйста, выберите файл покрытия</translation> </message> <message> - <location filename="../Project/Project.py" line="6781" /> + <location filename="../Project/Project.py" line="6782" /> <source>Please select a profile file</source> <translation>Пожалуйста, выберите файл профиля</translation> </message> <message> - <location filename="../Project/Project.py" line="6833" /> + <location filename="../Project/Project.py" line="6834" /> <source>Include module names?</source> <translation>Включать имена модулей?</translation> </message> <message> - <location filename="../Project/Project.py" line="6946" /> + <location filename="../Project/Project.py" line="6947" /> <source><p>The file <b>PKGLIST</b> already exists.</p><p>Overwrite it?</p></source> <translation><p>Файл <b>PKGLIST</b> уже существует. Переписать?</p></translation> </message> <message> - <location filename="../Project/Project.py" line="7001" /> + <location filename="../Project/Project.py" line="7002" /> <source><p>The file <b>PKGLIST</b> could not be created.</p><p>Reason: {0}</p></source> <translation><p>Невозможно создать файл <b>PKGLIST</b>.</p><p>Причина: {0}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="7297" /> - <location filename="../Project/Project.py" line="7253" /> - <location filename="../Project/Project.py" line="7203" /> - <location filename="../Project/Project.py" line="7192" /> - <location filename="../Project/Project.py" line="7174" /> - <location filename="../Project/Project.py" line="7141" /> - <location filename="../Project/Project.py" line="7111" /> - <location filename="../Project/Project.py" line="7083" /> - <location filename="../Project/Project.py" line="7053" /> - <location filename="../Project/Project.py" line="7039" /> - <location filename="../Project/Project.py" line="7022" /> + <location filename="../Project/Project.py" line="7298" /> + <location filename="../Project/Project.py" line="7254" /> + <location filename="../Project/Project.py" line="7204" /> + <location filename="../Project/Project.py" line="7193" /> + <location filename="../Project/Project.py" line="7175" /> + <location filename="../Project/Project.py" line="7142" /> + <location filename="../Project/Project.py" line="7112" /> + <location filename="../Project/Project.py" line="7084" /> + <location filename="../Project/Project.py" line="7054" /> + <location filename="../Project/Project.py" line="7040" /> + <location filename="../Project/Project.py" line="7023" /> <source>Create Plugin Archive</source> <translation>Создать архив плагина</translation> </message> <message> - <location filename="../Project/Project.py" line="7023" /> + <location filename="../Project/Project.py" line="7024" /> <source>The project does not have a main script defined. Aborting...</source> <translation>Для текущего проекта не определён главный сценарий. Отмена...</translation> </message> <message> - <location filename="../Project/Project.py" line="7040" /> + <location filename="../Project/Project.py" line="7041" /> <source>Select package lists:</source> <translation>Выбор списков пакета:</translation> </message> <message> - <location filename="../Project/Project.py" line="7054" /> + <location filename="../Project/Project.py" line="7055" /> <source><p>No package list files (PKGLIST*) available or selected. Aborting...</p></source> <translation><p>Файлы со списком пакета (PKGLIST*) не доступны или не выбраны. Отмена...</p></translation> </message> <message> - <location filename="../Project/Project.py" line="7062" /> - <source>Creating plugin archives...</source> - <translation>Создание архивов плагина...</translation> - </message> - <message> <location filename="../Project/Project.py" line="7063" /> + <source>Creating plugin archives...</source> + <translation>Создание архивов плагина...</translation> + </message> + <message> + <location filename="../Project/Project.py" line="7064" /> <source>Abort</source> <translation>Прервать</translation> </message> <message> - <location filename="../Project/Project.py" line="7066" /> + <location filename="../Project/Project.py" line="7067" /> <source>%v/%m Archives</source> <translation>%v из %m архивов</translation> </message> <message> - <location filename="../Project/Project.py" line="7084" /> + <location filename="../Project/Project.py" line="7085" /> <source><p>The file <b>{0}</b> could not be read.</p><p>Reason: {1}</p></source> <translation><p>Невозможно прочитать файл <b>{0}</b>.</p><p>Причина: {1}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="7112" /> + <location filename="../Project/Project.py" line="7113" /> <source><p>The file <b>{0}</b> is not ready yet.</p><p>Please rework it and delete the'; initial_list' line of the header.</p></source> <translation><p>Файл <b>{0}</b> пока не готов.</p><p>Пожалуйста переработайте его и удалите строки '; initial_list' из его заголовка.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="7142" /> + <location filename="../Project/Project.py" line="7143" /> <source><p>The eric plugin archive file <b>{0}</b> could not be created.</p><p>Reason: {1}</p></source> <translation><p>Невозможно создать архив плагина <b>{0}</b> eric.</p><p>Причина: {1}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="7175" /> + <location filename="../Project/Project.py" line="7176" /> <source><p>The file <b>{0}</b> could not be stored in the archive. Ignoring it.</p><p>Reason: {1}</p></source> <translation><p>Невозможно сохранить файл <b>{0}</b> в архиве. Игнорируем его.</p><p>Причина: {1}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="7193" /> + <location filename="../Project/Project.py" line="7194" /> <source><p>The eric plugin archive files were created with some errors.</p></source> <translation><p>Файлы архива плагина eric были созданы с ошибками.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="7204" /> + <location filename="../Project/Project.py" line="7205" /> <source><p>The eric plugin archive files were created successfully.</p></source> <translation><p>Файлы архива плагина eric созданы успешно.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="7254" /> + <location filename="../Project/Project.py" line="7255" /> <source><p>The plugin file <b>{0}</b> could not be read.</p><p>Reason: {1}</p></source> <translation><p>Невозможно прочитать файл плагина <b>{0}</b>.</p><p>Причина: {1}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="7298" /> + <location filename="../Project/Project.py" line="7299" /> <source><p>The plugin file <b>{0}</b> could not be read.</p> <p>Reason: {1}</p></source> <translation><p>Невозможно прочитать файл плагина <b>{0}</b>.</p><p>Причина: {1}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="7390" /> + <location filename="../Project/Project.py" line="7391" /> <source>'Make' is not supported for remote projects. Aborting...</source> <translation>'Make' не поддерживает для удаленных проектов. Отмена...</translation> </message> <message> - <location filename="../Project/Project.py" line="7438" /> + <location filename="../Project/Project.py" line="7439" /> <source>The make process did not start.</source> <translation>Make-процесс не был запущен.</translation> </message> <message> - <location filename="../Project/Project.py" line="7484" /> + <location filename="../Project/Project.py" line="7485" /> <source>The make process crashed.</source> <translation>Make-процесс разрушен.</translation> </message> <message> - <location filename="../Project/Project.py" line="7492" /> + <location filename="../Project/Project.py" line="7493" /> <source><p>There are changes that require the configured make target <b>{0}</b> to be rebuilt.</p></source> <translation><p>Существуют изменения, которые требуют конфигурации make-цели <b>{0}</b> для ее пересборки.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="7497" /> + <location filename="../Project/Project.py" line="7498" /> <source><p>There are changes that require the default make target to be rebuilt.</p></source> <translation><p>Существуют изменения, которые требуют make-цель по умолчанию для ее пересборки.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="7513" /> + <location filename="../Project/Project.py" line="7514" /> <source>The makefile contains errors.</source> <translation>Makefile содержит ошибки.</translation> </message> <message> - <location filename="../Project/Project.py" line="7943" /> - <source>Interpreter Missing</source> - <translation>Отсутствует интерпретатор</translation> - </message> - <message> <location filename="../Project/Project.py" line="7944" /> + <source>Interpreter Missing</source> + <translation>Отсутствует интерпретатор</translation> + </message> + <message> + <location filename="../Project/Project.py" line="7945" /> <source>The configured interpreter of the embedded environment does not exist anymore. Shall the environment be upgraded?</source> <translation>Сконфигурированный интерпретатор встроенной среды окружения больше не существует. Следует ли обновить среду?</translation> </message> <message> - <location filename="../Project/Project.py" line="8017" /> + <location filename="../Project/Project.py" line="8018" /> <source>Open Remote Project</source> <translation>Открыть удаленный проект</translation> </message> <message> - <location filename="../Project/Project.py" line="8048" /> - <location filename="../Project/Project.py" line="8033" /> + <location filename="../Project/Project.py" line="8049" /> + <location filename="../Project/Project.py" line="8034" /> <source>Save Remote Project</source> <translation>Сохранить удаленный проект</translation> </message> @@ -75573,7 +75578,7 @@ <message> <location filename="../QScintilla/Shell.py" line="813" /> <source>Shall the current history really be cleared?</source> - <translation>Действительно очистить текущая историю?</translation> + <translation>Действительно очистить текущую историю?</translation> </message> <message> <location filename="../QScintilla/Shell.py" line="835" /> @@ -86787,15 +86792,15 @@ <context> <name>Tabview</name> <message> - <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="1132" /> - <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="1067" /> + <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="1134" /> + <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="1069" /> <source>Untitled {0}</source> <translation>Untitled {0}</translation> </message> <message> - <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="1532" /> - <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="1143" /> - <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="1088" /> + <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="1534" /> + <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="1145" /> + <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="1090" /> <source>{0} (ro)</source> <translation>{0} (только чтение)</translation> </message> @@ -91548,7 +91553,7 @@ <translation><b>Сохранить севнс...</b><p>Позволяет сохранить текущий сеанс на диск. Открывается диалог для выбора имени файла.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7844" /> + <location filename="../UI/UserInterface.py" line="7860" /> <location filename="../UI/UserInterface.py" line="1946" /> <location filename="../UI/UserInterface.py" line="1939" /> <source>Load session</source> @@ -92605,22 +92610,22 @@ <message> <location filename="../UI/UserInterface.py" line="3118" /> <source>FIDO2 Security Key Management</source> - <translation>Управление ключами безопасности FIDO 2</translation> + <translation>Управление ключами безопасности FIDO2</translation> </message> <message> <location filename="../UI/UserInterface.py" line="3120" /> <source>FIDO2 Security Key Management...</source> - <translation>Управление ключами безопасности FIDO 2...</translation> + <translation>Управление ключами безопасности FIDO2...</translation> </message> <message> <location filename="../UI/UserInterface.py" line="3127" /> <source>Start the FIDO2 Security Key Management tool</source> - <translation>Запустить инструмент управления ключами безопасности FIDO 2</translation> + <translation>Запустить инструмент управления ключами безопасности FIDO2</translation> </message> <message> <location filename="../UI/UserInterface.py" line="3130" /> <source><b>FIDO2 Security Key Management</b><p>Start a tool to manage FIDO2 securit y keys.</p></source> - <translation><b>Управление ключами безопасности FIDO 2</b><p>Запустите инструмент для управления ключами безопасности FIDO 2.</p></translation> + <translation><b>Управление ключами безопасности FIDO2</b><p>Запустите инструмент для управления ключами безопасности FIDO2.</p></translation> </message> <message> <location filename="../UI/UserInterface.py" line="3141" /> @@ -92643,7 +92648,7 @@ <translation><b>Редактор иконок</b><p>Запустить eric редактор иконок.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6593" /> + <location filename="../UI/UserInterface.py" line="6609" /> <location filename="../UI/UserInterface.py" line="3163" /> <source>Snapshot</source> <translation>Снимки</translation> @@ -92881,8 +92886,8 @@ <translation><b>Горячие клавиши</b><p>Определите горячие клавиши приложения согласно вашим предпочтениям.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7552" /> - <location filename="../UI/UserInterface.py" line="7533" /> + <location filename="../UI/UserInterface.py" line="7568" /> + <location filename="../UI/UserInterface.py" line="7549" /> <location filename="../UI/UserInterface.py" line="3393" /> <source>Export Keyboard Shortcuts</source> <translation>Экспорт горячих клавиш</translation> @@ -92904,7 +92909,7 @@ <p>Экспортировать горячие клавиши приложения.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7571" /> + <location filename="../UI/UserInterface.py" line="7587" /> <location filename="../UI/UserInterface.py" line="3412" /> <source>Import Keyboard Shortcuts</source> <translation>Импорт горячих клавиш</translation> @@ -93315,7 +93320,7 @@ <translation>Настройки</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6321" /> + <location filename="../UI/UserInterface.py" line="6337" /> <location filename="../UI/UserInterface.py" line="4185" /> <location filename="../UI/UserInterface.py" line="4170" /> <source>Help</source> @@ -93499,315 +93504,315 @@ <translation>Ск&рыть всё</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6458" /> - <location filename="../UI/UserInterface.py" line="6447" /> - <location filename="../UI/UserInterface.py" line="6399" /> - <location filename="../UI/UserInterface.py" line="6389" /> - <location filename="../UI/UserInterface.py" line="6210" /> - <location filename="../UI/UserInterface.py" line="6200" /> - <location filename="../UI/UserInterface.py" line="6142" /> - <location filename="../UI/UserInterface.py" line="6132" /> + <location filename="../UI/UserInterface.py" line="6474" /> + <location filename="../UI/UserInterface.py" line="6463" /> + <location filename="../UI/UserInterface.py" line="6415" /> + <location filename="../UI/UserInterface.py" line="6405" /> + <location filename="../UI/UserInterface.py" line="6228" /> + <location filename="../UI/UserInterface.py" line="6218" /> + <location filename="../UI/UserInterface.py" line="6160" /> + <location filename="../UI/UserInterface.py" line="6150" /> <source>Problem</source> <translation>Проблема</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6459" /> - <location filename="../UI/UserInterface.py" line="6448" /> - <location filename="../UI/UserInterface.py" line="6400" /> - <location filename="../UI/UserInterface.py" line="6390" /> - <location filename="../UI/UserInterface.py" line="6211" /> - <location filename="../UI/UserInterface.py" line="6201" /> - <location filename="../UI/UserInterface.py" line="6143" /> - <location filename="../UI/UserInterface.py" line="6133" /> + <location filename="../UI/UserInterface.py" line="6475" /> + <location filename="../UI/UserInterface.py" line="6464" /> + <location filename="../UI/UserInterface.py" line="6416" /> + <location filename="../UI/UserInterface.py" line="6406" /> + <location filename="../UI/UserInterface.py" line="6229" /> + <location filename="../UI/UserInterface.py" line="6219" /> + <location filename="../UI/UserInterface.py" line="6161" /> + <location filename="../UI/UserInterface.py" line="6151" /> <source><p>The file <b>{0}</b> does not exist or is zero length.</p></source> <translation><p>Файл <b>{0}</b> либо не существует, либо нулевой длины.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6702" /> - <location filename="../UI/UserInterface.py" line="6613" /> - <location filename="../UI/UserInterface.py" line="6494" /> - <location filename="../UI/UserInterface.py" line="6471" /> - <location filename="../UI/UserInterface.py" line="6412" /> - <location filename="../UI/UserInterface.py" line="6359" /> - <location filename="../UI/UserInterface.py" line="6337" /> - <location filename="../UI/UserInterface.py" line="6286" /> - <location filename="../UI/UserInterface.py" line="6277" /> - <location filename="../UI/UserInterface.py" line="6242" /> - <location filename="../UI/UserInterface.py" line="6233" /> - <location filename="../UI/UserInterface.py" line="6174" /> - <location filename="../UI/UserInterface.py" line="6165" /> + <location filename="../UI/UserInterface.py" line="6718" /> + <location filename="../UI/UserInterface.py" line="6629" /> + <location filename="../UI/UserInterface.py" line="6510" /> + <location filename="../UI/UserInterface.py" line="6487" /> + <location filename="../UI/UserInterface.py" line="6428" /> + <location filename="../UI/UserInterface.py" line="6375" /> + <location filename="../UI/UserInterface.py" line="6353" /> + <location filename="../UI/UserInterface.py" line="6304" /> + <location filename="../UI/UserInterface.py" line="6295" /> + <location filename="../UI/UserInterface.py" line="6260" /> + <location filename="../UI/UserInterface.py" line="6251" /> + <location filename="../UI/UserInterface.py" line="6192" /> + <location filename="../UI/UserInterface.py" line="6183" /> <source>Process Generation Error</source> <translation>Ошибка при запуске процесса</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6166" /> + <location filename="../UI/UserInterface.py" line="6184" /> <source><p>Could not start Qt-Designer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>Невозможно запустить Qt-Designer.<br>Убедитесь, что он доступен в <b>{0}</b>.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6175" /> + <location filename="../UI/UserInterface.py" line="6193" /> <source><p>Could not find the Qt-Designer executable.<br>Ensure that it is installed and optionally configured on the Qt configuration page.</p></source> <translation><p>Не удается найти исполняемый файл Qt-Designer.<br>На странице настройки Qt убедитесь, что он установлен и дополнительно настроен.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6234" /> + <location filename="../UI/UserInterface.py" line="6252" /> <source><p>Could not start Qt-Linguist.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>Невозможно запустить Qt-Linguist.<br>Убедитесь, что он доступен в <b>{0}</b>.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6243" /> + <location filename="../UI/UserInterface.py" line="6261" /> <source><p>Could not find the Qt-Linguist executable.<br>Ensure that it is installed and optionally configured on the Qt configuration page.</p></source> <translation><p>Не удается найти исполняемый файл Qt-Linguist.<br>На странице настройки Qt убедитесь, что он установлен и дополнительно настроен.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6278" /> + <location filename="../UI/UserInterface.py" line="6296" /> <source><p>Could not start Qt-Assistant.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>Невозможно запустить Qt-Assistant.<br>Убедитесь, что он доступен в <b>{0}</b>.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6287" /> + <location filename="../UI/UserInterface.py" line="6305" /> <source><p>Could not find the Qt-Assistant executable.<br>Ensure that it is installed and optionally configured on the Qt configuration page.</p></source> <translation><p>Не удается найти исполняемый файл Qt-Assistant.<br>На странице настройки Qt убедитесь, что он установлен и дополнительно настроен.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6322" /> - <source>Currently no custom viewer is selected. Please use the preferences dialog to specify one.</source> - <translation>В настоящее время просмотрщик пользователя не выбран. Используйте диалог предпочтений для его выбора.</translation> - </message> - <message> <location filename="../UI/UserInterface.py" line="6338" /> + <source>Currently no custom viewer is selected. Please use the preferences dialog to specify one.</source> + <translation>В настоящее время просмотрщик пользователя не выбран. Используйте диалог предпочтений для его выбора.</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="6354" /> <source><p>Could not start custom viewer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>Невозможно запустить пользовательский просмотрщик.<br>Убедитесь, что он находится в <b>{0}</b>.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6360" /> + <location filename="../UI/UserInterface.py" line="6376" /> <source><p>Could not start the help viewer.<br>Ensure that it is available as <b>hh</b>.</p></source> <translation><p>Невозможно запустить просмотрщик справки.<br>Убедитесь, что он доступен под именем <b>hh</b>.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6413" /> + <location filename="../UI/UserInterface.py" line="6429" /> <source><p>Could not start UI Previewer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>Невозможно запустить UI Previewer (предпросмотр интерфейсов).<br>Убедитесь, что он находится в <b>{0}</b>.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6472" /> + <location filename="../UI/UserInterface.py" line="6488" /> <source><p>Could not start Translation Previewer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>Невозможно запустить Translation Previewer (предпросмотр переводов).<br>Убедитесь, что он находится в <b>{0}</b>.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6495" /> + <location filename="../UI/UserInterface.py" line="6511" /> <source><p>Could not start SQL Browser.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>Невозможно запустить SQL браузер.<br>Убедитесь, что он доступен как <b>{0}</b>.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6594" /> + <location filename="../UI/UserInterface.py" line="6610" /> <source><p>The snapshot utility is not available for Wayland desktop sessions.</p></source> <translation><p>Утилита моментального снимка недоступна для сеансов Wayland desktop.< / p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6614" /> + <location filename="../UI/UserInterface.py" line="6630" /> <source><p>Could not start Snapshot tool.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>Невозможно запустить программу для создания снимка экрана.<br>Убедитесь что она установлена как <b>{0}</b>.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6647" /> - <location filename="../UI/UserInterface.py" line="6637" /> + <location filename="../UI/UserInterface.py" line="6663" /> + <location filename="../UI/UserInterface.py" line="6653" /> <source>External Tools</source> <translation>Внешние инструменты</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6638" /> + <location filename="../UI/UserInterface.py" line="6654" /> <source>No tool entry found for external tool '{0}' in tool group '{1}'.</source> <translation>Запись для внешнего инструмента '{0}' не найдена в группе инструментов '{1}'.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6648" /> + <location filename="../UI/UserInterface.py" line="6664" /> <source>No toolgroup entry '{0}' found.</source> <translation>Запись для группы инструментов '{0}' не найдена.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6685" /> + <location filename="../UI/UserInterface.py" line="6701" /> <source>Starting process '{0} {1}'. </source> <translation>Запускается процесс '{0} {1}'. </translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6703" /> + <location filename="../UI/UserInterface.py" line="6719" /> <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>Невозможно запустить инструмент <b>{0}</b>.<br>Убедитесь, что он доступен в <b>{1}</b>.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6782" /> + <location filename="../UI/UserInterface.py" line="6798" /> <source>Process '{0}' has exited. </source> <translation>Процесс '{0}' завершен. </translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7069" /> - <location filename="../UI/UserInterface.py" line="7007" /> - <location filename="../UI/UserInterface.py" line="6963" /> - <location filename="../UI/UserInterface.py" line="6889" /> - <location filename="../UI/UserInterface.py" line="6825" /> + <location filename="../UI/UserInterface.py" line="7085" /> + <location filename="../UI/UserInterface.py" line="7023" /> + <location filename="../UI/UserInterface.py" line="6979" /> + <location filename="../UI/UserInterface.py" line="6905" /> + <location filename="../UI/UserInterface.py" line="6841" /> <source>Documentation Missing</source> <translation>Документация отсутствует</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7070" /> - <location filename="../UI/UserInterface.py" line="7008" /> - <location filename="../UI/UserInterface.py" line="6964" /> - <location filename="../UI/UserInterface.py" line="6890" /> - <location filename="../UI/UserInterface.py" line="6826" /> + <location filename="../UI/UserInterface.py" line="7086" /> + <location filename="../UI/UserInterface.py" line="7024" /> + <location filename="../UI/UserInterface.py" line="6980" /> + <location filename="../UI/UserInterface.py" line="6906" /> + <location filename="../UI/UserInterface.py" line="6842" /> <source><p>The documentation starting point "<b>{0}</b>" could not be found.</p></source> <translation><p>Стартовая директория документации "<b>{0}</b>" не найдена.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7051" /> - <location filename="../UI/UserInterface.py" line="6933" /> + <location filename="../UI/UserInterface.py" line="7067" /> + <location filename="../UI/UserInterface.py" line="6949" /> <source>Documentation</source> <translation>Документация</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6934" /> + <location filename="../UI/UserInterface.py" line="6950" /> <source><p>The PyQt{0} documentation starting point has not been configured.</p></source> <translation><p>Стартовая директория документации PyQt{0} не настроена.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7052" /> + <location filename="../UI/UserInterface.py" line="7068" /> <source><p>The PySide{0} documentation starting point has not been configured.</p></source> <translation><p>Просмотр документации PySide{0} не настроен.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7231" /> - <location filename="../UI/UserInterface.py" line="7167" /> + <location filename="../UI/UserInterface.py" line="7247" /> + <location filename="../UI/UserInterface.py" line="7183" /> <source>Start Web Browser</source> <translation>Запуск web-браузера</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7168" /> + <location filename="../UI/UserInterface.py" line="7184" /> <source>The eric web browser could not be started.</source> <translation>Невозможно запустить eric web-браузер.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7232" /> + <location filename="../UI/UserInterface.py" line="7248" /> <source><p>The eric web browser is not started.</p><p>Reason: {0}</p></source> <translation><p>Eric web-браузер не запущен.</p><p>Причина: {0}</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7278" /> + <location filename="../UI/UserInterface.py" line="7294" /> <source>Open Browser</source> <translation>Открыть браузер</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7278" /> + <location filename="../UI/UserInterface.py" line="7294" /> <source>Could not start a web browser</source> <translation>Невозможно запустить web-браузер</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7573" /> - <location filename="../UI/UserInterface.py" line="7535" /> + <location filename="../UI/UserInterface.py" line="7589" /> + <location filename="../UI/UserInterface.py" line="7551" /> <source>Keyboard Shortcuts File (*.ekj)</source> <translation>Файл горячих клавиш (*.ekj)</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7553" /> + <location filename="../UI/UserInterface.py" line="7569" /> <source><p>The keyboard shortcuts file <b>{0}</b> exists already. Overwrite it?</p></source> <translation><p>Файл горячих клавиш <b>{0}</b> уже существует. Переписать?</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7757" /> + <location filename="../UI/UserInterface.py" line="7773" /> <source>Load crash session...</source> <translation>Загрузить crash-сеанс...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7760" /> + <location filename="../UI/UserInterface.py" line="7776" /> <source>Clean crash sessions...</source> <translation>Очистить crash-сеансы...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7797" /> + <location filename="../UI/UserInterface.py" line="7813" /> <source>Read Session</source> <translation>Загрузить сеанс</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7798" /> + <location filename="../UI/UserInterface.py" line="7814" /> <source><p>The session file <b>{0}</b> could not be read.</p></source> <translation><p>Невозможно прочитать файл сеанса <b>{0}</b>.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7821" /> + <location filename="../UI/UserInterface.py" line="7837" /> <source>Save Session</source> <translation>Сохранить сеанс</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7846" /> - <location filename="../UI/UserInterface.py" line="7823" /> + <location filename="../UI/UserInterface.py" line="7862" /> + <location filename="../UI/UserInterface.py" line="7839" /> <source>eric Session Files (*.esj)</source> <translation>Файлы сеансов eric (*.esj)</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7913" /> + <location filename="../UI/UserInterface.py" line="7929" /> <source>Found Crash Sessions</source> <translation>Найдены crash-сеансы</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7914" /> + <location filename="../UI/UserInterface.py" line="7930" /> <source>These crash session files were found. Select the one to open. Select 'Cancel' to not open a crash session.</source> <translation>Были найдены следующие файлы crash-сеансов. Выберите один из них для открытия. Выберите 'Отмена', чтобы не открывать crash-сеанс.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7987" /> + <location filename="../UI/UserInterface.py" line="8003" /> <source>Clean stale crash sessions</source> <translation>Очистите устаревшие crash-сеансы</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7988" /> + <location filename="../UI/UserInterface.py" line="8004" /> <source>Do you really want to delete these stale crash session files?</source> <translation>Вы действительно хотите удалить эти устаревшие файлы crash-сеансов?</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="8364" /> + <location filename="../UI/UserInterface.py" line="8380" /> <source>Drop Error</source> <translation>Ошибка Drag&&Drop</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="8365" /> + <location filename="../UI/UserInterface.py" line="8381" /> <source><p><b>{0}</b> is not a file.</p></source> <translation><p><b>{0}</b> не является файлом</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="8551" /> + <location filename="../UI/UserInterface.py" line="8567" /> <source>Upgrade available</source> <translation>Доступно обновление</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="8552" /> + <location filename="../UI/UserInterface.py" line="8568" /> <source><p>A newer version of the <b>eric-ide</b> package is available at <a href="{0}/eric-ide/">PyPI</a>.</p><p>Installed: {1}<br/>Available: <b>{2}</b></p><p>Shall <b>eric-ide</b> be upgraded?</p></source> <translation><p>Новая версия пакета <b>eric-ide</b> доступна по адресу <a href="{0}/eric-ide/">PyPI</a>.</p><p> Установлено: {1}<br/>Доступно: <b>{2}</b></p><p>Должен ли <b>eric-ide</b> быть обновлен?</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="8597" /> + <location filename="../UI/UserInterface.py" line="8613" /> <source>First time usage</source> <translation>Первое использование</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="8598" /> + <location filename="../UI/UserInterface.py" line="8614" /> <source>eric has not been configured yet. The configuration dialog will be started.</source> <translation>Настройка eric ещё не выполнена. Сейчас будет запущен диалог конфигурации.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="8620" /> + <location filename="../UI/UserInterface.py" line="8636" /> <source>Select Workspace Directory</source> <translation>Выбор директории рабочей области</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="8788" /> + <location filename="../UI/UserInterface.py" line="8804" /> <source>Unsaved Data Detected</source> <translation>Обнаружены несохраненные данные</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="8789" /> + <location filename="../UI/UserInterface.py" line="8805" /> <source>Some editors contain unsaved data. Shall these be saved?</source> <translation>Некоторые редакторы содержат несохраненные данные. Должны ли они быть сохранены?</translation> </message> @@ -94735,7 +94740,7 @@ <message> <location filename="../VCS/ProjectBrowserHelper.py" line="329" /> <source>Do you really want to remove these files/directories from the repository (and disk)?</source> - <translation>Вы действительно хотите удалить эти файлы/директории и из репозитория (и диска)?</translation> + <translation>Вы действительно хотите удалить эти файлы/директории из репозитория (и диска)?</translation> </message> </context> <context> @@ -94887,7 +94892,7 @@ <message> <location filename="../VCS/ProjectHelper.py" line="575" /> <source>Dou you really want to remove this project from the repository (and disk)?</source> - <translation>Вы действительно хотите удалить этот проект и из репозитория (и с диска)?</translation> + <translation>Вы действительно хотите удалить этот проект из репозитория (и с диска)?</translation> </message> <message> <location filename="../VCS/ProjectHelper.py" line="668" /> @@ -95306,7 +95311,7 @@ <p>Распечатать содержимое текущего окна редактора.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="775" /> + <location filename="../QScintilla/MiniEditor.py" line="776" /> <location filename="../ViewManager/ViewManager.py" line="913" /> <location filename="../ViewManager/ViewManager.py" line="911" /> <source>Print Preview</source> @@ -96093,8 +96098,8 @@ <translation><b>Генерировать строки документации</b><p>Генерировать строки документации для текущих function/method если курсор расположен в строке определения функции или в последующей строке. Строки документации вставляются в соответствующую позицию, а курсор помещается в конец строки описания.</p></translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="926" /> <location filename="../QScintilla/MiniEditor.py" line="925" /> - <location filename="../QScintilla/MiniEditor.py" line="924" /> <location filename="../QScintilla/ShellWindow.py" line="575" /> <location filename="../QScintilla/ShellWindow.py" line="574" /> <location filename="../ViewManager/ViewManager.py" line="1858" /> @@ -96103,22 +96108,22 @@ <translation>Перейти влево на один символ</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="926" /> + <location filename="../QScintilla/MiniEditor.py" line="927" /> <location filename="../QScintilla/ShellWindow.py" line="576" /> <location filename="../ViewManager/ViewManager.py" line="1859" /> <source>Left</source> <translation>Left</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="934" /> + <location filename="../QScintilla/MiniEditor.py" line="935" /> <location filename="../QScintilla/ShellWindow.py" line="584" /> <location filename="../ViewManager/ViewManager.py" line="1867" /> <source>Meta+B</source> <translation>Meta+B</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="942" /> <location filename="../QScintilla/MiniEditor.py" line="941" /> - <location filename="../QScintilla/MiniEditor.py" line="940" /> <location filename="../QScintilla/ShellWindow.py" line="591" /> <location filename="../QScintilla/ShellWindow.py" line="590" /> <location filename="../ViewManager/ViewManager.py" line="1874" /> @@ -96127,22 +96132,22 @@ <translation>Перейти вправо на один символ</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="942" /> + <location filename="../QScintilla/MiniEditor.py" line="943" /> <location filename="../QScintilla/ShellWindow.py" line="592" /> <location filename="../ViewManager/ViewManager.py" line="1875" /> <source>Right</source> <translation>Right</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="949" /> + <location filename="../QScintilla/MiniEditor.py" line="950" /> <location filename="../QScintilla/ShellWindow.py" line="599" /> <location filename="../ViewManager/ViewManager.py" line="1882" /> <source>Meta+F</source> <translation>Meta+F</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="958" /> <location filename="../QScintilla/MiniEditor.py" line="957" /> - <location filename="../QScintilla/MiniEditor.py" line="956" /> <location filename="../QScintilla/ShellWindow.py" line="683" /> <location filename="../QScintilla/ShellWindow.py" line="682" /> <location filename="../ViewManager/ViewManager.py" line="1890" /> @@ -96151,22 +96156,22 @@ <translation>Перейти на одну строку вверх</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="958" /> + <location filename="../QScintilla/MiniEditor.py" line="959" /> <location filename="../QScintilla/ShellWindow.py" line="684" /> <location filename="../ViewManager/ViewManager.py" line="1891" /> <source>Up</source> <translation>Up</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="965" /> + <location filename="../QScintilla/MiniEditor.py" line="966" /> <location filename="../QScintilla/ShellWindow.py" line="691" /> <location filename="../ViewManager/ViewManager.py" line="1898" /> <source>Meta+P</source> <translation>Meta+P</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="974" /> <location filename="../QScintilla/MiniEditor.py" line="973" /> - <location filename="../QScintilla/MiniEditor.py" line="972" /> <location filename="../QScintilla/ShellWindow.py" line="699" /> <location filename="../QScintilla/ShellWindow.py" line="698" /> <location filename="../ViewManager/ViewManager.py" line="1906" /> @@ -96175,30 +96180,30 @@ <translation>Перейти на одну строку вниз</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="974" /> + <location filename="../QScintilla/MiniEditor.py" line="975" /> <location filename="../QScintilla/ShellWindow.py" line="700" /> <location filename="../ViewManager/ViewManager.py" line="1907" /> <source>Down</source> <translation>Down</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="981" /> + <location filename="../QScintilla/MiniEditor.py" line="982" /> <location filename="../QScintilla/ShellWindow.py" line="707" /> <location filename="../ViewManager/ViewManager.py" line="1914" /> <source>Meta+N</source> <translation>Meta+N</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="990" /> <location filename="../QScintilla/MiniEditor.py" line="989" /> - <location filename="../QScintilla/MiniEditor.py" line="988" /> <location filename="../ViewManager/ViewManager.py" line="1922" /> <location filename="../ViewManager/ViewManager.py" line="1921" /> <source>Move left one word part</source> <translation>Перейти влево на одну часть слова</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1029" /> - <location filename="../QScintilla/MiniEditor.py" line="997" /> + <location filename="../QScintilla/MiniEditor.py" line="1030" /> + <location filename="../QScintilla/MiniEditor.py" line="998" /> <location filename="../QScintilla/ShellWindow.py" line="615" /> <location filename="../ViewManager/ViewManager.py" line="1962" /> <location filename="../ViewManager/ViewManager.py" line="1930" /> @@ -96206,25 +96211,25 @@ <translation>Alt+Left</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1006" /> <location filename="../QScintilla/MiniEditor.py" line="1005" /> - <location filename="../QScintilla/MiniEditor.py" line="1004" /> <location filename="../ViewManager/ViewManager.py" line="1938" /> <location filename="../ViewManager/ViewManager.py" line="1937" /> <source>Move right one word part</source> <translation>Перейти вправо на одну часть слова</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2159" /> - <location filename="../QScintilla/MiniEditor.py" line="1049" /> - <location filename="../QScintilla/MiniEditor.py" line="1013" /> + <location filename="../QScintilla/MiniEditor.py" line="2160" /> + <location filename="../QScintilla/MiniEditor.py" line="1050" /> + <location filename="../QScintilla/MiniEditor.py" line="1014" /> <location filename="../ViewManager/ViewManager.py" line="3071" /> <location filename="../ViewManager/ViewManager.py" line="1946" /> <source>Alt+Right</source> <translation>Alt+Right</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1022" /> <location filename="../QScintilla/MiniEditor.py" line="1021" /> - <location filename="../QScintilla/MiniEditor.py" line="1020" /> <location filename="../QScintilla/ShellWindow.py" line="607" /> <location filename="../QScintilla/ShellWindow.py" line="606" /> <location filename="../ViewManager/ViewManager.py" line="1954" /> @@ -96233,8 +96238,8 @@ <translation>Перейти влево на одно слово</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1089" /> - <location filename="../QScintilla/MiniEditor.py" line="1033" /> + <location filename="../QScintilla/MiniEditor.py" line="1090" /> + <location filename="../QScintilla/MiniEditor.py" line="1034" /> <location filename="../QScintilla/ShellWindow.py" line="619" /> <location filename="../ViewManager/ViewManager.py" line="2018" /> <location filename="../ViewManager/ViewManager.py" line="1966" /> @@ -96242,8 +96247,8 @@ <translation>Ctrl+Left</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1042" /> <location filename="../QScintilla/MiniEditor.py" line="1041" /> - <location filename="../QScintilla/MiniEditor.py" line="1040" /> <location filename="../QScintilla/ShellWindow.py" line="627" /> <location filename="../QScintilla/ShellWindow.py" line="626" /> <location filename="../ViewManager/ViewManager.py" line="1974" /> @@ -96252,8 +96257,8 @@ <translation>Перейти вправо на одно слово</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1843" /> - <location filename="../QScintilla/MiniEditor.py" line="1053" /> + <location filename="../QScintilla/MiniEditor.py" line="1844" /> + <location filename="../QScintilla/MiniEditor.py" line="1054" /> <location filename="../QScintilla/ShellWindow.py" line="635" /> <location filename="../ViewManager/ViewManager.py" line="2755" /> <location filename="../ViewManager/ViewManager.py" line="1982" /> @@ -96261,8 +96266,8 @@ <translation>Ctrl+Right</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1063" /> - <location filename="../QScintilla/MiniEditor.py" line="1060" /> + <location filename="../QScintilla/MiniEditor.py" line="1064" /> + <location filename="../QScintilla/MiniEditor.py" line="1061" /> <location filename="../QScintilla/ShellWindow.py" line="645" /> <location filename="../QScintilla/ShellWindow.py" line="642" /> <location filename="../ViewManager/ViewManager.py" line="1992" /> @@ -96271,8 +96276,8 @@ <translation>Перейти к первому видимому символу в строке документа</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2104" /> - <location filename="../QScintilla/MiniEditor.py" line="1073" /> + <location filename="../QScintilla/MiniEditor.py" line="2105" /> + <location filename="../QScintilla/MiniEditor.py" line="1074" /> <location filename="../QScintilla/ShellWindow.py" line="655" /> <location filename="../ViewManager/ViewManager.py" line="3016" /> <location filename="../ViewManager/ViewManager.py" line="2002" /> @@ -96280,22 +96285,22 @@ <translation>Home</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1082" /> <location filename="../QScintilla/MiniEditor.py" line="1081" /> - <location filename="../QScintilla/MiniEditor.py" line="1080" /> <location filename="../ViewManager/ViewManager.py" line="2010" /> <location filename="../ViewManager/ViewManager.py" line="2009" /> <source>Move to start of display line</source> <translation>Перейти на начало строки экрана</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1093" /> + <location filename="../QScintilla/MiniEditor.py" line="1094" /> <location filename="../ViewManager/ViewManager.py" line="2022" /> <source>Alt+Home</source> <translation>Alt+Home</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1102" /> <location filename="../QScintilla/MiniEditor.py" line="1101" /> - <location filename="../QScintilla/MiniEditor.py" line="1100" /> <location filename="../QScintilla/ShellWindow.py" line="663" /> <location filename="../QScintilla/ShellWindow.py" line="662" /> <location filename="../ViewManager/ViewManager.py" line="2030" /> @@ -96304,15 +96309,15 @@ <translation>Перейти на конец строки документа</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1109" /> + <location filename="../QScintilla/MiniEditor.py" line="1110" /> <location filename="../QScintilla/ShellWindow.py" line="671" /> <location filename="../ViewManager/ViewManager.py" line="2038" /> <source>Meta+E</source> <translation>Meta+E</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2121" /> - <location filename="../QScintilla/MiniEditor.py" line="1113" /> + <location filename="../QScintilla/MiniEditor.py" line="2122" /> + <location filename="../QScintilla/MiniEditor.py" line="1114" /> <location filename="../QScintilla/ShellWindow.py" line="675" /> <location filename="../ViewManager/ViewManager.py" line="3033" /> <location filename="../ViewManager/ViewManager.py" line="2042" /> @@ -96320,16 +96325,16 @@ <translation>End</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1122" /> <location filename="../QScintilla/MiniEditor.py" line="1121" /> - <location filename="../QScintilla/MiniEditor.py" line="1120" /> <location filename="../ViewManager/ViewManager.py" line="2050" /> <location filename="../ViewManager/ViewManager.py" line="2049" /> <source>Scroll view down one line</source> <translation>Прокрутить на одну строку вниз</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1225" /> - <location filename="../QScintilla/MiniEditor.py" line="1122" /> + <location filename="../QScintilla/MiniEditor.py" line="1226" /> + <location filename="../QScintilla/MiniEditor.py" line="1123" /> <location filename="../QScintilla/ShellWindow.py" line="716" /> <location filename="../ViewManager/ViewManager.py" line="2154" /> <location filename="../ViewManager/ViewManager.py" line="2051" /> @@ -96337,16 +96342,16 @@ <translation>Ctrl+Down</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1134" /> <location filename="../QScintilla/MiniEditor.py" line="1133" /> - <location filename="../QScintilla/MiniEditor.py" line="1132" /> <location filename="../ViewManager/ViewManager.py" line="2062" /> <location filename="../ViewManager/ViewManager.py" line="2061" /> <source>Scroll view up one line</source> <translation>Прокрутить на одну строку вверх</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1205" /> - <location filename="../QScintilla/MiniEditor.py" line="1134" /> + <location filename="../QScintilla/MiniEditor.py" line="1206" /> + <location filename="../QScintilla/MiniEditor.py" line="1135" /> <location filename="../QScintilla/ShellWindow.py" line="728" /> <location filename="../ViewManager/ViewManager.py" line="2134" /> <location filename="../ViewManager/ViewManager.py" line="2063" /> @@ -96354,36 +96359,36 @@ <translation>Ctrl+Up</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1146" /> <location filename="../QScintilla/MiniEditor.py" line="1145" /> - <location filename="../QScintilla/MiniEditor.py" line="1144" /> <location filename="../ViewManager/ViewManager.py" line="2074" /> <location filename="../ViewManager/ViewManager.py" line="2073" /> <source>Move up one paragraph</source> <translation>Перейти на один параграф вверх</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1146" /> + <location filename="../QScintilla/MiniEditor.py" line="1147" /> <location filename="../ViewManager/ViewManager.py" line="2075" /> <source>Alt+Up</source> <translation>Alt+Up</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1158" /> <location filename="../QScintilla/MiniEditor.py" line="1157" /> - <location filename="../QScintilla/MiniEditor.py" line="1156" /> <location filename="../ViewManager/ViewManager.py" line="2086" /> <location filename="../ViewManager/ViewManager.py" line="2085" /> <source>Move down one paragraph</source> <translation>Перейти на один параграф вниз</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1158" /> + <location filename="../QScintilla/MiniEditor.py" line="1159" /> <location filename="../ViewManager/ViewManager.py" line="2087" /> <source>Alt+Down</source> <translation>Alt+Down</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1170" /> <location filename="../QScintilla/MiniEditor.py" line="1169" /> - <location filename="../QScintilla/MiniEditor.py" line="1168" /> <location filename="../QScintilla/ShellWindow.py" line="739" /> <location filename="../QScintilla/ShellWindow.py" line="738" /> <location filename="../ViewManager/ViewManager.py" line="2098" /> @@ -96392,15 +96397,15 @@ <translation>Перейти на одну страницу вверх</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1170" /> + <location filename="../QScintilla/MiniEditor.py" line="1171" /> <location filename="../QScintilla/ShellWindow.py" line="740" /> <location filename="../ViewManager/ViewManager.py" line="2099" /> <source>PgUp</source> <translation>PgUp</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1182" /> <location filename="../QScintilla/MiniEditor.py" line="1181" /> - <location filename="../QScintilla/MiniEditor.py" line="1180" /> <location filename="../QScintilla/ShellWindow.py" line="751" /> <location filename="../QScintilla/ShellWindow.py" line="750" /> <location filename="../ViewManager/ViewManager.py" line="2110" /> @@ -96409,50 +96414,50 @@ <translation>Перейти на одну страницу вниз</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1182" /> + <location filename="../QScintilla/MiniEditor.py" line="1183" /> <location filename="../QScintilla/ShellWindow.py" line="752" /> <location filename="../ViewManager/ViewManager.py" line="2111" /> <source>PgDown</source> <translation>PgDown</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1189" /> + <location filename="../QScintilla/MiniEditor.py" line="1190" /> <location filename="../QScintilla/ShellWindow.py" line="759" /> <location filename="../ViewManager/ViewManager.py" line="2118" /> <source>Meta+V</source> <translation>Meta+V</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1198" /> <location filename="../QScintilla/MiniEditor.py" line="1197" /> - <location filename="../QScintilla/MiniEditor.py" line="1196" /> <location filename="../ViewManager/ViewManager.py" line="2126" /> <location filename="../ViewManager/ViewManager.py" line="2125" /> <source>Move to start of document</source> <translation>Перейти на начало документа</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1209" /> + <location filename="../QScintilla/MiniEditor.py" line="1210" /> <location filename="../ViewManager/ViewManager.py" line="2138" /> <source>Ctrl+Home</source> <translation>Ctrl+Home</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1218" /> <location filename="../QScintilla/MiniEditor.py" line="1217" /> - <location filename="../QScintilla/MiniEditor.py" line="1216" /> <location filename="../ViewManager/ViewManager.py" line="2146" /> <location filename="../ViewManager/ViewManager.py" line="2145" /> <source>Move to end of document</source> <translation>Перейти на конец документа</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1229" /> + <location filename="../QScintilla/MiniEditor.py" line="1230" /> <location filename="../ViewManager/ViewManager.py" line="2158" /> <source>Ctrl+End</source> <translation>Ctrl+End</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1238" /> <location filename="../QScintilla/MiniEditor.py" line="1237" /> - <location filename="../QScintilla/MiniEditor.py" line="1236" /> <location filename="../QScintilla/ShellWindow.py" line="453" /> <location filename="../QScintilla/ShellWindow.py" line="452" /> <location filename="../ViewManager/ViewManager.py" line="2166" /> @@ -96461,29 +96466,29 @@ <translation>Увеличить отступ</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1238" /> + <location filename="../QScintilla/MiniEditor.py" line="1239" /> <location filename="../QScintilla/ShellWindow.py" line="454" /> <location filename="../ViewManager/ViewManager.py" line="2167" /> <source>Tab</source> <translation>Tab</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1250" /> <location filename="../QScintilla/MiniEditor.py" line="1249" /> - <location filename="../QScintilla/MiniEditor.py" line="1248" /> <location filename="../ViewManager/ViewManager.py" line="2178" /> <location filename="../ViewManager/ViewManager.py" line="2177" /> <source>Unindent one level</source> <translation>Уменьшить отступ</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1250" /> + <location filename="../QScintilla/MiniEditor.py" line="1251" /> <location filename="../ViewManager/ViewManager.py" line="2179" /> <source>Shift+Tab</source> <translation>Shift+Tab</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1263" /> - <location filename="../QScintilla/MiniEditor.py" line="1260" /> + <location filename="../QScintilla/MiniEditor.py" line="1264" /> + <location filename="../QScintilla/MiniEditor.py" line="1261" /> <location filename="../QScintilla/ShellWindow.py" line="781" /> <location filename="../QScintilla/ShellWindow.py" line="778" /> <location filename="../ViewManager/ViewManager.py" line="2192" /> @@ -96492,22 +96497,22 @@ <translation>Распространить выделение на один символ влево</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1266" /> + <location filename="../QScintilla/MiniEditor.py" line="1267" /> <location filename="../QScintilla/ShellWindow.py" line="784" /> <location filename="../ViewManager/ViewManager.py" line="2195" /> <source>Shift+Left</source> <translation>Shift+Left</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1273" /> + <location filename="../QScintilla/MiniEditor.py" line="1274" /> <location filename="../QScintilla/ShellWindow.py" line="791" /> <location filename="../ViewManager/ViewManager.py" line="2202" /> <source>Meta+Shift+B</source> <translation>Meta+Shift+B</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1283" /> - <location filename="../QScintilla/MiniEditor.py" line="1280" /> + <location filename="../QScintilla/MiniEditor.py" line="1284" /> + <location filename="../QScintilla/MiniEditor.py" line="1281" /> <location filename="../QScintilla/ShellWindow.py" line="801" /> <location filename="../QScintilla/ShellWindow.py" line="798" /> <location filename="../ViewManager/ViewManager.py" line="2212" /> @@ -96516,70 +96521,70 @@ <translation>Распространить выделение на один символ вправо</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1286" /> + <location filename="../QScintilla/MiniEditor.py" line="1287" /> <location filename="../QScintilla/ShellWindow.py" line="804" /> <location filename="../ViewManager/ViewManager.py" line="2215" /> <source>Shift+Right</source> <translation>Shift+Right</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1293" /> + <location filename="../QScintilla/MiniEditor.py" line="1294" /> <location filename="../QScintilla/ShellWindow.py" line="811" /> <location filename="../ViewManager/ViewManager.py" line="2222" /> <source>Meta+Shift+F</source> <translation>Meta+Shift+F</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1302" /> <location filename="../QScintilla/MiniEditor.py" line="1301" /> - <location filename="../QScintilla/MiniEditor.py" line="1300" /> <location filename="../ViewManager/ViewManager.py" line="2230" /> <location filename="../ViewManager/ViewManager.py" line="2229" /> <source>Extend selection up one line</source> <translation>Распространить выделение на одну строку вверх</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1302" /> + <location filename="../QScintilla/MiniEditor.py" line="1303" /> <location filename="../ViewManager/ViewManager.py" line="2231" /> <source>Shift+Up</source> <translation>Shift+Up</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1309" /> + <location filename="../QScintilla/MiniEditor.py" line="1310" /> <location filename="../ViewManager/ViewManager.py" line="2238" /> <source>Meta+Shift+P</source> <translation>Meta+Shift+P</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1318" /> <location filename="../QScintilla/MiniEditor.py" line="1317" /> - <location filename="../QScintilla/MiniEditor.py" line="1316" /> <location filename="../ViewManager/ViewManager.py" line="2246" /> <location filename="../ViewManager/ViewManager.py" line="2245" /> <source>Extend selection down one line</source> <translation>Распространить выделение на одну строку вниз</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1318" /> + <location filename="../QScintilla/MiniEditor.py" line="1319" /> <location filename="../ViewManager/ViewManager.py" line="2247" /> <source>Shift+Down</source> <translation>Shift+Down</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1325" /> + <location filename="../QScintilla/MiniEditor.py" line="1326" /> <location filename="../ViewManager/ViewManager.py" line="2254" /> <source>Meta+Shift+N</source> <translation>Meta+Shift+N</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1335" /> - <location filename="../QScintilla/MiniEditor.py" line="1332" /> + <location filename="../QScintilla/MiniEditor.py" line="1336" /> + <location filename="../QScintilla/MiniEditor.py" line="1333" /> <location filename="../ViewManager/ViewManager.py" line="2264" /> <location filename="../ViewManager/ViewManager.py" line="2261" /> <source>Extend selection left one word part</source> <translation>Распространить выделение на одну часть слова влево</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1386" /> - <location filename="../QScintilla/MiniEditor.py" line="1346" /> + <location filename="../QScintilla/MiniEditor.py" line="1387" /> + <location filename="../QScintilla/MiniEditor.py" line="1347" /> <location filename="../QScintilla/ShellWindow.py" line="828" /> <location filename="../ViewManager/ViewManager.py" line="2315" /> <location filename="../ViewManager/ViewManager.py" line="2275" /> @@ -96587,17 +96592,17 @@ <translation>Alt+Shift+Left</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1357" /> - <location filename="../QScintilla/MiniEditor.py" line="1354" /> + <location filename="../QScintilla/MiniEditor.py" line="1358" /> + <location filename="../QScintilla/MiniEditor.py" line="1355" /> <location filename="../ViewManager/ViewManager.py" line="2286" /> <location filename="../ViewManager/ViewManager.py" line="2283" /> <source>Extend selection right one word part</source> <translation>Распространить выделение на одну часть слова вправо</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2181" /> - <location filename="../QScintilla/MiniEditor.py" line="1414" /> - <location filename="../QScintilla/MiniEditor.py" line="1368" /> + <location filename="../QScintilla/MiniEditor.py" line="2182" /> + <location filename="../QScintilla/MiniEditor.py" line="1415" /> + <location filename="../QScintilla/MiniEditor.py" line="1369" /> <location filename="../QScintilla/ShellWindow.py" line="856" /> <location filename="../ViewManager/ViewManager.py" line="3093" /> <location filename="../ViewManager/ViewManager.py" line="2343" /> @@ -96606,8 +96611,8 @@ <translation>Alt+Shift+Right</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1378" /> <location filename="../QScintilla/MiniEditor.py" line="1377" /> - <location filename="../QScintilla/MiniEditor.py" line="1376" /> <location filename="../QScintilla/ShellWindow.py" line="819" /> <location filename="../QScintilla/ShellWindow.py" line="818" /> <location filename="../ViewManager/ViewManager.py" line="2306" /> @@ -96616,8 +96621,8 @@ <translation>Распространить выделение на одно слово влево</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2307" /> - <location filename="../QScintilla/MiniEditor.py" line="1392" /> + <location filename="../QScintilla/MiniEditor.py" line="2308" /> + <location filename="../QScintilla/MiniEditor.py" line="1393" /> <location filename="../QScintilla/ShellWindow.py" line="834" /> <location filename="../ViewManager/ViewManager.py" line="3219" /> <location filename="../ViewManager/ViewManager.py" line="2321" /> @@ -96625,8 +96630,8 @@ <translation>Ctrl+Shift+Left</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1403" /> - <location filename="../QScintilla/MiniEditor.py" line="1400" /> + <location filename="../QScintilla/MiniEditor.py" line="1404" /> + <location filename="../QScintilla/MiniEditor.py" line="1401" /> <location filename="../QScintilla/ShellWindow.py" line="845" /> <location filename="../QScintilla/ShellWindow.py" line="842" /> <location filename="../ViewManager/ViewManager.py" line="2332" /> @@ -96635,8 +96640,8 @@ <translation>Распространить выделение на одно слово вправо</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1868" /> - <location filename="../QScintilla/MiniEditor.py" line="1420" /> + <location filename="../QScintilla/MiniEditor.py" line="1869" /> + <location filename="../QScintilla/MiniEditor.py" line="1421" /> <location filename="../QScintilla/ShellWindow.py" line="862" /> <location filename="../ViewManager/ViewManager.py" line="2780" /> <location filename="../ViewManager/ViewManager.py" line="2349" /> @@ -96644,8 +96649,8 @@ <translation>Ctrl+Shift+Right</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1432" /> - <location filename="../QScintilla/MiniEditor.py" line="1428" /> + <location filename="../QScintilla/MiniEditor.py" line="1433" /> + <location filename="../QScintilla/MiniEditor.py" line="1429" /> <location filename="../QScintilla/ShellWindow.py" line="874" /> <location filename="../QScintilla/ShellWindow.py" line="870" /> <location filename="../ViewManager/ViewManager.py" line="2361" /> @@ -96654,15 +96659,15 @@ <translation>Распространить выделение до первого видимого символа в строке документа</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1443" /> + <location filename="../QScintilla/MiniEditor.py" line="1444" /> <location filename="../QScintilla/ShellWindow.py" line="885" /> <location filename="../ViewManager/ViewManager.py" line="2372" /> <source>Shift+Home</source> <translation>Shift+Home</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1453" /> - <location filename="../QScintilla/MiniEditor.py" line="1450" /> + <location filename="../QScintilla/MiniEditor.py" line="1454" /> + <location filename="../QScintilla/MiniEditor.py" line="1451" /> <location filename="../QScintilla/ShellWindow.py" line="895" /> <location filename="../QScintilla/ShellWindow.py" line="892" /> <location filename="../ViewManager/ViewManager.py" line="2382" /> @@ -96671,124 +96676,124 @@ <translation>Распространить выделение до конца строки документа</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1463" /> + <location filename="../QScintilla/MiniEditor.py" line="1464" /> <location filename="../QScintilla/ShellWindow.py" line="905" /> <location filename="../ViewManager/ViewManager.py" line="2392" /> <source>Meta+Shift+E</source> <translation>Meta+Shift+E</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1467" /> + <location filename="../QScintilla/MiniEditor.py" line="1468" /> <location filename="../QScintilla/ShellWindow.py" line="909" /> <location filename="../ViewManager/ViewManager.py" line="2396" /> <source>Shift+End</source> <translation>Shift+End</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1477" /> - <location filename="../QScintilla/MiniEditor.py" line="1474" /> + <location filename="../QScintilla/MiniEditor.py" line="1478" /> + <location filename="../QScintilla/MiniEditor.py" line="1475" /> <location filename="../ViewManager/ViewManager.py" line="2406" /> <location filename="../ViewManager/ViewManager.py" line="2403" /> <source>Extend selection up one paragraph</source> <translation>Распространить выделение на один параграф вверх</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1480" /> + <location filename="../QScintilla/MiniEditor.py" line="1481" /> <location filename="../ViewManager/ViewManager.py" line="2409" /> <source>Alt+Shift+Up</source> <translation>Alt+Shift+Up</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1493" /> - <location filename="../QScintilla/MiniEditor.py" line="1490" /> + <location filename="../QScintilla/MiniEditor.py" line="1494" /> + <location filename="../QScintilla/MiniEditor.py" line="1491" /> <location filename="../ViewManager/ViewManager.py" line="2422" /> <location filename="../ViewManager/ViewManager.py" line="2419" /> <source>Extend selection down one paragraph</source> <translation>Распространить выделение на один параграф вниз</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1496" /> + <location filename="../QScintilla/MiniEditor.py" line="1497" /> <location filename="../ViewManager/ViewManager.py" line="2425" /> <source>Alt+Shift+Down</source> <translation>Alt+Shift+Down</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1508" /> <location filename="../QScintilla/MiniEditor.py" line="1507" /> - <location filename="../QScintilla/MiniEditor.py" line="1506" /> <location filename="../ViewManager/ViewManager.py" line="2436" /> <location filename="../ViewManager/ViewManager.py" line="2435" /> <source>Extend selection up one page</source> <translation>Распространить выделение на страницу вверх</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1508" /> + <location filename="../QScintilla/MiniEditor.py" line="1509" /> <location filename="../ViewManager/ViewManager.py" line="2437" /> <source>Shift+PgUp</source> <translation>Shift+PgUp</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1520" /> <location filename="../QScintilla/MiniEditor.py" line="1519" /> - <location filename="../QScintilla/MiniEditor.py" line="1518" /> <location filename="../ViewManager/ViewManager.py" line="2448" /> <location filename="../ViewManager/ViewManager.py" line="2447" /> <source>Extend selection down one page</source> <translation>Распространить выделение на страницу вниз</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1520" /> + <location filename="../QScintilla/MiniEditor.py" line="1521" /> <location filename="../ViewManager/ViewManager.py" line="2449" /> <source>Shift+PgDown</source> <translation>Shift+PgDown</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1527" /> + <location filename="../QScintilla/MiniEditor.py" line="1528" /> <location filename="../ViewManager/ViewManager.py" line="2456" /> <source>Meta+Shift+V</source> <translation>Meta+Shift+V</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1537" /> - <location filename="../QScintilla/MiniEditor.py" line="1534" /> + <location filename="../QScintilla/MiniEditor.py" line="1538" /> + <location filename="../QScintilla/MiniEditor.py" line="1535" /> <location filename="../ViewManager/ViewManager.py" line="2466" /> <location filename="../ViewManager/ViewManager.py" line="2463" /> <source>Extend selection to start of document</source> <translation>Распространить выделение до начала документа</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1547" /> + <location filename="../QScintilla/MiniEditor.py" line="1548" /> <location filename="../ViewManager/ViewManager.py" line="2476" /> <source>Ctrl+Shift+Up</source> <translation>Ctrl+Shift+Up</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1552" /> + <location filename="../QScintilla/MiniEditor.py" line="1553" /> <location filename="../ViewManager/ViewManager.py" line="2481" /> <source>Ctrl+Shift+Home</source> <translation>Ctrl+Shift+Home</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1563" /> - <location filename="../QScintilla/MiniEditor.py" line="1560" /> + <location filename="../QScintilla/MiniEditor.py" line="1564" /> + <location filename="../QScintilla/MiniEditor.py" line="1561" /> <location filename="../ViewManager/ViewManager.py" line="2492" /> <location filename="../ViewManager/ViewManager.py" line="2489" /> <source>Extend selection to end of document</source> <translation>Распространить выделение до конца документа</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1574" /> + <location filename="../QScintilla/MiniEditor.py" line="1575" /> <location filename="../ViewManager/ViewManager.py" line="2503" /> <source>Ctrl+Shift+Down</source> <translation>Ctrl+Shift+Down</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1580" /> + <location filename="../QScintilla/MiniEditor.py" line="1581" /> <location filename="../ViewManager/ViewManager.py" line="2509" /> <source>Ctrl+Shift+End</source> <translation>Ctrl+Shift+End</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1590" /> <location filename="../QScintilla/MiniEditor.py" line="1589" /> - <location filename="../QScintilla/MiniEditor.py" line="1588" /> <location filename="../QScintilla/ShellWindow.py" line="477" /> <location filename="../QScintilla/ShellWindow.py" line="476" /> <location filename="../ViewManager/ViewManager.py" line="2518" /> @@ -96797,37 +96802,37 @@ <translation>Удалить предыдущий символ</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1590" /> + <location filename="../QScintilla/MiniEditor.py" line="1591" /> <location filename="../QScintilla/ShellWindow.py" line="478" /> <location filename="../ViewManager/ViewManager.py" line="2519" /> <source>Backspace</source> <translation>Backspace</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1597" /> + <location filename="../QScintilla/MiniEditor.py" line="1598" /> <location filename="../QScintilla/ShellWindow.py" line="485" /> <location filename="../ViewManager/ViewManager.py" line="2526" /> <source>Meta+H</source> <translation>Meta+H</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1602" /> + <location filename="../QScintilla/MiniEditor.py" line="1603" /> <location filename="../QScintilla/ShellWindow.py" line="490" /> <location filename="../ViewManager/ViewManager.py" line="2531" /> <source>Shift+Backspace</source> <translation>Shift+Backspace</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1613" /> - <location filename="../QScintilla/MiniEditor.py" line="1610" /> + <location filename="../QScintilla/MiniEditor.py" line="1614" /> + <location filename="../QScintilla/MiniEditor.py" line="1611" /> <location filename="../ViewManager/ViewManager.py" line="2542" /> <location filename="../ViewManager/ViewManager.py" line="2539" /> <source>Delete previous character if not at start of line</source> <translation>Удалить предыдущий символ если он не первый в строке</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1628" /> <location filename="../QScintilla/MiniEditor.py" line="1627" /> - <location filename="../QScintilla/MiniEditor.py" line="1626" /> <location filename="../QScintilla/ShellWindow.py" line="499" /> <location filename="../QScintilla/ShellWindow.py" line="498" /> <location filename="../ViewManager/ViewManager.py" line="2556" /> @@ -96836,22 +96841,22 @@ <translation>Удалить текущий символ</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1628" /> + <location filename="../QScintilla/MiniEditor.py" line="1629" /> <location filename="../QScintilla/ShellWindow.py" line="500" /> <location filename="../ViewManager/ViewManager.py" line="2557" /> <source>Del</source> <translation>Del</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1635" /> + <location filename="../QScintilla/MiniEditor.py" line="1636" /> <location filename="../QScintilla/ShellWindow.py" line="507" /> <location filename="../ViewManager/ViewManager.py" line="2564" /> <source>Meta+D</source> <translation>Meta+D</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1644" /> <location filename="../QScintilla/MiniEditor.py" line="1643" /> - <location filename="../QScintilla/MiniEditor.py" line="1642" /> <location filename="../QScintilla/ShellWindow.py" line="515" /> <location filename="../QScintilla/ShellWindow.py" line="514" /> <location filename="../ViewManager/ViewManager.py" line="2572" /> @@ -96860,15 +96865,15 @@ <translation>Удалить слово слева</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1644" /> + <location filename="../QScintilla/MiniEditor.py" line="1645" /> <location filename="../QScintilla/ShellWindow.py" line="516" /> <location filename="../ViewManager/ViewManager.py" line="2573" /> <source>Ctrl+Backspace</source> <translation>Ctrl+Backspace</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1656" /> <location filename="../QScintilla/MiniEditor.py" line="1655" /> - <location filename="../QScintilla/MiniEditor.py" line="1654" /> <location filename="../QScintilla/ShellWindow.py" line="527" /> <location filename="../QScintilla/ShellWindow.py" line="526" /> <location filename="../ViewManager/ViewManager.py" line="2584" /> @@ -96877,15 +96882,15 @@ <translation>Удалить слово справа</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1656" /> + <location filename="../QScintilla/MiniEditor.py" line="1657" /> <location filename="../QScintilla/ShellWindow.py" line="528" /> <location filename="../ViewManager/ViewManager.py" line="2585" /> <source>Ctrl+Del</source> <translation>Ctrl+Del</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1668" /> <location filename="../QScintilla/MiniEditor.py" line="1667" /> - <location filename="../QScintilla/MiniEditor.py" line="1666" /> <location filename="../QScintilla/ShellWindow.py" line="539" /> <location filename="../QScintilla/ShellWindow.py" line="538" /> <location filename="../ViewManager/ViewManager.py" line="2596" /> @@ -96894,15 +96899,15 @@ <translation>Удалить строку слева</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1669" /> + <location filename="../QScintilla/MiniEditor.py" line="1670" /> <location filename="../QScintilla/ShellWindow.py" line="541" /> <location filename="../ViewManager/ViewManager.py" line="2598" /> <source>Ctrl+Shift+Backspace</source> <translation>Ctrl+Shift+Backspace</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1682" /> <location filename="../QScintilla/MiniEditor.py" line="1681" /> - <location filename="../QScintilla/MiniEditor.py" line="1680" /> <location filename="../QScintilla/ShellWindow.py" line="553" /> <location filename="../QScintilla/ShellWindow.py" line="552" /> <location filename="../ViewManager/ViewManager.py" line="2610" /> @@ -96911,22 +96916,22 @@ <translation>Удалить строку справа</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1689" /> + <location filename="../QScintilla/MiniEditor.py" line="1690" /> <location filename="../QScintilla/ShellWindow.py" line="561" /> <location filename="../ViewManager/ViewManager.py" line="2618" /> <source>Meta+K</source> <translation>Meta+K</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1694" /> + <location filename="../QScintilla/MiniEditor.py" line="1695" /> <location filename="../QScintilla/ShellWindow.py" line="566" /> <location filename="../ViewManager/ViewManager.py" line="2623" /> <source>Ctrl+Shift+Del</source> <translation>Ctrl+Shift+Del</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1704" /> <location filename="../QScintilla/MiniEditor.py" line="1703" /> - <location filename="../QScintilla/MiniEditor.py" line="1702" /> <location filename="../QScintilla/ShellWindow.py" line="465" /> <location filename="../QScintilla/ShellWindow.py" line="464" /> <location filename="../ViewManager/ViewManager.py" line="2632" /> @@ -96935,14 +96940,14 @@ <translation>Вставить новую строку</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1704" /> + <location filename="../QScintilla/MiniEditor.py" line="1705" /> <location filename="../QScintilla/ShellWindow.py" line="466" /> <location filename="../ViewManager/ViewManager.py" line="2633" /> <source>Return</source> <translation>Return</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1705" /> + <location filename="../QScintilla/MiniEditor.py" line="1706" /> <location filename="../QScintilla/ShellWindow.py" line="467" /> <location filename="../ViewManager/ViewManager.py" line="2634" /> <source>Enter</source> @@ -96965,8 +96970,8 @@ <translation>Shift+Enter</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1716" /> <location filename="../QScintilla/MiniEditor.py" line="1715" /> - <location filename="../QScintilla/MiniEditor.py" line="1714" /> <location filename="../QScintilla/ShellWindow.py" line="441" /> <location filename="../QScintilla/ShellWindow.py" line="440" /> <location filename="../ViewManager/ViewManager.py" line="2659" /> @@ -96975,129 +96980,129 @@ <translation>Удалить текущую строку</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1716" /> + <location filename="../QScintilla/MiniEditor.py" line="1717" /> <location filename="../QScintilla/ShellWindow.py" line="442" /> <location filename="../ViewManager/ViewManager.py" line="2660" /> <source>Ctrl+Shift+L</source> <translation>Ctrl+Shift+L</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1728" /> <location filename="../QScintilla/MiniEditor.py" line="1727" /> - <location filename="../QScintilla/MiniEditor.py" line="1726" /> <location filename="../ViewManager/ViewManager.py" line="2671" /> <location filename="../ViewManager/ViewManager.py" line="2670" /> <source>Duplicate current line</source> <translation>Дублировать текущую строку</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1728" /> + <location filename="../QScintilla/MiniEditor.py" line="1729" /> <location filename="../ViewManager/ViewManager.py" line="2672" /> <source>Ctrl+D</source> <translation>Ctrl+D</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1741" /> - <location filename="../QScintilla/MiniEditor.py" line="1738" /> + <location filename="../QScintilla/MiniEditor.py" line="1742" /> + <location filename="../QScintilla/MiniEditor.py" line="1739" /> <location filename="../ViewManager/ViewManager.py" line="2685" /> <location filename="../ViewManager/ViewManager.py" line="2682" /> <source>Swap current and previous lines</source> <translation>Поменять местами предыдущую и последующую строки</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1744" /> + <location filename="../QScintilla/MiniEditor.py" line="1745" /> <location filename="../ViewManager/ViewManager.py" line="2688" /> <source>Ctrl+T</source> <translation>Ctrl+T</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1756" /> <location filename="../QScintilla/MiniEditor.py" line="1755" /> - <location filename="../QScintilla/MiniEditor.py" line="1754" /> <location filename="../ViewManager/ViewManager.py" line="2699" /> <location filename="../ViewManager/ViewManager.py" line="2698" /> <source>Reverse selected lines</source> <translation>Реверсировать выбранные строки</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1756" /> + <location filename="../QScintilla/MiniEditor.py" line="1757" /> <location filename="../ViewManager/ViewManager.py" line="2700" /> <source>Meta+Alt+R</source> <translation>Meta+Alt+R</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1768" /> <location filename="../QScintilla/MiniEditor.py" line="1767" /> - <location filename="../QScintilla/MiniEditor.py" line="1766" /> <location filename="../ViewManager/ViewManager.py" line="2711" /> <location filename="../ViewManager/ViewManager.py" line="2710" /> <source>Cut current line</source> <translation>Вырезать текущую строку</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1768" /> + <location filename="../QScintilla/MiniEditor.py" line="1769" /> <location filename="../ViewManager/ViewManager.py" line="2712" /> <source>Alt+Shift+L</source> <translation>Alt+Shift+L</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1780" /> <location filename="../QScintilla/MiniEditor.py" line="1779" /> - <location filename="../QScintilla/MiniEditor.py" line="1778" /> <location filename="../ViewManager/ViewManager.py" line="2723" /> <location filename="../ViewManager/ViewManager.py" line="2722" /> <source>Copy current line</source> <translation>Копировать текущую строку</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1780" /> + <location filename="../QScintilla/MiniEditor.py" line="1781" /> <location filename="../ViewManager/ViewManager.py" line="2724" /> <source>Ctrl+Shift+T</source> <translation>Ctrl+Shift+T</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1792" /> <location filename="../QScintilla/MiniEditor.py" line="1791" /> - <location filename="../QScintilla/MiniEditor.py" line="1790" /> <location filename="../ViewManager/ViewManager.py" line="2735" /> <location filename="../ViewManager/ViewManager.py" line="2734" /> <source>Toggle insert/overtype</source> <translation>Вставка/Замена</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1792" /> + <location filename="../QScintilla/MiniEditor.py" line="1793" /> <location filename="../ViewManager/ViewManager.py" line="2736" /> <source>Ins</source> <translation>Ins</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1836" /> <location filename="../QScintilla/MiniEditor.py" line="1835" /> - <location filename="../QScintilla/MiniEditor.py" line="1834" /> <location filename="../ViewManager/ViewManager.py" line="2747" /> <location filename="../ViewManager/ViewManager.py" line="2746" /> <source>Move to end of display line</source> <translation>Перейти на конец строки экрана</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1847" /> + <location filename="../QScintilla/MiniEditor.py" line="1848" /> <location filename="../ViewManager/ViewManager.py" line="2759" /> <source>Alt+End</source> <translation>Alt+End</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1857" /> - <location filename="../QScintilla/MiniEditor.py" line="1854" /> + <location filename="../QScintilla/MiniEditor.py" line="1858" /> + <location filename="../QScintilla/MiniEditor.py" line="1855" /> <location filename="../ViewManager/ViewManager.py" line="2769" /> <location filename="../ViewManager/ViewManager.py" line="2766" /> <source>Extend selection to end of display line</source> <translation>Распространить выделение до конца строки экрана</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1878" /> <location filename="../QScintilla/MiniEditor.py" line="1877" /> - <location filename="../QScintilla/MiniEditor.py" line="1876" /> <location filename="../ViewManager/ViewManager.py" line="2789" /> <location filename="../ViewManager/ViewManager.py" line="2788" /> <source>Formfeed</source> <translation>Перевод страницы</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1890" /> <location filename="../QScintilla/MiniEditor.py" line="1889" /> - <location filename="../QScintilla/MiniEditor.py" line="1888" /> <location filename="../QScintilla/ShellWindow.py" line="767" /> <location filename="../QScintilla/ShellWindow.py" line="766" /> <location filename="../ViewManager/ViewManager.py" line="2801" /> @@ -97106,423 +97111,423 @@ <translation>Escape</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1890" /> + <location filename="../QScintilla/MiniEditor.py" line="1891" /> <location filename="../QScintilla/ShellWindow.py" line="768" /> <location filename="../ViewManager/ViewManager.py" line="2802" /> <source>Esc</source> <translation>Esc</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1903" /> - <location filename="../QScintilla/MiniEditor.py" line="1900" /> + <location filename="../QScintilla/MiniEditor.py" line="1904" /> + <location filename="../QScintilla/MiniEditor.py" line="1901" /> <location filename="../ViewManager/ViewManager.py" line="2815" /> <location filename="../ViewManager/ViewManager.py" line="2812" /> <source>Extend rectangular selection down one line</source> <translation>Распространить прямоугольное выделение на одну строку вниз</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1906" /> + <location filename="../QScintilla/MiniEditor.py" line="1907" /> <location filename="../ViewManager/ViewManager.py" line="2818" /> <source>Alt+Ctrl+Down</source> <translation>Alt+Ctrl+Down</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1914" /> + <location filename="../QScintilla/MiniEditor.py" line="1915" /> <location filename="../ViewManager/ViewManager.py" line="2826" /> <source>Meta+Alt+Shift+N</source> <translation>Meta+Alt+Shift+N</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1925" /> - <location filename="../QScintilla/MiniEditor.py" line="1922" /> + <location filename="../QScintilla/MiniEditor.py" line="1926" /> + <location filename="../QScintilla/MiniEditor.py" line="1923" /> <location filename="../ViewManager/ViewManager.py" line="2837" /> <location filename="../ViewManager/ViewManager.py" line="2834" /> <source>Extend rectangular selection up one line</source> <translation>Распространить прямоугольное выделение на одну строку вверх</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1928" /> + <location filename="../QScintilla/MiniEditor.py" line="1929" /> <location filename="../ViewManager/ViewManager.py" line="2840" /> <source>Alt+Ctrl+Up</source> <translation>Alt+Ctrl+Up</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1936" /> + <location filename="../QScintilla/MiniEditor.py" line="1937" /> <location filename="../ViewManager/ViewManager.py" line="2848" /> <source>Meta+Alt+Shift+P</source> <translation>Meta+Alt+Shift+P</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1947" /> - <location filename="../QScintilla/MiniEditor.py" line="1944" /> + <location filename="../QScintilla/MiniEditor.py" line="1948" /> + <location filename="../QScintilla/MiniEditor.py" line="1945" /> <location filename="../ViewManager/ViewManager.py" line="2859" /> <location filename="../ViewManager/ViewManager.py" line="2856" /> <source>Extend rectangular selection left one character</source> <translation>Распространить прямоугольное выделение на один символ влево</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1950" /> + <location filename="../QScintilla/MiniEditor.py" line="1951" /> <location filename="../ViewManager/ViewManager.py" line="2862" /> <source>Alt+Ctrl+Left</source> <translation>Alt+Ctrl+Left</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1958" /> + <location filename="../QScintilla/MiniEditor.py" line="1959" /> <location filename="../ViewManager/ViewManager.py" line="2870" /> <source>Meta+Alt+Shift+B</source> <translation>Meta+Alt+Shift+B</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1969" /> - <location filename="../QScintilla/MiniEditor.py" line="1966" /> + <location filename="../QScintilla/MiniEditor.py" line="1970" /> + <location filename="../QScintilla/MiniEditor.py" line="1967" /> <location filename="../ViewManager/ViewManager.py" line="2881" /> <location filename="../ViewManager/ViewManager.py" line="2878" /> <source>Extend rectangular selection right one character</source> <translation>Распространить прямоугольное выделение на один символ вправо</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1972" /> + <location filename="../QScintilla/MiniEditor.py" line="1973" /> <location filename="../ViewManager/ViewManager.py" line="2884" /> <source>Alt+Ctrl+Right</source> <translation>Alt+Ctrl+Right</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1980" /> + <location filename="../QScintilla/MiniEditor.py" line="1981" /> <location filename="../ViewManager/ViewManager.py" line="2892" /> <source>Meta+Alt+Shift+F</source> <translation>Meta+Alt+Shift+F</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1993" /> - <location filename="../QScintilla/MiniEditor.py" line="1988" /> + <location filename="../QScintilla/MiniEditor.py" line="1994" /> + <location filename="../QScintilla/MiniEditor.py" line="1989" /> <location filename="../ViewManager/ViewManager.py" line="2905" /> <location filename="../ViewManager/ViewManager.py" line="2900" /> <source>Extend rectangular selection to first visible character in document line</source> <translation>Распространить прямоугольное выделение до первого видимого символа в строке документа</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2006" /> + <location filename="../QScintilla/MiniEditor.py" line="2007" /> <location filename="../ViewManager/ViewManager.py" line="2918" /> <source>Alt+Shift+Home</source> <translation>Alt+Shift+Home</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2017" /> - <location filename="../QScintilla/MiniEditor.py" line="2014" /> + <location filename="../QScintilla/MiniEditor.py" line="2018" /> + <location filename="../QScintilla/MiniEditor.py" line="2015" /> <location filename="../ViewManager/ViewManager.py" line="2929" /> <location filename="../ViewManager/ViewManager.py" line="2926" /> <source>Extend rectangular selection to end of document line</source> <translation>Распространить прямоугольное выделение до конца строки документа</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2028" /> + <location filename="../QScintilla/MiniEditor.py" line="2029" /> <location filename="../ViewManager/ViewManager.py" line="2940" /> <source>Meta+Alt+Shift+E</source> <translation>Meta+Alt+Shift+E</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2033" /> + <location filename="../QScintilla/MiniEditor.py" line="2034" /> <location filename="../ViewManager/ViewManager.py" line="2945" /> <source>Alt+Shift+End</source> <translation>Alt+Shift+End</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2043" /> - <location filename="../QScintilla/MiniEditor.py" line="2040" /> + <location filename="../QScintilla/MiniEditor.py" line="2044" /> + <location filename="../QScintilla/MiniEditor.py" line="2041" /> <location filename="../ViewManager/ViewManager.py" line="2955" /> <location filename="../ViewManager/ViewManager.py" line="2952" /> <source>Extend rectangular selection up one page</source> <translation>Распространить прямоугольное выделение на одну страницу вверх</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2046" /> + <location filename="../QScintilla/MiniEditor.py" line="2047" /> <location filename="../ViewManager/ViewManager.py" line="2958" /> <source>Alt+Shift+PgUp</source> <translation>Alt+Shift+PgUp</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2059" /> - <location filename="../QScintilla/MiniEditor.py" line="2056" /> + <location filename="../QScintilla/MiniEditor.py" line="2060" /> + <location filename="../QScintilla/MiniEditor.py" line="2057" /> <location filename="../ViewManager/ViewManager.py" line="2971" /> <location filename="../ViewManager/ViewManager.py" line="2968" /> <source>Extend rectangular selection down one page</source> <translation>Распространить прямоугольное выделение на одну страницу вниз</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2062" /> + <location filename="../QScintilla/MiniEditor.py" line="2063" /> <location filename="../ViewManager/ViewManager.py" line="2974" /> <source>Alt+Shift+PgDown</source> <translation>Alt+Shift+PgDown</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2070" /> + <location filename="../QScintilla/MiniEditor.py" line="2071" /> <location filename="../ViewManager/ViewManager.py" line="2982" /> <source>Meta+Alt+Shift+V</source> <translation>Meta+Alt+Shift+V</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="2546" /> <location filename="../QScintilla/MiniEditor.py" line="2545" /> - <location filename="../QScintilla/MiniEditor.py" line="2544" /> + <location filename="../QScintilla/MiniEditor.py" line="2080" /> <location filename="../QScintilla/MiniEditor.py" line="2079" /> - <location filename="../QScintilla/MiniEditor.py" line="2078" /> <location filename="../ViewManager/ViewManager.py" line="2991" /> <location filename="../ViewManager/ViewManager.py" line="2990" /> <source>Duplicate current selection</source> <translation>Дублировать текущее выделение</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2546" /> - <location filename="../QScintilla/MiniEditor.py" line="2080" /> + <location filename="../QScintilla/MiniEditor.py" line="2547" /> + <location filename="../QScintilla/MiniEditor.py" line="2081" /> <location filename="../ViewManager/ViewManager.py" line="2992" /> <source>Ctrl+Shift+D</source> <translation>Ctrl+Shift+D</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2094" /> - <location filename="../QScintilla/MiniEditor.py" line="2091" /> + <location filename="../QScintilla/MiniEditor.py" line="2095" /> + <location filename="../QScintilla/MiniEditor.py" line="2092" /> <location filename="../ViewManager/ViewManager.py" line="3006" /> <location filename="../ViewManager/ViewManager.py" line="3003" /> <source>Scroll to start of document</source> <translation>Прокрутить на начало документа</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="2114" /> <location filename="../QScintilla/MiniEditor.py" line="2113" /> - <location filename="../QScintilla/MiniEditor.py" line="2112" /> <location filename="../ViewManager/ViewManager.py" line="3025" /> <location filename="../ViewManager/ViewManager.py" line="3024" /> <source>Scroll to end of document</source> <translation>Прокрутить на конец документа</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2132" /> - <location filename="../QScintilla/MiniEditor.py" line="2129" /> + <location filename="../QScintilla/MiniEditor.py" line="2133" /> + <location filename="../QScintilla/MiniEditor.py" line="2130" /> <location filename="../ViewManager/ViewManager.py" line="3044" /> <location filename="../ViewManager/ViewManager.py" line="3041" /> <source>Scroll vertically to center current line</source> <translation>Прокрутить вертикально до центра текущей строки</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2142" /> + <location filename="../QScintilla/MiniEditor.py" line="2143" /> <location filename="../ViewManager/ViewManager.py" line="3054" /> <source>Meta+L</source> <translation>Meta+L</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="2152" /> <location filename="../QScintilla/MiniEditor.py" line="2151" /> - <location filename="../QScintilla/MiniEditor.py" line="2150" /> <location filename="../ViewManager/ViewManager.py" line="3063" /> <location filename="../ViewManager/ViewManager.py" line="3062" /> <source>Move to end of next word</source> <translation>Перейти в конец следующего слова</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2170" /> - <location filename="../QScintilla/MiniEditor.py" line="2167" /> + <location filename="../QScintilla/MiniEditor.py" line="2171" /> + <location filename="../QScintilla/MiniEditor.py" line="2168" /> <location filename="../ViewManager/ViewManager.py" line="3082" /> <location filename="../ViewManager/ViewManager.py" line="3079" /> <source>Extend selection to end of next word</source> <translation>Распространить выделение до конца следующего слова</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2193" /> - <location filename="../QScintilla/MiniEditor.py" line="2190" /> + <location filename="../QScintilla/MiniEditor.py" line="2194" /> + <location filename="../QScintilla/MiniEditor.py" line="2191" /> <location filename="../ViewManager/ViewManager.py" line="3105" /> <location filename="../ViewManager/ViewManager.py" line="3102" /> <source>Move to end of previous word</source> <translation>Перейти в конец предыдущего слова</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2210" /> - <location filename="../QScintilla/MiniEditor.py" line="2207" /> + <location filename="../QScintilla/MiniEditor.py" line="2211" /> + <location filename="../QScintilla/MiniEditor.py" line="2208" /> <location filename="../ViewManager/ViewManager.py" line="3122" /> <location filename="../ViewManager/ViewManager.py" line="3119" /> <source>Extend selection to end of previous word</source> <translation>Распространить выделение до конца предыдущего слова</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2227" /> - <location filename="../QScintilla/MiniEditor.py" line="2224" /> + <location filename="../QScintilla/MiniEditor.py" line="2228" /> + <location filename="../QScintilla/MiniEditor.py" line="2225" /> <location filename="../ViewManager/ViewManager.py" line="3139" /> <location filename="../ViewManager/ViewManager.py" line="3136" /> <source>Move to start of document line</source> <translation>Перейти на начало строки документа</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2237" /> + <location filename="../QScintilla/MiniEditor.py" line="2238" /> <location filename="../ViewManager/ViewManager.py" line="3149" /> <source>Meta+A</source> <translation>Meta+A</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2248" /> - <location filename="../QScintilla/MiniEditor.py" line="2245" /> + <location filename="../QScintilla/MiniEditor.py" line="2249" /> + <location filename="../QScintilla/MiniEditor.py" line="2246" /> <location filename="../ViewManager/ViewManager.py" line="3160" /> <location filename="../ViewManager/ViewManager.py" line="3157" /> <source>Extend selection to start of document line</source> <translation>Распространить выделение до начала строки документа</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2259" /> + <location filename="../QScintilla/MiniEditor.py" line="2260" /> <location filename="../ViewManager/ViewManager.py" line="3171" /> <source>Meta+Shift+A</source> <translation>Meta+Shift+A</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2272" /> - <location filename="../QScintilla/MiniEditor.py" line="2268" /> + <location filename="../QScintilla/MiniEditor.py" line="2273" /> + <location filename="../QScintilla/MiniEditor.py" line="2269" /> <location filename="../ViewManager/ViewManager.py" line="3184" /> <location filename="../ViewManager/ViewManager.py" line="3180" /> <source>Extend rectangular selection to start of document line</source> <translation>Распространить прямоугольное выделение до начала строки документа</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2284" /> + <location filename="../QScintilla/MiniEditor.py" line="2285" /> <location filename="../ViewManager/ViewManager.py" line="3196" /> <source>Meta+Alt+Shift+A</source> <translation>Meta+Alt+Shift+A</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2296" /> - <location filename="../QScintilla/MiniEditor.py" line="2293" /> + <location filename="../QScintilla/MiniEditor.py" line="2297" /> + <location filename="../QScintilla/MiniEditor.py" line="2294" /> <location filename="../ViewManager/ViewManager.py" line="3208" /> <location filename="../ViewManager/ViewManager.py" line="3205" /> <source>Extend selection to start of display line</source> <translation>Распространить выделение до начала строки экрана</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2319" /> - <location filename="../QScintilla/MiniEditor.py" line="2316" /> + <location filename="../QScintilla/MiniEditor.py" line="2320" /> + <location filename="../QScintilla/MiniEditor.py" line="2317" /> <location filename="../ViewManager/ViewManager.py" line="3231" /> <location filename="../ViewManager/ViewManager.py" line="3228" /> <source>Move to start of display or document line</source> <translation>Перейти на начало строки экрана или документа</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2337" /> - <location filename="../QScintilla/MiniEditor.py" line="2333" /> + <location filename="../QScintilla/MiniEditor.py" line="2338" /> + <location filename="../QScintilla/MiniEditor.py" line="2334" /> <location filename="../ViewManager/ViewManager.py" line="3249" /> <location filename="../ViewManager/ViewManager.py" line="3245" /> <source>Extend selection to start of display or document line</source> <translation>Распространить выделение до начала строки экрана или документа</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2356" /> - <location filename="../QScintilla/MiniEditor.py" line="2352" /> + <location filename="../QScintilla/MiniEditor.py" line="2357" /> + <location filename="../QScintilla/MiniEditor.py" line="2353" /> <location filename="../ViewManager/ViewManager.py" line="3268" /> <location filename="../ViewManager/ViewManager.py" line="3264" /> <source>Move to first visible character in display or document line</source> <translation>Перейти к первому видимому символу строки экрана или документа</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2376" /> - <location filename="../QScintilla/MiniEditor.py" line="2371" /> + <location filename="../QScintilla/MiniEditor.py" line="2377" /> + <location filename="../QScintilla/MiniEditor.py" line="2372" /> <location filename="../ViewManager/ViewManager.py" line="3288" /> <location filename="../ViewManager/ViewManager.py" line="3283" /> <source>Extend selection to first visible character in display or document line</source> <translation>Распространить выделение до первого видимого символа строки экрана или документа</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2395" /> - <location filename="../QScintilla/MiniEditor.py" line="2392" /> + <location filename="../QScintilla/MiniEditor.py" line="2396" /> + <location filename="../QScintilla/MiniEditor.py" line="2393" /> <location filename="../ViewManager/ViewManager.py" line="3307" /> <location filename="../ViewManager/ViewManager.py" line="3304" /> <source>Move to end of display or document line</source> <translation>Перейти в конец строки экрана или документа</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2412" /> - <location filename="../QScintilla/MiniEditor.py" line="2409" /> + <location filename="../QScintilla/MiniEditor.py" line="2413" /> + <location filename="../QScintilla/MiniEditor.py" line="2410" /> <location filename="../ViewManager/ViewManager.py" line="3324" /> <location filename="../ViewManager/ViewManager.py" line="3321" /> <source>Extend selection to end of display or document line</source> <translation>Распространить выделение до конца строки экрана или документа</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="2428" /> <location filename="../QScintilla/MiniEditor.py" line="2427" /> - <location filename="../QScintilla/MiniEditor.py" line="2426" /> <location filename="../ViewManager/ViewManager.py" line="3339" /> <location filename="../ViewManager/ViewManager.py" line="3338" /> <source>Stuttered move up one page</source> <translation>Перейти на одну страницу вверх</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2442" /> - <location filename="../QScintilla/MiniEditor.py" line="2439" /> + <location filename="../QScintilla/MiniEditor.py" line="2443" /> + <location filename="../QScintilla/MiniEditor.py" line="2440" /> <location filename="../ViewManager/ViewManager.py" line="3354" /> <location filename="../ViewManager/ViewManager.py" line="3351" /> <source>Stuttered extend selection up one page</source> <translation>Распространить выделение на страницу вверх</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2459" /> - <location filename="../QScintilla/MiniEditor.py" line="2456" /> + <location filename="../QScintilla/MiniEditor.py" line="2460" /> + <location filename="../QScintilla/MiniEditor.py" line="2457" /> <location filename="../ViewManager/ViewManager.py" line="3371" /> <location filename="../ViewManager/ViewManager.py" line="3368" /> <source>Stuttered move down one page</source> <translation>Перейти на одну страницу вниз</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2476" /> - <location filename="../QScintilla/MiniEditor.py" line="2473" /> + <location filename="../QScintilla/MiniEditor.py" line="2477" /> + <location filename="../QScintilla/MiniEditor.py" line="2474" /> <location filename="../ViewManager/ViewManager.py" line="3388" /> <location filename="../ViewManager/ViewManager.py" line="3385" /> <source>Stuttered extend selection down one page</source> <translation>Распространить выделение на страницу вниз</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2493" /> - <location filename="../QScintilla/MiniEditor.py" line="2490" /> + <location filename="../QScintilla/MiniEditor.py" line="2494" /> + <location filename="../QScintilla/MiniEditor.py" line="2491" /> <location filename="../ViewManager/ViewManager.py" line="3405" /> <location filename="../ViewManager/ViewManager.py" line="3402" /> <source>Delete right to end of next word</source> <translation>Удалить до конца следующего слова справа</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2503" /> + <location filename="../QScintilla/MiniEditor.py" line="2504" /> <location filename="../ViewManager/ViewManager.py" line="3415" /> <source>Alt+Del</source> <translation>Alt+Del</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2514" /> - <location filename="../QScintilla/MiniEditor.py" line="2511" /> + <location filename="../QScintilla/MiniEditor.py" line="2515" /> + <location filename="../QScintilla/MiniEditor.py" line="2512" /> <location filename="../ViewManager/ViewManager.py" line="3426" /> <location filename="../ViewManager/ViewManager.py" line="3423" /> <source>Move selected lines up one line</source> <translation>Переместить выделенные строки на одну строку вверх</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2531" /> - <location filename="../QScintilla/MiniEditor.py" line="2528" /> + <location filename="../QScintilla/MiniEditor.py" line="2532" /> + <location filename="../QScintilla/MiniEditor.py" line="2529" /> <location filename="../ViewManager/ViewManager.py" line="3443" /> <location filename="../ViewManager/ViewManager.py" line="3440" /> <source>Move selected lines down one line</source> <translation>Переместить выделенные строки на одну строку вниз</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1805" /> - <location filename="../QScintilla/MiniEditor.py" line="1802" /> + <location filename="../QScintilla/MiniEditor.py" line="1806" /> + <location filename="../QScintilla/MiniEditor.py" line="1803" /> <location filename="../ViewManager/ViewManager.py" line="3461" /> <location filename="../ViewManager/ViewManager.py" line="3458" /> <source>Convert selection to lower case</source> <translation>Преобразовать выделение в нижний регистр</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1808" /> + <location filename="../QScintilla/MiniEditor.py" line="1809" /> <location filename="../ViewManager/ViewManager.py" line="3464" /> <source>Alt+Shift+U</source> <translation>Alt+Shift+U</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1821" /> - <location filename="../QScintilla/MiniEditor.py" line="1818" /> + <location filename="../QScintilla/MiniEditor.py" line="1822" /> + <location filename="../QScintilla/MiniEditor.py" line="1819" /> <location filename="../ViewManager/ViewManager.py" line="3477" /> <location filename="../ViewManager/ViewManager.py" line="3474" /> <source>Convert selection to upper case</source> <translation>Преобразовать выделение в верхний регистр</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1824" /> + <location filename="../QScintilla/MiniEditor.py" line="1825" /> <location filename="../ViewManager/ViewManager.py" line="3480" /> <source>Ctrl+Shift+U</source> <translation>Ctrl+Shift+U</translation> @@ -97539,7 +97544,7 @@ <translation>Редактировать</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2563" /> + <location filename="../QScintilla/MiniEditor.py" line="2564" /> <location filename="../QScintilla/ShellWindow.py" line="923" /> <location filename="../ViewManager/ViewManager.py" line="4167" /> <location filename="../ViewManager/ViewManager.py" line="4165" /> @@ -97548,14 +97553,14 @@ <translation>Поиск</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2565" /> + <location filename="../QScintilla/MiniEditor.py" line="2566" /> <location filename="../QScintilla/ShellWindow.py" line="925" /> <location filename="../ViewManager/ViewManager.py" line="3600" /> <source>&Search...</source> <translation>&Поиск...</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2567" /> + <location filename="../QScintilla/MiniEditor.py" line="2568" /> <location filename="../QScintilla/ShellWindow.py" line="927" /> <location filename="../ViewManager/ViewManager.py" line="3602" /> <source>Ctrl+F</source> @@ -97563,35 +97568,35 @@ <translation>Ctrl+F</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2574" /> + <location filename="../QScintilla/MiniEditor.py" line="2575" /> <location filename="../QScintilla/ShellWindow.py" line="934" /> <location filename="../ViewManager/ViewManager.py" line="3609" /> <source>Search for a text</source> <translation>Поиск текста</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2577" /> + <location filename="../QScintilla/MiniEditor.py" line="2578" /> <location filename="../ViewManager/ViewManager.py" line="3612" /> <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>Поиск</b> <p>Поиск текста в текущем редакторе. Отображается диалог для ввода искомого текста и настройки поиска.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2589" /> + <location filename="../QScintilla/MiniEditor.py" line="2590" /> <location filename="../QScintilla/ShellWindow.py" line="949" /> <location filename="../ViewManager/ViewManager.py" line="3624" /> <source>Search next</source> <translation>Найти следующее</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2591" /> + <location filename="../QScintilla/MiniEditor.py" line="2592" /> <location filename="../QScintilla/ShellWindow.py" line="951" /> <location filename="../ViewManager/ViewManager.py" line="3626" /> <source>Search &next</source> <translation>&Следующее</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2593" /> + <location filename="../QScintilla/MiniEditor.py" line="2594" /> <location filename="../QScintilla/ShellWindow.py" line="953" /> <location filename="../ViewManager/ViewManager.py" line="3628" /> <source>F3</source> @@ -97599,34 +97604,34 @@ <translation>F3</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2600" /> + <location filename="../QScintilla/MiniEditor.py" line="2601" /> <location filename="../QScintilla/ShellWindow.py" line="960" /> <location filename="../ViewManager/ViewManager.py" line="3635" /> <source>Search next occurrence of text</source> <translation>Поиск следующего вхождения текста</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2603" /> + <location filename="../QScintilla/MiniEditor.py" line="2604" /> <location filename="../ViewManager/ViewManager.py" line="3638" /> <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>Поиск следующего</b><p>Поиск следующего вхождения текста в текущем редакторе. Используются предыдущий искомый текст и настройки поиска.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2615" /> + <location filename="../QScintilla/MiniEditor.py" line="2616" /> <location filename="../QScintilla/ShellWindow.py" line="977" /> <location filename="../ViewManager/ViewManager.py" line="3650" /> <source>Search previous</source> <translation>Найти предыдущее</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2617" /> + <location filename="../QScintilla/MiniEditor.py" line="2618" /> <location filename="../QScintilla/ShellWindow.py" line="979" /> <location filename="../ViewManager/ViewManager.py" line="3652" /> <source>Search &previous</source> <translation>&Предыдущее</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2619" /> + <location filename="../QScintilla/MiniEditor.py" line="2620" /> <location filename="../QScintilla/ShellWindow.py" line="981" /> <location filename="../ViewManager/ViewManager.py" line="3654" /> <source>Shift+F3</source> @@ -97634,41 +97639,41 @@ <translation>Shift+F3</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2628" /> + <location filename="../QScintilla/MiniEditor.py" line="2629" /> <location filename="../QScintilla/ShellWindow.py" line="990" /> <location filename="../ViewManager/ViewManager.py" line="3663" /> <source>Search previous occurrence of text</source> <translation>Поиск предыдущего вхождения текста</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2633" /> + <location filename="../QScintilla/MiniEditor.py" line="2634" /> <location filename="../ViewManager/ViewManager.py" line="3668" /> <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>Поиск предыдущего</b><p>Поиск предыдущего вхождения текста в текущем редакторе. Используются предыдущий искомый текст и настройки поиска.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2647" /> - <location filename="../QScintilla/MiniEditor.py" line="2645" /> + <location filename="../QScintilla/MiniEditor.py" line="2648" /> + <location filename="../QScintilla/MiniEditor.py" line="2646" /> <location filename="../ViewManager/ViewManager.py" line="3682" /> <location filename="../ViewManager/ViewManager.py" line="3680" /> <source>Clear search markers</source> <translation>Убрать подсветку найденого</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2649" /> + <location filename="../QScintilla/MiniEditor.py" line="2650" /> <location filename="../ViewManager/ViewManager.py" line="3684" /> <source>Ctrl+3</source> <comment>Search|Clear search markers</comment> <translation>Ctrl+3</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2658" /> + <location filename="../QScintilla/MiniEditor.py" line="2659" /> <location filename="../ViewManager/ViewManager.py" line="3693" /> <source>Clear all displayed search markers</source> <translation>Убрать подсветку всех результатов поиска</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2663" /> + <location filename="../QScintilla/MiniEditor.py" line="2664" /> <location filename="../ViewManager/ViewManager.py" line="3698" /> <source><b>Clear search markers</b><p>Clear all displayed search markers.</p></source> <translation><b>Убрать подсветку поиска</b><p>Удаление подсветки всех результатов поиска.</p></translation> @@ -97718,114 +97723,114 @@ <translation><b>Поиск текущего слова сзади</b><p>Поиск предыдущего вхождения текущего слова сзади в текущем редакторе.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2673" /> + <location filename="../QScintilla/MiniEditor.py" line="2674" /> <location filename="../ViewManager/ViewManager.py" line="3766" /> <source>Replace</source> <translation>Заменить</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2674" /> + <location filename="../QScintilla/MiniEditor.py" line="2675" /> <location filename="../ViewManager/ViewManager.py" line="3767" /> <source>&Replace...</source> <translation>&Заменить...</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2676" /> + <location filename="../QScintilla/MiniEditor.py" line="2677" /> <location filename="../ViewManager/ViewManager.py" line="3769" /> <source>Ctrl+R</source> <comment>Search|Replace</comment> <translation>Ctrl+R</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2683" /> + <location filename="../QScintilla/MiniEditor.py" line="2684" /> <location filename="../ViewManager/ViewManager.py" line="3776" /> <source>Replace some text</source> <translation>Заменить заданный текст</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2686" /> + <location filename="../QScintilla/MiniEditor.py" line="2687" /> <location filename="../ViewManager/ViewManager.py" line="3779" /> <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>Заменить</b> <p>Поиск в текущем редакторе заданного текста и его замена. Отображается диалог ввода искомого текста, текста замены и настроек поиска и замены</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2700" /> - <location filename="../QScintilla/MiniEditor.py" line="2698" /> + <location filename="../QScintilla/MiniEditor.py" line="2701" /> + <location filename="../QScintilla/MiniEditor.py" line="2699" /> <location filename="../ViewManager/ViewManager.py" line="3793" /> <location filename="../ViewManager/ViewManager.py" line="3791" /> <source>Replace and Search</source> <translation>Заменить и найти</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2702" /> + <location filename="../QScintilla/MiniEditor.py" line="2703" /> <location filename="../ViewManager/ViewManager.py" line="3795" /> <source>Meta+R</source> <comment>Search|Replace and Search</comment> <translation>Meta+R</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2711" /> + <location filename="../QScintilla/MiniEditor.py" line="2712" /> <location filename="../ViewManager/ViewManager.py" line="3804" /> <source>Replace the found text and search the next occurrence</source> <translation>Заменить найденный текст и найти следующее вхождение</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2716" /> + <location filename="../QScintilla/MiniEditor.py" line="2717" /> <location filename="../ViewManager/ViewManager.py" line="3809" /> <source><b>Replace and Search</b><p>Replace the found occurrence of text in the current editor and search for the next one. The previously entered search text and options are reused.</p></source> <translation><b>Заменить и найти</b><p>Заменить найденное вхождение текста текущего редактирования и выполнить поиск следующего. Ранее введенный текст и параметры поиска используются повторно.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2732" /> - <location filename="../QScintilla/MiniEditor.py" line="2730" /> + <location filename="../QScintilla/MiniEditor.py" line="2733" /> + <location filename="../QScintilla/MiniEditor.py" line="2731" /> <location filename="../ViewManager/ViewManager.py" line="3825" /> <location filename="../ViewManager/ViewManager.py" line="3823" /> <source>Replace Occurrence</source> <translation>Заменить вхождение</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2734" /> + <location filename="../QScintilla/MiniEditor.py" line="2735" /> <location filename="../ViewManager/ViewManager.py" line="3827" /> <source>Ctrl+Meta+R</source> <comment>Search|Replace Occurrence</comment> <translation>Ctrl+Meta+R</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2743" /> + <location filename="../QScintilla/MiniEditor.py" line="2744" /> <location filename="../ViewManager/ViewManager.py" line="3836" /> <source>Replace the found text</source> <translation>Заменить найденный текст</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2746" /> + <location filename="../QScintilla/MiniEditor.py" line="2747" /> <location filename="../ViewManager/ViewManager.py" line="3839" /> <source><b>Replace Occurrence</b><p>Replace the found occurrence of the search text in the current editor.</p></source> <translation><b>Заменить вхождение</b><p>Заменить найденнойе вхождение искомого текста текущего редактирования.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2759" /> - <location filename="../QScintilla/MiniEditor.py" line="2757" /> + <location filename="../QScintilla/MiniEditor.py" line="2760" /> + <location filename="../QScintilla/MiniEditor.py" line="2758" /> <location filename="../ViewManager/ViewManager.py" line="3852" /> <location filename="../ViewManager/ViewManager.py" line="3850" /> <source>Replace All</source> <translation>Заменить все</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2761" /> + <location filename="../QScintilla/MiniEditor.py" line="2762" /> <location filename="../ViewManager/ViewManager.py" line="3854" /> <source>Shift+Meta+R</source> <comment>Search|Replace All</comment> <translation>Shift+Meta+R</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2770" /> + <location filename="../QScintilla/MiniEditor.py" line="2771" /> <location filename="../ViewManager/ViewManager.py" line="3863" /> <source>Replace search text occurrences</source> <translation>Заменить вхождения искомого текста</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2773" /> + <location filename="../QScintilla/MiniEditor.py" line="2774" /> <location filename="../ViewManager/ViewManager.py" line="3866" /> <source><b>Replace All</b><p>Replace all occurrences of the search text in the current editor.</p></source> <translation><b>Заменить все</b><p>Заменить все вхождения искомого текста текущего редактирования.</p></translation> @@ -98053,21 +98058,21 @@ <translation>&Поиск</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2788" /> + <location filename="../QScintilla/MiniEditor.py" line="2789" /> <location filename="../QScintilla/ShellWindow.py" line="1016" /> <location filename="../ViewManager/ViewManager.py" line="4208" /> <source>Zoom in</source> <translation>Увеличить масштаб</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2790" /> + <location filename="../QScintilla/MiniEditor.py" line="2791" /> <location filename="../QScintilla/ShellWindow.py" line="1018" /> <location filename="../ViewManager/ViewManager.py" line="4210" /> <source>Zoom &in</source> <translation>У&величить масштаб</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2792" /> + <location filename="../QScintilla/MiniEditor.py" line="2793" /> <location filename="../QScintilla/ShellWindow.py" line="1020" /> <location filename="../ViewManager/ViewManager.py" line="4212" /> <source>Ctrl++</source> @@ -98075,7 +98080,7 @@ <translation>Ctrl++</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2795" /> + <location filename="../QScintilla/MiniEditor.py" line="2796" /> <location filename="../QScintilla/ShellWindow.py" line="1023" /> <location filename="../ViewManager/ViewManager.py" line="4215" /> <source>Zoom In</source> @@ -98083,35 +98088,35 @@ <translation>Увеличить масштаб</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2801" /> + <location filename="../QScintilla/MiniEditor.py" line="2802" /> <location filename="../QScintilla/ShellWindow.py" line="1029" /> <location filename="../ViewManager/ViewManager.py" line="4221" /> <source>Zoom in on the text</source> <translation>Увеличить масштаб текста</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2804" /> + <location filename="../QScintilla/MiniEditor.py" line="2805" /> <location filename="../QScintilla/ShellWindow.py" line="1032" /> <location filename="../ViewManager/ViewManager.py" line="4224" /> <source><b>Zoom in</b><p>Zoom in on the text. This makes the text bigger.</p></source> <translation><b>Увеличить масштаб</b><p>Увеличить масштаб. Размер букв увеличится.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2814" /> + <location filename="../QScintilla/MiniEditor.py" line="2815" /> <location filename="../QScintilla/ShellWindow.py" line="1042" /> <location filename="../ViewManager/ViewManager.py" line="4234" /> <source>Zoom out</source> <translation>Уменьшить масштаб</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2816" /> + <location filename="../QScintilla/MiniEditor.py" line="2817" /> <location filename="../QScintilla/ShellWindow.py" line="1044" /> <location filename="../ViewManager/ViewManager.py" line="4236" /> <source>Zoom &out</source> <translation>У&меньшить масштаб</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2818" /> + <location filename="../QScintilla/MiniEditor.py" line="2819" /> <location filename="../QScintilla/ShellWindow.py" line="1046" /> <location filename="../ViewManager/ViewManager.py" line="4238" /> <source>Ctrl+-</source> @@ -98119,7 +98124,7 @@ <translation>Ctrl+-</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2821" /> + <location filename="../QScintilla/MiniEditor.py" line="2822" /> <location filename="../QScintilla/ShellWindow.py" line="1049" /> <location filename="../ViewManager/ViewManager.py" line="4241" /> <source>Zoom Out</source> @@ -98127,35 +98132,35 @@ <translation>Уменьшить масштаб</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2827" /> + <location filename="../QScintilla/MiniEditor.py" line="2828" /> <location filename="../QScintilla/ShellWindow.py" line="1055" /> <location filename="../ViewManager/ViewManager.py" line="4247" /> <source>Zoom out on the text</source> <translation>Уменьшить масштаб текста</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2830" /> + <location filename="../QScintilla/MiniEditor.py" line="2831" /> <location filename="../QScintilla/ShellWindow.py" line="1058" /> <location filename="../ViewManager/ViewManager.py" line="4250" /> <source><b>Zoom out</b><p>Zoom out on the text. This makes the text smaller.</p></source> <translation><b>Уменьшить масштаб</b><p>Уменьшить масштаб. Размер букв уменьшится.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2840" /> + <location filename="../QScintilla/MiniEditor.py" line="2841" /> <location filename="../QScintilla/ShellWindow.py" line="1068" /> <location filename="../ViewManager/ViewManager.py" line="4260" /> <source>Zoom reset</source> <translation>Сбросить масштаб</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2842" /> + <location filename="../QScintilla/MiniEditor.py" line="2843" /> <location filename="../QScintilla/ShellWindow.py" line="1070" /> <location filename="../ViewManager/ViewManager.py" line="4262" /> <source>Zoom &reset</source> <translation>&Сбросить масштаб</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2844" /> + <location filename="../QScintilla/MiniEditor.py" line="2845" /> <location filename="../QScintilla/ShellWindow.py" line="1072" /> <location filename="../ViewManager/ViewManager.py" line="4264" /> <source>Ctrl+0</source> @@ -98163,42 +98168,42 @@ <translation>Ctrl+0</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2851" /> + <location filename="../QScintilla/MiniEditor.py" line="2852" /> <location filename="../QScintilla/ShellWindow.py" line="1079" /> <location filename="../ViewManager/ViewManager.py" line="4271" /> <source>Reset the zoom of the text</source> <translation>Сбросить масштаб текста</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2854" /> + <location filename="../QScintilla/MiniEditor.py" line="2855" /> <location filename="../QScintilla/ShellWindow.py" line="1082" /> <location filename="../ViewManager/ViewManager.py" line="4274" /> <source><b>Zoom reset</b><p>Reset the zoom of the text. This sets the zoom factor to 100%.</p></source> <translation><b>Сбросить масштаб</b><p>Сброс масштаба текста. Эта настройка возвращает масштаб текста к 100%.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2865" /> + <location filename="../QScintilla/MiniEditor.py" line="2866" /> <location filename="../QScintilla/ShellWindow.py" line="1093" /> <location filename="../ViewManager/ViewManager.py" line="4285" /> <source>Zoom</source> <translation>Масштаб</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2867" /> + <location filename="../QScintilla/MiniEditor.py" line="2868" /> <location filename="../QScintilla/ShellWindow.py" line="1095" /> <location filename="../ViewManager/ViewManager.py" line="4287" /> <source>&Zoom</source> <translation>Мас&штаб</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2874" /> + <location filename="../QScintilla/MiniEditor.py" line="2875" /> <location filename="../QScintilla/ShellWindow.py" line="1102" /> <location filename="../ViewManager/ViewManager.py" line="4294" /> <source>Zoom the text</source> <translation>Масштаб текста</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2877" /> + <location filename="../QScintilla/MiniEditor.py" line="2878" /> <location filename="../QScintilla/ShellWindow.py" line="1105" /> <location filename="../ViewManager/ViewManager.py" line="4297" /> <source><b>Zoom</b><p>Zoom the text. This opens a dialog where the desired size can be entered.</p></source> @@ -98973,65 +98978,65 @@ <translation><p>В файле <b>{0}</b> есть несохранённые изменения.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6077" /> + <location filename="../ViewManager/ViewManager.py" line="6078" /> <source>Line: {0:5}</source> <translation>Строка: {0:5}</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6083" /> + <location filename="../ViewManager/ViewManager.py" line="6084" /> <source>Pos: {0:5}</source> <translation>Позиция: {0:5}</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6103" /> + <location filename="../ViewManager/ViewManager.py" line="6104" /> <source>Language: {0}</source> <translation>Язык: {0}</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6112" /> + <location filename="../ViewManager/ViewManager.py" line="6113" /> <source>EOL Mode: {0}</source> <translation>Режим конца строк: {0}</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6640" /> - <location filename="../ViewManager/ViewManager.py" line="6597" /> + <location filename="../ViewManager/ViewManager.py" line="6641" /> + <location filename="../ViewManager/ViewManager.py" line="6598" /> <source>&Clear</source> <translation>&Очистить</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6634" /> + <location filename="../ViewManager/ViewManager.py" line="6635" /> <source>&Add</source> <translation>&Добавить</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6637" /> + <location filename="../ViewManager/ViewManager.py" line="6638" /> <source>&Edit...</source> <translation>&Правка...</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="7707" /> - <location filename="../ViewManager/ViewManager.py" line="7693" /> - <location filename="../ViewManager/ViewManager.py" line="7661" /> + <location filename="../ViewManager/ViewManager.py" line="7708" /> + <location filename="../ViewManager/ViewManager.py" line="7694" /> + <location filename="../ViewManager/ViewManager.py" line="7662" /> <source>Edit Spelling Dictionary</source> <translation>Редактировать орфографический словарь</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="7664" /> + <location filename="../ViewManager/ViewManager.py" line="7665" /> <source><p>The spelling dictionary file <b>{0}</b> could not be read.</p><p>Reason: {1}</p></source> <translation><p>Невозможно прочитать файл словаря<b>{0}</b></p><p>Причина: {1}</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="7680" /> + <location filename="../ViewManager/ViewManager.py" line="7681" /> <source>Editing {0}</source> <translation>Редактирование {0}</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="7696" /> + <location filename="../ViewManager/ViewManager.py" line="7697" /> <source><p>The spelling dictionary file <b>{0}</b> could not be written.</p><p>Reason: {1}</p></source> <translation><p>Невозможно записать файл словаря<b>{0}</b></p><p>Причина: {1}</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="7710" /> + <location filename="../ViewManager/ViewManager.py" line="7711" /> <source>The spelling dictionary was saved successfully.</source> <translation>Файл словаря успешно сохранён.</translation> </message> @@ -99041,28 +99046,28 @@ <translation>Вы должны быть подсоединены к удаленному серверу eric-ide. Прерывание...</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6819" /> + <location filename="../ViewManager/ViewManager.py" line="6820" /> <source>Clear Editor</source> <translation>Очистить редактор</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6820" /> + <location filename="../ViewManager/ViewManager.py" line="6821" /> <source>Do you really want to delete all text of the current editor?</source> <translation>Вы действительно хотите удалить весь текст из текущего редактора?</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="8240" /> - <location filename="../ViewManager/ViewManager.py" line="8223" /> - <source>File System Watcher Error</source> - <translation>Ошибка наблюдения за файловой системой</translation> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="8224" /> - <source><p>The operating system resources for file system watches are exhausted. This limit should be increased. On a Linux system you should <ul><li>sudo nano /etc/sysctl.conf</li><li>add to the bottom "fs.inotify.max_user_instances = 1024"</li><li>save and close the editor</li><li>sudo sysctl -p</li></ul></p><p>Error Message: {0}</p></source> - <translation><p>Ресурсы операционной системы для наблюдения за файловой системой исчерпаны. Это ограничение следует увеличить. В системе Linux вам следует <ul><li>sudo nano /etc/sysctl.conf</li><li>добавить в нижней части "fs.inotify.max_user_instances = 1024"</li><li>сохранить и закрыть редактор</li><li>sudo sysctl -p</li></ul></p><p>Сообщение об ошибке: {0}</p></translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="8241" /> + <location filename="../ViewManager/ViewManager.py" line="8224" /> + <source>File System Watcher Error</source> + <translation>Ошибка наблюдения за файловой системой</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="8225" /> + <source><p>The operating system resources for file system watches are exhausted. This limit should be increased. On a Linux system you should <ul><li>sudo nano /etc/sysctl.conf</li><li>add to the bottom "fs.inotify.max_user_instances = 1024"</li><li>save and close the editor</li><li>sudo sysctl -p</li></ul></p><p>Error Message: {0}</p></source> + <translation><p>Ресурсы операционной системы для наблюдения за файловой системой исчерпаны. Это ограничение следует увеличить. В системе Linux вам следует <ul><li>sudo nano /etc/sysctl.conf</li><li>добавить в нижней части "fs.inotify.max_user_instances = 1024"</li><li>сохранить и закрыть редактор</li><li>sudo sysctl -p</li></ul></p><p>Сообщение об ошибке: {0}</p></translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="8242" /> <source>The file system watcher reported an error with code <b>{0}</b>.</p><p>Error Message: {1}</p></source> <translation>Программа наблюдения за файловой системой сообщила об ошибке с кодом <b>{0}</b>.</p><p>Сообщение об ошибке: {1}</p></translation> </message> @@ -99636,7 +99641,7 @@ <message> <location filename="../VirtualEnv/VirtualenvConfigurationDialog.ui" line="0" /> <source>Upgrade</source> - <translation>Обновлять</translation> + <translation>Обновить</translation> </message> <message> <location filename="../VirtualEnv/VirtualenvConfigurationDialog.ui" line="0" /> @@ -102651,7 +102656,7 @@ <message> <location filename="../WebBrowser/WebAuth/WebBrowserWebAuthDialog.py" line="171" /> <source><b>Choose Passkey</b></source> - <translation><b>Выберите ключ доступа</b></translation> + <translation><b>Выбор ключа доступа</b></translation> </message> <message> <location filename="../WebBrowser/WebAuth/WebBrowserWebAuthDialog.py" line="173" /> @@ -102701,7 +102706,7 @@ <message> <location filename="../WebBrowser/WebAuth/WebBrowserWebAuthDialog.py" line="249" /> <source>Internal User Verification Locked!</source> - <translation>Внутренняя проверка пользователя заблокирована!</translation> + <translation>Внутренняя верификация пользователя заблокирована!</translation> </message> <message> <location filename="../WebBrowser/WebAuth/WebBrowserWebAuthDialog.py" line="251" /> @@ -102727,9 +102732,9 @@ <location filename="../WebBrowser/WebAuth/WebBrowserWebAuthDialog.py" line="265" /> <source>{0} %n attempt(s) remaining.</source> <translation> - <numerusform>{0} %n осталось n попытка.</numerusform> - <numerusform>{0} %n осталось n попытки.</numerusform> - <numerusform>{0} %n осталось n попыток.</numerusform> + <numerusform>{0} %осталось n попытка.</numerusform> + <numerusform>{0} %осталось n попытки.</numerusform> + <numerusform>{0} %осталось n попыток.</numerusform> </translation> </message> <message> @@ -102775,12 +102780,12 @@ <message> <location filename="../WebBrowser/WebAuth/WebBrowserWebAuthDialog.py" line="353" /> <source>Security key does not have resident key support.</source> - <translation>Ключ безопасности не поддерживает резидентный ключ.</translation> + <translation>Ключ безопасности не поддерживает резидентный ключ</translation> </message> <message> <location filename="../WebBrowser/WebAuth/WebBrowserWebAuthDialog.py" line="358" /> <source>Security key is missing user verification.</source> - <translation>В ключе безопасности отсутствует подтверждение пользователя.</translation> + <translation>Ключ безопасности отсутствует для верификации пользователя.</translation> </message> <message> <location filename="../WebBrowser/WebAuth/WebBrowserWebAuthDialog.py" line="363" /> @@ -102795,7 +102800,7 @@ <message> <location filename="../WebBrowser/WebAuth/WebBrowserWebAuthDialog.py" line="373" /> <source>No storage space left on the security key.</source> - <translation>Для ключа безопасности не осталось места для хранения.</translation> + <translation>Для ключа безопасности не осталось свободного места.</translation> </message> <message> <location filename="../WebBrowser/WebAuth/WebBrowserWebAuthDialog.py" line="378" /> @@ -104339,17 +104344,17 @@ <message> <location filename="../WebBrowser/WebBrowserWindow.py" line="1936" /> <source>Manage FIDO2 Security Keys...</source> - <translation>Управление ключами безопасности FIDO 2...</translation> + <translation>Управление ключами безопасности FIDO2...</translation> </message> <message> <location filename="../WebBrowser/WebBrowserWindow.py" line="1942" /> <source>Manage FIDO2 security keys</source> - <translation>Управление ключами безопасности FIDO 2</translation> + <translation>Управление ключами безопасности FIDO2</translation> </message> <message> <location filename="../WebBrowser/WebBrowserWindow.py" line="1944" /> <source><b>Manage FIDO2 Security Keys...</b><p>Opens a dialog to manage FIDO2 security keys.</p></source> - <translation><b>Управление ключами безопасности FIDO 2...</b><p>Открывает диалоговое окно для управления ключами безопасности FIDO 2.</p></translation> + <translation><b>Управление ключами безопасности FIDO2...</b><p>Открывает диалог управления ключами безопасности FIDO2.</p></translation> </message> <message> <location filename="../WebBrowser/WebBrowserWindow.py" line="1954" /> @@ -106541,301 +106546,306 @@ <translation>символ пропуска после '{0}'</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="95" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="96" /> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="94" /> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="93" /> <source>whitespace before '{0}'</source> <translation>символ пропуска перед '{0}'</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="96" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="95" /> + <source>whitespace after decorator '@'</source> + <translation>символ пропуска после символа декоратора "@"</translation> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="97" /> <source>multiple spaces before operator</source> <translation>множественные пробелы перед оператором</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="99" /> - <source>multiple spaces after operator</source> - <translation>множественные пробелы после оператора</translation> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="100" /> - <source>tab before operator</source> - <translation>табуляция перед оператором</translation> + <source>multiple spaces after operator</source> + <translation>множественные пробелы после оператора</translation> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="101" /> - <source>tab after operator</source> - <translation>табуляция после оператора</translation> + <source>tab before operator</source> + <translation>табуляция перед оператором</translation> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="102" /> + <source>tab after operator</source> + <translation>табуляция после оператора</translation> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="103" /> <source>missing whitespace around operator</source> <translation>отсутствуют символы пропуска вокруг оператора</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="105" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="106" /> <source>missing whitespace around arithmetic operator</source> <translation>отсутствуют символы пропуска вокруг арифметического оператора</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="108" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="109" /> <source>missing whitespace around bitwise or shift operator</source> <translation>отсутствуют символы пропуска вокруг побитового оператора или оператора сдвига</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="111" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="112" /> <source>missing whitespace around modulo operator</source> <translation>отсутствуют символы пропуска вокруг оператора по модулю</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="114" /> - <source>missing whitespace after '{0}'</source> - <translation>отсутствуют символы пропуска после '{0}'</translation> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="115" /> - <source>multiple spaces after '{0}'</source> - <translation>множественные пробелы после '{0}'</translation> + <source>missing whitespace after '{0}'</source> + <translation>отсутствуют символы пропуска после '{0}'</translation> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="116" /> - <source>tab after '{0}'</source> - <translation>табуляция после '{0}'</translation> + <source>multiple spaces after '{0}'</source> + <translation>множественные пробелы после '{0}'</translation> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="117" /> + <source>tab after '{0}'</source> + <translation>табуляция после '{0}'</translation> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="118" /> <source>unexpected spaces around keyword / parameter equals</source> <translation>неожиданные пробелы вокруг ключевого слова / параметра equals</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="120" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="121" /> <source>missing whitespace around parameter equals</source> <translation>отсутствие символов пропуска вокруг параметра equals</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="123" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="124" /> <source>at least two spaces before inline comment</source> <translation>по крайней мере два пробела перед комментарием в строке кода</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="126" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="127" /> <source>inline comment should start with '# '</source> <translation>комментарий в строке кода должен начинаться с '# '</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="129" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="130" /> <source>block comment should start with '# '</source> <translation>блок комментариев должен начинаться с '# '</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="132" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="133" /> <source>too many leading '#' for block comment</source> <translation>слишком много лидирующих '#' для блока комментария</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="135" /> - <source>multiple spaces after keyword</source> - <translation>множественные пробелы после ключевого слова</translation> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="136" /> - <source>multiple spaces before keyword</source> - <translation>множественные пробелы перед ключевым словом</translation> + <source>multiple spaces after keyword</source> + <translation>множественные пробелы после ключевого слова</translation> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="137" /> - <source>tab after keyword</source> - <translation>табуляция после ключевого слова</translation> + <source>multiple spaces before keyword</source> + <translation>множественные пробелы перед ключевым словом</translation> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="138" /> - <source>tab before keyword</source> - <translation>табуляция перед ключевым словом</translation> + <source>tab after keyword</source> + <translation>табуляция после ключевого слова</translation> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="139" /> + <source>tab before keyword</source> + <translation>табуляция перед ключевым словом</translation> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="140" /> <source>missing whitespace after keyword</source> <translation>отсутствует символ пропуска после ключевого слова</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="145" /> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="142" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="146" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="143" /> <source>expected {0} blank lines, found {1}</source> <translation>ожидалось {0} пустых строк, найдено {1}</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="148" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="149" /> <source>too many blank lines ({0}), expected {1}</source> <translation>слишком много пустых строк ({0}), ожидалось {1}</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="151" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="152" /> <source>blank lines found after function decorator</source> <translation>пустые строки после декоратора функции</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="154" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="155" /> <source>expected {0} blank lines after class or function definition, found {1}</source> <translation>ожидалось {0} пустых строк после определения класса или функции, найдено {1}</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="158" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="159" /> <source>expected {0} blank lines before a nested definition, found {1}</source> <translation>ожидалось {0} пустых строк перед вложенным определением, найдено {1}</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="161" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="162" /> <source>too many blank lines ({0}) before a nested definition, expected {1}</source> <translation>слишком много пустых строк ({0}) перед вложенным определением, ожидалось {1}</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="165" /> - <source>too many blank lines ({0})</source> - <translation>слишком много пустых строк ({0})</translation> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="166" /> - <source>multiple imports on one line</source> - <translation>множественный импорт в одной строке</translation> + <source>too many blank lines ({0})</source> + <translation>слишком много пустых строк ({0})</translation> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="167" /> + <source>multiple imports on one line</source> + <translation>множественный импорт в одной строке</translation> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="168" /> <source>module level import not at top of file</source> <translation>импорт модуля не в начале файла</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="170" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="171" /> <source>line too long ({0} > {1} characters)</source> <translation>слишком длинная строка ({0} > {1} символов)</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="173" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="174" /> <source>the backslash is redundant between brackets</source> <translation>символ '\' излишний внутри скобок</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="176" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="177" /> <source>multiple statements on one line (colon)</source> <translation>несколько инструкций в одной строке (двоеточие)</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="179" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="180" /> <source>multiple statements on one line (semicolon)</source> <translation>несколько инструкций в одной строке (точка с запятой)</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="182" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="183" /> <source>statement ends with a semicolon</source> <translation>инструкция завершается точкой с запятой</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="185" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="186" /> <source>multiple statements on one line (def)</source> <translation>несколько инструкций в одной строке (def)</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="191" /> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="188" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="192" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="189" /> <source>comparison to {0} should be {1}</source> <translation>сравнение с {0} должно быть {1}</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="194" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="195" /> <source>test for membership should be 'not in'</source> <translation>проверка на членство должна быть 'not in'</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="197" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="198" /> <source>test for object identity should be 'is not'</source> <translation>проверка на идентичность объекта должна быть 'is not'</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="200" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="201" /> <source>do not compare types, for exact checks use 'is' / 'is not', for instance checks use 'isinstance()'</source> <translation>не сравнивайте типы, для точных проверок используйте 'is' / 'is not', например, для проверок используйте 'isinstance()'</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="205" /> - <source>do not use bare except</source> - <translation>не используйте bare except</translation> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="206" /> + <source>do not use bare except</source> + <translation>не используйте bare except</translation> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="207" /> <source>do not assign a lambda expression, use a def</source> <translation>не назначайте лямбда-выражение, используйте def</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="209" /> - <source>ambiguous variable name '{0}'</source> - <translation>неоднозначное имя переменной '{0}'</translation> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="210" /> + <source>ambiguous variable name '{0}'</source> + <translation>неоднозначное имя переменной '{0}'</translation> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="211" /> <source>ambiguous class definition '{0}'</source> <translation>неоднозначное определение класса '{0}'</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="213" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="214" /> <source>ambiguous function definition '{0}'</source> <translation>неоднозначное определение функции '{0}'</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="216" /> - <source>{0}: {1}</source> - <translation>{0}: {1}</translation> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="217" /> + <source>{0}: {1}</source> + <translation>{0}: {1}</translation> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="218" /> <source>{0}</source> <translation>{0}</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="225" /> - <source>indentation contains tabs</source> - <translation>отступ содержит табуляцию</translation> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="226" /> - <source>trailing whitespace</source> - <translation>завершающие символы пропуска</translation> + <source>indentation contains tabs</source> + <translation>отступ содержит табуляцию</translation> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="227" /> - <source>no newline at end of file</source> - <translation>нет символа новой строки в конце файла</translation> + <source>trailing whitespace</source> + <translation>завершающие символы пропуска</translation> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="228" /> - <source>blank line contains whitespace</source> - <translation>пустая строка содержит символы пропуска</translation> + <source>no newline at end of file</source> + <translation>нет символа новой строки в конце файла</translation> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="229" /> - <source>blank line at end of file</source> - <translation>пустая строка в конце файла</translation> + <source>blank line contains whitespace</source> + <translation>пустая строка содержит символы пропуска</translation> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="230" /> + <source>blank line at end of file</source> + <translation>пустая строка в конце файла</translation> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="231" /> <source>line break before binary operator</source> <translation>разрыв строки перед бинарным оператором</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="233" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="234" /> <source>line break after binary operator</source> <translation>разрыв строки после бинарного оператора</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="236" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="237" /> <source>doc line too long ({0} > {1} characters)</source> <translation>слишком длинная строка документа ({0} > {1} символов)</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="239" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="240" /> <source>invalid escape sequence '\{0}'</source> <translation>недействительная escape-последовательность '\{0}'</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="242" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="243" /> <source>'async' and 'await' are reserved keywords starting with Python 3.7</source> <translation>'async' и 'await' - зарезервированные ключевые слова начиная с Python 3.7</translation> </message>
--- a/src/eric7/i18n/eric7_tr.ts Mon Jul 29 14:43:59 2024 +0200 +++ b/src/eric7/i18n/eric7_tr.ts Sat Aug 31 10:54:21 2024 +0200 @@ -5110,7 +5110,7 @@ <context> <name>CodeStyleChecker</name> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="515" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="516" /> <source>No message defined for code '{0}'.</source> <translation type="unfinished" /> </message> @@ -6250,146 +6250,146 @@ <context> <name>CodeStyleFixer</name> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="253" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="254" /> <source>Triple single quotes converted to triple double quotes.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="256" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="257" /> <source>Introductory quotes corrected to be {0}"""</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="259" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="260" /> <source>Single line docstring put on one line.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="262" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="263" /> <source>Period added to summary line.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="289" /> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="265" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="290" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="266" /> <source>Blank line before function/method docstring removed.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="268" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="269" /> <source>Blank line inserted before class docstring.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="271" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="272" /> <source>Blank line inserted after class docstring.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="274" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="275" /> <source>Blank line inserted after docstring summary.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="277" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="278" /> <source>Blank line inserted after last paragraph of docstring.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="280" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="281" /> <source>Leading quotes put on separate line.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="283" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="284" /> <source>Trailing quotes put on separate line.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="286" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="287" /> <source>Blank line before class docstring removed.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="292" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="293" /> <source>Blank line after class docstring removed.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="295" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="296" /> <source>Blank line after function/method docstring removed.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="298" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="299" /> <source>Blank line after last paragraph removed.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="301" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="302" /> <source>Tab converted to 4 spaces.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="304" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="305" /> <source>Indentation adjusted to be a multiple of four.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="307" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="308" /> <source>Indentation of continuation line corrected.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="310" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="311" /> <source>Indentation of closing bracket corrected.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="313" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="314" /> <source>Missing indentation of continuation line corrected.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="316" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="317" /> <source>Closing bracket aligned to opening bracket.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="319" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="320" /> <source>Indentation level changed.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="322" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="323" /> <source>Indentation level of hanging indentation changed.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="325" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="326" /> <source>Visual indentation corrected.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="340" /> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="334" /> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="328" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="341" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="335" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="329" /> <source>Extraneous whitespace removed.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="337" /> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="331" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="338" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="332" /> <source>Missing whitespace added.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="343" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="344" /> <source>Whitespace around comment sign corrected.</source> <translation type="unfinished" /> </message> <message numerus="yes"> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="346" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="347" /> <source>%n blank line(s) inserted.</source> <translation type="unfinished"> <numerusform /> @@ -6397,7 +6397,7 @@ </translation> </message> <message numerus="yes"> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="349" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="350" /> <source>%n superfluous lines removed</source> <translation type="unfinished"> <numerusform /> @@ -6405,73 +6405,73 @@ </translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="352" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="353" /> <source>Superfluous blank lines removed.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="355" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="356" /> <source>Superfluous blank lines after function decorator removed.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="358" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="359" /> <source>Imports were put on separate lines.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="361" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="362" /> <source>Long lines have been shortened.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="364" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="365" /> <source>Redundant backslash in brackets removed.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="370" /> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="367" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="371" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="368" /> <source>Compound statement corrected.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="373" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="374" /> <source>Comparison to None/True/False corrected.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="376" /> - <source>'{0}' argument added.</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="377" /> - <source>'{0}' argument removed.</source> + <source>'{0}' argument added.</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="378" /> + <source>'{0}' argument removed.</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="379" /> <source>Whitespace stripped from end of line.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="381" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="382" /> <source>newline added to end of file.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="384" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="385" /> <source>Superfluous trailing blank lines removed from end of file.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="387" /> - <source>'<>' replaced by '!='.</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="388" /> + <source>'<>' replaced by '!='.</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="389" /> <source>Could not save the file! Skipping it. Reason: {0}</source> <translation type="unfinished" /> </message> @@ -20679,45 +20679,45 @@ <context> <name>EricToolBarDialog</name> <message> - <location filename="../EricWidgets/EricToolBarDialog.py" line="89" /> + <location filename="../EricWidgets/EricToolBarDialog.py" line="90" /> <source>--Separator--</source> <translation type="unfinished">--Ayırıcı--</translation> </message> <message> - <location filename="../EricWidgets/EricToolBarDialog.py" line="169" /> - <location filename="../EricWidgets/EricToolBarDialog.py" line="160" /> + <location filename="../EricWidgets/EricToolBarDialog.py" line="164" /> + <location filename="../EricWidgets/EricToolBarDialog.py" line="155" /> <source>New Toolbar</source> <translation type="unfinished">Yeni Araççubuğu</translation> </message> <message> - <location filename="../EricWidgets/EricToolBarDialog.py" line="161" /> + <location filename="../EricWidgets/EricToolBarDialog.py" line="156" /> <source>Toolbar Name:</source> <translation type="unfinished">Araççubuğu Adı:</translation> </message> <message> - <location filename="../EricWidgets/EricToolBarDialog.py" line="238" /> - <location filename="../EricWidgets/EricToolBarDialog.py" line="170" /> + <location filename="../EricWidgets/EricToolBarDialog.py" line="233" /> + <location filename="../EricWidgets/EricToolBarDialog.py" line="165" /> <source>A toolbar with the name <b>{0}</b> already exists.</source> <translation type="unfinished"><b>{0}</b> isminde bir araç çubuğu zaten var.</translation> </message> <message> - <location filename="../EricWidgets/EricToolBarDialog.py" line="197" /> + <location filename="../EricWidgets/EricToolBarDialog.py" line="192" /> <source>Remove Toolbar</source> <translation type="unfinished">Araççubuğunu Kaldır</translation> </message> <message> - <location filename="../EricWidgets/EricToolBarDialog.py" line="198" /> + <location filename="../EricWidgets/EricToolBarDialog.py" line="193" /> <source>Should the toolbar <b>{0}</b> really be removed?</source> <translation type="unfinished"> <b>{0}</b> ismindeki araç çubuğu kaldırılacak mı?</translation> </message> <message> - <location filename="../EricWidgets/EricToolBarDialog.py" line="237" /> - <location filename="../EricWidgets/EricToolBarDialog.py" line="225" /> + <location filename="../EricWidgets/EricToolBarDialog.py" line="232" /> + <location filename="../EricWidgets/EricToolBarDialog.py" line="220" /> <source>Rename Toolbar</source> <translation type="unfinished">Araççubuğunu Yeniden Adlandır</translation> </message> <message> - <location filename="../EricWidgets/EricToolBarDialog.py" line="226" /> + <location filename="../EricWidgets/EricToolBarDialog.py" line="221" /> <source>New Toolbar Name:</source> <translation type="unfinished">Yeni Araççubuğu Adı:</translation> </message> @@ -54435,723 +54435,723 @@ <context> <name>MiniEditor</name> <message> - <location filename="../QScintilla/MiniEditor.py" line="492" /> + <location filename="../QScintilla/MiniEditor.py" line="493" /> <source>About eric Mini Editor</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="493" /> + <location filename="../QScintilla/MiniEditor.py" line="494" /> <source>The eric 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 type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="562" /> + <location filename="../QScintilla/MiniEditor.py" line="563" /> <source>Line: {0:5}</source> <translation>Satır: {0:5}</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="566" /> + <location filename="../QScintilla/MiniEditor.py" line="567" /> <source>Pos: {0:5}</source> <translation>Pos: {0:5}</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="580" /> + <location filename="../QScintilla/MiniEditor.py" line="581" /> <source>Language: {0}</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="644" /> + <location filename="../QScintilla/MiniEditor.py" line="645" /> <source>New</source> <translation>Yeni</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="646" /> - <source>&New</source> - <translation>Ye&ni</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="647" /> + <source>&New</source> + <translation>Ye&ni</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="648" /> <source>Ctrl+N</source> <comment>File|New</comment> <translation>Ctrl+N</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="652" /> + <location filename="../QScintilla/MiniEditor.py" line="653" /> <source>Open an empty editor window</source> <translation>Boş bir düzenleyici penceresi aç</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="654" /> + <location filename="../QScintilla/MiniEditor.py" line="655" /> <source><b>New</b><p>An empty editor window will be created.</p></source> <translation><b>Yeni</b><p>Boş bir düzenleme penceresi oluşturulacak.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="660" /> + <location filename="../QScintilla/MiniEditor.py" line="661" /> <source>Open</source> <translation>Aç</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="662" /> - <source>&Open...</source> - <translation>&Aç...</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="663" /> + <source>&Open...</source> + <translation>&Aç...</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="664" /> <source>Ctrl+O</source> <comment>File|Open</comment> <translation>Ctrl+O</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="668" /> + <location filename="../QScintilla/MiniEditor.py" line="669" /> <source>Open a file</source> <translation>Bir dosya aç</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="670" /> + <location filename="../QScintilla/MiniEditor.py" line="671" /> <source><b>Open a file</b><p>You will be asked for the name of a file to be opened.</p></source> <translation><b>Bir dosya aç</b><p>Açmak istediğiniz dosyanın adını giriniz.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="679" /> + <location filename="../QScintilla/MiniEditor.py" line="680" /> <source>Save</source> <translation>Kaydet</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="681" /> - <source>&Save</source> - <translation>&Kaydet</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="682" /> + <source>&Save</source> + <translation>&Kaydet</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="683" /> <source>Ctrl+S</source> <comment>File|Save</comment> <translation>Ctrl+S</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="687" /> + <location filename="../QScintilla/MiniEditor.py" line="688" /> <source>Save the current file</source> <translation>Geçerli dosyayı kaydet</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="689" /> + <location filename="../QScintilla/MiniEditor.py" line="690" /> <source><b>Save File</b><p>Save the contents of current editor window.</p></source> <translation><b>Dosya Kaydet</b><p>Geçerli düzenleyici penceresinin içeriğini kaydet.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="698" /> + <location filename="../QScintilla/MiniEditor.py" line="699" /> <source>Save as</source> <translation>Farklı kaydet</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="700" /> - <source>Save &as...</source> - <translation>Farklı k&aydet...</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="701" /> + <source>Save &as...</source> + <translation>Farklı k&aydet...</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="702" /> <source>Shift+Ctrl+S</source> <comment>File|Save As</comment> <translation>Shift+Ctrl+S</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="706" /> + <location filename="../QScintilla/MiniEditor.py" line="707" /> <source>Save the current file to a new one</source> <translation>Geçerli dosyayı yeni bir tane olarak kaydet</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="708" /> + <location filename="../QScintilla/MiniEditor.py" line="709" /> <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>Dosyayı Farklı Kaydet</b><p>Geçerli düzenleyici penceresindeki içeriği yeni bir dosyaya kaydeder. Dosya seçme diyaloğu ile bu dosyaya girilebilir.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="718" /> + <location filename="../QScintilla/MiniEditor.py" line="719" /> <source>Save Copy</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="720" /> + <location filename="../QScintilla/MiniEditor.py" line="721" /> <source>Save &Copy...</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="726" /> + <location filename="../QScintilla/MiniEditor.py" line="727" /> <source>Save a copy of the current file</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="728" /> + <location filename="../QScintilla/MiniEditor.py" line="729" /> <source><b>Save Copy</b><p>Save a copy of the contents of current editor window. The file can be entered in a file selection dialog.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="738" /> + <location filename="../QScintilla/MiniEditor.py" line="739" /> <source>Close</source> <translation>Kapat</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="740" /> - <source>&Close</source> - <translation>&Kapat</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="741" /> + <source>&Close</source> + <translation>&Kapat</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="742" /> <source>Ctrl+W</source> <comment>File|Close</comment> <translation>Ctrl+W</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="746" /> + <location filename="../QScintilla/MiniEditor.py" line="747" /> <source>Close the editor window</source> <translation>Düzenleyici penceresini kapat</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="748" /> + <location filename="../QScintilla/MiniEditor.py" line="749" /> <source><b>Close Window</b><p>Close the current window.</p></source> <translation><b>Pencereyi kapat</b><p>Geçerli pencereyi kapat.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="754" /> + <location filename="../QScintilla/MiniEditor.py" line="755" /> <source>Print</source> <translation>Yazdır</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="756" /> - <source>&Print</source> - <translation>&Yazdır</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="757" /> + <source>&Print</source> + <translation>&Yazdır</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="758" /> <source>Ctrl+P</source> <comment>File|Print</comment> <translation>Ctrl+P</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="762" /> + <location filename="../QScintilla/MiniEditor.py" line="763" /> <source>Print the current file</source> <translation>Geçerli dosyayı yazdır</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="764" /> + <location filename="../QScintilla/MiniEditor.py" line="765" /> <source><b>Print File</b><p>Print the contents of the current file.</p></source> <translation><b>Dosya Yazdır</b><p>Geçerli dosyanın içeriğini yazdır.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="773" /> + <location filename="../QScintilla/MiniEditor.py" line="774" /> <source>Print Preview</source> <translation>Baskı Öngörünümü</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="781" /> + <location filename="../QScintilla/MiniEditor.py" line="782" /> <source>Print preview of the current file</source> <translation>Geçerli dosyanın baskı öngörünümü</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="783" /> + <location filename="../QScintilla/MiniEditor.py" line="784" /> <source><b>Print Preview</b><p>Print preview of the current file.</p></source> <translation><b>Yazıcı Öngörünümü</b><p>Geçerli dosyanın yazıcı öngörünümü.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="796" /> + <location filename="../QScintilla/MiniEditor.py" line="797" /> <source>Undo</source> <translation>Geri Al</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="798" /> - <source>&Undo</source> - <translation>&Geri al</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="799" /> + <source>&Undo</source> + <translation>&Geri al</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="800" /> <source>Ctrl+Z</source> <comment>Edit|Undo</comment> <translation>Ctrl+Z</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="800" /> + <location filename="../QScintilla/MiniEditor.py" line="801" /> <source>Alt+Backspace</source> <comment>Edit|Undo</comment> <translation>Alt+Backspace</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="804" /> + <location filename="../QScintilla/MiniEditor.py" line="805" /> <source>Undo the last change</source> <translation>Enson değişikliği geri al</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="806" /> + <location filename="../QScintilla/MiniEditor.py" line="807" /> <source><b>Undo</b><p>Undo the last change done in the current editor.</p></source> <translation><b>Geri Al</b><p>Geçerli düzenleyicide yapılan son değişikliği geri al.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="815" /> + <location filename="../QScintilla/MiniEditor.py" line="816" /> <source>Redo</source> <translation>İleri al</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="817" /> - <source>&Redo</source> - <translation>&İleri al</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="818" /> + <source>&Redo</source> + <translation>&İleri al</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="819" /> <source>Ctrl+Shift+Z</source> <comment>Edit|Redo</comment> <translation>Ctrl+Shift+Z</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="823" /> + <location filename="../QScintilla/MiniEditor.py" line="824" /> <source>Redo the last change</source> <translation>Son değişikliği ileri al</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="825" /> + <location filename="../QScintilla/MiniEditor.py" line="826" /> <source><b>Redo</b><p>Redo the last change done in the current editor.</p></source> <translation><b>İleri Al</b><p>Geçerli düzenleyicide yapılan son değişikliği ileri alır.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="834" /> + <location filename="../QScintilla/MiniEditor.py" line="835" /> <source>Cut</source> <translation>Kes</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="836" /> - <source>Cu&t</source> - <translation>Ke&s</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="837" /> + <source>Cu&t</source> + <translation>Ke&s</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="838" /> <source>Ctrl+X</source> <comment>Edit|Cut</comment> <translation>Ctrl+X</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="838" /> + <location filename="../QScintilla/MiniEditor.py" line="839" /> <source>Shift+Del</source> <comment>Edit|Cut</comment> <translation>Shift+Del</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="842" /> + <location filename="../QScintilla/MiniEditor.py" line="843" /> <source>Cut the selection</source> <translation>Seçimi kes</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="844" /> + <location filename="../QScintilla/MiniEditor.py" line="845" /> <source><b>Cut</b><p>Cut the selected text of the current editor to the clipboard.</p></source> <translation><b>Kes</b><p>Geçerli düzenleyicide seçilen metni panoya keser.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="854" /> + <location filename="../QScintilla/MiniEditor.py" line="855" /> <source>Copy</source> <translation>Kopyala</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="856" /> - <source>&Copy</source> - <translation>&Kopyala</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="857" /> - <source>Ctrl+C</source> - <comment>Edit|Copy</comment> - <translation>Ctrl+C</translation> + <source>&Copy</source> + <translation>&Kopyala</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="858" /> + <source>Ctrl+C</source> + <comment>Edit|Copy</comment> + <translation>Ctrl+C</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="859" /> <source>Ctrl+Ins</source> <comment>Edit|Copy</comment> <translation>Ctrl+Ins</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="862" /> + <location filename="../QScintilla/MiniEditor.py" line="863" /> <source>Copy the selection</source> <translation>Seçimi kopyala</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="864" /> + <location filename="../QScintilla/MiniEditor.py" line="865" /> <source><b>Copy</b><p>Copy the selected text of the current editor to the clipboard.</p></source> <translation><b>Kopya</b><p>Geçerli düzenleyicideki seçilen metni clipboarda kopyala.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="874" /> + <location filename="../QScintilla/MiniEditor.py" line="875" /> <source>Paste</source> <translation>Yapıştır</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="876" /> - <source>&Paste</source> - <translation>Ya&pıştır</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="877" /> - <source>Ctrl+V</source> - <comment>Edit|Paste</comment> - <translation>Ctrl+V</translation> + <source>&Paste</source> + <translation>Ya&pıştır</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="878" /> + <source>Ctrl+V</source> + <comment>Edit|Paste</comment> + <translation>Ctrl+V</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="879" /> <source>Shift+Ins</source> <comment>Edit|Paste</comment> <translation>Shift+Ins</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="882" /> + <location filename="../QScintilla/MiniEditor.py" line="883" /> <source>Paste the last cut/copied text</source> <translation>En son kesilen/kopyalanan metni yapıştır</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="884" /> + <location filename="../QScintilla/MiniEditor.py" line="885" /> <source><b>Paste</b><p>Paste the last cut/copied text from the clipboard to the current editor.</p></source> <translation><b>Yapıştır</b><p>En son kesilen/kopyalanan metni panodan geçerli düzenleyiciye yapıştırır.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="894" /> + <location filename="../QScintilla/MiniEditor.py" line="895" /> <source>Clear</source> <translation>Temizle</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="896" /> - <source>Cl&ear</source> - <translation>T&emizle</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="897" /> + <source>Cl&ear</source> + <translation>T&emizle</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="898" /> <source>Alt+Shift+C</source> <comment>Edit|Clear</comment> <translation>Alt+Shift+C</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="902" /> + <location filename="../QScintilla/MiniEditor.py" line="903" /> <source>Clear all text</source> <translation>Tüm metni temizle</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="904" /> + <location filename="../QScintilla/MiniEditor.py" line="905" /> <source><b>Clear</b><p>Delete all text of the current editor.</p></source> <translation><b>Temizle</b><p>Geçerli düzenleyicideki tüm metinleri sil.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2892" /> + <location filename="../QScintilla/MiniEditor.py" line="2893" /> <source>About</source> <translation>Hakkında</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2892" /> + <location filename="../QScintilla/MiniEditor.py" line="2893" /> <source>&About</source> <translation>H&akkında</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2894" /> + <location filename="../QScintilla/MiniEditor.py" line="2895" /> <source>Display information about this software</source> <translation>Bu yazılım hakkında bilgi göster</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2896" /> + <location filename="../QScintilla/MiniEditor.py" line="2897" /> <source><b>About</b><p>Display some information about this software.</p></source> <translation><b>Hakkında</b><p>Bu yazılım hakkındaki çeşitli bilgileri gösterir.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2905" /> + <location filename="../QScintilla/MiniEditor.py" line="2906" /> <source>About Qt</source> <translation>Qt Hakkında</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2905" /> + <location filename="../QScintilla/MiniEditor.py" line="2906" /> <source>About &Qt</source> <translation>&Qt Hakkında</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2908" /> + <location filename="../QScintilla/MiniEditor.py" line="2909" /> <source>Display information about the Qt toolkit</source> <translation>Qt araçkiti hakkında bilgi göster</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2911" /> + <location filename="../QScintilla/MiniEditor.py" line="2912" /> <source><b>About Qt</b><p>Display some information about the Qt toolkit.</p></source> <translation><b>Qt Hakkında</b><p>Qt Araçkiti hakkında bazı bilgiler gösterir.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2920" /> + <location filename="../QScintilla/MiniEditor.py" line="2921" /> <source>What's This?</source> <translation>Bu nedir?</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2922" /> - <source>&What's This?</source> - <translation>Bu &Nedir?</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="2923" /> + <source>&What's This?</source> + <translation>Bu &Nedir?</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="2924" /> <source>Shift+F1</source> <comment>Help|What's This?'</comment> <translation>Shift+F1</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2928" /> + <location filename="../QScintilla/MiniEditor.py" line="2929" /> <source>Context sensitive help</source> <translation>Duyarlı yardım</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2930" /> + <location filename="../QScintilla/MiniEditor.py" line="2931" /> <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>Duyarlı yardım içeriğini görüntüle</b><p>Bu Nedir? modunda, Fare imleci soru işeretiyle beraber bir ok şeklindedir ve bir arayüz elemanı üzerinde tıklarsanız bu elemanın nasıl kullanılacağı ve hakkında kısa bilgi verir. bu özellik diyaloglarda başlık çubuğu üzerindeyken çıkarılan açılır menülerde de bulunmaktadır.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2948" /> + <location filename="../QScintilla/MiniEditor.py" line="2949" /> <source>Preferences</source> <translation type="unfinished">Seçenekler</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2950" /> + <location filename="../QScintilla/MiniEditor.py" line="2951" /> <source>&Preferences...</source> <translation type="unfinished">&Seçenekler...</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2956" /> + <location filename="../QScintilla/MiniEditor.py" line="2957" /> <source>Set the prefered configuration</source> <translation type="unfinished">tercih edilen ayarları yapınız</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2958" /> + <location filename="../QScintilla/MiniEditor.py" line="2959" /> <source><b>Preferences</b><p>Set the configuration items of the application with your prefered values.</p></source> <translation type="unfinished"><b>Tercihler</b><p>Uygulamanın ayarlama maddelerini tercih ettiğiniz değerlerle ayarlayınız.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2972" /> + <location filename="../QScintilla/MiniEditor.py" line="2973" /> <source>&File</source> <translation>&Dosya</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2984" /> + <location filename="../QScintilla/MiniEditor.py" line="2985" /> <source>&Edit</source> <translation>Düz&en</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2994" /> + <location filename="../QScintilla/MiniEditor.py" line="2995" /> <source>&Search</source> <translation type="unfinished">A&ra</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3004" /> + <location filename="../QScintilla/MiniEditor.py" line="3005" /> <source>&View</source> <translation type="unfinished">&Görünüm</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3010" /> + <location filename="../QScintilla/MiniEditor.py" line="3011" /> <source>Se&ttings</source> <translation type="unfinished">Ayar&lar</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3015" /> + <location filename="../QScintilla/MiniEditor.py" line="3016" /> <source>&Help</source> <translation>&Yardım</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3027" /> + <location filename="../QScintilla/MiniEditor.py" line="3028" /> <source>File</source> <translation>Dosya</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3039" /> + <location filename="../QScintilla/MiniEditor.py" line="3040" /> <source>Edit</source> <translation>Düzen</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3048" /> + <location filename="../QScintilla/MiniEditor.py" line="3049" /> <source>Search</source> <translation type="unfinished">Ara</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3054" /> + <location filename="../QScintilla/MiniEditor.py" line="3055" /> <source>View</source> <translation type="unfinished">Görünüm</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3060" /> + <location filename="../QScintilla/MiniEditor.py" line="3061" /> <source>Settings</source> <translation type="unfinished">Ayarlar</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3063" /> + <location filename="../QScintilla/MiniEditor.py" line="3064" /> <source>Help</source> <translation>Yardım</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3076" /> + <location filename="../QScintilla/MiniEditor.py" line="3077" /> <source><p>This part of the status bar displays the editor language.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3086" /> + <location filename="../QScintilla/MiniEditor.py" line="3087" /> <source><p>This part of the status bar displays an indication of the editors files writability.</p></source> <translation><p>Durum çubuğununu bu parçası düzenleyicideki dosyanın yazılabilme durumunu işaret eder. </p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3095" /> + <location filename="../QScintilla/MiniEditor.py" line="3096" /> <source><p>This part of the status bar displays the line number of the editor.</p></source> <translation><p>Durum çubuğununu bu parçası düzenleyicideki satır numarasını gösterir.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3104" /> + <location filename="../QScintilla/MiniEditor.py" line="3105" /> <source><p>This part of the status bar displays the cursor position of the editor.</p></source> <translation><p>Durum çubuğununu bu parçası düzenleyicideki imlecin konumunu gösterir.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3118" /> + <location filename="../QScintilla/MiniEditor.py" line="3119" /> <source><p>This part of the status bar allows zooming the editor.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3125" /> + <location filename="../QScintilla/MiniEditor.py" line="3126" /> <source>Ready</source> <translation>Hazır</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3201" /> - <source>eric Mini Editor</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="3202" /> + <source>eric Mini Editor</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="3203" /> <source>The document has unsaved changes.</source> <translation>Belgede kaydedilmemiş değişiklikler var.</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3231" /> - <source>Open File</source> - <translation>Dosya Aç</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="3232" /> + <source>Open File</source> + <translation>Dosya Aç</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="3233" /> <source><p>The file <b>{0}</b> could not be opened.</p><p>Reason: {1}</p></source> <translation><p>Dosya <b>{0}</b> açılamıyor.</p><p>Sebep: {1}</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3260" /> + <location filename="../QScintilla/MiniEditor.py" line="3261" /> <source>File loaded</source> <translation>Dosya Yüklendi</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3341" /> - <source>Save File</source> - <translation>Dosyayı Kaydet</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="3342" /> + <source>Save File</source> + <translation>Dosyayı Kaydet</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="3343" /> <source><p>The file <b>{0}</b> could not be saved.<br/>Reason: {1}</p></source> <translation><p>Dosya <b>{0}</b> kaydedilemiyor.</p><p>Sebep: {1}</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3348" /> + <location filename="../QScintilla/MiniEditor.py" line="3349" /> <source>File saved</source> <translation>Dosya Kaydedildi</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3360" /> + <location filename="../QScintilla/MiniEditor.py" line="3361" /> <source>[*] - {0}</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3380" /> - <location filename="../QScintilla/MiniEditor.py" line="3360" /> + <location filename="../QScintilla/MiniEditor.py" line="3381" /> + <location filename="../QScintilla/MiniEditor.py" line="3361" /> <source>Mini Editor</source> <translation>Mini Düzenleyici</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3735" /> - <location filename="../QScintilla/MiniEditor.py" line="3706" /> - <location filename="../QScintilla/MiniEditor.py" line="3373" /> + <location filename="../QScintilla/MiniEditor.py" line="3736" /> + <location filename="../QScintilla/MiniEditor.py" line="3707" /> + <location filename="../QScintilla/MiniEditor.py" line="3374" /> <source>Untitled</source> <translation>Başlıksız</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3380" /> + <location filename="../QScintilla/MiniEditor.py" line="3381" /> <source>{0}[*] - {1}</source> <translation>{0}[*] - {1}</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3701" /> + <location filename="../QScintilla/MiniEditor.py" line="3702" /> <source>Printing...</source> <translation>Yazılıyor...</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3717" /> + <location filename="../QScintilla/MiniEditor.py" line="3718" /> <source>Printing completed</source> <translation>Yazdırma tamalandı</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3719" /> + <location filename="../QScintilla/MiniEditor.py" line="3720" /> <source>Error while printing</source> <translation>Yazdırılırken hata</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3722" /> + <location filename="../QScintilla/MiniEditor.py" line="3723" /> <source>Printing aborted</source> <translation>Yazdırma iptal edildi</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3777" /> - <source>Select all</source> - <translation>Hepsini seç</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="3778" /> + <source>Select all</source> + <translation>Hepsini seç</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="3779" /> <source>Deselect all</source> <translation>Tüm seçimi iptal et</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3792" /> + <location filename="../QScintilla/MiniEditor.py" line="3793" /> <source>Languages</source> <translation>Diller</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3795" /> + <location filename="../QScintilla/MiniEditor.py" line="3796" /> <source>No Language</source> <translation>Dil Yok</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3816" /> + <location filename="../QScintilla/MiniEditor.py" line="3817" /> <source>Guessed</source> <translation>Tahmin edilen</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3838" /> - <location filename="../QScintilla/MiniEditor.py" line="3820" /> + <location filename="../QScintilla/MiniEditor.py" line="3839" /> + <location filename="../QScintilla/MiniEditor.py" line="3821" /> <source>Alternatives</source> <translation>Alternatifler</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3835" /> + <location filename="../QScintilla/MiniEditor.py" line="3836" /> <source>Alternatives ({0})</source> <translation>Alternatifler ({0})</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3867" /> - <source>Pygments Lexer</source> - <translation>Pygments Lexer</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="3868" /> + <source>Pygments Lexer</source> + <translation>Pygments Lexer</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="3869" /> <source>Select the Pygments lexer to apply.</source> <translation>Kullanmak için Pygment lexer seç.</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="4413" /> - <source>EditorConfig Properties</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="4414" /> + <source>EditorConfig Properties</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="4415" /> <source><p>The EditorConfig properties for file <b>{0}</b> could not be loaded.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="4601" /> - <source>Save File to Device</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="4602" /> + <source>Save File to Device</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="4603" /> <source>Enter the complete device file path:</source> <translation type="unfinished" /> </message> @@ -55368,499 +55368,504 @@ <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="135" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="134" /> + <source>unnecessary {0} comprehension - rewrite using dict.fromkeys()</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="139" /> <source>sort keys - '{0}' should be before '{1}'</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="140" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="144" /> <source>the number of arguments for property getter method is wrong (should be 1 instead of {0})</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="145" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="149" /> <source>the number of arguments for property setter method is wrong (should be 2 instead of {0})</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="150" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="154" /> <source>the number of arguments for property deleter method is wrong (should be 1 instead of {0})</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="155" /> - <source>the name of the setter method is wrong (should be '{0}' instead of '{1}')</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="159" /> - <source>the name of the deleter method is wrong (should be '{0}' instead of '{1}')</source> + <source>the name of the setter method is wrong (should be '{0}' instead of '{1}')</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="163" /> - <source>the name of the setter decorator is wrong (should be '{0}' instead of '{1}')</source> + <source>the name of the deleter method is wrong (should be '{0}' instead of '{1}')</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="167" /> - <source>the name of the deleter decorator is wrong (should be '{0}' instead of '{1}')</source> + <source>the name of the setter decorator is wrong (should be '{0}' instead of '{1}')</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="171" /> + <source>the name of the deleter decorator is wrong (should be '{0}' instead of '{1}')</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="175" /> <source>multiple decorators were used to declare property '{0}'</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="176" /> - <source>use of 'datetime.datetime()' without 'tzinfo' argument should be avoided</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="180" /> + <source>use of 'datetime.datetime()' without 'tzinfo' argument should be avoided</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="184" /> <source>use of 'datetime.datetime.today()' should be avoided. Use 'datetime.datetime.now(tz=)' instead.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="185" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="189" /> <source>use of 'datetime.datetime.utcnow()' should be avoided. Use 'datetime.datetime.now(tz=datetime.timezone.utc)' instead.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="190" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="194" /> <source>use of 'datetime.datetime.utcfromtimestamp()' should be avoided. Use 'datetime.datetime.fromtimestamp(..., tz=datetime.timezone.utc)' instead.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="195" /> - <source>use of 'datetime.datetime.now()' without 'tz' argument should be avoided</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="199" /> + <source>use of 'datetime.datetime.now()' without 'tz' argument should be avoided</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="203" /> <source>use of 'datetime.datetime.fromtimestamp()' without 'tz' argument should be avoided</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="204" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="208" /> <source>use of 'datetime.datetime.strptime()' should be followed by '.replace(tzinfo=)'</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="209" /> - <source>use of 'datetime.datetime.fromordinal()' should be avoided</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="213" /> + <source>use of 'datetime.datetime.fromordinal()' should be avoided</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="217" /> <source>use of 'datetime.date()' should be avoided. Use 'datetime.datetime(, tzinfo=).date()' instead.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="218" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="222" /> <source>use of 'datetime.date.today()' should be avoided. Use 'datetime.datetime.now(tz=).date()' instead.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="223" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="227" /> <source>use of 'datetime.date.fromtimestamp()' should be avoided. Use 'datetime.datetime.fromtimestamp(tz=).date()' instead.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="228" /> - <source>use of 'datetime.date.fromordinal()' should be avoided</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="232" /> - <source>use of 'datetime.date.fromisoformat()' should be avoided</source> + <source>use of 'datetime.date.fromordinal()' should be avoided</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="236" /> + <source>use of 'datetime.date.fromisoformat()' should be avoided</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="240" /> <source>use of 'datetime.time()' without 'tzinfo' argument should be avoided</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="241" /> - <source>'sys.version[:3]' referenced (Python 3.10), use 'sys.version_info'</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="245" /> - <source>'sys.version[2]' referenced (Python 3.10), use 'sys.version_info'</source> + <source>'sys.version[:3]' referenced (Python 3.10), use 'sys.version_info'</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="249" /> - <source>'sys.version' compared to string (Python 3.10), use 'sys.version_info'</source> + <source>'sys.version[2]' referenced (Python 3.10), use 'sys.version_info'</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="253" /> - <source>'sys.version_info[0] == 3' referenced (Python 4), use '>='</source> + <source>'sys.version' compared to string (Python 3.10), use 'sys.version_info'</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="257" /> - <source>'six.PY3' referenced (Python 4), use 'not six.PY2'</source> + <source>'sys.version_info[0] == 3' referenced (Python 4), use '>='</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="261" /> + <source>'six.PY3' referenced (Python 4), use 'not six.PY2'</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="265" /> <source>'sys.version_info[1]' compared to integer (Python 4), compare 'sys.version_info' to tuple</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="266" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="270" /> <source>'sys.version_info.minor' compared to integer (Python 4), compare 'sys.version_info' to tuple</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="271" /> - <source>'sys.version[0]' referenced (Python 10), use 'sys.version_info'</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="275" /> - <source>'sys.version' compared to string (Python 10), use 'sys.version_info'</source> + <source>'sys.version[0]' referenced (Python 10), use 'sys.version_info'</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="279" /> + <source>'sys.version' compared to string (Python 10), use 'sys.version_info'</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="283" /> <source>'sys.version[:1]' referenced (Python 10), use 'sys.version_info'</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="284" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="288" /> <source>Do not use bare 'except:', it also catches unexpected events like memory errors, interrupts, system exit, and so on. Prefer excepting specific exceptions. If you're sure what you're doing, be explicit and write 'except BaseException:'.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="291" /> - <source>Python does not support the unary prefix increment</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="295" /> + <source>Python does not support the unary prefix increment</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="299" /> <source>assigning to 'os.environ' does not clear the environment - use 'os.environ.clear()'</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="300" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="304" /> <source>using 'hasattr(x, "__call__")' to test if 'x' is callable is unreliable. Use 'callable(x)' for consistent results.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="305" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="309" /> <source>using .strip() with multi-character strings is misleading. Use .replace(), .removeprefix(), .removesuffix(), or regular expressions to remove string fragments.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="311" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="315" /> <source>loop control variable {0} not used within the loop body - start the name with an underscore</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="316" /> - <source>do not call getattr with a constant attribute value</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="320" /> - <source>do not call setattr with a constant attribute value</source> + <source>do not call getattr with a constant attribute value</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="324" /> - <source>do not call assert False since python -O removes these calls</source> + <source>do not call setattr with a constant attribute value</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="328" /> + <source>do not call assert False since python -O removes these calls</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="332" /> <source>return/continue/break inside finally blocks cause exceptions to be silenced. Exceptions should be silenced in except blocks. Control statements can be moved outside the finally block.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="334" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="338" /> <source>A length-one tuple literal is redundant. Write 'except {0}:' instead of 'except ({0},):'.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="339" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="343" /> <source>Redundant exception types in 'except ({0}){1}:'. Write 'except {2}{1}:', which catches exactly the same exceptions.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="344" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="348" /> <source>Result of comparison is not used. This line doesn't do anything. Did you intend to prepend it with assert?</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="349" /> - <source>Cannot raise a literal. Did you intend to return it or raise an Exception?</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="353" /> + <source>Cannot raise a literal. Did you intend to return it or raise an Exception?</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="357" /> <source>'assertRaises(Exception)' and 'pytest.raises(Exception)' should be considered evil. They can lead to your test passing even if the code being tested is never executed due to a typo. Assert for a more specific exception (builtin or custom), or use 'assertRaisesRegex' (if using 'assertRaises'), or add the 'match' keyword argument (if using 'pytest.raises'), or use the context manager form with a target.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="362" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="366" /> <source>Found useless {0} expression. Consider either assigning it to a variable or removing it.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="367" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="371" /> <source>Use of 'functools.lru_cache' or 'functools.cache' on methods can lead to memory leaks. The cache may retain instance references, preventing garbage collection.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="373" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="377" /> <source>Found for loop that reassigns the iterable it is iterating with each iterable value.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="378" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="382" /> <source>f-string used as docstring. This will be interpreted by python as a joined string rather than a docstring.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="383" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="387" /> <source>No arguments passed to 'contextlib.suppress'. No exceptions will be suppressed and therefore this context manager is redundant.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="388" /> - <source>Function definition does not bind loop variable '{0}'.</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="392" /> + <source>Function definition does not bind loop variable '{0}'.</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="396" /> <source>{0} is an abstract base class, but none of the methods it defines are abstract. This is not necessarily an error, but you might have forgotten to add the @abstractmethod decorator, potentially in conjunction with @classmethod, @property and/or @staticmethod.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="399" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="403" /> <source>Exception '{0}' has been caught multiple times. Only the first except will be considered and all other except catches can be safely removed.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="404" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="408" /> <source>Star-arg unpacking after a keyword argument is strongly discouraged, because it only works when the keyword parameter is declared after all parameters supplied by the unpacked sequence, and this change of ordering can surprise and mislead readers.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="411" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="415" /> <source>{0} is an empty method in an abstract base class, but has no abstract decorator. Consider adding @abstractmethod.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="416" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="420" /> <source>No explicit stacklevel argument found. The warn method from the warnings module uses a stacklevel of 1 by default. This will only show a stack trace for the line on which the warn method is called. It is therefore recommended to use a stacklevel of 2 or greater to provide more information to the user.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="424" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="428" /> <source>Using 'except ():' with an empty tuple does not handle/catch anything. Add exceptions to handle.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="429" /> - <source>Except handlers should only be names of exception classes</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="433" /> + <source>Except handlers should only be names of exception classes</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="437" /> <source>Using the generator returned from 'itertools.groupby()' more than once will do nothing on the second usage. Save the result to a list, if the result is needed multiple times.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="439" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="443" /> <source>Possible unintentional type annotation (using ':'). Did you mean to assign (using '=')?</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="444" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="448" /> <source>Set should not contain duplicate item '{0}'. Duplicate items will be replaced with a single item at runtime.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="449" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="453" /> <source>re.{0} should get '{1}' and 'flags' passed as keyword arguments to avoid confusion due to unintuitive argument positions.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="454" /> - <source>Static key in dict comprehension: {0!r}.</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="458" /> - <source>Don't except 'BaseException' unless you plan to re-raise it.</source> + <source>Static key in dict comprehension: {0!r}.</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="462" /> + <source>Don't except 'BaseException' unless you plan to re-raise it.</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="466" /> <source>Class '__init__' methods must not return or yield and any values.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="467" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="471" /> <source>Editing a loop's mutable iterable often leads to unexpected results/bugs.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="472" /> - <source>unncessary f-string</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="476" /> + <source>unncessary f-string</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="480" /> <source>cannot use 'self.__class__' as first argument of 'super()' call</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="481" /> - <source>found {0} formatter</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="485" /> - <source>format string does contain unindexed parameters</source> + <source>found {0} formatter</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="489" /> - <source>docstring does contain unindexed parameters</source> + <source>format string does contain unindexed parameters</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="493" /> - <source>other string does contain unindexed parameters</source> + <source>docstring does contain unindexed parameters</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="497" /> - <source>format call uses too large index ({0})</source> + <source>other string does contain unindexed parameters</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="501" /> - <source>format call uses missing keyword ({0})</source> + <source>format call uses too large index ({0})</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="505" /> - <source>format call uses keyword arguments but no named entries</source> + <source>format call uses missing keyword ({0})</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="509" /> - <source>format call uses variable arguments but no numbered entries</source> + <source>format call uses keyword arguments but no named entries</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="513" /> - <source>format call uses implicit and explicit indexes together</source> + <source>format call uses variable arguments but no numbered entries</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="517" /> - <source>format call provides unused index ({0})</source> + <source>format call uses implicit and explicit indexes together</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="521" /> + <source>format call provides unused index ({0})</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="525" /> <source>format call provides unused keyword ({0})</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="526" /> - <source>expected these __future__ imports: {0}; but only got: {1}</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="530" /> + <source>expected these __future__ imports: {0}; but only got: {1}</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="534" /> <source>expected these __future__ imports: {0}; but got none</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="535" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="539" /> <source>gettext import with alias _ found: {0}</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="540" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="544" /> <source>print statement found</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="545" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="549" /> <source>one element tuple found</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="554" /> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="550" /> - <source>mutable default argument of type {0}</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="558" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="554" /> + <source>mutable default argument of type {0}</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="562" /> <source>mutable default argument of function call '{0}'</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="563" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="567" /> <source>None should not be added at any return if function has no return value except None</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="568" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="572" /> <source>an explicit value at every return should be added if function has a return value except None</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="573" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="577" /> <source>an explicit return at the end of the function should be added if it has a return value except None</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="578" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="582" /> <source>a value should not be assigned to a variable if it will be used as a return value only</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="584" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="588" /> <source>prefer implied line continuation inside parentheses, brackets and braces as opposed to a backslash</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="590" /> - <source>implicitly concatenated string or bytes literals on one line</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="594" /> - <source>implicitly concatenated string or bytes literals over continuation line</source> + <source>implicitly concatenated string or bytes literals on one line</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="598" /> + <source>implicitly concatenated string or bytes literals over continuation line</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="602" /> <source>explicitly concatenated string or bytes should be implicitly concatenated</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="603" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="607" /> <source>commented code lines should be removed</source> <translation type="unfinished" /> </message> @@ -86231,15 +86236,15 @@ <context> <name>Tabview</name> <message> - <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="1132" /> - <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="1067" /> + <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="1134" /> + <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="1069" /> <source>Untitled {0}</source> <translation>Başlıksız {0}</translation> </message> <message> - <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="1532" /> - <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="1143" /> - <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="1088" /> + <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="1534" /> + <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="1145" /> + <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="1090" /> <source>{0} (ro)</source> <translation>{0} (ro)</translation> </message> @@ -90965,7 +90970,7 @@ <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7844" /> + <location filename="../UI/UserInterface.py" line="7860" /> <location filename="../UI/UserInterface.py" line="1946" /> <location filename="../UI/UserInterface.py" line="1939" /> <source>Load session</source> @@ -92056,7 +92061,7 @@ <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6593" /> + <location filename="../UI/UserInterface.py" line="6609" /> <location filename="../UI/UserInterface.py" line="3163" /> <source>Snapshot</source> <translation type="unfinished" /> @@ -92293,8 +92298,8 @@ <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7552" /> - <location filename="../UI/UserInterface.py" line="7533" /> + <location filename="../UI/UserInterface.py" line="7568" /> + <location filename="../UI/UserInterface.py" line="7549" /> <location filename="../UI/UserInterface.py" line="3393" /> <source>Export Keyboard Shortcuts</source> <translation>Kılavye Kısa Yollarını Dışa Aktar</translation> @@ -92315,7 +92320,7 @@ <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7571" /> + <location filename="../UI/UserInterface.py" line="7587" /> <location filename="../UI/UserInterface.py" line="3412" /> <source>Import Keyboard Shortcuts</source> <translation>Klavye kısayollarını İçe Aktar</translation> @@ -92724,7 +92729,7 @@ <translation>Ayarlar</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6321" /> + <location filename="../UI/UserInterface.py" line="6337" /> <location filename="../UI/UserInterface.py" line="4185" /> <location filename="../UI/UserInterface.py" line="4170" /> <source>Help</source> @@ -92902,313 +92907,313 @@ <translation>&Hepsini gizle</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6458" /> - <location filename="../UI/UserInterface.py" line="6447" /> - <location filename="../UI/UserInterface.py" line="6399" /> - <location filename="../UI/UserInterface.py" line="6389" /> - <location filename="../UI/UserInterface.py" line="6210" /> - <location filename="../UI/UserInterface.py" line="6200" /> - <location filename="../UI/UserInterface.py" line="6142" /> - <location filename="../UI/UserInterface.py" line="6132" /> + <location filename="../UI/UserInterface.py" line="6474" /> + <location filename="../UI/UserInterface.py" line="6463" /> + <location filename="../UI/UserInterface.py" line="6415" /> + <location filename="../UI/UserInterface.py" line="6405" /> + <location filename="../UI/UserInterface.py" line="6228" /> + <location filename="../UI/UserInterface.py" line="6218" /> + <location filename="../UI/UserInterface.py" line="6160" /> + <location filename="../UI/UserInterface.py" line="6150" /> <source>Problem</source> <translation>Problem</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6459" /> - <location filename="../UI/UserInterface.py" line="6448" /> - <location filename="../UI/UserInterface.py" line="6400" /> - <location filename="../UI/UserInterface.py" line="6390" /> - <location filename="../UI/UserInterface.py" line="6211" /> - <location filename="../UI/UserInterface.py" line="6201" /> - <location filename="../UI/UserInterface.py" line="6143" /> - <location filename="../UI/UserInterface.py" line="6133" /> + <location filename="../UI/UserInterface.py" line="6475" /> + <location filename="../UI/UserInterface.py" line="6464" /> + <location filename="../UI/UserInterface.py" line="6416" /> + <location filename="../UI/UserInterface.py" line="6406" /> + <location filename="../UI/UserInterface.py" line="6229" /> + <location filename="../UI/UserInterface.py" line="6219" /> + <location filename="../UI/UserInterface.py" line="6161" /> + <location filename="../UI/UserInterface.py" line="6151" /> <source><p>The file <b>{0}</b> does not exist or is zero length.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6702" /> - <location filename="../UI/UserInterface.py" line="6613" /> - <location filename="../UI/UserInterface.py" line="6494" /> - <location filename="../UI/UserInterface.py" line="6471" /> - <location filename="../UI/UserInterface.py" line="6412" /> - <location filename="../UI/UserInterface.py" line="6359" /> - <location filename="../UI/UserInterface.py" line="6337" /> - <location filename="../UI/UserInterface.py" line="6286" /> - <location filename="../UI/UserInterface.py" line="6277" /> - <location filename="../UI/UserInterface.py" line="6242" /> - <location filename="../UI/UserInterface.py" line="6233" /> - <location filename="../UI/UserInterface.py" line="6174" /> - <location filename="../UI/UserInterface.py" line="6165" /> + <location filename="../UI/UserInterface.py" line="6718" /> + <location filename="../UI/UserInterface.py" line="6629" /> + <location filename="../UI/UserInterface.py" line="6510" /> + <location filename="../UI/UserInterface.py" line="6487" /> + <location filename="../UI/UserInterface.py" line="6428" /> + <location filename="../UI/UserInterface.py" line="6375" /> + <location filename="../UI/UserInterface.py" line="6353" /> + <location filename="../UI/UserInterface.py" line="6304" /> + <location filename="../UI/UserInterface.py" line="6295" /> + <location filename="../UI/UserInterface.py" line="6260" /> + <location filename="../UI/UserInterface.py" line="6251" /> + <location filename="../UI/UserInterface.py" line="6192" /> + <location filename="../UI/UserInterface.py" line="6183" /> <source>Process Generation Error</source> <translation>İşlem Üretecinde Hata</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6166" /> + <location filename="../UI/UserInterface.py" line="6184" /> <source><p>Could not start Qt-Designer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6175" /> + <location filename="../UI/UserInterface.py" line="6193" /> <source><p>Could not find the Qt-Designer executable.<br>Ensure that it is installed and optionally configured on the Qt configuration page.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6234" /> + <location filename="../UI/UserInterface.py" line="6252" /> <source><p>Could not start Qt-Linguist.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6243" /> + <location filename="../UI/UserInterface.py" line="6261" /> <source><p>Could not find the Qt-Linguist executable.<br>Ensure that it is installed and optionally configured on the Qt configuration page.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6278" /> + <location filename="../UI/UserInterface.py" line="6296" /> <source><p>Could not start Qt-Assistant.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6287" /> + <location filename="../UI/UserInterface.py" line="6305" /> <source><p>Could not find the Qt-Assistant executable.<br>Ensure that it is installed and optionally configured on the Qt configuration page.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6322" /> - <source>Currently no custom viewer is selected. Please use the preferences dialog to specify one.</source> - <translation>Hali hazırda kullanıcı göstericisi seçilmedi. Lütfen .birini belirlemek için özellikler diyaloğunu kullanının.</translation> - </message> - <message> <location filename="../UI/UserInterface.py" line="6338" /> + <source>Currently no custom viewer is selected. Please use the preferences dialog to specify one.</source> + <translation>Hali hazırda kullanıcı göstericisi seçilmedi. Lütfen .birini belirlemek için özellikler diyaloğunu kullanının.</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="6354" /> <source><p>Could not start custom viewer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6360" /> + <location filename="../UI/UserInterface.py" line="6376" /> <source><p>Could not start the help viewer.<br>Ensure that it is available as <b>hh</b>.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6413" /> + <location filename="../UI/UserInterface.py" line="6429" /> <source><p>Could not start UI Previewer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6472" /> + <location filename="../UI/UserInterface.py" line="6488" /> <source><p>Could not start Translation Previewer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6495" /> + <location filename="../UI/UserInterface.py" line="6511" /> <source><p>Could not start SQL Browser.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6594" /> + <location filename="../UI/UserInterface.py" line="6610" /> <source><p>The snapshot utility is not available for Wayland desktop sessions.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6614" /> + <location filename="../UI/UserInterface.py" line="6630" /> <source><p>Could not start Snapshot tool.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6647" /> - <location filename="../UI/UserInterface.py" line="6637" /> + <location filename="../UI/UserInterface.py" line="6663" /> + <location filename="../UI/UserInterface.py" line="6653" /> <source>External Tools</source> <translation>Harici Araçlar</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6638" /> + <location filename="../UI/UserInterface.py" line="6654" /> <source>No tool entry found for external tool '{0}' in tool group '{1}'.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6648" /> + <location filename="../UI/UserInterface.py" line="6664" /> <source>No toolgroup entry '{0}' found.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6685" /> + <location filename="../UI/UserInterface.py" line="6701" /> <source>Starting process '{0} {1}'. </source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6703" /> + <location filename="../UI/UserInterface.py" line="6719" /> <source><p>Could not start the tool entry <b>{0}</b>.<br>Ensure that it is available as <b>{1}</b>.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6782" /> + <location filename="../UI/UserInterface.py" line="6798" /> <source>Process '{0}' has exited. </source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7069" /> - <location filename="../UI/UserInterface.py" line="7007" /> - <location filename="../UI/UserInterface.py" line="6963" /> - <location filename="../UI/UserInterface.py" line="6889" /> - <location filename="../UI/UserInterface.py" line="6825" /> + <location filename="../UI/UserInterface.py" line="7085" /> + <location filename="../UI/UserInterface.py" line="7023" /> + <location filename="../UI/UserInterface.py" line="6979" /> + <location filename="../UI/UserInterface.py" line="6905" /> + <location filename="../UI/UserInterface.py" line="6841" /> <source>Documentation Missing</source> <translation>Eksik Belgeleme</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7070" /> - <location filename="../UI/UserInterface.py" line="7008" /> - <location filename="../UI/UserInterface.py" line="6964" /> - <location filename="../UI/UserInterface.py" line="6890" /> - <location filename="../UI/UserInterface.py" line="6826" /> + <location filename="../UI/UserInterface.py" line="7086" /> + <location filename="../UI/UserInterface.py" line="7024" /> + <location filename="../UI/UserInterface.py" line="6980" /> + <location filename="../UI/UserInterface.py" line="6906" /> + <location filename="../UI/UserInterface.py" line="6842" /> <source><p>The documentation starting point "<b>{0}</b>" could not be found.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7051" /> - <location filename="../UI/UserInterface.py" line="6933" /> + <location filename="../UI/UserInterface.py" line="7067" /> + <location filename="../UI/UserInterface.py" line="6949" /> <source>Documentation</source> <translation>Belgeleme</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6934" /> + <location filename="../UI/UserInterface.py" line="6950" /> <source><p>The PyQt{0} documentation starting point has not been configured.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7052" /> + <location filename="../UI/UserInterface.py" line="7068" /> <source><p>The PySide{0} documentation starting point has not been configured.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7231" /> - <location filename="../UI/UserInterface.py" line="7167" /> + <location filename="../UI/UserInterface.py" line="7247" /> + <location filename="../UI/UserInterface.py" line="7183" /> <source>Start Web Browser</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7168" /> + <location filename="../UI/UserInterface.py" line="7184" /> <source>The eric web browser could not be started.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7232" /> + <location filename="../UI/UserInterface.py" line="7248" /> <source><p>The eric web browser is not started.</p><p>Reason: {0}</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7278" /> + <location filename="../UI/UserInterface.py" line="7294" /> <source>Open Browser</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7278" /> + <location filename="../UI/UserInterface.py" line="7294" /> <source>Could not start a web browser</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7573" /> - <location filename="../UI/UserInterface.py" line="7535" /> + <location filename="../UI/UserInterface.py" line="7589" /> + <location filename="../UI/UserInterface.py" line="7551" /> <source>Keyboard Shortcuts File (*.ekj)</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7553" /> + <location filename="../UI/UserInterface.py" line="7569" /> <source><p>The keyboard shortcuts file <b>{0}</b> exists already. Overwrite it?</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7757" /> + <location filename="../UI/UserInterface.py" line="7773" /> <source>Load crash session...</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7760" /> + <location filename="../UI/UserInterface.py" line="7776" /> <source>Clean crash sessions...</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7797" /> + <location filename="../UI/UserInterface.py" line="7813" /> <source>Read Session</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7798" /> + <location filename="../UI/UserInterface.py" line="7814" /> <source><p>The session file <b>{0}</b> could not be read.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7821" /> + <location filename="../UI/UserInterface.py" line="7837" /> <source>Save Session</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7846" /> - <location filename="../UI/UserInterface.py" line="7823" /> + <location filename="../UI/UserInterface.py" line="7862" /> + <location filename="../UI/UserInterface.py" line="7839" /> <source>eric Session Files (*.esj)</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7913" /> + <location filename="../UI/UserInterface.py" line="7929" /> <source>Found Crash Sessions</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7914" /> + <location filename="../UI/UserInterface.py" line="7930" /> <source>These crash session files were found. Select the one to open. Select 'Cancel' to not open a crash session.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7987" /> + <location filename="../UI/UserInterface.py" line="8003" /> <source>Clean stale crash sessions</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7988" /> + <location filename="../UI/UserInterface.py" line="8004" /> <source>Do you really want to delete these stale crash session files?</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="8364" /> + <location filename="../UI/UserInterface.py" line="8380" /> <source>Drop Error</source> <translation>Düşme hatası</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="8365" /> + <location filename="../UI/UserInterface.py" line="8381" /> <source><p><b>{0}</b> is not a file.</p></source> <translation><p><b>{0}</b> bir dosya değil.</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="8551" /> + <location filename="../UI/UserInterface.py" line="8567" /> <source>Upgrade available</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="8552" /> + <location filename="../UI/UserInterface.py" line="8568" /> <source><p>A newer version of the <b>eric-ide</b> package is available at <a href="{0}/eric-ide/">PyPI</a>.</p><p>Installed: {1}<br/>Available: <b>{2}</b></p><p>Shall <b>eric-ide</b> be upgraded?</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="8597" /> + <location filename="../UI/UserInterface.py" line="8613" /> <source>First time usage</source> <translation>İlk kullanım</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="8598" /> + <location filename="../UI/UserInterface.py" line="8614" /> <source>eric has not been configured yet. The configuration dialog will be started.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="8620" /> + <location filename="../UI/UserInterface.py" line="8636" /> <source>Select Workspace Directory</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="8788" /> + <location filename="../UI/UserInterface.py" line="8804" /> <source>Unsaved Data Detected</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="8789" /> + <location filename="../UI/UserInterface.py" line="8805" /> <source>Some editors contain unsaved data. Shall these be saved?</source> <translation type="unfinished" /> </message> @@ -94675,7 +94680,7 @@ <translation><b>Dosya Yazdır</b><p>Geçerli düzenleyici penceresindeki içeriği yazdır.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="775" /> + <location filename="../QScintilla/MiniEditor.py" line="776" /> <location filename="../ViewManager/ViewManager.py" line="913" /> <location filename="../ViewManager/ViewManager.py" line="911" /> <source>Print Preview</source> @@ -95452,8 +95457,8 @@ <translation type="unfinished" /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="926" /> <location filename="../QScintilla/MiniEditor.py" line="925" /> - <location filename="../QScintilla/MiniEditor.py" line="924" /> <location filename="../QScintilla/ShellWindow.py" line="575" /> <location filename="../QScintilla/ShellWindow.py" line="574" /> <location filename="../ViewManager/ViewManager.py" line="1858" /> @@ -95462,22 +95467,22 @@ <translation>Bir karakter sola taşı</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="926" /> + <location filename="../QScintilla/MiniEditor.py" line="927" /> <location filename="../QScintilla/ShellWindow.py" line="576" /> <location filename="../ViewManager/ViewManager.py" line="1859" /> <source>Left</source> <translation>Left</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="934" /> + <location filename="../QScintilla/MiniEditor.py" line="935" /> <location filename="../QScintilla/ShellWindow.py" line="584" /> <location filename="../ViewManager/ViewManager.py" line="1867" /> <source>Meta+B</source> <translation type="unfinished" /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="942" /> <location filename="../QScintilla/MiniEditor.py" line="941" /> - <location filename="../QScintilla/MiniEditor.py" line="940" /> <location filename="../QScintilla/ShellWindow.py" line="591" /> <location filename="../QScintilla/ShellWindow.py" line="590" /> <location filename="../ViewManager/ViewManager.py" line="1874" /> @@ -95486,22 +95491,22 @@ <translation>Bir karakter sağa taşı</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="942" /> + <location filename="../QScintilla/MiniEditor.py" line="943" /> <location filename="../QScintilla/ShellWindow.py" line="592" /> <location filename="../ViewManager/ViewManager.py" line="1875" /> <source>Right</source> <translation>Right</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="949" /> + <location filename="../QScintilla/MiniEditor.py" line="950" /> <location filename="../QScintilla/ShellWindow.py" line="599" /> <location filename="../ViewManager/ViewManager.py" line="1882" /> <source>Meta+F</source> <translation type="unfinished" /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="958" /> <location filename="../QScintilla/MiniEditor.py" line="957" /> - <location filename="../QScintilla/MiniEditor.py" line="956" /> <location filename="../QScintilla/ShellWindow.py" line="683" /> <location filename="../QScintilla/ShellWindow.py" line="682" /> <location filename="../ViewManager/ViewManager.py" line="1890" /> @@ -95510,22 +95515,22 @@ <translation>Bir satır üste taşı</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="958" /> + <location filename="../QScintilla/MiniEditor.py" line="959" /> <location filename="../QScintilla/ShellWindow.py" line="684" /> <location filename="../ViewManager/ViewManager.py" line="1891" /> <source>Up</source> <translation>Up</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="965" /> + <location filename="../QScintilla/MiniEditor.py" line="966" /> <location filename="../QScintilla/ShellWindow.py" line="691" /> <location filename="../ViewManager/ViewManager.py" line="1898" /> <source>Meta+P</source> <translation type="unfinished" /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="974" /> <location filename="../QScintilla/MiniEditor.py" line="973" /> - <location filename="../QScintilla/MiniEditor.py" line="972" /> <location filename="../QScintilla/ShellWindow.py" line="699" /> <location filename="../QScintilla/ShellWindow.py" line="698" /> <location filename="../ViewManager/ViewManager.py" line="1906" /> @@ -95534,30 +95539,30 @@ <translation>Bir satır aşağı taşı</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="974" /> + <location filename="../QScintilla/MiniEditor.py" line="975" /> <location filename="../QScintilla/ShellWindow.py" line="700" /> <location filename="../ViewManager/ViewManager.py" line="1907" /> <source>Down</source> <translation>Down</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="981" /> + <location filename="../QScintilla/MiniEditor.py" line="982" /> <location filename="../QScintilla/ShellWindow.py" line="707" /> <location filename="../ViewManager/ViewManager.py" line="1914" /> <source>Meta+N</source> <translation type="unfinished" /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="990" /> <location filename="../QScintilla/MiniEditor.py" line="989" /> - <location filename="../QScintilla/MiniEditor.py" line="988" /> <location filename="../ViewManager/ViewManager.py" line="1922" /> <location filename="../ViewManager/ViewManager.py" line="1921" /> <source>Move left one word part</source> <translation>Bir kelime parçası sola taşı</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1029" /> - <location filename="../QScintilla/MiniEditor.py" line="997" /> + <location filename="../QScintilla/MiniEditor.py" line="1030" /> + <location filename="../QScintilla/MiniEditor.py" line="998" /> <location filename="../QScintilla/ShellWindow.py" line="615" /> <location filename="../ViewManager/ViewManager.py" line="1962" /> <location filename="../ViewManager/ViewManager.py" line="1930" /> @@ -95565,25 +95570,25 @@ <translation>Alt+Left</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1006" /> <location filename="../QScintilla/MiniEditor.py" line="1005" /> - <location filename="../QScintilla/MiniEditor.py" line="1004" /> <location filename="../ViewManager/ViewManager.py" line="1938" /> <location filename="../ViewManager/ViewManager.py" line="1937" /> <source>Move right one word part</source> <translation>bir kelime parçası sağa taşı</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2159" /> - <location filename="../QScintilla/MiniEditor.py" line="1049" /> - <location filename="../QScintilla/MiniEditor.py" line="1013" /> + <location filename="../QScintilla/MiniEditor.py" line="2160" /> + <location filename="../QScintilla/MiniEditor.py" line="1050" /> + <location filename="../QScintilla/MiniEditor.py" line="1014" /> <location filename="../ViewManager/ViewManager.py" line="3071" /> <location filename="../ViewManager/ViewManager.py" line="1946" /> <source>Alt+Right</source> <translation>Alt+Right</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1022" /> <location filename="../QScintilla/MiniEditor.py" line="1021" /> - <location filename="../QScintilla/MiniEditor.py" line="1020" /> <location filename="../QScintilla/ShellWindow.py" line="607" /> <location filename="../QScintilla/ShellWindow.py" line="606" /> <location filename="../ViewManager/ViewManager.py" line="1954" /> @@ -95592,8 +95597,8 @@ <translation>Bir kelime sola taşı</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1089" /> - <location filename="../QScintilla/MiniEditor.py" line="1033" /> + <location filename="../QScintilla/MiniEditor.py" line="1090" /> + <location filename="../QScintilla/MiniEditor.py" line="1034" /> <location filename="../QScintilla/ShellWindow.py" line="619" /> <location filename="../ViewManager/ViewManager.py" line="2018" /> <location filename="../ViewManager/ViewManager.py" line="1966" /> @@ -95601,8 +95606,8 @@ <translation>Ctrl+Left</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1042" /> <location filename="../QScintilla/MiniEditor.py" line="1041" /> - <location filename="../QScintilla/MiniEditor.py" line="1040" /> <location filename="../QScintilla/ShellWindow.py" line="627" /> <location filename="../QScintilla/ShellWindow.py" line="626" /> <location filename="../ViewManager/ViewManager.py" line="1974" /> @@ -95611,8 +95616,8 @@ <translation>Bir kelime sağa taşı</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1843" /> - <location filename="../QScintilla/MiniEditor.py" line="1053" /> + <location filename="../QScintilla/MiniEditor.py" line="1844" /> + <location filename="../QScintilla/MiniEditor.py" line="1054" /> <location filename="../QScintilla/ShellWindow.py" line="635" /> <location filename="../ViewManager/ViewManager.py" line="2755" /> <location filename="../ViewManager/ViewManager.py" line="1982" /> @@ -95620,8 +95625,8 @@ <translation>Ctrl+Right</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1063" /> - <location filename="../QScintilla/MiniEditor.py" line="1060" /> + <location filename="../QScintilla/MiniEditor.py" line="1064" /> + <location filename="../QScintilla/MiniEditor.py" line="1061" /> <location filename="../QScintilla/ShellWindow.py" line="645" /> <location filename="../QScintilla/ShellWindow.py" line="642" /> <location filename="../ViewManager/ViewManager.py" line="1992" /> @@ -95630,8 +95635,8 @@ <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2104" /> - <location filename="../QScintilla/MiniEditor.py" line="1073" /> + <location filename="../QScintilla/MiniEditor.py" line="2105" /> + <location filename="../QScintilla/MiniEditor.py" line="1074" /> <location filename="../QScintilla/ShellWindow.py" line="655" /> <location filename="../ViewManager/ViewManager.py" line="3016" /> <location filename="../ViewManager/ViewManager.py" line="2002" /> @@ -95639,22 +95644,22 @@ <translation>Home</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1082" /> <location filename="../QScintilla/MiniEditor.py" line="1081" /> - <location filename="../QScintilla/MiniEditor.py" line="1080" /> <location filename="../ViewManager/ViewManager.py" line="2010" /> <location filename="../ViewManager/ViewManager.py" line="2009" /> <source>Move to start of display line</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1093" /> + <location filename="../QScintilla/MiniEditor.py" line="1094" /> <location filename="../ViewManager/ViewManager.py" line="2022" /> <source>Alt+Home</source> <translation>Alt+Home</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1102" /> <location filename="../QScintilla/MiniEditor.py" line="1101" /> - <location filename="../QScintilla/MiniEditor.py" line="1100" /> <location filename="../QScintilla/ShellWindow.py" line="663" /> <location filename="../QScintilla/ShellWindow.py" line="662" /> <location filename="../ViewManager/ViewManager.py" line="2030" /> @@ -95663,15 +95668,15 @@ <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1109" /> + <location filename="../QScintilla/MiniEditor.py" line="1110" /> <location filename="../QScintilla/ShellWindow.py" line="671" /> <location filename="../ViewManager/ViewManager.py" line="2038" /> <source>Meta+E</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2121" /> - <location filename="../QScintilla/MiniEditor.py" line="1113" /> + <location filename="../QScintilla/MiniEditor.py" line="2122" /> + <location filename="../QScintilla/MiniEditor.py" line="1114" /> <location filename="../QScintilla/ShellWindow.py" line="675" /> <location filename="../ViewManager/ViewManager.py" line="3033" /> <location filename="../ViewManager/ViewManager.py" line="2042" /> @@ -95679,16 +95684,16 @@ <translation>End</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1122" /> <location filename="../QScintilla/MiniEditor.py" line="1121" /> - <location filename="../QScintilla/MiniEditor.py" line="1120" /> <location filename="../ViewManager/ViewManager.py" line="2050" /> <location filename="../ViewManager/ViewManager.py" line="2049" /> <source>Scroll view down one line</source> <translation>Görüntüyü bir satır aşağı kaydır</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1225" /> - <location filename="../QScintilla/MiniEditor.py" line="1122" /> + <location filename="../QScintilla/MiniEditor.py" line="1226" /> + <location filename="../QScintilla/MiniEditor.py" line="1123" /> <location filename="../QScintilla/ShellWindow.py" line="716" /> <location filename="../ViewManager/ViewManager.py" line="2154" /> <location filename="../ViewManager/ViewManager.py" line="2051" /> @@ -95696,16 +95701,16 @@ <translation>Ctrl+Down</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1134" /> <location filename="../QScintilla/MiniEditor.py" line="1133" /> - <location filename="../QScintilla/MiniEditor.py" line="1132" /> <location filename="../ViewManager/ViewManager.py" line="2062" /> <location filename="../ViewManager/ViewManager.py" line="2061" /> <source>Scroll view up one line</source> <translation>Görüntüyü bir satır yukarı kaydır</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1205" /> - <location filename="../QScintilla/MiniEditor.py" line="1134" /> + <location filename="../QScintilla/MiniEditor.py" line="1206" /> + <location filename="../QScintilla/MiniEditor.py" line="1135" /> <location filename="../QScintilla/ShellWindow.py" line="728" /> <location filename="../ViewManager/ViewManager.py" line="2134" /> <location filename="../ViewManager/ViewManager.py" line="2063" /> @@ -95713,36 +95718,36 @@ <translation>Ctrl+Up</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1146" /> <location filename="../QScintilla/MiniEditor.py" line="1145" /> - <location filename="../QScintilla/MiniEditor.py" line="1144" /> <location filename="../ViewManager/ViewManager.py" line="2074" /> <location filename="../ViewManager/ViewManager.py" line="2073" /> <source>Move up one paragraph</source> <translation>Bir paragraf yukarı taşı</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1146" /> + <location filename="../QScintilla/MiniEditor.py" line="1147" /> <location filename="../ViewManager/ViewManager.py" line="2075" /> <source>Alt+Up</source> <translation>Alt+Up</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1158" /> <location filename="../QScintilla/MiniEditor.py" line="1157" /> - <location filename="../QScintilla/MiniEditor.py" line="1156" /> <location filename="../ViewManager/ViewManager.py" line="2086" /> <location filename="../ViewManager/ViewManager.py" line="2085" /> <source>Move down one paragraph</source> <translation>Bir paragraf aşağı taşı</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1158" /> + <location filename="../QScintilla/MiniEditor.py" line="1159" /> <location filename="../ViewManager/ViewManager.py" line="2087" /> <source>Alt+Down</source> <translation>Alt+Down</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1170" /> <location filename="../QScintilla/MiniEditor.py" line="1169" /> - <location filename="../QScintilla/MiniEditor.py" line="1168" /> <location filename="../QScintilla/ShellWindow.py" line="739" /> <location filename="../QScintilla/ShellWindow.py" line="738" /> <location filename="../ViewManager/ViewManager.py" line="2098" /> @@ -95751,15 +95756,15 @@ <translation>Bir sayfa yukarı taşı</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1170" /> + <location filename="../QScintilla/MiniEditor.py" line="1171" /> <location filename="../QScintilla/ShellWindow.py" line="740" /> <location filename="../ViewManager/ViewManager.py" line="2099" /> <source>PgUp</source> <translation>PgUp</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1182" /> <location filename="../QScintilla/MiniEditor.py" line="1181" /> - <location filename="../QScintilla/MiniEditor.py" line="1180" /> <location filename="../QScintilla/ShellWindow.py" line="751" /> <location filename="../QScintilla/ShellWindow.py" line="750" /> <location filename="../ViewManager/ViewManager.py" line="2110" /> @@ -95768,50 +95773,50 @@ <translation>Bir sayfa aşağı taşı</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1182" /> + <location filename="../QScintilla/MiniEditor.py" line="1183" /> <location filename="../QScintilla/ShellWindow.py" line="752" /> <location filename="../ViewManager/ViewManager.py" line="2111" /> <source>PgDown</source> <translation>PgDown</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1189" /> + <location filename="../QScintilla/MiniEditor.py" line="1190" /> <location filename="../QScintilla/ShellWindow.py" line="759" /> <location filename="../ViewManager/ViewManager.py" line="2118" /> <source>Meta+V</source> <translation type="unfinished" /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1198" /> <location filename="../QScintilla/MiniEditor.py" line="1197" /> - <location filename="../QScintilla/MiniEditor.py" line="1196" /> <location filename="../ViewManager/ViewManager.py" line="2126" /> <location filename="../ViewManager/ViewManager.py" line="2125" /> <source>Move to start of document</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1209" /> + <location filename="../QScintilla/MiniEditor.py" line="1210" /> <location filename="../ViewManager/ViewManager.py" line="2138" /> <source>Ctrl+Home</source> <translation>Ctrl+Home</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1218" /> <location filename="../QScintilla/MiniEditor.py" line="1217" /> - <location filename="../QScintilla/MiniEditor.py" line="1216" /> <location filename="../ViewManager/ViewManager.py" line="2146" /> <location filename="../ViewManager/ViewManager.py" line="2145" /> <source>Move to end of document</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1229" /> + <location filename="../QScintilla/MiniEditor.py" line="1230" /> <location filename="../ViewManager/ViewManager.py" line="2158" /> <source>Ctrl+End</source> <translation>Ctrl+End</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1238" /> <location filename="../QScintilla/MiniEditor.py" line="1237" /> - <location filename="../QScintilla/MiniEditor.py" line="1236" /> <location filename="../QScintilla/ShellWindow.py" line="453" /> <location filename="../QScintilla/ShellWindow.py" line="452" /> <location filename="../ViewManager/ViewManager.py" line="2166" /> @@ -95820,29 +95825,29 @@ <translation>Bir seviye içeri girinti</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1238" /> + <location filename="../QScintilla/MiniEditor.py" line="1239" /> <location filename="../QScintilla/ShellWindow.py" line="454" /> <location filename="../ViewManager/ViewManager.py" line="2167" /> <source>Tab</source> <translation>Tab</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1250" /> <location filename="../QScintilla/MiniEditor.py" line="1249" /> - <location filename="../QScintilla/MiniEditor.py" line="1248" /> <location filename="../ViewManager/ViewManager.py" line="2178" /> <location filename="../ViewManager/ViewManager.py" line="2177" /> <source>Unindent one level</source> <translation>Girintisiz birinci seviye</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1250" /> + <location filename="../QScintilla/MiniEditor.py" line="1251" /> <location filename="../ViewManager/ViewManager.py" line="2179" /> <source>Shift+Tab</source> <translation>Shift+Tab</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1263" /> - <location filename="../QScintilla/MiniEditor.py" line="1260" /> + <location filename="../QScintilla/MiniEditor.py" line="1264" /> + <location filename="../QScintilla/MiniEditor.py" line="1261" /> <location filename="../QScintilla/ShellWindow.py" line="781" /> <location filename="../QScintilla/ShellWindow.py" line="778" /> <location filename="../ViewManager/ViewManager.py" line="2192" /> @@ -95851,22 +95856,22 @@ <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1266" /> + <location filename="../QScintilla/MiniEditor.py" line="1267" /> <location filename="../QScintilla/ShellWindow.py" line="784" /> <location filename="../ViewManager/ViewManager.py" line="2195" /> <source>Shift+Left</source> <translation>Shift+Left</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1273" /> + <location filename="../QScintilla/MiniEditor.py" line="1274" /> <location filename="../QScintilla/ShellWindow.py" line="791" /> <location filename="../ViewManager/ViewManager.py" line="2202" /> <source>Meta+Shift+B</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1283" /> - <location filename="../QScintilla/MiniEditor.py" line="1280" /> + <location filename="../QScintilla/MiniEditor.py" line="1284" /> + <location filename="../QScintilla/MiniEditor.py" line="1281" /> <location filename="../QScintilla/ShellWindow.py" line="801" /> <location filename="../QScintilla/ShellWindow.py" line="798" /> <location filename="../ViewManager/ViewManager.py" line="2212" /> @@ -95875,70 +95880,70 @@ <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1286" /> + <location filename="../QScintilla/MiniEditor.py" line="1287" /> <location filename="../QScintilla/ShellWindow.py" line="804" /> <location filename="../ViewManager/ViewManager.py" line="2215" /> <source>Shift+Right</source> <translation>Shift+Right</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1293" /> + <location filename="../QScintilla/MiniEditor.py" line="1294" /> <location filename="../QScintilla/ShellWindow.py" line="811" /> <location filename="../ViewManager/ViewManager.py" line="2222" /> <source>Meta+Shift+F</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1301" /> - <location filename="../QScintilla/MiniEditor.py" line="1300" /> - <location filename="../ViewManager/ViewManager.py" line="2230" /> - <location filename="../ViewManager/ViewManager.py" line="2229" /> - <source>Extend selection up one line</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="1302" /> + <location filename="../QScintilla/MiniEditor.py" line="1301" /> + <location filename="../ViewManager/ViewManager.py" line="2230" /> + <location filename="../ViewManager/ViewManager.py" line="2229" /> + <source>Extend selection up one line</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="1303" /> <location filename="../ViewManager/ViewManager.py" line="2231" /> <source>Shift+Up</source> <translation>Shift+Up</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1309" /> + <location filename="../QScintilla/MiniEditor.py" line="1310" /> <location filename="../ViewManager/ViewManager.py" line="2238" /> <source>Meta+Shift+P</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1317" /> - <location filename="../QScintilla/MiniEditor.py" line="1316" /> - <location filename="../ViewManager/ViewManager.py" line="2246" /> - <location filename="../ViewManager/ViewManager.py" line="2245" /> - <source>Extend selection down one line</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="1318" /> + <location filename="../QScintilla/MiniEditor.py" line="1317" /> + <location filename="../ViewManager/ViewManager.py" line="2246" /> + <location filename="../ViewManager/ViewManager.py" line="2245" /> + <source>Extend selection down one line</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="1319" /> <location filename="../ViewManager/ViewManager.py" line="2247" /> <source>Shift+Down</source> <translation>Shift+Down</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1325" /> + <location filename="../QScintilla/MiniEditor.py" line="1326" /> <location filename="../ViewManager/ViewManager.py" line="2254" /> <source>Meta+Shift+N</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1335" /> - <location filename="../QScintilla/MiniEditor.py" line="1332" /> + <location filename="../QScintilla/MiniEditor.py" line="1336" /> + <location filename="../QScintilla/MiniEditor.py" line="1333" /> <location filename="../ViewManager/ViewManager.py" line="2264" /> <location filename="../ViewManager/ViewManager.py" line="2261" /> <source>Extend selection left one word part</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1386" /> - <location filename="../QScintilla/MiniEditor.py" line="1346" /> + <location filename="../QScintilla/MiniEditor.py" line="1387" /> + <location filename="../QScintilla/MiniEditor.py" line="1347" /> <location filename="../QScintilla/ShellWindow.py" line="828" /> <location filename="../ViewManager/ViewManager.py" line="2315" /> <location filename="../ViewManager/ViewManager.py" line="2275" /> @@ -95946,17 +95951,17 @@ <translation>Alt+Shift+Left</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1357" /> - <location filename="../QScintilla/MiniEditor.py" line="1354" /> + <location filename="../QScintilla/MiniEditor.py" line="1358" /> + <location filename="../QScintilla/MiniEditor.py" line="1355" /> <location filename="../ViewManager/ViewManager.py" line="2286" /> <location filename="../ViewManager/ViewManager.py" line="2283" /> <source>Extend selection right one word part</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2181" /> - <location filename="../QScintilla/MiniEditor.py" line="1414" /> - <location filename="../QScintilla/MiniEditor.py" line="1368" /> + <location filename="../QScintilla/MiniEditor.py" line="2182" /> + <location filename="../QScintilla/MiniEditor.py" line="1415" /> + <location filename="../QScintilla/MiniEditor.py" line="1369" /> <location filename="../QScintilla/ShellWindow.py" line="856" /> <location filename="../ViewManager/ViewManager.py" line="3093" /> <location filename="../ViewManager/ViewManager.py" line="2343" /> @@ -95965,8 +95970,8 @@ <translation>Alt+Shift+Right</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1378" /> <location filename="../QScintilla/MiniEditor.py" line="1377" /> - <location filename="../QScintilla/MiniEditor.py" line="1376" /> <location filename="../QScintilla/ShellWindow.py" line="819" /> <location filename="../QScintilla/ShellWindow.py" line="818" /> <location filename="../ViewManager/ViewManager.py" line="2306" /> @@ -95975,8 +95980,8 @@ <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2307" /> - <location filename="../QScintilla/MiniEditor.py" line="1392" /> + <location filename="../QScintilla/MiniEditor.py" line="2308" /> + <location filename="../QScintilla/MiniEditor.py" line="1393" /> <location filename="../QScintilla/ShellWindow.py" line="834" /> <location filename="../ViewManager/ViewManager.py" line="3219" /> <location filename="../ViewManager/ViewManager.py" line="2321" /> @@ -95984,8 +95989,8 @@ <translation>Ctrl+Shift+Left</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1403" /> - <location filename="../QScintilla/MiniEditor.py" line="1400" /> + <location filename="../QScintilla/MiniEditor.py" line="1404" /> + <location filename="../QScintilla/MiniEditor.py" line="1401" /> <location filename="../QScintilla/ShellWindow.py" line="845" /> <location filename="../QScintilla/ShellWindow.py" line="842" /> <location filename="../ViewManager/ViewManager.py" line="2332" /> @@ -95994,8 +95999,8 @@ <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1868" /> - <location filename="../QScintilla/MiniEditor.py" line="1420" /> + <location filename="../QScintilla/MiniEditor.py" line="1869" /> + <location filename="../QScintilla/MiniEditor.py" line="1421" /> <location filename="../QScintilla/ShellWindow.py" line="862" /> <location filename="../ViewManager/ViewManager.py" line="2780" /> <location filename="../ViewManager/ViewManager.py" line="2349" /> @@ -96003,8 +96008,8 @@ <translation>Ctrl+Shift+Right</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1432" /> - <location filename="../QScintilla/MiniEditor.py" line="1428" /> + <location filename="../QScintilla/MiniEditor.py" line="1433" /> + <location filename="../QScintilla/MiniEditor.py" line="1429" /> <location filename="../QScintilla/ShellWindow.py" line="874" /> <location filename="../QScintilla/ShellWindow.py" line="870" /> <location filename="../ViewManager/ViewManager.py" line="2361" /> @@ -96013,15 +96018,15 @@ <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1443" /> + <location filename="../QScintilla/MiniEditor.py" line="1444" /> <location filename="../QScintilla/ShellWindow.py" line="885" /> <location filename="../ViewManager/ViewManager.py" line="2372" /> <source>Shift+Home</source> <translation>Shift+Home</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1453" /> - <location filename="../QScintilla/MiniEditor.py" line="1450" /> + <location filename="../QScintilla/MiniEditor.py" line="1454" /> + <location filename="../QScintilla/MiniEditor.py" line="1451" /> <location filename="../QScintilla/ShellWindow.py" line="895" /> <location filename="../QScintilla/ShellWindow.py" line="892" /> <location filename="../ViewManager/ViewManager.py" line="2382" /> @@ -96030,124 +96035,124 @@ <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1463" /> + <location filename="../QScintilla/MiniEditor.py" line="1464" /> <location filename="../QScintilla/ShellWindow.py" line="905" /> <location filename="../ViewManager/ViewManager.py" line="2392" /> <source>Meta+Shift+E</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1467" /> + <location filename="../QScintilla/MiniEditor.py" line="1468" /> <location filename="../QScintilla/ShellWindow.py" line="909" /> <location filename="../ViewManager/ViewManager.py" line="2396" /> <source>Shift+End</source> <translation>Shift+End</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1477" /> - <location filename="../QScintilla/MiniEditor.py" line="1474" /> + <location filename="../QScintilla/MiniEditor.py" line="1478" /> + <location filename="../QScintilla/MiniEditor.py" line="1475" /> <location filename="../ViewManager/ViewManager.py" line="2406" /> <location filename="../ViewManager/ViewManager.py" line="2403" /> <source>Extend selection up one paragraph</source> <translation>Seçimi bir paragraf yukarı genişlet</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1480" /> + <location filename="../QScintilla/MiniEditor.py" line="1481" /> <location filename="../ViewManager/ViewManager.py" line="2409" /> <source>Alt+Shift+Up</source> <translation>Alt+Shift+Up</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1493" /> - <location filename="../QScintilla/MiniEditor.py" line="1490" /> + <location filename="../QScintilla/MiniEditor.py" line="1494" /> + <location filename="../QScintilla/MiniEditor.py" line="1491" /> <location filename="../ViewManager/ViewManager.py" line="2422" /> <location filename="../ViewManager/ViewManager.py" line="2419" /> <source>Extend selection down one paragraph</source> <translation>Seçimi bir paragraf aşağı genişlet</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1496" /> + <location filename="../QScintilla/MiniEditor.py" line="1497" /> <location filename="../ViewManager/ViewManager.py" line="2425" /> <source>Alt+Shift+Down</source> <translation>Alt+Shift+Down</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1508" /> <location filename="../QScintilla/MiniEditor.py" line="1507" /> - <location filename="../QScintilla/MiniEditor.py" line="1506" /> <location filename="../ViewManager/ViewManager.py" line="2436" /> <location filename="../ViewManager/ViewManager.py" line="2435" /> <source>Extend selection up one page</source> <translation>Seçimi bir sayfa yukarı genişlet</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1508" /> + <location filename="../QScintilla/MiniEditor.py" line="1509" /> <location filename="../ViewManager/ViewManager.py" line="2437" /> <source>Shift+PgUp</source> <translation>Shift+PgUp</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1520" /> <location filename="../QScintilla/MiniEditor.py" line="1519" /> - <location filename="../QScintilla/MiniEditor.py" line="1518" /> <location filename="../ViewManager/ViewManager.py" line="2448" /> <location filename="../ViewManager/ViewManager.py" line="2447" /> <source>Extend selection down one page</source> <translation>Seçimi bir sayfa aşağı genişlet</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1520" /> + <location filename="../QScintilla/MiniEditor.py" line="1521" /> <location filename="../ViewManager/ViewManager.py" line="2449" /> <source>Shift+PgDown</source> <translation>Shift+PgDown</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1527" /> + <location filename="../QScintilla/MiniEditor.py" line="1528" /> <location filename="../ViewManager/ViewManager.py" line="2456" /> <source>Meta+Shift+V</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1537" /> - <location filename="../QScintilla/MiniEditor.py" line="1534" /> + <location filename="../QScintilla/MiniEditor.py" line="1538" /> + <location filename="../QScintilla/MiniEditor.py" line="1535" /> <location filename="../ViewManager/ViewManager.py" line="2466" /> <location filename="../ViewManager/ViewManager.py" line="2463" /> <source>Extend selection to start of document</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1547" /> + <location filename="../QScintilla/MiniEditor.py" line="1548" /> <location filename="../ViewManager/ViewManager.py" line="2476" /> <source>Ctrl+Shift+Up</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1552" /> + <location filename="../QScintilla/MiniEditor.py" line="1553" /> <location filename="../ViewManager/ViewManager.py" line="2481" /> <source>Ctrl+Shift+Home</source> <translation>Ctrl+Shift+Home</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1563" /> - <location filename="../QScintilla/MiniEditor.py" line="1560" /> + <location filename="../QScintilla/MiniEditor.py" line="1564" /> + <location filename="../QScintilla/MiniEditor.py" line="1561" /> <location filename="../ViewManager/ViewManager.py" line="2492" /> <location filename="../ViewManager/ViewManager.py" line="2489" /> <source>Extend selection to end of document</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1574" /> + <location filename="../QScintilla/MiniEditor.py" line="1575" /> <location filename="../ViewManager/ViewManager.py" line="2503" /> <source>Ctrl+Shift+Down</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1580" /> + <location filename="../QScintilla/MiniEditor.py" line="1581" /> <location filename="../ViewManager/ViewManager.py" line="2509" /> <source>Ctrl+Shift+End</source> <translation>Ctrl+Shift+End</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1590" /> <location filename="../QScintilla/MiniEditor.py" line="1589" /> - <location filename="../QScintilla/MiniEditor.py" line="1588" /> <location filename="../QScintilla/ShellWindow.py" line="477" /> <location filename="../QScintilla/ShellWindow.py" line="476" /> <location filename="../ViewManager/ViewManager.py" line="2518" /> @@ -96156,37 +96161,37 @@ <translation>Önceki karakteri sil</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1590" /> + <location filename="../QScintilla/MiniEditor.py" line="1591" /> <location filename="../QScintilla/ShellWindow.py" line="478" /> <location filename="../ViewManager/ViewManager.py" line="2519" /> <source>Backspace</source> <translation>Backspace</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1597" /> + <location filename="../QScintilla/MiniEditor.py" line="1598" /> <location filename="../QScintilla/ShellWindow.py" line="485" /> <location filename="../ViewManager/ViewManager.py" line="2526" /> <source>Meta+H</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1602" /> + <location filename="../QScintilla/MiniEditor.py" line="1603" /> <location filename="../QScintilla/ShellWindow.py" line="490" /> <location filename="../ViewManager/ViewManager.py" line="2531" /> <source>Shift+Backspace</source> <translation>Shift+Backspace</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1613" /> - <location filename="../QScintilla/MiniEditor.py" line="1610" /> + <location filename="../QScintilla/MiniEditor.py" line="1614" /> + <location filename="../QScintilla/MiniEditor.py" line="1611" /> <location filename="../ViewManager/ViewManager.py" line="2542" /> <location filename="../ViewManager/ViewManager.py" line="2539" /> <source>Delete previous character if not at start of line</source> <translation type="unfinished" /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1628" /> <location filename="../QScintilla/MiniEditor.py" line="1627" /> - <location filename="../QScintilla/MiniEditor.py" line="1626" /> <location filename="../QScintilla/ShellWindow.py" line="499" /> <location filename="../QScintilla/ShellWindow.py" line="498" /> <location filename="../ViewManager/ViewManager.py" line="2556" /> @@ -96195,22 +96200,22 @@ <translation>Gçerli karakteri siler</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1628" /> + <location filename="../QScintilla/MiniEditor.py" line="1629" /> <location filename="../QScintilla/ShellWindow.py" line="500" /> <location filename="../ViewManager/ViewManager.py" line="2557" /> <source>Del</source> <translation>Del</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1635" /> + <location filename="../QScintilla/MiniEditor.py" line="1636" /> <location filename="../QScintilla/ShellWindow.py" line="507" /> <location filename="../ViewManager/ViewManager.py" line="2564" /> <source>Meta+D</source> <translation type="unfinished" /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1644" /> <location filename="../QScintilla/MiniEditor.py" line="1643" /> - <location filename="../QScintilla/MiniEditor.py" line="1642" /> <location filename="../QScintilla/ShellWindow.py" line="515" /> <location filename="../QScintilla/ShellWindow.py" line="514" /> <location filename="../ViewManager/ViewManager.py" line="2572" /> @@ -96219,15 +96224,15 @@ <translation>Kelimeyi sola doğru sil</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1644" /> + <location filename="../QScintilla/MiniEditor.py" line="1645" /> <location filename="../QScintilla/ShellWindow.py" line="516" /> <location filename="../ViewManager/ViewManager.py" line="2573" /> <source>Ctrl+Backspace</source> <translation>Ctrl+Backspace</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1656" /> <location filename="../QScintilla/MiniEditor.py" line="1655" /> - <location filename="../QScintilla/MiniEditor.py" line="1654" /> <location filename="../QScintilla/ShellWindow.py" line="527" /> <location filename="../QScintilla/ShellWindow.py" line="526" /> <location filename="../ViewManager/ViewManager.py" line="2584" /> @@ -96236,15 +96241,15 @@ <translation>Kelimeyi sağa doğru sil</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1656" /> + <location filename="../QScintilla/MiniEditor.py" line="1657" /> <location filename="../QScintilla/ShellWindow.py" line="528" /> <location filename="../ViewManager/ViewManager.py" line="2585" /> <source>Ctrl+Del</source> <translation>Ctrl+Del</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1668" /> <location filename="../QScintilla/MiniEditor.py" line="1667" /> - <location filename="../QScintilla/MiniEditor.py" line="1666" /> <location filename="../QScintilla/ShellWindow.py" line="539" /> <location filename="../QScintilla/ShellWindow.py" line="538" /> <location filename="../ViewManager/ViewManager.py" line="2596" /> @@ -96253,15 +96258,15 @@ <translation>Satırı solbaşa kadar sil</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1669" /> + <location filename="../QScintilla/MiniEditor.py" line="1670" /> <location filename="../QScintilla/ShellWindow.py" line="541" /> <location filename="../ViewManager/ViewManager.py" line="2598" /> <source>Ctrl+Shift+Backspace</source> <translation>Ctrl+Shift+Backspace</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1682" /> <location filename="../QScintilla/MiniEditor.py" line="1681" /> - <location filename="../QScintilla/MiniEditor.py" line="1680" /> <location filename="../QScintilla/ShellWindow.py" line="553" /> <location filename="../QScintilla/ShellWindow.py" line="552" /> <location filename="../ViewManager/ViewManager.py" line="2610" /> @@ -96270,22 +96275,22 @@ <translation>Satırı sağbaşa kadar sil</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1689" /> + <location filename="../QScintilla/MiniEditor.py" line="1690" /> <location filename="../QScintilla/ShellWindow.py" line="561" /> <location filename="../ViewManager/ViewManager.py" line="2618" /> <source>Meta+K</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1694" /> + <location filename="../QScintilla/MiniEditor.py" line="1695" /> <location filename="../QScintilla/ShellWindow.py" line="566" /> <location filename="../ViewManager/ViewManager.py" line="2623" /> <source>Ctrl+Shift+Del</source> <translation>Ctrl+Shift+Del</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1704" /> <location filename="../QScintilla/MiniEditor.py" line="1703" /> - <location filename="../QScintilla/MiniEditor.py" line="1702" /> <location filename="../QScintilla/ShellWindow.py" line="465" /> <location filename="../QScintilla/ShellWindow.py" line="464" /> <location filename="../ViewManager/ViewManager.py" line="2632" /> @@ -96294,14 +96299,14 @@ <translation>Araya yeni satır sok</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1704" /> + <location filename="../QScintilla/MiniEditor.py" line="1705" /> <location filename="../QScintilla/ShellWindow.py" line="466" /> <location filename="../ViewManager/ViewManager.py" line="2633" /> <source>Return</source> <translation>Return</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1705" /> + <location filename="../QScintilla/MiniEditor.py" line="1706" /> <location filename="../QScintilla/ShellWindow.py" line="467" /> <location filename="../ViewManager/ViewManager.py" line="2634" /> <source>Enter</source> @@ -96324,8 +96329,8 @@ <translation>Shift+Enter</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1716" /> <location filename="../QScintilla/MiniEditor.py" line="1715" /> - <location filename="../QScintilla/MiniEditor.py" line="1714" /> <location filename="../QScintilla/ShellWindow.py" line="441" /> <location filename="../QScintilla/ShellWindow.py" line="440" /> <location filename="../ViewManager/ViewManager.py" line="2659" /> @@ -96334,129 +96339,129 @@ <translation>Geçerli satırı sil</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1716" /> + <location filename="../QScintilla/MiniEditor.py" line="1717" /> <location filename="../QScintilla/ShellWindow.py" line="442" /> <location filename="../ViewManager/ViewManager.py" line="2660" /> <source>Ctrl+Shift+L</source> <translation>Ctrl+Shift+L</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1728" /> <location filename="../QScintilla/MiniEditor.py" line="1727" /> - <location filename="../QScintilla/MiniEditor.py" line="1726" /> <location filename="../ViewManager/ViewManager.py" line="2671" /> <location filename="../ViewManager/ViewManager.py" line="2670" /> <source>Duplicate current line</source> <translation>Geçerli satırı çiftle</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1728" /> + <location filename="../QScintilla/MiniEditor.py" line="1729" /> <location filename="../ViewManager/ViewManager.py" line="2672" /> <source>Ctrl+D</source> <translation>Ctrl+D</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1741" /> - <location filename="../QScintilla/MiniEditor.py" line="1738" /> + <location filename="../QScintilla/MiniEditor.py" line="1742" /> + <location filename="../QScintilla/MiniEditor.py" line="1739" /> <location filename="../ViewManager/ViewManager.py" line="2685" /> <location filename="../ViewManager/ViewManager.py" line="2682" /> <source>Swap current and previous lines</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1744" /> + <location filename="../QScintilla/MiniEditor.py" line="1745" /> <location filename="../ViewManager/ViewManager.py" line="2688" /> <source>Ctrl+T</source> <translation>Ctrl+T</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1756" /> <location filename="../QScintilla/MiniEditor.py" line="1755" /> - <location filename="../QScintilla/MiniEditor.py" line="1754" /> <location filename="../ViewManager/ViewManager.py" line="2699" /> <location filename="../ViewManager/ViewManager.py" line="2698" /> <source>Reverse selected lines</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1756" /> + <location filename="../QScintilla/MiniEditor.py" line="1757" /> <location filename="../ViewManager/ViewManager.py" line="2700" /> <source>Meta+Alt+R</source> <translation type="unfinished" /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1768" /> <location filename="../QScintilla/MiniEditor.py" line="1767" /> - <location filename="../QScintilla/MiniEditor.py" line="1766" /> <location filename="../ViewManager/ViewManager.py" line="2711" /> <location filename="../ViewManager/ViewManager.py" line="2710" /> <source>Cut current line</source> <translation>Geçerli satırı kes</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1768" /> + <location filename="../QScintilla/MiniEditor.py" line="1769" /> <location filename="../ViewManager/ViewManager.py" line="2712" /> <source>Alt+Shift+L</source> <translation>Alt+Shift+L</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1780" /> <location filename="../QScintilla/MiniEditor.py" line="1779" /> - <location filename="../QScintilla/MiniEditor.py" line="1778" /> <location filename="../ViewManager/ViewManager.py" line="2723" /> <location filename="../ViewManager/ViewManager.py" line="2722" /> <source>Copy current line</source> <translation>Geçerli satırı kopyala</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1780" /> + <location filename="../QScintilla/MiniEditor.py" line="1781" /> <location filename="../ViewManager/ViewManager.py" line="2724" /> <source>Ctrl+Shift+T</source> <translation>Ctrl+Shift+T</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1792" /> <location filename="../QScintilla/MiniEditor.py" line="1791" /> - <location filename="../QScintilla/MiniEditor.py" line="1790" /> <location filename="../ViewManager/ViewManager.py" line="2735" /> <location filename="../ViewManager/ViewManager.py" line="2734" /> <source>Toggle insert/overtype</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1792" /> + <location filename="../QScintilla/MiniEditor.py" line="1793" /> <location filename="../ViewManager/ViewManager.py" line="2736" /> <source>Ins</source> <translation>Ins</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1836" /> <location filename="../QScintilla/MiniEditor.py" line="1835" /> - <location filename="../QScintilla/MiniEditor.py" line="1834" /> <location filename="../ViewManager/ViewManager.py" line="2747" /> <location filename="../ViewManager/ViewManager.py" line="2746" /> <source>Move to end of display line</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1847" /> + <location filename="../QScintilla/MiniEditor.py" line="1848" /> <location filename="../ViewManager/ViewManager.py" line="2759" /> <source>Alt+End</source> <translation>Alt+End</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1857" /> - <location filename="../QScintilla/MiniEditor.py" line="1854" /> + <location filename="../QScintilla/MiniEditor.py" line="1858" /> + <location filename="../QScintilla/MiniEditor.py" line="1855" /> <location filename="../ViewManager/ViewManager.py" line="2769" /> <location filename="../ViewManager/ViewManager.py" line="2766" /> <source>Extend selection to end of display line</source> <translation type="unfinished" /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1878" /> <location filename="../QScintilla/MiniEditor.py" line="1877" /> - <location filename="../QScintilla/MiniEditor.py" line="1876" /> <location filename="../ViewManager/ViewManager.py" line="2789" /> <location filename="../ViewManager/ViewManager.py" line="2788" /> <source>Formfeed</source> <translation>Süreklibaskı kağıdı</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1890" /> <location filename="../QScintilla/MiniEditor.py" line="1889" /> - <location filename="../QScintilla/MiniEditor.py" line="1888" /> <location filename="../QScintilla/ShellWindow.py" line="767" /> <location filename="../QScintilla/ShellWindow.py" line="766" /> <location filename="../ViewManager/ViewManager.py" line="2801" /> @@ -96465,423 +96470,423 @@ <translation>Kaçış</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1890" /> + <location filename="../QScintilla/MiniEditor.py" line="1891" /> <location filename="../QScintilla/ShellWindow.py" line="768" /> <location filename="../ViewManager/ViewManager.py" line="2802" /> <source>Esc</source> <translation>Esc</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1903" /> - <location filename="../QScintilla/MiniEditor.py" line="1900" /> + <location filename="../QScintilla/MiniEditor.py" line="1904" /> + <location filename="../QScintilla/MiniEditor.py" line="1901" /> <location filename="../ViewManager/ViewManager.py" line="2815" /> <location filename="../ViewManager/ViewManager.py" line="2812" /> <source>Extend rectangular selection down one line</source> <translation>Köşeli seçimi bir sayfa aşağı genişlet</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1906" /> + <location filename="../QScintilla/MiniEditor.py" line="1907" /> <location filename="../ViewManager/ViewManager.py" line="2818" /> <source>Alt+Ctrl+Down</source> <translation>Alt+Ctrl+Down</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1914" /> + <location filename="../QScintilla/MiniEditor.py" line="1915" /> <location filename="../ViewManager/ViewManager.py" line="2826" /> <source>Meta+Alt+Shift+N</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1925" /> - <location filename="../QScintilla/MiniEditor.py" line="1922" /> + <location filename="../QScintilla/MiniEditor.py" line="1926" /> + <location filename="../QScintilla/MiniEditor.py" line="1923" /> <location filename="../ViewManager/ViewManager.py" line="2837" /> <location filename="../ViewManager/ViewManager.py" line="2834" /> <source>Extend rectangular selection up one line</source> <translation>Köşeli seçimi bir satır yukarı genişlet</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1928" /> + <location filename="../QScintilla/MiniEditor.py" line="1929" /> <location filename="../ViewManager/ViewManager.py" line="2840" /> <source>Alt+Ctrl+Up</source> <translation>Alt+Ctrl+Up</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1936" /> + <location filename="../QScintilla/MiniEditor.py" line="1937" /> <location filename="../ViewManager/ViewManager.py" line="2848" /> <source>Meta+Alt+Shift+P</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1947" /> - <location filename="../QScintilla/MiniEditor.py" line="1944" /> + <location filename="../QScintilla/MiniEditor.py" line="1948" /> + <location filename="../QScintilla/MiniEditor.py" line="1945" /> <location filename="../ViewManager/ViewManager.py" line="2859" /> <location filename="../ViewManager/ViewManager.py" line="2856" /> <source>Extend rectangular selection left one character</source> <translation>Köşeli seçimi bir karakter sola genişlet</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1950" /> + <location filename="../QScintilla/MiniEditor.py" line="1951" /> <location filename="../ViewManager/ViewManager.py" line="2862" /> <source>Alt+Ctrl+Left</source> <translation>Alt+Ctrl+Left</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1958" /> + <location filename="../QScintilla/MiniEditor.py" line="1959" /> <location filename="../ViewManager/ViewManager.py" line="2870" /> <source>Meta+Alt+Shift+B</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1969" /> - <location filename="../QScintilla/MiniEditor.py" line="1966" /> + <location filename="../QScintilla/MiniEditor.py" line="1970" /> + <location filename="../QScintilla/MiniEditor.py" line="1967" /> <location filename="../ViewManager/ViewManager.py" line="2881" /> <location filename="../ViewManager/ViewManager.py" line="2878" /> <source>Extend rectangular selection right one character</source> <translation>Köşeli seçimi bir karakter sağa genişlet</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1972" /> + <location filename="../QScintilla/MiniEditor.py" line="1973" /> <location filename="../ViewManager/ViewManager.py" line="2884" /> <source>Alt+Ctrl+Right</source> <translation>Alt+Ctrl+Right</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1980" /> + <location filename="../QScintilla/MiniEditor.py" line="1981" /> <location filename="../ViewManager/ViewManager.py" line="2892" /> <source>Meta+Alt+Shift+F</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1993" /> - <location filename="../QScintilla/MiniEditor.py" line="1988" /> + <location filename="../QScintilla/MiniEditor.py" line="1994" /> + <location filename="../QScintilla/MiniEditor.py" line="1989" /> <location filename="../ViewManager/ViewManager.py" line="2905" /> <location filename="../ViewManager/ViewManager.py" line="2900" /> <source>Extend rectangular selection to first visible character in document line</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2006" /> + <location filename="../QScintilla/MiniEditor.py" line="2007" /> <location filename="../ViewManager/ViewManager.py" line="2918" /> <source>Alt+Shift+Home</source> <translation>Alt+Shift+Home</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2017" /> - <location filename="../QScintilla/MiniEditor.py" line="2014" /> + <location filename="../QScintilla/MiniEditor.py" line="2018" /> + <location filename="../QScintilla/MiniEditor.py" line="2015" /> <location filename="../ViewManager/ViewManager.py" line="2929" /> <location filename="../ViewManager/ViewManager.py" line="2926" /> <source>Extend rectangular selection to end of document line</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2028" /> + <location filename="../QScintilla/MiniEditor.py" line="2029" /> <location filename="../ViewManager/ViewManager.py" line="2940" /> <source>Meta+Alt+Shift+E</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2033" /> + <location filename="../QScintilla/MiniEditor.py" line="2034" /> <location filename="../ViewManager/ViewManager.py" line="2945" /> <source>Alt+Shift+End</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2043" /> - <location filename="../QScintilla/MiniEditor.py" line="2040" /> + <location filename="../QScintilla/MiniEditor.py" line="2044" /> + <location filename="../QScintilla/MiniEditor.py" line="2041" /> <location filename="../ViewManager/ViewManager.py" line="2955" /> <location filename="../ViewManager/ViewManager.py" line="2952" /> <source>Extend rectangular selection up one page</source> <translation>Köşeli seçimi bir sayfa yukarı genişlet</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2046" /> + <location filename="../QScintilla/MiniEditor.py" line="2047" /> <location filename="../ViewManager/ViewManager.py" line="2958" /> <source>Alt+Shift+PgUp</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2059" /> - <location filename="../QScintilla/MiniEditor.py" line="2056" /> + <location filename="../QScintilla/MiniEditor.py" line="2060" /> + <location filename="../QScintilla/MiniEditor.py" line="2057" /> <location filename="../ViewManager/ViewManager.py" line="2971" /> <location filename="../ViewManager/ViewManager.py" line="2968" /> <source>Extend rectangular selection down one page</source> <translation>Köşeli seçimi bir sayfa aşağı genişlet</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2062" /> + <location filename="../QScintilla/MiniEditor.py" line="2063" /> <location filename="../ViewManager/ViewManager.py" line="2974" /> <source>Alt+Shift+PgDown</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2070" /> + <location filename="../QScintilla/MiniEditor.py" line="2071" /> <location filename="../ViewManager/ViewManager.py" line="2982" /> <source>Meta+Alt+Shift+V</source> <translation type="unfinished" /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="2546" /> <location filename="../QScintilla/MiniEditor.py" line="2545" /> - <location filename="../QScintilla/MiniEditor.py" line="2544" /> + <location filename="../QScintilla/MiniEditor.py" line="2080" /> <location filename="../QScintilla/MiniEditor.py" line="2079" /> - <location filename="../QScintilla/MiniEditor.py" line="2078" /> <location filename="../ViewManager/ViewManager.py" line="2991" /> <location filename="../ViewManager/ViewManager.py" line="2990" /> <source>Duplicate current selection</source> <translation>Geçerli seçimi çoğalt</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2546" /> - <location filename="../QScintilla/MiniEditor.py" line="2080" /> + <location filename="../QScintilla/MiniEditor.py" line="2547" /> + <location filename="../QScintilla/MiniEditor.py" line="2081" /> <location filename="../ViewManager/ViewManager.py" line="2992" /> <source>Ctrl+Shift+D</source> <translation>Ctrl+Shift+D</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2094" /> - <location filename="../QScintilla/MiniEditor.py" line="2091" /> + <location filename="../QScintilla/MiniEditor.py" line="2095" /> + <location filename="../QScintilla/MiniEditor.py" line="2092" /> <location filename="../ViewManager/ViewManager.py" line="3006" /> <location filename="../ViewManager/ViewManager.py" line="3003" /> <source>Scroll to start of document</source> <translation type="unfinished" /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="2114" /> <location filename="../QScintilla/MiniEditor.py" line="2113" /> - <location filename="../QScintilla/MiniEditor.py" line="2112" /> <location filename="../ViewManager/ViewManager.py" line="3025" /> <location filename="../ViewManager/ViewManager.py" line="3024" /> <source>Scroll to end of document</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2132" /> - <location filename="../QScintilla/MiniEditor.py" line="2129" /> + <location filename="../QScintilla/MiniEditor.py" line="2133" /> + <location filename="../QScintilla/MiniEditor.py" line="2130" /> <location filename="../ViewManager/ViewManager.py" line="3044" /> <location filename="../ViewManager/ViewManager.py" line="3041" /> <source>Scroll vertically to center current line</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2142" /> + <location filename="../QScintilla/MiniEditor.py" line="2143" /> <location filename="../ViewManager/ViewManager.py" line="3054" /> <source>Meta+L</source> <translation type="unfinished" /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="2152" /> <location filename="../QScintilla/MiniEditor.py" line="2151" /> - <location filename="../QScintilla/MiniEditor.py" line="2150" /> <location filename="../ViewManager/ViewManager.py" line="3063" /> <location filename="../ViewManager/ViewManager.py" line="3062" /> <source>Move to end of next word</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2170" /> - <location filename="../QScintilla/MiniEditor.py" line="2167" /> + <location filename="../QScintilla/MiniEditor.py" line="2171" /> + <location filename="../QScintilla/MiniEditor.py" line="2168" /> <location filename="../ViewManager/ViewManager.py" line="3082" /> <location filename="../ViewManager/ViewManager.py" line="3079" /> <source>Extend selection to end of next word</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2193" /> - <location filename="../QScintilla/MiniEditor.py" line="2190" /> + <location filename="../QScintilla/MiniEditor.py" line="2194" /> + <location filename="../QScintilla/MiniEditor.py" line="2191" /> <location filename="../ViewManager/ViewManager.py" line="3105" /> <location filename="../ViewManager/ViewManager.py" line="3102" /> <source>Move to end of previous word</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2210" /> - <location filename="../QScintilla/MiniEditor.py" line="2207" /> + <location filename="../QScintilla/MiniEditor.py" line="2211" /> + <location filename="../QScintilla/MiniEditor.py" line="2208" /> <location filename="../ViewManager/ViewManager.py" line="3122" /> <location filename="../ViewManager/ViewManager.py" line="3119" /> <source>Extend selection to end of previous word</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2227" /> - <location filename="../QScintilla/MiniEditor.py" line="2224" /> + <location filename="../QScintilla/MiniEditor.py" line="2228" /> + <location filename="../QScintilla/MiniEditor.py" line="2225" /> <location filename="../ViewManager/ViewManager.py" line="3139" /> <location filename="../ViewManager/ViewManager.py" line="3136" /> <source>Move to start of document line</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2237" /> + <location filename="../QScintilla/MiniEditor.py" line="2238" /> <location filename="../ViewManager/ViewManager.py" line="3149" /> <source>Meta+A</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2248" /> - <location filename="../QScintilla/MiniEditor.py" line="2245" /> + <location filename="../QScintilla/MiniEditor.py" line="2249" /> + <location filename="../QScintilla/MiniEditor.py" line="2246" /> <location filename="../ViewManager/ViewManager.py" line="3160" /> <location filename="../ViewManager/ViewManager.py" line="3157" /> <source>Extend selection to start of document line</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2259" /> + <location filename="../QScintilla/MiniEditor.py" line="2260" /> <location filename="../ViewManager/ViewManager.py" line="3171" /> <source>Meta+Shift+A</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2272" /> - <location filename="../QScintilla/MiniEditor.py" line="2268" /> + <location filename="../QScintilla/MiniEditor.py" line="2273" /> + <location filename="../QScintilla/MiniEditor.py" line="2269" /> <location filename="../ViewManager/ViewManager.py" line="3184" /> <location filename="../ViewManager/ViewManager.py" line="3180" /> <source>Extend rectangular selection to start of document line</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2284" /> + <location filename="../QScintilla/MiniEditor.py" line="2285" /> <location filename="../ViewManager/ViewManager.py" line="3196" /> <source>Meta+Alt+Shift+A</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2296" /> - <location filename="../QScintilla/MiniEditor.py" line="2293" /> + <location filename="../QScintilla/MiniEditor.py" line="2297" /> + <location filename="../QScintilla/MiniEditor.py" line="2294" /> <location filename="../ViewManager/ViewManager.py" line="3208" /> <location filename="../ViewManager/ViewManager.py" line="3205" /> <source>Extend selection to start of display line</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2319" /> - <location filename="../QScintilla/MiniEditor.py" line="2316" /> + <location filename="../QScintilla/MiniEditor.py" line="2320" /> + <location filename="../QScintilla/MiniEditor.py" line="2317" /> <location filename="../ViewManager/ViewManager.py" line="3231" /> <location filename="../ViewManager/ViewManager.py" line="3228" /> <source>Move to start of display or document line</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2337" /> - <location filename="../QScintilla/MiniEditor.py" line="2333" /> + <location filename="../QScintilla/MiniEditor.py" line="2338" /> + <location filename="../QScintilla/MiniEditor.py" line="2334" /> <location filename="../ViewManager/ViewManager.py" line="3249" /> <location filename="../ViewManager/ViewManager.py" line="3245" /> <source>Extend selection to start of display or document line</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2356" /> - <location filename="../QScintilla/MiniEditor.py" line="2352" /> + <location filename="../QScintilla/MiniEditor.py" line="2357" /> + <location filename="../QScintilla/MiniEditor.py" line="2353" /> <location filename="../ViewManager/ViewManager.py" line="3268" /> <location filename="../ViewManager/ViewManager.py" line="3264" /> <source>Move to first visible character in display or document line</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2376" /> - <location filename="../QScintilla/MiniEditor.py" line="2371" /> + <location filename="../QScintilla/MiniEditor.py" line="2377" /> + <location filename="../QScintilla/MiniEditor.py" line="2372" /> <location filename="../ViewManager/ViewManager.py" line="3288" /> <location filename="../ViewManager/ViewManager.py" line="3283" /> <source>Extend selection to first visible character in display or document line</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2395" /> - <location filename="../QScintilla/MiniEditor.py" line="2392" /> + <location filename="../QScintilla/MiniEditor.py" line="2396" /> + <location filename="../QScintilla/MiniEditor.py" line="2393" /> <location filename="../ViewManager/ViewManager.py" line="3307" /> <location filename="../ViewManager/ViewManager.py" line="3304" /> <source>Move to end of display or document line</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2412" /> - <location filename="../QScintilla/MiniEditor.py" line="2409" /> + <location filename="../QScintilla/MiniEditor.py" line="2413" /> + <location filename="../QScintilla/MiniEditor.py" line="2410" /> <location filename="../ViewManager/ViewManager.py" line="3324" /> <location filename="../ViewManager/ViewManager.py" line="3321" /> <source>Extend selection to end of display or document line</source> <translation type="unfinished" /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="2428" /> <location filename="../QScintilla/MiniEditor.py" line="2427" /> - <location filename="../QScintilla/MiniEditor.py" line="2426" /> <location filename="../ViewManager/ViewManager.py" line="3339" /> <location filename="../ViewManager/ViewManager.py" line="3338" /> <source>Stuttered move up one page</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2442" /> - <location filename="../QScintilla/MiniEditor.py" line="2439" /> + <location filename="../QScintilla/MiniEditor.py" line="2443" /> + <location filename="../QScintilla/MiniEditor.py" line="2440" /> <location filename="../ViewManager/ViewManager.py" line="3354" /> <location filename="../ViewManager/ViewManager.py" line="3351" /> <source>Stuttered extend selection up one page</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2459" /> - <location filename="../QScintilla/MiniEditor.py" line="2456" /> + <location filename="../QScintilla/MiniEditor.py" line="2460" /> + <location filename="../QScintilla/MiniEditor.py" line="2457" /> <location filename="../ViewManager/ViewManager.py" line="3371" /> <location filename="../ViewManager/ViewManager.py" line="3368" /> <source>Stuttered move down one page</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2476" /> - <location filename="../QScintilla/MiniEditor.py" line="2473" /> + <location filename="../QScintilla/MiniEditor.py" line="2477" /> + <location filename="../QScintilla/MiniEditor.py" line="2474" /> <location filename="../ViewManager/ViewManager.py" line="3388" /> <location filename="../ViewManager/ViewManager.py" line="3385" /> <source>Stuttered extend selection down one page</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2493" /> - <location filename="../QScintilla/MiniEditor.py" line="2490" /> + <location filename="../QScintilla/MiniEditor.py" line="2494" /> + <location filename="../QScintilla/MiniEditor.py" line="2491" /> <location filename="../ViewManager/ViewManager.py" line="3405" /> <location filename="../ViewManager/ViewManager.py" line="3402" /> <source>Delete right to end of next word</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2503" /> + <location filename="../QScintilla/MiniEditor.py" line="2504" /> <location filename="../ViewManager/ViewManager.py" line="3415" /> <source>Alt+Del</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2514" /> - <location filename="../QScintilla/MiniEditor.py" line="2511" /> + <location filename="../QScintilla/MiniEditor.py" line="2515" /> + <location filename="../QScintilla/MiniEditor.py" line="2512" /> <location filename="../ViewManager/ViewManager.py" line="3426" /> <location filename="../ViewManager/ViewManager.py" line="3423" /> <source>Move selected lines up one line</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2531" /> - <location filename="../QScintilla/MiniEditor.py" line="2528" /> + <location filename="../QScintilla/MiniEditor.py" line="2532" /> + <location filename="../QScintilla/MiniEditor.py" line="2529" /> <location filename="../ViewManager/ViewManager.py" line="3443" /> <location filename="../ViewManager/ViewManager.py" line="3440" /> <source>Move selected lines down one line</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1805" /> - <location filename="../QScintilla/MiniEditor.py" line="1802" /> + <location filename="../QScintilla/MiniEditor.py" line="1806" /> + <location filename="../QScintilla/MiniEditor.py" line="1803" /> <location filename="../ViewManager/ViewManager.py" line="3461" /> <location filename="../ViewManager/ViewManager.py" line="3458" /> <source>Convert selection to lower case</source> <translation>Seçimi küçük olürük değiştir</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1808" /> + <location filename="../QScintilla/MiniEditor.py" line="1809" /> <location filename="../ViewManager/ViewManager.py" line="3464" /> <source>Alt+Shift+U</source> <translation>Alt+Shift+U</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1821" /> - <location filename="../QScintilla/MiniEditor.py" line="1818" /> + <location filename="../QScintilla/MiniEditor.py" line="1822" /> + <location filename="../QScintilla/MiniEditor.py" line="1819" /> <location filename="../ViewManager/ViewManager.py" line="3477" /> <location filename="../ViewManager/ViewManager.py" line="3474" /> <source>Convert selection to upper case</source> <translation>Seçimi büyük olarak değiştir</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1824" /> + <location filename="../QScintilla/MiniEditor.py" line="1825" /> <location filename="../ViewManager/ViewManager.py" line="3480" /> <source>Ctrl+Shift+U</source> <translation>Ctrl+Shift+U</translation> @@ -96898,7 +96903,7 @@ <translation>Düzen</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2563" /> + <location filename="../QScintilla/MiniEditor.py" line="2564" /> <location filename="../QScintilla/ShellWindow.py" line="923" /> <location filename="../ViewManager/ViewManager.py" line="4167" /> <location filename="../ViewManager/ViewManager.py" line="4165" /> @@ -96907,14 +96912,14 @@ <translation>Ara</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2565" /> + <location filename="../QScintilla/MiniEditor.py" line="2566" /> <location filename="../QScintilla/ShellWindow.py" line="925" /> <location filename="../ViewManager/ViewManager.py" line="3600" /> <source>&Search...</source> <translation>A&ra...</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2567" /> + <location filename="../QScintilla/MiniEditor.py" line="2568" /> <location filename="../QScintilla/ShellWindow.py" line="927" /> <location filename="../ViewManager/ViewManager.py" line="3602" /> <source>Ctrl+F</source> @@ -96922,34 +96927,34 @@ <translation>Ctrl+F</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2574" /> + <location filename="../QScintilla/MiniEditor.py" line="2575" /> <location filename="../QScintilla/ShellWindow.py" line="934" /> <location filename="../ViewManager/ViewManager.py" line="3609" /> <source>Search for a text</source> <translation>Metin olarak ara</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2577" /> + <location filename="../QScintilla/MiniEditor.py" line="2578" /> <location filename="../ViewManager/ViewManager.py" line="3612" /> <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 type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2589" /> + <location filename="../QScintilla/MiniEditor.py" line="2590" /> <location filename="../QScintilla/ShellWindow.py" line="949" /> <location filename="../ViewManager/ViewManager.py" line="3624" /> <source>Search next</source> <translation>Sonrakini ara</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2591" /> + <location filename="../QScintilla/MiniEditor.py" line="2592" /> <location filename="../QScintilla/ShellWindow.py" line="951" /> <location filename="../ViewManager/ViewManager.py" line="3626" /> <source>Search &next</source> <translation>So&nrakini ara</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2593" /> + <location filename="../QScintilla/MiniEditor.py" line="2594" /> <location filename="../QScintilla/ShellWindow.py" line="953" /> <location filename="../ViewManager/ViewManager.py" line="3628" /> <source>F3</source> @@ -96957,34 +96962,34 @@ <translation>F3</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2600" /> + <location filename="../QScintilla/MiniEditor.py" line="2601" /> <location filename="../QScintilla/ShellWindow.py" line="960" /> <location filename="../ViewManager/ViewManager.py" line="3635" /> <source>Search next occurrence of text</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2603" /> + <location filename="../QScintilla/MiniEditor.py" line="2604" /> <location filename="../ViewManager/ViewManager.py" line="3638" /> <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 type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2615" /> + <location filename="../QScintilla/MiniEditor.py" line="2616" /> <location filename="../QScintilla/ShellWindow.py" line="977" /> <location filename="../ViewManager/ViewManager.py" line="3650" /> <source>Search previous</source> <translation>Öncekini ara</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2617" /> + <location filename="../QScintilla/MiniEditor.py" line="2618" /> <location filename="../QScintilla/ShellWindow.py" line="979" /> <location filename="../ViewManager/ViewManager.py" line="3652" /> <source>Search &previous</source> <translation>Öncekini a&ra</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2619" /> + <location filename="../QScintilla/MiniEditor.py" line="2620" /> <location filename="../QScintilla/ShellWindow.py" line="981" /> <location filename="../ViewManager/ViewManager.py" line="3654" /> <source>Shift+F3</source> @@ -96992,41 +96997,41 @@ <translation>Shift+F3</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2628" /> + <location filename="../QScintilla/MiniEditor.py" line="2629" /> <location filename="../QScintilla/ShellWindow.py" line="990" /> <location filename="../ViewManager/ViewManager.py" line="3663" /> <source>Search previous occurrence of text</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2633" /> + <location filename="../QScintilla/MiniEditor.py" line="2634" /> <location filename="../ViewManager/ViewManager.py" line="3668" /> <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 type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2647" /> - <location filename="../QScintilla/MiniEditor.py" line="2645" /> + <location filename="../QScintilla/MiniEditor.py" line="2648" /> + <location filename="../QScintilla/MiniEditor.py" line="2646" /> <location filename="../ViewManager/ViewManager.py" line="3682" /> <location filename="../ViewManager/ViewManager.py" line="3680" /> <source>Clear search markers</source> <translation>Arama işaretlerini temizle</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2649" /> + <location filename="../QScintilla/MiniEditor.py" line="2650" /> <location filename="../ViewManager/ViewManager.py" line="3684" /> <source>Ctrl+3</source> <comment>Search|Clear search markers</comment> <translation>Ctrl+3</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2658" /> + <location filename="../QScintilla/MiniEditor.py" line="2659" /> <location filename="../ViewManager/ViewManager.py" line="3693" /> <source>Clear all displayed search markers</source> <translation>Gösterilen tüm arama işaretlerin temizle</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2663" /> + <location filename="../QScintilla/MiniEditor.py" line="2664" /> <location filename="../ViewManager/ViewManager.py" line="3698" /> <source><b>Clear search markers</b><p>Clear all displayed search markers.</p></source> <translation type="unfinished" /> @@ -97076,113 +97081,113 @@ <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2673" /> + <location filename="../QScintilla/MiniEditor.py" line="2674" /> <location filename="../ViewManager/ViewManager.py" line="3766" /> <source>Replace</source> <translation>Yerdeğiştir</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2674" /> + <location filename="../QScintilla/MiniEditor.py" line="2675" /> <location filename="../ViewManager/ViewManager.py" line="3767" /> <source>&Replace...</source> <translation>&Yerdeğiştir...</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2676" /> + <location filename="../QScintilla/MiniEditor.py" line="2677" /> <location filename="../ViewManager/ViewManager.py" line="3769" /> <source>Ctrl+R</source> <comment>Search|Replace</comment> <translation>Ctrl+R</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2683" /> + <location filename="../QScintilla/MiniEditor.py" line="2684" /> <location filename="../ViewManager/ViewManager.py" line="3776" /> <source>Replace some text</source> <translation>Bazı metinleri değiştir</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2686" /> + <location filename="../QScintilla/MiniEditor.py" line="2687" /> <location filename="../ViewManager/ViewManager.py" line="3779" /> <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 type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2700" /> - <location filename="../QScintilla/MiniEditor.py" line="2698" /> + <location filename="../QScintilla/MiniEditor.py" line="2701" /> + <location filename="../QScintilla/MiniEditor.py" line="2699" /> <location filename="../ViewManager/ViewManager.py" line="3793" /> <location filename="../ViewManager/ViewManager.py" line="3791" /> <source>Replace and Search</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2702" /> + <location filename="../QScintilla/MiniEditor.py" line="2703" /> <location filename="../ViewManager/ViewManager.py" line="3795" /> <source>Meta+R</source> <comment>Search|Replace and Search</comment> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2711" /> + <location filename="../QScintilla/MiniEditor.py" line="2712" /> <location filename="../ViewManager/ViewManager.py" line="3804" /> <source>Replace the found text and search the next occurrence</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2716" /> + <location filename="../QScintilla/MiniEditor.py" line="2717" /> <location filename="../ViewManager/ViewManager.py" line="3809" /> <source><b>Replace and Search</b><p>Replace the found occurrence of text in the current editor and search for the next one. The previously entered search text and options are reused.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2732" /> - <location filename="../QScintilla/MiniEditor.py" line="2730" /> + <location filename="../QScintilla/MiniEditor.py" line="2733" /> + <location filename="../QScintilla/MiniEditor.py" line="2731" /> <location filename="../ViewManager/ViewManager.py" line="3825" /> <location filename="../ViewManager/ViewManager.py" line="3823" /> <source>Replace Occurrence</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2734" /> + <location filename="../QScintilla/MiniEditor.py" line="2735" /> <location filename="../ViewManager/ViewManager.py" line="3827" /> <source>Ctrl+Meta+R</source> <comment>Search|Replace Occurrence</comment> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2743" /> + <location filename="../QScintilla/MiniEditor.py" line="2744" /> <location filename="../ViewManager/ViewManager.py" line="3836" /> <source>Replace the found text</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2746" /> + <location filename="../QScintilla/MiniEditor.py" line="2747" /> <location filename="../ViewManager/ViewManager.py" line="3839" /> <source><b>Replace Occurrence</b><p>Replace the found occurrence of the search text in the current editor.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2759" /> - <location filename="../QScintilla/MiniEditor.py" line="2757" /> + <location filename="../QScintilla/MiniEditor.py" line="2760" /> + <location filename="../QScintilla/MiniEditor.py" line="2758" /> <location filename="../ViewManager/ViewManager.py" line="3852" /> <location filename="../ViewManager/ViewManager.py" line="3850" /> <source>Replace All</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2761" /> + <location filename="../QScintilla/MiniEditor.py" line="2762" /> <location filename="../ViewManager/ViewManager.py" line="3854" /> <source>Shift+Meta+R</source> <comment>Search|Replace All</comment> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2770" /> + <location filename="../QScintilla/MiniEditor.py" line="2771" /> <location filename="../ViewManager/ViewManager.py" line="3863" /> <source>Replace search text occurrences</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2773" /> + <location filename="../QScintilla/MiniEditor.py" line="2774" /> <location filename="../ViewManager/ViewManager.py" line="3866" /> <source><b>Replace All</b><p>Replace all occurrences of the search text in the current editor.</p></source> <translation type="unfinished" /> @@ -97407,21 +97412,21 @@ <translation>A&ra</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2788" /> + <location filename="../QScintilla/MiniEditor.py" line="2789" /> <location filename="../QScintilla/ShellWindow.py" line="1016" /> <location filename="../ViewManager/ViewManager.py" line="4208" /> <source>Zoom in</source> <translation>Büyüt</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2790" /> + <location filename="../QScintilla/MiniEditor.py" line="2791" /> <location filename="../QScintilla/ShellWindow.py" line="1018" /> <location filename="../ViewManager/ViewManager.py" line="4210" /> <source>Zoom &in</source> <translation>Bü&yült</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2792" /> + <location filename="../QScintilla/MiniEditor.py" line="2793" /> <location filename="../QScintilla/ShellWindow.py" line="1020" /> <location filename="../ViewManager/ViewManager.py" line="4212" /> <source>Ctrl++</source> @@ -97429,7 +97434,7 @@ <translation>Ctrl++</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2795" /> + <location filename="../QScintilla/MiniEditor.py" line="2796" /> <location filename="../QScintilla/ShellWindow.py" line="1023" /> <location filename="../ViewManager/ViewManager.py" line="4215" /> <source>Zoom In</source> @@ -97437,35 +97442,35 @@ <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2801" /> + <location filename="../QScintilla/MiniEditor.py" line="2802" /> <location filename="../QScintilla/ShellWindow.py" line="1029" /> <location filename="../ViewManager/ViewManager.py" line="4221" /> <source>Zoom in on the text</source> <translation>MEtni Büyüt</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2804" /> + <location filename="../QScintilla/MiniEditor.py" line="2805" /> <location filename="../QScintilla/ShellWindow.py" line="1032" /> <location filename="../ViewManager/ViewManager.py" line="4224" /> <source><b>Zoom in</b><p>Zoom in on the text. This makes the text bigger.</p></source> <translation><b>Büyüt</b><p>Metin içinde büyüt. Bu metni daha büyük yapar.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2814" /> + <location filename="../QScintilla/MiniEditor.py" line="2815" /> <location filename="../QScintilla/ShellWindow.py" line="1042" /> <location filename="../ViewManager/ViewManager.py" line="4234" /> <source>Zoom out</source> <translation>Küçült</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2816" /> + <location filename="../QScintilla/MiniEditor.py" line="2817" /> <location filename="../QScintilla/ShellWindow.py" line="1044" /> <location filename="../ViewManager/ViewManager.py" line="4236" /> <source>Zoom &out</source> <translation>Küçü&lt</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2818" /> + <location filename="../QScintilla/MiniEditor.py" line="2819" /> <location filename="../QScintilla/ShellWindow.py" line="1046" /> <location filename="../ViewManager/ViewManager.py" line="4238" /> <source>Ctrl+-</source> @@ -97473,7 +97478,7 @@ <translation>Ctrl+-</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2821" /> + <location filename="../QScintilla/MiniEditor.py" line="2822" /> <location filename="../QScintilla/ShellWindow.py" line="1049" /> <location filename="../ViewManager/ViewManager.py" line="4241" /> <source>Zoom Out</source> @@ -97481,35 +97486,35 @@ <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2827" /> + <location filename="../QScintilla/MiniEditor.py" line="2828" /> <location filename="../QScintilla/ShellWindow.py" line="1055" /> <location filename="../ViewManager/ViewManager.py" line="4247" /> <source>Zoom out on the text</source> <translation>Metin üzerinde küçült</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2830" /> + <location filename="../QScintilla/MiniEditor.py" line="2831" /> <location filename="../QScintilla/ShellWindow.py" line="1058" /> <location filename="../ViewManager/ViewManager.py" line="4250" /> <source><b>Zoom out</b><p>Zoom out on the text. This makes the text smaller.</p></source> <translation><b>Küçült</b><p>Metin üzerinde küçült. Bu metni daha küçük yapar.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2840" /> + <location filename="../QScintilla/MiniEditor.py" line="2841" /> <location filename="../QScintilla/ShellWindow.py" line="1068" /> <location filename="../ViewManager/ViewManager.py" line="4260" /> <source>Zoom reset</source> <translation type="unfinished">Büyütmeyi sıfırla</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2842" /> + <location filename="../QScintilla/MiniEditor.py" line="2843" /> <location filename="../QScintilla/ShellWindow.py" line="1070" /> <location filename="../ViewManager/ViewManager.py" line="4262" /> <source>Zoom &reset</source> <translation type="unfinished">Büyütmeyi sıfı&rla</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2844" /> + <location filename="../QScintilla/MiniEditor.py" line="2845" /> <location filename="../QScintilla/ShellWindow.py" line="1072" /> <location filename="../ViewManager/ViewManager.py" line="4264" /> <source>Ctrl+0</source> @@ -97517,42 +97522,42 @@ <translation type="unfinished">Ctrl+0</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2851" /> + <location filename="../QScintilla/MiniEditor.py" line="2852" /> <location filename="../QScintilla/ShellWindow.py" line="1079" /> <location filename="../ViewManager/ViewManager.py" line="4271" /> <source>Reset the zoom of the text</source> <translation type="unfinished">Metin büyütme durumunu sıfırla</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2854" /> + <location filename="../QScintilla/MiniEditor.py" line="2855" /> <location filename="../QScintilla/ShellWindow.py" line="1082" /> <location filename="../ViewManager/ViewManager.py" line="4274" /> <source><b>Zoom reset</b><p>Reset the zoom of the text. This sets the zoom factor to 100%.</p></source> <translation type="unfinished"><b>Büyütmeyi başa döndür</b><p>Metin büyütmesini sıfırla. Bu büyütme katsayısını 100% e ayarlar.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2865" /> + <location filename="../QScintilla/MiniEditor.py" line="2866" /> <location filename="../QScintilla/ShellWindow.py" line="1093" /> <location filename="../ViewManager/ViewManager.py" line="4285" /> <source>Zoom</source> <translation>Büyüt</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2867" /> + <location filename="../QScintilla/MiniEditor.py" line="2868" /> <location filename="../QScintilla/ShellWindow.py" line="1095" /> <location filename="../ViewManager/ViewManager.py" line="4287" /> <source>&Zoom</source> <translation>Büyü&t</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2874" /> + <location filename="../QScintilla/MiniEditor.py" line="2875" /> <location filename="../QScintilla/ShellWindow.py" line="1102" /> <location filename="../ViewManager/ViewManager.py" line="4294" /> <source>Zoom the text</source> <translation>Metni büyüt</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2877" /> + <location filename="../QScintilla/MiniEditor.py" line="2878" /> <location filename="../QScintilla/ShellWindow.py" line="1105" /> <location filename="../ViewManager/ViewManager.py" line="4297" /> <source><b>Zoom</b><p>Zoom the text. This opens a dialog where the desired size can be entered.</p></source> @@ -98317,65 +98322,65 @@ <translation><p><b>{0}</b>dosyasında kaydedilmemiş değişiklikler var.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6077" /> + <location filename="../ViewManager/ViewManager.py" line="6078" /> <source>Line: {0:5}</source> <translation>Satır: {0:5}</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6083" /> + <location filename="../ViewManager/ViewManager.py" line="6084" /> <source>Pos: {0:5}</source> <translation>Pos: {0:5}</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6103" /> + <location filename="../ViewManager/ViewManager.py" line="6104" /> <source>Language: {0}</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6112" /> + <location filename="../ViewManager/ViewManager.py" line="6113" /> <source>EOL Mode: {0}</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6640" /> - <location filename="../ViewManager/ViewManager.py" line="6597" /> + <location filename="../ViewManager/ViewManager.py" line="6641" /> + <location filename="../ViewManager/ViewManager.py" line="6598" /> <source>&Clear</source> <translation>T&emizle</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6634" /> + <location filename="../ViewManager/ViewManager.py" line="6635" /> <source>&Add</source> <translation>&Ekle</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6637" /> + <location filename="../ViewManager/ViewManager.py" line="6638" /> <source>&Edit...</source> <translation>Düz&en...</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="7707" /> - <location filename="../ViewManager/ViewManager.py" line="7693" /> - <location filename="../ViewManager/ViewManager.py" line="7661" /> + <location filename="../ViewManager/ViewManager.py" line="7708" /> + <location filename="../ViewManager/ViewManager.py" line="7694" /> + <location filename="../ViewManager/ViewManager.py" line="7662" /> <source>Edit Spelling Dictionary</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="7664" /> + <location filename="../ViewManager/ViewManager.py" line="7665" /> <source><p>The spelling dictionary file <b>{0}</b> could not be read.</p><p>Reason: {1}</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="7680" /> + <location filename="../ViewManager/ViewManager.py" line="7681" /> <source>Editing {0}</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="7696" /> + <location filename="../ViewManager/ViewManager.py" line="7697" /> <source><p>The spelling dictionary file <b>{0}</b> could not be written.</p><p>Reason: {1}</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="7710" /> + <location filename="../ViewManager/ViewManager.py" line="7711" /> <source>The spelling dictionary was saved successfully.</source> <translation type="unfinished" /> </message> @@ -98385,28 +98390,28 @@ <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6819" /> + <location filename="../ViewManager/ViewManager.py" line="6820" /> <source>Clear Editor</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6820" /> + <location filename="../ViewManager/ViewManager.py" line="6821" /> <source>Do you really want to delete all text of the current editor?</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="8240" /> - <location filename="../ViewManager/ViewManager.py" line="8223" /> - <source>File System Watcher Error</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="8224" /> - <source><p>The operating system resources for file system watches are exhausted. This limit should be increased. On a Linux system you should <ul><li>sudo nano /etc/sysctl.conf</li><li>add to the bottom "fs.inotify.max_user_instances = 1024"</li><li>save and close the editor</li><li>sudo sysctl -p</li></ul></p><p>Error Message: {0}</p></source> - <translation type="unfinished" /> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="8241" /> + <location filename="../ViewManager/ViewManager.py" line="8224" /> + <source>File System Watcher Error</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="8225" /> + <source><p>The operating system resources for file system watches are exhausted. This limit should be increased. On a Linux system you should <ul><li>sudo nano /etc/sysctl.conf</li><li>add to the bottom "fs.inotify.max_user_instances = 1024"</li><li>save and close the editor</li><li>sudo sysctl -p</li></ul></p><p>Error Message: {0}</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="8242" /> <source>The file system watcher reported an error with code <b>{0}</b>.</p><p>Error Message: {1}</p></source> <translation type="unfinished" /> </message> @@ -105798,301 +105803,306 @@ <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="95" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="96" /> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="94" /> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="93" /> <source>whitespace before '{0}'</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="96" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="95" /> + <source>whitespace after decorator '@'</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="97" /> <source>multiple spaces before operator</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="99" /> - <source>multiple spaces after operator</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="100" /> - <source>tab before operator</source> + <source>multiple spaces after operator</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="101" /> - <source>tab after operator</source> + <source>tab before operator</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="102" /> + <source>tab after operator</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="103" /> <source>missing whitespace around operator</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="105" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="106" /> <source>missing whitespace around arithmetic operator</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="108" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="109" /> <source>missing whitespace around bitwise or shift operator</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="111" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="112" /> <source>missing whitespace around modulo operator</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="114" /> - <source>missing whitespace after '{0}'</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="115" /> - <source>multiple spaces after '{0}'</source> + <source>missing whitespace after '{0}'</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="116" /> - <source>tab after '{0}'</source> + <source>multiple spaces after '{0}'</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="117" /> + <source>tab after '{0}'</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="118" /> <source>unexpected spaces around keyword / parameter equals</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="120" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="121" /> <source>missing whitespace around parameter equals</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="123" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="124" /> <source>at least two spaces before inline comment</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="126" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="127" /> <source>inline comment should start with '# '</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="129" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="130" /> <source>block comment should start with '# '</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="132" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="133" /> <source>too many leading '#' for block comment</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="135" /> - <source>multiple spaces after keyword</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="136" /> - <source>multiple spaces before keyword</source> + <source>multiple spaces after keyword</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="137" /> - <source>tab after keyword</source> + <source>multiple spaces before keyword</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="138" /> - <source>tab before keyword</source> + <source>tab after keyword</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="139" /> + <source>tab before keyword</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="140" /> <source>missing whitespace after keyword</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="145" /> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="142" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="146" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="143" /> <source>expected {0} blank lines, found {1}</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="148" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="149" /> <source>too many blank lines ({0}), expected {1}</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="151" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="152" /> <source>blank lines found after function decorator</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="154" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="155" /> <source>expected {0} blank lines after class or function definition, found {1}</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="158" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="159" /> <source>expected {0} blank lines before a nested definition, found {1}</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="161" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="162" /> <source>too many blank lines ({0}) before a nested definition, expected {1}</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="165" /> - <source>too many blank lines ({0})</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="166" /> - <source>multiple imports on one line</source> + <source>too many blank lines ({0})</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="167" /> + <source>multiple imports on one line</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="168" /> <source>module level import not at top of file</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="170" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="171" /> <source>line too long ({0} > {1} characters)</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="173" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="174" /> <source>the backslash is redundant between brackets</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="176" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="177" /> <source>multiple statements on one line (colon)</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="179" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="180" /> <source>multiple statements on one line (semicolon)</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="182" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="183" /> <source>statement ends with a semicolon</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="185" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="186" /> <source>multiple statements on one line (def)</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="191" /> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="188" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="192" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="189" /> <source>comparison to {0} should be {1}</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="194" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="195" /> <source>test for membership should be 'not in'</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="197" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="198" /> <source>test for object identity should be 'is not'</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="200" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="201" /> <source>do not compare types, for exact checks use 'is' / 'is not', for instance checks use 'isinstance()'</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="205" /> - <source>do not use bare except</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="206" /> + <source>do not use bare except</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="207" /> <source>do not assign a lambda expression, use a def</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="209" /> - <source>ambiguous variable name '{0}'</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="210" /> + <source>ambiguous variable name '{0}'</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="211" /> <source>ambiguous class definition '{0}'</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="213" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="214" /> <source>ambiguous function definition '{0}'</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="216" /> - <source>{0}: {1}</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="217" /> + <source>{0}: {1}</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="218" /> <source>{0}</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="225" /> - <source>indentation contains tabs</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="226" /> - <source>trailing whitespace</source> + <source>indentation contains tabs</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="227" /> - <source>no newline at end of file</source> + <source>trailing whitespace</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="228" /> - <source>blank line contains whitespace</source> + <source>no newline at end of file</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="229" /> - <source>blank line at end of file</source> + <source>blank line contains whitespace</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="230" /> + <source>blank line at end of file</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="231" /> <source>line break before binary operator</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="233" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="234" /> <source>line break after binary operator</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="236" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="237" /> <source>doc line too long ({0} > {1} characters)</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="239" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="240" /> <source>invalid escape sequence '\{0}'</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="242" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="243" /> <source>'async' and 'await' are reserved keywords starting with Python 3.7</source> <translation type="unfinished" /> </message>
--- a/src/eric7/i18n/eric7_zh_CN.ts Mon Jul 29 14:43:59 2024 +0200 +++ b/src/eric7/i18n/eric7_zh_CN.ts Sat Aug 31 10:54:21 2024 +0200 @@ -5121,7 +5121,7 @@ <context> <name>CodeStyleChecker</name> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="515" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="516" /> <source>No message defined for code '{0}'.</source> <translation type="unfinished" /> </message> @@ -6264,226 +6264,226 @@ <context> <name>CodeStyleFixer</name> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="253" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="254" /> <source>Triple single quotes converted to triple double quotes.</source> <translation>三单引号转换成双引号。</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="256" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="257" /> <source>Introductory quotes corrected to be {0}"""</source> <translation>前导引号更正为 {0}"""</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="259" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="260" /> <source>Single line docstring put on one line.</source> <translation>单行的文档字串放在一行。</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="262" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="263" /> <source>Period added to summary line.</source> <translation>附于总结线的句号。</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="289" /> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="265" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="290" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="266" /> <source>Blank line before function/method docstring removed.</source> <translation>函数/方法文档字串前的空行已移除。</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="268" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="269" /> <source>Blank line inserted before class docstring.</source> <translation>类文档字串前插入的空行。</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="271" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="272" /> <source>Blank line inserted after class docstring.</source> <translation>类文档字串后的插入的空行。</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="274" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="275" /> <source>Blank line inserted after docstring summary.</source> <translation>文档字串摘要后插入的空行。</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="277" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="278" /> <source>Blank line inserted after last paragraph of docstring.</source> <translation>文档字串最后段落插入的空行。</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="280" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="281" /> <source>Leading quotes put on separate line.</source> <translation>前导引号放在单独一行。</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="283" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="284" /> <source>Trailing quotes put on separate line.</source> <translation>尾随引号放在单独一行。</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="286" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="287" /> <source>Blank line before class docstring removed.</source> <translation>类文档字串前的空行已移除。</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="292" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="293" /> <source>Blank line after class docstring removed.</source> <translation>类文档字串后的空行已移除。</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="295" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="296" /> <source>Blank line after function/method docstring removed.</source> <translation>函数/方法文档字串后的空行已移除。</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="298" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="299" /> <source>Blank line after last paragraph removed.</source> <translation>最后段落后的空行已移除。</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="301" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="302" /> <source>Tab converted to 4 spaces.</source> <translation>制表符转换为4个空格。</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="304" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="305" /> <source>Indentation adjusted to be a multiple of four.</source> <translation>缩进调整为4的倍数。</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="307" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="308" /> <source>Indentation of continuation line corrected.</source> <translation>连续行缩进已更正。</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="310" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="311" /> <source>Indentation of closing bracket corrected.</source> <translation>右括号缩进已更正。</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="313" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="314" /> <source>Missing indentation of continuation line corrected.</source> <translation>连续行缩进丢失已更正。</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="316" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="317" /> <source>Closing bracket aligned to opening bracket.</source> <translation>右括号与左括号一致。</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="319" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="320" /> <source>Indentation level changed.</source> <translation>缩进值已改变。</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="322" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="323" /> <source>Indentation level of hanging indentation changed.</source> <translation>悬挂缩进的缩进值已改变。</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="325" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="326" /> <source>Visual indentation corrected.</source> <translation>可视缩进已更正。</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="340" /> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="334" /> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="328" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="341" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="335" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="329" /> <source>Extraneous whitespace removed.</source> <translation>多余空格已删除。</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="337" /> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="331" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="338" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="332" /> <source>Missing whitespace added.</source> <translation>丢失的空格已添加。</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="343" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="344" /> <source>Whitespace around comment sign corrected.</source> <translation>注释符两边的空格已更正。</translation> </message> <message numerus="yes"> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="346" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="347" /> <source>%n blank line(s) inserted.</source> <translation> <numerusform>已插入 %n 空行。</numerusform> </translation> </message> <message numerus="yes"> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="349" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="350" /> <source>%n superfluous lines removed</source> <translation> <numerusform>已移除 %n 多余行</numerusform> </translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="352" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="353" /> <source>Superfluous blank lines removed.</source> <translation>多余空行已移除。</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="355" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="356" /> <source>Superfluous blank lines after function decorator removed.</source> <translation>函数修饰符后的多余空行已移除。</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="358" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="359" /> <source>Imports were put on separate lines.</source> <translation>已将导入放在单独行。</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="361" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="362" /> <source>Long lines have been shortened.</source> <translation>长行已被截短。</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="364" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="365" /> <source>Redundant backslash in brackets removed.</source> <translation>括号中的多余反斜杠已移除。</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="370" /> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="367" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="371" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="368" /> <source>Compound statement corrected.</source> <translation>复合语句已更正。</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="373" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="374" /> <source>Comparison to None/True/False corrected.</source> <translation>无/真/假的对比已更正。</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="376" /> - <source>'{0}' argument added.</source> - <translation>已添加 '{0}' 参数。</translation> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="377" /> - <source>'{0}' argument removed.</source> - <translation>已移除 '{0}' 参数。</translation> + <source>'{0}' argument added.</source> + <translation>已添加 '{0}' 参数。</translation> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="378" /> + <source>'{0}' argument removed.</source> + <translation>已移除 '{0}' 参数。</translation> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="379" /> <source>Whitespace stripped from end of line.</source> <translation>删除行尾空格。</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="381" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="382" /> <source>newline added to end of file.</source> <translation>文件尾添加新行。</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="384" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="385" /> <source>Superfluous trailing blank lines removed from end of file.</source> <translation>文件尾多余的空行已移除。</translation> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="387" /> - <source>'<>' replaced by '!='.</source> - <translation>用“!=”代替“<>”。</translation> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="388" /> + <source>'<>' replaced by '!='.</source> + <translation>用“!=”代替“<>”。</translation> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="389" /> <source>Could not save the file! Skipping it. Reason: {0}</source> <translation>不能保存该文件!已略过。原因: {0}</translation> </message> @@ -20689,45 +20689,45 @@ <context> <name>EricToolBarDialog</name> <message> - <location filename="../EricWidgets/EricToolBarDialog.py" line="89" /> + <location filename="../EricWidgets/EricToolBarDialog.py" line="90" /> <source>--Separator--</source> <translation type="unfinished">--分隔符--</translation> </message> <message> - <location filename="../EricWidgets/EricToolBarDialog.py" line="169" /> - <location filename="../EricWidgets/EricToolBarDialog.py" line="160" /> + <location filename="../EricWidgets/EricToolBarDialog.py" line="164" /> + <location filename="../EricWidgets/EricToolBarDialog.py" line="155" /> <source>New Toolbar</source> <translation type="unfinished">新建工具栏</translation> </message> <message> - <location filename="../EricWidgets/EricToolBarDialog.py" line="161" /> + <location filename="../EricWidgets/EricToolBarDialog.py" line="156" /> <source>Toolbar Name:</source> <translation type="unfinished">工具栏名称:</translation> </message> <message> - <location filename="../EricWidgets/EricToolBarDialog.py" line="238" /> - <location filename="../EricWidgets/EricToolBarDialog.py" line="170" /> + <location filename="../EricWidgets/EricToolBarDialog.py" line="233" /> + <location filename="../EricWidgets/EricToolBarDialog.py" line="165" /> <source>A toolbar with the name <b>{0}</b> already exists.</source> <translation type="unfinished" /> </message> <message> - <location filename="../EricWidgets/EricToolBarDialog.py" line="197" /> + <location filename="../EricWidgets/EricToolBarDialog.py" line="192" /> <source>Remove Toolbar</source> <translation type="unfinished">移除工具栏</translation> </message> <message> - <location filename="../EricWidgets/EricToolBarDialog.py" line="198" /> + <location filename="../EricWidgets/EricToolBarDialog.py" line="193" /> <source>Should the toolbar <b>{0}</b> really be removed?</source> <translation type="unfinished" /> </message> <message> - <location filename="../EricWidgets/EricToolBarDialog.py" line="237" /> - <location filename="../EricWidgets/EricToolBarDialog.py" line="225" /> + <location filename="../EricWidgets/EricToolBarDialog.py" line="232" /> + <location filename="../EricWidgets/EricToolBarDialog.py" line="220" /> <source>Rename Toolbar</source> <translation type="unfinished">重命名工具栏</translation> </message> <message> - <location filename="../EricWidgets/EricToolBarDialog.py" line="226" /> + <location filename="../EricWidgets/EricToolBarDialog.py" line="221" /> <source>New Toolbar Name:</source> <translation type="unfinished">新工具栏名称:</translation> </message> @@ -54428,723 +54428,723 @@ <context> <name>MiniEditor</name> <message> - <location filename="../QScintilla/MiniEditor.py" line="492" /> + <location filename="../QScintilla/MiniEditor.py" line="493" /> <source>About eric Mini Editor</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="493" /> + <location filename="../QScintilla/MiniEditor.py" line="494" /> <source>The eric 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 type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="562" /> + <location filename="../QScintilla/MiniEditor.py" line="563" /> <source>Line: {0:5}</source> <translation>行:{0:5}</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="566" /> + <location filename="../QScintilla/MiniEditor.py" line="567" /> <source>Pos: {0:5}</source> <translation>列:{0:5}</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="580" /> + <location filename="../QScintilla/MiniEditor.py" line="581" /> <source>Language: {0}</source> <translation type="unfinished">语言:{0}</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="644" /> + <location filename="../QScintilla/MiniEditor.py" line="645" /> <source>New</source> <translation>新建</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="646" /> - <source>&New</source> - <translation>新建(&N)</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="647" /> + <source>&New</source> + <translation>新建(&N)</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="648" /> <source>Ctrl+N</source> <comment>File|New</comment> <translation>Ctrl+N</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="652" /> + <location filename="../QScintilla/MiniEditor.py" line="653" /> <source>Open an empty editor window</source> <translation>打开一个空白编辑器窗口</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="654" /> + <location filename="../QScintilla/MiniEditor.py" line="655" /> <source><b>New</b><p>An empty editor window will be created.</p></source> <translation><b>新建</b><p>创建一个空白编辑器窗口。</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="660" /> + <location filename="../QScintilla/MiniEditor.py" line="661" /> <source>Open</source> <translation>打开</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="662" /> - <source>&Open...</source> - <translation>打开(&O)…</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="663" /> + <source>&Open...</source> + <translation>打开(&O)…</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="664" /> <source>Ctrl+O</source> <comment>File|Open</comment> <translation>Ctrl+O</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="668" /> + <location filename="../QScintilla/MiniEditor.py" line="669" /> <source>Open a file</source> <translation>打开一个文件</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="670" /> + <location filename="../QScintilla/MiniEditor.py" line="671" /> <source><b>Open a file</b><p>You will be asked for the name of a file to be opened.</p></source> <translation><b>打开一个文件</b><p>将询问要打开的文件名称。</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="679" /> + <location filename="../QScintilla/MiniEditor.py" line="680" /> <source>Save</source> <translation>保存</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="681" /> - <source>&Save</source> - <translation>保存(&S)</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="682" /> + <source>&Save</source> + <translation>保存(&S)</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="683" /> <source>Ctrl+S</source> <comment>File|Save</comment> <translation>Ctrl+S</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="687" /> + <location filename="../QScintilla/MiniEditor.py" line="688" /> <source>Save the current file</source> <translation>保存当前文件</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="689" /> + <location filename="../QScintilla/MiniEditor.py" line="690" /> <source><b>Save File</b><p>Save the contents of current editor window.</p></source> <translation><b>保存文件</b><p>保存当前编辑器窗口的内容。</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="698" /> + <location filename="../QScintilla/MiniEditor.py" line="699" /> <source>Save as</source> <translation>另存为</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="700" /> - <source>Save &as...</source> - <translation>另存为(&A)…</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="701" /> + <source>Save &as...</source> + <translation>另存为(&A)…</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="702" /> <source>Shift+Ctrl+S</source> <comment>File|Save As</comment> <translation>Shift+Ctrl+S</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="706" /> + <location filename="../QScintilla/MiniEditor.py" line="707" /> <source>Save the current file to a new one</source> <translation>将当前文件保存到一个新文件中</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="708" /> + <location filename="../QScintilla/MiniEditor.py" line="709" /> <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>文件另存为</b><p>将当前编辑器窗口的内容保存到一个新文件中。可以在文件选择对话框中输入该文件。</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="718" /> + <location filename="../QScintilla/MiniEditor.py" line="719" /> <source>Save Copy</source> <translation>保存副本</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="720" /> + <location filename="../QScintilla/MiniEditor.py" line="721" /> <source>Save &Copy...</source> <translation>保存副本(&C)…</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="726" /> + <location filename="../QScintilla/MiniEditor.py" line="727" /> <source>Save a copy of the current file</source> <translation>保存当前文件的一个副本</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="728" /> + <location filename="../QScintilla/MiniEditor.py" line="729" /> <source><b>Save Copy</b><p>Save a copy of the contents of current editor window. The file can be entered in a file selection dialog.</p></source> <translation><b>保存副本</b>保存当前编辑器窗口内容的一个副本。文件可以在文件选择对话框中输入。</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="738" /> + <location filename="../QScintilla/MiniEditor.py" line="739" /> <source>Close</source> <translation>关闭</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="740" /> - <source>&Close</source> - <translation>关闭(&C)</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="741" /> + <source>&Close</source> + <translation>关闭(&C)</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="742" /> <source>Ctrl+W</source> <comment>File|Close</comment> <translation>Ctrl+W</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="746" /> + <location filename="../QScintilla/MiniEditor.py" line="747" /> <source>Close the editor window</source> <translation>关闭编辑器窗口</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="748" /> + <location filename="../QScintilla/MiniEditor.py" line="749" /> <source><b>Close Window</b><p>Close the current window.</p></source> <translation><b>关闭窗口</b><p>关闭当前窗口。</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="754" /> + <location filename="../QScintilla/MiniEditor.py" line="755" /> <source>Print</source> <translation>打印</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="756" /> - <source>&Print</source> - <translation>打印(&P)</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="757" /> + <source>&Print</source> + <translation>打印(&P)</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="758" /> <source>Ctrl+P</source> <comment>File|Print</comment> <translation>Ctrl+P</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="762" /> + <location filename="../QScintilla/MiniEditor.py" line="763" /> <source>Print the current file</source> <translation>打印当前文件</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="764" /> + <location filename="../QScintilla/MiniEditor.py" line="765" /> <source><b>Print File</b><p>Print the contents of the current file.</p></source> <translation><b>打印文件</b><p>打印当前文件的内容。</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="773" /> + <location filename="../QScintilla/MiniEditor.py" line="774" /> <source>Print Preview</source> <translation>打印预览</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="781" /> + <location filename="../QScintilla/MiniEditor.py" line="782" /> <source>Print preview of the current file</source> <translation>当前文件的打印预览</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="783" /> + <location filename="../QScintilla/MiniEditor.py" line="784" /> <source><b>Print Preview</b><p>Print preview of the current file.</p></source> <translation><b>打印预览</b><p>当前文件的打印预览。</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="796" /> + <location filename="../QScintilla/MiniEditor.py" line="797" /> <source>Undo</source> <translation>撤消</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="798" /> - <source>&Undo</source> - <translation>撤消(&U)</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="799" /> + <source>&Undo</source> + <translation>撤消(&U)</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="800" /> <source>Ctrl+Z</source> <comment>Edit|Undo</comment> <translation>Ctrl+Z</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="800" /> + <location filename="../QScintilla/MiniEditor.py" line="801" /> <source>Alt+Backspace</source> <comment>Edit|Undo</comment> <translation>Alt+Backspace</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="804" /> + <location filename="../QScintilla/MiniEditor.py" line="805" /> <source>Undo the last change</source> <translation>撤消最后一次更改</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="806" /> + <location filename="../QScintilla/MiniEditor.py" line="807" /> <source><b>Undo</b><p>Undo the last change done in the current editor.</p></source> <translation><b>撤消</b><p>在当前编辑器中撤消最后一次更改。</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="815" /> + <location filename="../QScintilla/MiniEditor.py" line="816" /> <source>Redo</source> <translation>重做</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="817" /> - <source>&Redo</source> - <translation>重做(&R)</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="818" /> + <source>&Redo</source> + <translation>重做(&R)</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="819" /> <source>Ctrl+Shift+Z</source> <comment>Edit|Redo</comment> <translation>Ctrl+Shift+Z</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="823" /> + <location filename="../QScintilla/MiniEditor.py" line="824" /> <source>Redo the last change</source> <translation>重做最后一次更改</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="825" /> + <location filename="../QScintilla/MiniEditor.py" line="826" /> <source><b>Redo</b><p>Redo the last change done in the current editor.</p></source> <translation><b>重做</b><p>在当前编辑器中重做最后一次更改。</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="834" /> + <location filename="../QScintilla/MiniEditor.py" line="835" /> <source>Cut</source> <translation>剪切</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="836" /> - <source>Cu&t</source> - <translation>剪切(&t)</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="837" /> + <source>Cu&t</source> + <translation>剪切(&t)</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="838" /> <source>Ctrl+X</source> <comment>Edit|Cut</comment> <translation>Ctrl+X</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="838" /> + <location filename="../QScintilla/MiniEditor.py" line="839" /> <source>Shift+Del</source> <comment>Edit|Cut</comment> <translation>Shift+Del</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="842" /> + <location filename="../QScintilla/MiniEditor.py" line="843" /> <source>Cut the selection</source> <translation>剪切所选内容</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="844" /> + <location filename="../QScintilla/MiniEditor.py" line="845" /> <source><b>Cut</b><p>Cut the selected text of the current editor to the clipboard.</p></source> <translation><b>剪切</b><p>将当前编辑器所选内容剪切到剪贴板中。</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="854" /> + <location filename="../QScintilla/MiniEditor.py" line="855" /> <source>Copy</source> <translation>复制</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="856" /> - <source>&Copy</source> - <translation>复制(&C)</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="857" /> - <source>Ctrl+C</source> - <comment>Edit|Copy</comment> - <translation>Ctrl+C</translation> + <source>&Copy</source> + <translation>复制(&C)</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="858" /> + <source>Ctrl+C</source> + <comment>Edit|Copy</comment> + <translation>Ctrl+C</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="859" /> <source>Ctrl+Ins</source> <comment>Edit|Copy</comment> <translation>Ctrl+Ins</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="862" /> + <location filename="../QScintilla/MiniEditor.py" line="863" /> <source>Copy the selection</source> <translation>复制所选内容</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="864" /> + <location filename="../QScintilla/MiniEditor.py" line="865" /> <source><b>Copy</b><p>Copy the selected text of the current editor to the clipboard.</p></source> <translation><b>复制</b><p>将当前编辑器所选内容复制到剪贴板中。</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="874" /> + <location filename="../QScintilla/MiniEditor.py" line="875" /> <source>Paste</source> <translation>粘贴</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="876" /> - <source>&Paste</source> - <translation>粘贴(&P)</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="877" /> - <source>Ctrl+V</source> - <comment>Edit|Paste</comment> - <translation>Ctrl+V</translation> + <source>&Paste</source> + <translation>粘贴(&P)</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="878" /> + <source>Ctrl+V</source> + <comment>Edit|Paste</comment> + <translation>Ctrl+V</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="879" /> <source>Shift+Ins</source> <comment>Edit|Paste</comment> <translation>Shift+Ins</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="882" /> + <location filename="../QScintilla/MiniEditor.py" line="883" /> <source>Paste the last cut/copied text</source> <translation>粘贴最近剪切或复制的文本</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="884" /> + <location filename="../QScintilla/MiniEditor.py" line="885" /> <source><b>Paste</b><p>Paste the last cut/copied text from the clipboard to the current editor.</p></source> <translation><b>粘贴</b><p>将最近剪切或复制的文本从剪贴板粘贴到当前编辑器中。</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="894" /> + <location filename="../QScintilla/MiniEditor.py" line="895" /> <source>Clear</source> <translation>清除</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="896" /> - <source>Cl&ear</source> - <translation>清除(&E)</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="897" /> + <source>Cl&ear</source> + <translation>清除(&E)</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="898" /> <source>Alt+Shift+C</source> <comment>Edit|Clear</comment> <translation>Alt+Shift+C</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="902" /> + <location filename="../QScintilla/MiniEditor.py" line="903" /> <source>Clear all text</source> <translation>清除所有文本</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="904" /> + <location filename="../QScintilla/MiniEditor.py" line="905" /> <source><b>Clear</b><p>Delete all text of the current editor.</p></source> <translation><b>清除</b><p>删除当前编辑器中的所有文本。</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2892" /> + <location filename="../QScintilla/MiniEditor.py" line="2893" /> <source>About</source> <translation>关于</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2892" /> + <location filename="../QScintilla/MiniEditor.py" line="2893" /> <source>&About</source> <translation>关于(&A)</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2894" /> + <location filename="../QScintilla/MiniEditor.py" line="2895" /> <source>Display information about this software</source> <translation>显示软件信息</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2896" /> + <location filename="../QScintilla/MiniEditor.py" line="2897" /> <source><b>About</b><p>Display some information about this software.</p></source> <translation><b>关于</b><p>显示与本软件有关的部分信息。</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2905" /> + <location filename="../QScintilla/MiniEditor.py" line="2906" /> <source>About Qt</source> <translation>关于 Qt</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2905" /> + <location filename="../QScintilla/MiniEditor.py" line="2906" /> <source>About &Qt</source> <translation>关于 &Qt</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2908" /> + <location filename="../QScintilla/MiniEditor.py" line="2909" /> <source>Display information about the Qt toolkit</source> <translation>显示 Qt 工具包信息</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2911" /> + <location filename="../QScintilla/MiniEditor.py" line="2912" /> <source><b>About Qt</b><p>Display some information about the Qt toolkit.</p></source> <translation><b>关于 Qt</b><p>显示 Qt 工具包的部分相关信息。</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2920" /> + <location filename="../QScintilla/MiniEditor.py" line="2921" /> <source>What's This?</source> <translation>这是什么?</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2922" /> - <source>&What's This?</source> - <translation>这是什么(&W)?</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="2923" /> + <source>&What's This?</source> + <translation>这是什么(&W)?</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="2924" /> <source>Shift+F1</source> <comment>Help|What's This?'</comment> <translation>Shift+F1</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2928" /> + <location filename="../QScintilla/MiniEditor.py" line="2929" /> <source>Context sensitive help</source> <translation>背景帮助</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2930" /> + <location filename="../QScintilla/MiniEditor.py" line="2931" /> <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>显示背景帮助</b><p>在“这是什么?”模式中,鼠标光标显示为带问号的箭头,通过点击界面元素你可以获得“在做什么”和“怎样使用”的简短描述。使用标题栏中的上下文帮助按钮可以获得此功能。</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2948" /> + <location filename="../QScintilla/MiniEditor.py" line="2949" /> <source>Preferences</source> <translation type="unfinished">首选项</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2950" /> + <location filename="../QScintilla/MiniEditor.py" line="2951" /> <source>&Preferences...</source> <translation type="unfinished">首选项(&P)…</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2956" /> + <location filename="../QScintilla/MiniEditor.py" line="2957" /> <source>Set the prefered configuration</source> <translation type="unfinished">设定偏好配置</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2958" /> + <location filename="../QScintilla/MiniEditor.py" line="2959" /> <source><b>Preferences</b><p>Set the configuration items of the application with your prefered values.</p></source> <translation type="unfinished"><b>首选项</b><p>将应用程序的配置项设定为你喜欢的值。</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2972" /> + <location filename="../QScintilla/MiniEditor.py" line="2973" /> <source>&File</source> <translation>文件(&F)</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2984" /> + <location filename="../QScintilla/MiniEditor.py" line="2985" /> <source>&Edit</source> <translation>编辑(&E)</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2994" /> + <location filename="../QScintilla/MiniEditor.py" line="2995" /> <source>&Search</source> <translation type="unfinished">搜索(&S)</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3004" /> + <location filename="../QScintilla/MiniEditor.py" line="3005" /> <source>&View</source> <translation type="unfinished">视图(&V)</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3010" /> + <location filename="../QScintilla/MiniEditor.py" line="3011" /> <source>Se&ttings</source> <translation type="unfinished">设置(&T)</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3015" /> + <location filename="../QScintilla/MiniEditor.py" line="3016" /> <source>&Help</source> <translation>帮助(&H)</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3027" /> + <location filename="../QScintilla/MiniEditor.py" line="3028" /> <source>File</source> <translation>文件</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3039" /> + <location filename="../QScintilla/MiniEditor.py" line="3040" /> <source>Edit</source> <translation>编辑</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3048" /> + <location filename="../QScintilla/MiniEditor.py" line="3049" /> <source>Search</source> <translation type="unfinished">搜索</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3054" /> + <location filename="../QScintilla/MiniEditor.py" line="3055" /> <source>View</source> <translation type="unfinished">视图</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3060" /> + <location filename="../QScintilla/MiniEditor.py" line="3061" /> <source>Settings</source> <translation type="unfinished">设置</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3063" /> + <location filename="../QScintilla/MiniEditor.py" line="3064" /> <source>Help</source> <translation>帮助</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3076" /> + <location filename="../QScintilla/MiniEditor.py" line="3077" /> <source><p>This part of the status bar displays the editor language.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3086" /> + <location filename="../QScintilla/MiniEditor.py" line="3087" /> <source><p>This part of the status bar displays an indication of the editors files writability.</p></source> <translation><p>状态条的这一部分显示编辑器文件是否为可写。</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3095" /> + <location filename="../QScintilla/MiniEditor.py" line="3096" /> <source><p>This part of the status bar displays the line number of the editor.</p></source> <translation><p>状态条的这一部分显示编辑器的行号。</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3104" /> + <location filename="../QScintilla/MiniEditor.py" line="3105" /> <source><p>This part of the status bar displays the cursor position of the editor.</p></source> <translation><p>状态条的这一部分显示编辑的光标位置。</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3118" /> + <location filename="../QScintilla/MiniEditor.py" line="3119" /> <source><p>This part of the status bar allows zooming the editor.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3125" /> + <location filename="../QScintilla/MiniEditor.py" line="3126" /> <source>Ready</source> <translation>就绪</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3201" /> - <source>eric Mini Editor</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="3202" /> + <source>eric Mini Editor</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="3203" /> <source>The document has unsaved changes.</source> <translation>文档有未保存的更改。</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3231" /> - <source>Open File</source> - <translation>打开文件</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="3232" /> + <source>Open File</source> + <translation>打开文件</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="3233" /> <source><p>The file <b>{0}</b> could not be opened.</p><p>Reason: {1}</p></source> <translation><p>文件 <b>{0}</b> 无法打开。</p><p>原因:{1}</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3260" /> + <location filename="../QScintilla/MiniEditor.py" line="3261" /> <source>File loaded</source> <translation>文件已载入</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3341" /> - <source>Save File</source> - <translation>保存文件</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="3342" /> + <source>Save File</source> + <translation>保存文件</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="3343" /> <source><p>The file <b>{0}</b> could not be saved.<br/>Reason: {1}</p></source> <translation><p>文件 <b>{0}</b> 无法保存。<br />原因:{1}</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3348" /> + <location filename="../QScintilla/MiniEditor.py" line="3349" /> <source>File saved</source> <translation>文件已保存</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3360" /> + <location filename="../QScintilla/MiniEditor.py" line="3361" /> <source>[*] - {0}</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3380" /> - <location filename="../QScintilla/MiniEditor.py" line="3360" /> + <location filename="../QScintilla/MiniEditor.py" line="3381" /> + <location filename="../QScintilla/MiniEditor.py" line="3361" /> <source>Mini Editor</source> <translation>迷你编辑器</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3735" /> - <location filename="../QScintilla/MiniEditor.py" line="3706" /> - <location filename="../QScintilla/MiniEditor.py" line="3373" /> + <location filename="../QScintilla/MiniEditor.py" line="3736" /> + <location filename="../QScintilla/MiniEditor.py" line="3707" /> + <location filename="../QScintilla/MiniEditor.py" line="3374" /> <source>Untitled</source> <translation>未命名</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3380" /> + <location filename="../QScintilla/MiniEditor.py" line="3381" /> <source>{0}[*] - {1}</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3701" /> + <location filename="../QScintilla/MiniEditor.py" line="3702" /> <source>Printing...</source> <translation>打印中…</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3717" /> + <location filename="../QScintilla/MiniEditor.py" line="3718" /> <source>Printing completed</source> <translation>打印已完成</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3719" /> + <location filename="../QScintilla/MiniEditor.py" line="3720" /> <source>Error while printing</source> <translation>打印时出错</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3722" /> + <location filename="../QScintilla/MiniEditor.py" line="3723" /> <source>Printing aborted</source> <translation>打印失败</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3777" /> - <source>Select all</source> - <translation>全选</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="3778" /> + <source>Select all</source> + <translation>全选</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="3779" /> <source>Deselect all</source> <translation>全部取消选择</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3792" /> + <location filename="../QScintilla/MiniEditor.py" line="3793" /> <source>Languages</source> <translation>语言</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3795" /> + <location filename="../QScintilla/MiniEditor.py" line="3796" /> <source>No Language</source> <translation>无语言</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3816" /> + <location filename="../QScintilla/MiniEditor.py" line="3817" /> <source>Guessed</source> <translation>猜测</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3838" /> - <location filename="../QScintilla/MiniEditor.py" line="3820" /> + <location filename="../QScintilla/MiniEditor.py" line="3839" /> + <location filename="../QScintilla/MiniEditor.py" line="3821" /> <source>Alternatives</source> <translation>备选</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3835" /> + <location filename="../QScintilla/MiniEditor.py" line="3836" /> <source>Alternatives ({0})</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3867" /> - <source>Pygments Lexer</source> - <translation>Pygments 词法分析器</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="3868" /> + <source>Pygments Lexer</source> + <translation>Pygments 词法分析器</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="3869" /> <source>Select the Pygments lexer to apply.</source> <translation>选择要应用的 Pygments 词法分析器。</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="4413" /> - <source>EditorConfig Properties</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="4414" /> + <source>EditorConfig Properties</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="4415" /> <source><p>The EditorConfig properties for file <b>{0}</b> could not be loaded.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="4601" /> - <source>Save File to Device</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="4602" /> + <source>Save File to Device</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="4603" /> <source>Enter the complete device file path:</source> <translation type="unfinished" /> </message> @@ -55361,499 +55361,504 @@ <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="135" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="134" /> + <source>unnecessary {0} comprehension - rewrite using dict.fromkeys()</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="139" /> <source>sort keys - '{0}' should be before '{1}'</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="140" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="144" /> <source>the number of arguments for property getter method is wrong (should be 1 instead of {0})</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="145" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="149" /> <source>the number of arguments for property setter method is wrong (should be 2 instead of {0})</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="150" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="154" /> <source>the number of arguments for property deleter method is wrong (should be 1 instead of {0})</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="155" /> - <source>the name of the setter method is wrong (should be '{0}' instead of '{1}')</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="159" /> - <source>the name of the deleter method is wrong (should be '{0}' instead of '{1}')</source> + <source>the name of the setter method is wrong (should be '{0}' instead of '{1}')</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="163" /> - <source>the name of the setter decorator is wrong (should be '{0}' instead of '{1}')</source> + <source>the name of the deleter method is wrong (should be '{0}' instead of '{1}')</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="167" /> - <source>the name of the deleter decorator is wrong (should be '{0}' instead of '{1}')</source> + <source>the name of the setter decorator is wrong (should be '{0}' instead of '{1}')</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="171" /> + <source>the name of the deleter decorator is wrong (should be '{0}' instead of '{1}')</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="175" /> <source>multiple decorators were used to declare property '{0}'</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="176" /> - <source>use of 'datetime.datetime()' without 'tzinfo' argument should be avoided</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="180" /> + <source>use of 'datetime.datetime()' without 'tzinfo' argument should be avoided</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="184" /> <source>use of 'datetime.datetime.today()' should be avoided. Use 'datetime.datetime.now(tz=)' instead.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="185" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="189" /> <source>use of 'datetime.datetime.utcnow()' should be avoided. Use 'datetime.datetime.now(tz=datetime.timezone.utc)' instead.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="190" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="194" /> <source>use of 'datetime.datetime.utcfromtimestamp()' should be avoided. Use 'datetime.datetime.fromtimestamp(..., tz=datetime.timezone.utc)' instead.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="195" /> - <source>use of 'datetime.datetime.now()' without 'tz' argument should be avoided</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="199" /> + <source>use of 'datetime.datetime.now()' without 'tz' argument should be avoided</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="203" /> <source>use of 'datetime.datetime.fromtimestamp()' without 'tz' argument should be avoided</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="204" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="208" /> <source>use of 'datetime.datetime.strptime()' should be followed by '.replace(tzinfo=)'</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="209" /> - <source>use of 'datetime.datetime.fromordinal()' should be avoided</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="213" /> + <source>use of 'datetime.datetime.fromordinal()' should be avoided</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="217" /> <source>use of 'datetime.date()' should be avoided. Use 'datetime.datetime(, tzinfo=).date()' instead.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="218" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="222" /> <source>use of 'datetime.date.today()' should be avoided. Use 'datetime.datetime.now(tz=).date()' instead.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="223" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="227" /> <source>use of 'datetime.date.fromtimestamp()' should be avoided. Use 'datetime.datetime.fromtimestamp(tz=).date()' instead.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="228" /> - <source>use of 'datetime.date.fromordinal()' should be avoided</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="232" /> - <source>use of 'datetime.date.fromisoformat()' should be avoided</source> + <source>use of 'datetime.date.fromordinal()' should be avoided</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="236" /> + <source>use of 'datetime.date.fromisoformat()' should be avoided</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="240" /> <source>use of 'datetime.time()' without 'tzinfo' argument should be avoided</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="241" /> - <source>'sys.version[:3]' referenced (Python 3.10), use 'sys.version_info'</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="245" /> - <source>'sys.version[2]' referenced (Python 3.10), use 'sys.version_info'</source> + <source>'sys.version[:3]' referenced (Python 3.10), use 'sys.version_info'</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="249" /> - <source>'sys.version' compared to string (Python 3.10), use 'sys.version_info'</source> + <source>'sys.version[2]' referenced (Python 3.10), use 'sys.version_info'</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="253" /> - <source>'sys.version_info[0] == 3' referenced (Python 4), use '>='</source> + <source>'sys.version' compared to string (Python 3.10), use 'sys.version_info'</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="257" /> - <source>'six.PY3' referenced (Python 4), use 'not six.PY2'</source> + <source>'sys.version_info[0] == 3' referenced (Python 4), use '>='</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="261" /> + <source>'six.PY3' referenced (Python 4), use 'not six.PY2'</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="265" /> <source>'sys.version_info[1]' compared to integer (Python 4), compare 'sys.version_info' to tuple</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="266" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="270" /> <source>'sys.version_info.minor' compared to integer (Python 4), compare 'sys.version_info' to tuple</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="271" /> - <source>'sys.version[0]' referenced (Python 10), use 'sys.version_info'</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="275" /> - <source>'sys.version' compared to string (Python 10), use 'sys.version_info'</source> + <source>'sys.version[0]' referenced (Python 10), use 'sys.version_info'</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="279" /> + <source>'sys.version' compared to string (Python 10), use 'sys.version_info'</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="283" /> <source>'sys.version[:1]' referenced (Python 10), use 'sys.version_info'</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="284" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="288" /> <source>Do not use bare 'except:', it also catches unexpected events like memory errors, interrupts, system exit, and so on. Prefer excepting specific exceptions. If you're sure what you're doing, be explicit and write 'except BaseException:'.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="291" /> - <source>Python does not support the unary prefix increment</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="295" /> + <source>Python does not support the unary prefix increment</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="299" /> <source>assigning to 'os.environ' does not clear the environment - use 'os.environ.clear()'</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="300" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="304" /> <source>using 'hasattr(x, "__call__")' to test if 'x' is callable is unreliable. Use 'callable(x)' for consistent results.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="305" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="309" /> <source>using .strip() with multi-character strings is misleading. Use .replace(), .removeprefix(), .removesuffix(), or regular expressions to remove string fragments.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="311" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="315" /> <source>loop control variable {0} not used within the loop body - start the name with an underscore</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="316" /> - <source>do not call getattr with a constant attribute value</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="320" /> - <source>do not call setattr with a constant attribute value</source> + <source>do not call getattr with a constant attribute value</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="324" /> - <source>do not call assert False since python -O removes these calls</source> + <source>do not call setattr with a constant attribute value</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="328" /> + <source>do not call assert False since python -O removes these calls</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="332" /> <source>return/continue/break inside finally blocks cause exceptions to be silenced. Exceptions should be silenced in except blocks. Control statements can be moved outside the finally block.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="334" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="338" /> <source>A length-one tuple literal is redundant. Write 'except {0}:' instead of 'except ({0},):'.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="339" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="343" /> <source>Redundant exception types in 'except ({0}){1}:'. Write 'except {2}{1}:', which catches exactly the same exceptions.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="344" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="348" /> <source>Result of comparison is not used. This line doesn't do anything. Did you intend to prepend it with assert?</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="349" /> - <source>Cannot raise a literal. Did you intend to return it or raise an Exception?</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="353" /> + <source>Cannot raise a literal. Did you intend to return it or raise an Exception?</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="357" /> <source>'assertRaises(Exception)' and 'pytest.raises(Exception)' should be considered evil. They can lead to your test passing even if the code being tested is never executed due to a typo. Assert for a more specific exception (builtin or custom), or use 'assertRaisesRegex' (if using 'assertRaises'), or add the 'match' keyword argument (if using 'pytest.raises'), or use the context manager form with a target.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="362" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="366" /> <source>Found useless {0} expression. Consider either assigning it to a variable or removing it.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="367" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="371" /> <source>Use of 'functools.lru_cache' or 'functools.cache' on methods can lead to memory leaks. The cache may retain instance references, preventing garbage collection.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="373" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="377" /> <source>Found for loop that reassigns the iterable it is iterating with each iterable value.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="378" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="382" /> <source>f-string used as docstring. This will be interpreted by python as a joined string rather than a docstring.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="383" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="387" /> <source>No arguments passed to 'contextlib.suppress'. No exceptions will be suppressed and therefore this context manager is redundant.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="388" /> - <source>Function definition does not bind loop variable '{0}'.</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="392" /> + <source>Function definition does not bind loop variable '{0}'.</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="396" /> <source>{0} is an abstract base class, but none of the methods it defines are abstract. This is not necessarily an error, but you might have forgotten to add the @abstractmethod decorator, potentially in conjunction with @classmethod, @property and/or @staticmethod.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="399" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="403" /> <source>Exception '{0}' has been caught multiple times. Only the first except will be considered and all other except catches can be safely removed.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="404" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="408" /> <source>Star-arg unpacking after a keyword argument is strongly discouraged, because it only works when the keyword parameter is declared after all parameters supplied by the unpacked sequence, and this change of ordering can surprise and mislead readers.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="411" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="415" /> <source>{0} is an empty method in an abstract base class, but has no abstract decorator. Consider adding @abstractmethod.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="416" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="420" /> <source>No explicit stacklevel argument found. The warn method from the warnings module uses a stacklevel of 1 by default. This will only show a stack trace for the line on which the warn method is called. It is therefore recommended to use a stacklevel of 2 or greater to provide more information to the user.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="424" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="428" /> <source>Using 'except ():' with an empty tuple does not handle/catch anything. Add exceptions to handle.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="429" /> - <source>Except handlers should only be names of exception classes</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="433" /> + <source>Except handlers should only be names of exception classes</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="437" /> <source>Using the generator returned from 'itertools.groupby()' more than once will do nothing on the second usage. Save the result to a list, if the result is needed multiple times.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="439" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="443" /> <source>Possible unintentional type annotation (using ':'). Did you mean to assign (using '=')?</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="444" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="448" /> <source>Set should not contain duplicate item '{0}'. Duplicate items will be replaced with a single item at runtime.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="449" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="453" /> <source>re.{0} should get '{1}' and 'flags' passed as keyword arguments to avoid confusion due to unintuitive argument positions.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="454" /> - <source>Static key in dict comprehension: {0!r}.</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="458" /> - <source>Don't except 'BaseException' unless you plan to re-raise it.</source> + <source>Static key in dict comprehension: {0!r}.</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="462" /> + <source>Don't except 'BaseException' unless you plan to re-raise it.</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="466" /> <source>Class '__init__' methods must not return or yield and any values.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="467" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="471" /> <source>Editing a loop's mutable iterable often leads to unexpected results/bugs.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="472" /> - <source>unncessary f-string</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="476" /> + <source>unncessary f-string</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="480" /> <source>cannot use 'self.__class__' as first argument of 'super()' call</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="481" /> - <source>found {0} formatter</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="485" /> - <source>format string does contain unindexed parameters</source> + <source>found {0} formatter</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="489" /> - <source>docstring does contain unindexed parameters</source> + <source>format string does contain unindexed parameters</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="493" /> - <source>other string does contain unindexed parameters</source> + <source>docstring does contain unindexed parameters</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="497" /> - <source>format call uses too large index ({0})</source> + <source>other string does contain unindexed parameters</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="501" /> - <source>format call uses missing keyword ({0})</source> + <source>format call uses too large index ({0})</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="505" /> - <source>format call uses keyword arguments but no named entries</source> + <source>format call uses missing keyword ({0})</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="509" /> - <source>format call uses variable arguments but no numbered entries</source> + <source>format call uses keyword arguments but no named entries</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="513" /> - <source>format call uses implicit and explicit indexes together</source> + <source>format call uses variable arguments but no numbered entries</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="517" /> - <source>format call provides unused index ({0})</source> + <source>format call uses implicit and explicit indexes together</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="521" /> + <source>format call provides unused index ({0})</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="525" /> <source>format call provides unused keyword ({0})</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="526" /> - <source>expected these __future__ imports: {0}; but only got: {1}</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="530" /> + <source>expected these __future__ imports: {0}; but only got: {1}</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="534" /> <source>expected these __future__ imports: {0}; but got none</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="535" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="539" /> <source>gettext import with alias _ found: {0}</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="540" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="544" /> <source>print statement found</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="545" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="549" /> <source>one element tuple found</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="554" /> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="550" /> - <source>mutable default argument of type {0}</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="558" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="554" /> + <source>mutable default argument of type {0}</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="562" /> <source>mutable default argument of function call '{0}'</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="563" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="567" /> <source>None should not be added at any return if function has no return value except None</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="568" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="572" /> <source>an explicit value at every return should be added if function has a return value except None</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="573" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="577" /> <source>an explicit return at the end of the function should be added if it has a return value except None</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="578" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="582" /> <source>a value should not be assigned to a variable if it will be used as a return value only</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="584" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="588" /> <source>prefer implied line continuation inside parentheses, brackets and braces as opposed to a backslash</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="590" /> - <source>implicitly concatenated string or bytes literals on one line</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="594" /> - <source>implicitly concatenated string or bytes literals over continuation line</source> + <source>implicitly concatenated string or bytes literals on one line</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="598" /> + <source>implicitly concatenated string or bytes literals over continuation line</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="602" /> <source>explicitly concatenated string or bytes should be implicitly concatenated</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="603" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/Miscellaneous/translations.py" line="607" /> <source>commented code lines should be removed</source> <translation type="unfinished" /> </message> @@ -86358,15 +86363,15 @@ <context> <name>Tabview</name> <message> - <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="1132" /> - <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="1067" /> + <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="1134" /> + <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="1069" /> <source>Untitled {0}</source> <translation>无标题 {0}</translation> </message> <message> - <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="1532" /> - <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="1143" /> - <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="1088" /> + <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="1534" /> + <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="1145" /> + <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="1090" /> <source>{0} (ro)</source> <translation>{0}(只读)</translation> </message> @@ -91098,7 +91103,7 @@ <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7844" /> + <location filename="../UI/UserInterface.py" line="7860" /> <location filename="../UI/UserInterface.py" line="1946" /> <location filename="../UI/UserInterface.py" line="1939" /> <source>Load session</source> @@ -92189,7 +92194,7 @@ <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6593" /> + <location filename="../UI/UserInterface.py" line="6609" /> <location filename="../UI/UserInterface.py" line="3163" /> <source>Snapshot</source> <translation>快照</translation> @@ -92426,8 +92431,8 @@ <translation><b>键盘快捷键</b><p>将程序的键盘快捷键设置成你喜欢的按键。</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7552" /> - <location filename="../UI/UserInterface.py" line="7533" /> + <location filename="../UI/UserInterface.py" line="7568" /> + <location filename="../UI/UserInterface.py" line="7549" /> <location filename="../UI/UserInterface.py" line="3393" /> <source>Export Keyboard Shortcuts</source> <translation>导出键盘快捷键</translation> @@ -92448,7 +92453,7 @@ <translation><b>导出键盘快捷键</b><p>导出程序的键盘快捷键。</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7571" /> + <location filename="../UI/UserInterface.py" line="7587" /> <location filename="../UI/UserInterface.py" line="3412" /> <source>Import Keyboard Shortcuts</source> <translation>导入键盘快捷键</translation> @@ -92857,7 +92862,7 @@ <translation>设置</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6321" /> + <location filename="../UI/UserInterface.py" line="6337" /> <location filename="../UI/UserInterface.py" line="4185" /> <location filename="../UI/UserInterface.py" line="4170" /> <source>Help</source> @@ -93035,315 +93040,315 @@ <translation>全部隐藏(&H)</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6458" /> - <location filename="../UI/UserInterface.py" line="6447" /> - <location filename="../UI/UserInterface.py" line="6399" /> - <location filename="../UI/UserInterface.py" line="6389" /> - <location filename="../UI/UserInterface.py" line="6210" /> - <location filename="../UI/UserInterface.py" line="6200" /> - <location filename="../UI/UserInterface.py" line="6142" /> - <location filename="../UI/UserInterface.py" line="6132" /> + <location filename="../UI/UserInterface.py" line="6474" /> + <location filename="../UI/UserInterface.py" line="6463" /> + <location filename="../UI/UserInterface.py" line="6415" /> + <location filename="../UI/UserInterface.py" line="6405" /> + <location filename="../UI/UserInterface.py" line="6228" /> + <location filename="../UI/UserInterface.py" line="6218" /> + <location filename="../UI/UserInterface.py" line="6160" /> + <location filename="../UI/UserInterface.py" line="6150" /> <source>Problem</source> <translation>问题</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6459" /> - <location filename="../UI/UserInterface.py" line="6448" /> - <location filename="../UI/UserInterface.py" line="6400" /> - <location filename="../UI/UserInterface.py" line="6390" /> - <location filename="../UI/UserInterface.py" line="6211" /> - <location filename="../UI/UserInterface.py" line="6201" /> - <location filename="../UI/UserInterface.py" line="6143" /> - <location filename="../UI/UserInterface.py" line="6133" /> + <location filename="../UI/UserInterface.py" line="6475" /> + <location filename="../UI/UserInterface.py" line="6464" /> + <location filename="../UI/UserInterface.py" line="6416" /> + <location filename="../UI/UserInterface.py" line="6406" /> + <location filename="../UI/UserInterface.py" line="6229" /> + <location filename="../UI/UserInterface.py" line="6219" /> + <location filename="../UI/UserInterface.py" line="6161" /> + <location filename="../UI/UserInterface.py" line="6151" /> <source><p>The file <b>{0}</b> does not exist or is zero length.</p></source> <translation><p>文件 <b>{0}</b> 不存在或者长度为零。</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6702" /> - <location filename="../UI/UserInterface.py" line="6613" /> - <location filename="../UI/UserInterface.py" line="6494" /> - <location filename="../UI/UserInterface.py" line="6471" /> - <location filename="../UI/UserInterface.py" line="6412" /> - <location filename="../UI/UserInterface.py" line="6359" /> - <location filename="../UI/UserInterface.py" line="6337" /> - <location filename="../UI/UserInterface.py" line="6286" /> - <location filename="../UI/UserInterface.py" line="6277" /> - <location filename="../UI/UserInterface.py" line="6242" /> - <location filename="../UI/UserInterface.py" line="6233" /> - <location filename="../UI/UserInterface.py" line="6174" /> - <location filename="../UI/UserInterface.py" line="6165" /> + <location filename="../UI/UserInterface.py" line="6718" /> + <location filename="../UI/UserInterface.py" line="6629" /> + <location filename="../UI/UserInterface.py" line="6510" /> + <location filename="../UI/UserInterface.py" line="6487" /> + <location filename="../UI/UserInterface.py" line="6428" /> + <location filename="../UI/UserInterface.py" line="6375" /> + <location filename="../UI/UserInterface.py" line="6353" /> + <location filename="../UI/UserInterface.py" line="6304" /> + <location filename="../UI/UserInterface.py" line="6295" /> + <location filename="../UI/UserInterface.py" line="6260" /> + <location filename="../UI/UserInterface.py" line="6251" /> + <location filename="../UI/UserInterface.py" line="6192" /> + <location filename="../UI/UserInterface.py" line="6183" /> <source>Process Generation Error</source> <translation>进程生成错误</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6166" /> + <location filename="../UI/UserInterface.py" line="6184" /> <source><p>Could not start Qt-Designer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>无法启动 Qt 设计师。<br>请确保它作为 <b>{0}</b> 可用。</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6175" /> + <location filename="../UI/UserInterface.py" line="6193" /> <source><p>Could not find the Qt-Designer executable.<br>Ensure that it is installed and optionally configured on the Qt configuration page.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6234" /> + <location filename="../UI/UserInterface.py" line="6252" /> <source><p>Could not start Qt-Linguist.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>无法启动 Qt 语言家。<br>请确保它作为 <b>{0}</b> 可用。</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6243" /> + <location filename="../UI/UserInterface.py" line="6261" /> <source><p>Could not find the Qt-Linguist executable.<br>Ensure that it is installed and optionally configured on the Qt configuration page.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6278" /> + <location filename="../UI/UserInterface.py" line="6296" /> <source><p>Could not start Qt-Assistant.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>无法启动 Qt 助手。<br>请确保它作为 <b>{0}</b> 可用。</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6287" /> + <location filename="../UI/UserInterface.py" line="6305" /> <source><p>Could not find the Qt-Assistant executable.<br>Ensure that it is installed and optionally configured on the Qt configuration page.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6322" /> - <source>Currently no custom viewer is selected. Please use the preferences dialog to specify one.</source> - <translation>目前没有选择自定义浏览器。请使用首选项对话框指定一个。</translation> - </message> - <message> <location filename="../UI/UserInterface.py" line="6338" /> + <source>Currently no custom viewer is selected. Please use the preferences dialog to specify one.</source> + <translation>目前没有选择自定义浏览器。请使用首选项对话框指定一个。</translation> + </message> + <message> + <location filename="../UI/UserInterface.py" line="6354" /> <source><p>Could not start custom viewer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>无法启动自定义的查看器。<br>请确保它作为 <b>{0}</b> 可用。</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6360" /> + <location filename="../UI/UserInterface.py" line="6376" /> <source><p>Could not start the help viewer.<br>Ensure that it is available as <b>hh</b>.</p></source> <translation><p>无法开启帮助浏览器。<br>确保其有效如 <b>hh</b>。</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6413" /> + <location filename="../UI/UserInterface.py" line="6429" /> <source><p>Could not start UI Previewer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>无法启动 UI 预览器。<br>请确保它作为 <b>{0}</b> 可用。</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6472" /> + <location filename="../UI/UserInterface.py" line="6488" /> <source><p>Could not start Translation Previewer.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>无法启动翻译预览器。<br>请确保它作为 <b>{0}</b> 可用。</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6495" /> + <location filename="../UI/UserInterface.py" line="6511" /> <source><p>Could not start SQL Browser.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>无法启动 SQL 浏览器。<br>请确保它作为 <b>{0}</b> 可用。</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6594" /> + <location filename="../UI/UserInterface.py" line="6610" /> <source><p>The snapshot utility is not available for Wayland desktop sessions.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6614" /> + <location filename="../UI/UserInterface.py" line="6630" /> <source><p>Could not start Snapshot tool.<br>Ensure that it is available as <b>{0}</b>.</p></source> <translation><p>无法启动快照工具。<br>请确保它作为 <b>{0}</b> 可用。</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6647" /> - <location filename="../UI/UserInterface.py" line="6637" /> + <location filename="../UI/UserInterface.py" line="6663" /> + <location filename="../UI/UserInterface.py" line="6653" /> <source>External Tools</source> <translation>外部工具</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6638" /> + <location filename="../UI/UserInterface.py" line="6654" /> <source>No tool entry found for external tool '{0}' in tool group '{1}'.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6648" /> + <location filename="../UI/UserInterface.py" line="6664" /> <source>No toolgroup entry '{0}' found.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6685" /> + <location filename="../UI/UserInterface.py" line="6701" /> <source>Starting process '{0} {1}'. </source> <translation>正在启动进程“{0} {1}”。 </translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6703" /> + <location filename="../UI/UserInterface.py" line="6719" /> <source><p>Could not start the tool entry <b>{0}</b>.<br>Ensure that it is available as <b>{1}</b>.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="6782" /> + <location filename="../UI/UserInterface.py" line="6798" /> <source>Process '{0}' has exited. </source> <translation>进程“{0}”已退出。 </translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7069" /> - <location filename="../UI/UserInterface.py" line="7007" /> - <location filename="../UI/UserInterface.py" line="6963" /> - <location filename="../UI/UserInterface.py" line="6889" /> - <location filename="../UI/UserInterface.py" line="6825" /> + <location filename="../UI/UserInterface.py" line="7085" /> + <location filename="../UI/UserInterface.py" line="7023" /> + <location filename="../UI/UserInterface.py" line="6979" /> + <location filename="../UI/UserInterface.py" line="6905" /> + <location filename="../UI/UserInterface.py" line="6841" /> <source>Documentation Missing</source> <translation>文档缺失</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7070" /> - <location filename="../UI/UserInterface.py" line="7008" /> - <location filename="../UI/UserInterface.py" line="6964" /> - <location filename="../UI/UserInterface.py" line="6890" /> - <location filename="../UI/UserInterface.py" line="6826" /> + <location filename="../UI/UserInterface.py" line="7086" /> + <location filename="../UI/UserInterface.py" line="7024" /> + <location filename="../UI/UserInterface.py" line="6980" /> + <location filename="../UI/UserInterface.py" line="6906" /> + <location filename="../UI/UserInterface.py" line="6842" /> <source><p>The documentation starting point "<b>{0}</b>" could not be found.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7051" /> - <location filename="../UI/UserInterface.py" line="6933" /> + <location filename="../UI/UserInterface.py" line="7067" /> + <location filename="../UI/UserInterface.py" line="6949" /> <source>Documentation</source> <translation>文档</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="6934" /> + <location filename="../UI/UserInterface.py" line="6950" /> <source><p>The PyQt{0} documentation starting point has not been configured.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7052" /> + <location filename="../UI/UserInterface.py" line="7068" /> <source><p>The PySide{0} documentation starting point has not been configured.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7231" /> - <location filename="../UI/UserInterface.py" line="7167" /> + <location filename="../UI/UserInterface.py" line="7247" /> + <location filename="../UI/UserInterface.py" line="7183" /> <source>Start Web Browser</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7168" /> + <location filename="../UI/UserInterface.py" line="7184" /> <source>The eric web browser could not be started.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7232" /> + <location filename="../UI/UserInterface.py" line="7248" /> <source><p>The eric web browser is not started.</p><p>Reason: {0}</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7278" /> + <location filename="../UI/UserInterface.py" line="7294" /> <source>Open Browser</source> <translation>打开浏览器</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7278" /> + <location filename="../UI/UserInterface.py" line="7294" /> <source>Could not start a web browser</source> <translation>无法启动网络浏览器</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7573" /> - <location filename="../UI/UserInterface.py" line="7535" /> + <location filename="../UI/UserInterface.py" line="7589" /> + <location filename="../UI/UserInterface.py" line="7551" /> <source>Keyboard Shortcuts File (*.ekj)</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7553" /> + <location filename="../UI/UserInterface.py" line="7569" /> <source><p>The keyboard shortcuts file <b>{0}</b> exists already. Overwrite it?</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7757" /> + <location filename="../UI/UserInterface.py" line="7773" /> <source>Load crash session...</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7760" /> + <location filename="../UI/UserInterface.py" line="7776" /> <source>Clean crash sessions...</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7797" /> + <location filename="../UI/UserInterface.py" line="7813" /> <source>Read Session</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7798" /> + <location filename="../UI/UserInterface.py" line="7814" /> <source><p>The session file <b>{0}</b> could not be read.</p></source> <translation><p>会话文件 <b>{0}</b> 无法读取。</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="7821" /> + <location filename="../UI/UserInterface.py" line="7837" /> <source>Save Session</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7846" /> - <location filename="../UI/UserInterface.py" line="7823" /> + <location filename="../UI/UserInterface.py" line="7862" /> + <location filename="../UI/UserInterface.py" line="7839" /> <source>eric Session Files (*.esj)</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7913" /> + <location filename="../UI/UserInterface.py" line="7929" /> <source>Found Crash Sessions</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7914" /> + <location filename="../UI/UserInterface.py" line="7930" /> <source>These crash session files were found. Select the one to open. Select 'Cancel' to not open a crash session.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7987" /> + <location filename="../UI/UserInterface.py" line="8003" /> <source>Clean stale crash sessions</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="7988" /> + <location filename="../UI/UserInterface.py" line="8004" /> <source>Do you really want to delete these stale crash session files?</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="8364" /> + <location filename="../UI/UserInterface.py" line="8380" /> <source>Drop Error</source> <translation>降落误差</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="8365" /> + <location filename="../UI/UserInterface.py" line="8381" /> <source><p><b>{0}</b> is not a file.</p></source> <translation><p><b>{0}</b> 不是一个文件。</p></translation> </message> <message> - <location filename="../UI/UserInterface.py" line="8551" /> + <location filename="../UI/UserInterface.py" line="8567" /> <source>Upgrade available</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="8552" /> + <location filename="../UI/UserInterface.py" line="8568" /> <source><p>A newer version of the <b>eric-ide</b> package is available at <a href="{0}/eric-ide/">PyPI</a>.</p><p>Installed: {1}<br/>Available: <b>{2}</b></p><p>Shall <b>eric-ide</b> be upgraded?</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="8597" /> + <location filename="../UI/UserInterface.py" line="8613" /> <source>First time usage</source> <translation>第一次使用</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="8598" /> + <location filename="../UI/UserInterface.py" line="8614" /> <source>eric has not been configured yet. The configuration dialog will be started.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="8620" /> + <location filename="../UI/UserInterface.py" line="8636" /> <source>Select Workspace Directory</source> <translation>选择工作区目录</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="8788" /> + <location filename="../UI/UserInterface.py" line="8804" /> <source>Unsaved Data Detected</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/UserInterface.py" line="8789" /> + <location filename="../UI/UserInterface.py" line="8805" /> <source>Some editors contain unsaved data. Shall these be saved?</source> <translation type="unfinished" /> </message> @@ -94823,7 +94828,7 @@ <translation><b>打印文件</b><p>打印当前编辑器窗口中的内容。</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="775" /> + <location filename="../QScintilla/MiniEditor.py" line="776" /> <location filename="../ViewManager/ViewManager.py" line="913" /> <location filename="../ViewManager/ViewManager.py" line="911" /> <source>Print Preview</source> @@ -95600,8 +95605,8 @@ <translation type="unfinished" /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="926" /> <location filename="../QScintilla/MiniEditor.py" line="925" /> - <location filename="../QScintilla/MiniEditor.py" line="924" /> <location filename="../QScintilla/ShellWindow.py" line="575" /> <location filename="../QScintilla/ShellWindow.py" line="574" /> <location filename="../ViewManager/ViewManager.py" line="1858" /> @@ -95610,22 +95615,22 @@ <translation>左移一个字符</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="926" /> + <location filename="../QScintilla/MiniEditor.py" line="927" /> <location filename="../QScintilla/ShellWindow.py" line="576" /> <location filename="../ViewManager/ViewManager.py" line="1859" /> <source>Left</source> <translation>Left</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="934" /> + <location filename="../QScintilla/MiniEditor.py" line="935" /> <location filename="../QScintilla/ShellWindow.py" line="584" /> <location filename="../ViewManager/ViewManager.py" line="1867" /> <source>Meta+B</source> <translation>Meta+B</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="942" /> <location filename="../QScintilla/MiniEditor.py" line="941" /> - <location filename="../QScintilla/MiniEditor.py" line="940" /> <location filename="../QScintilla/ShellWindow.py" line="591" /> <location filename="../QScintilla/ShellWindow.py" line="590" /> <location filename="../ViewManager/ViewManager.py" line="1874" /> @@ -95634,22 +95639,22 @@ <translation>右移一个字符</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="942" /> + <location filename="../QScintilla/MiniEditor.py" line="943" /> <location filename="../QScintilla/ShellWindow.py" line="592" /> <location filename="../ViewManager/ViewManager.py" line="1875" /> <source>Right</source> <translation>Right</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="949" /> + <location filename="../QScintilla/MiniEditor.py" line="950" /> <location filename="../QScintilla/ShellWindow.py" line="599" /> <location filename="../ViewManager/ViewManager.py" line="1882" /> <source>Meta+F</source> <translation>Meta+F</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="958" /> <location filename="../QScintilla/MiniEditor.py" line="957" /> - <location filename="../QScintilla/MiniEditor.py" line="956" /> <location filename="../QScintilla/ShellWindow.py" line="683" /> <location filename="../QScintilla/ShellWindow.py" line="682" /> <location filename="../ViewManager/ViewManager.py" line="1890" /> @@ -95658,22 +95663,22 @@ <translation>上移一行</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="958" /> + <location filename="../QScintilla/MiniEditor.py" line="959" /> <location filename="../QScintilla/ShellWindow.py" line="684" /> <location filename="../ViewManager/ViewManager.py" line="1891" /> <source>Up</source> <translation>Up</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="965" /> + <location filename="../QScintilla/MiniEditor.py" line="966" /> <location filename="../QScintilla/ShellWindow.py" line="691" /> <location filename="../ViewManager/ViewManager.py" line="1898" /> <source>Meta+P</source> <translation>Meta+P</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="974" /> <location filename="../QScintilla/MiniEditor.py" line="973" /> - <location filename="../QScintilla/MiniEditor.py" line="972" /> <location filename="../QScintilla/ShellWindow.py" line="699" /> <location filename="../QScintilla/ShellWindow.py" line="698" /> <location filename="../ViewManager/ViewManager.py" line="1906" /> @@ -95682,30 +95687,30 @@ <translation>下移一行</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="974" /> + <location filename="../QScintilla/MiniEditor.py" line="975" /> <location filename="../QScintilla/ShellWindow.py" line="700" /> <location filename="../ViewManager/ViewManager.py" line="1907" /> <source>Down</source> <translation>Down</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="981" /> + <location filename="../QScintilla/MiniEditor.py" line="982" /> <location filename="../QScintilla/ShellWindow.py" line="707" /> <location filename="../ViewManager/ViewManager.py" line="1914" /> <source>Meta+N</source> <translation>Meta+N</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="990" /> <location filename="../QScintilla/MiniEditor.py" line="989" /> - <location filename="../QScintilla/MiniEditor.py" line="988" /> <location filename="../ViewManager/ViewManager.py" line="1922" /> <location filename="../ViewManager/ViewManager.py" line="1921" /> <source>Move left one word part</source> <translation>左移一个单词部分</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1029" /> - <location filename="../QScintilla/MiniEditor.py" line="997" /> + <location filename="../QScintilla/MiniEditor.py" line="1030" /> + <location filename="../QScintilla/MiniEditor.py" line="998" /> <location filename="../QScintilla/ShellWindow.py" line="615" /> <location filename="../ViewManager/ViewManager.py" line="1962" /> <location filename="../ViewManager/ViewManager.py" line="1930" /> @@ -95713,25 +95718,25 @@ <translation>Alt+Left</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1006" /> <location filename="../QScintilla/MiniEditor.py" line="1005" /> - <location filename="../QScintilla/MiniEditor.py" line="1004" /> <location filename="../ViewManager/ViewManager.py" line="1938" /> <location filename="../ViewManager/ViewManager.py" line="1937" /> <source>Move right one word part</source> <translation>右移一个单词部分</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2159" /> - <location filename="../QScintilla/MiniEditor.py" line="1049" /> - <location filename="../QScintilla/MiniEditor.py" line="1013" /> + <location filename="../QScintilla/MiniEditor.py" line="2160" /> + <location filename="../QScintilla/MiniEditor.py" line="1050" /> + <location filename="../QScintilla/MiniEditor.py" line="1014" /> <location filename="../ViewManager/ViewManager.py" line="3071" /> <location filename="../ViewManager/ViewManager.py" line="1946" /> <source>Alt+Right</source> <translation>Alt+Right</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1022" /> <location filename="../QScintilla/MiniEditor.py" line="1021" /> - <location filename="../QScintilla/MiniEditor.py" line="1020" /> <location filename="../QScintilla/ShellWindow.py" line="607" /> <location filename="../QScintilla/ShellWindow.py" line="606" /> <location filename="../ViewManager/ViewManager.py" line="1954" /> @@ -95740,8 +95745,8 @@ <translation>左移一个词距</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1089" /> - <location filename="../QScintilla/MiniEditor.py" line="1033" /> + <location filename="../QScintilla/MiniEditor.py" line="1090" /> + <location filename="../QScintilla/MiniEditor.py" line="1034" /> <location filename="../QScintilla/ShellWindow.py" line="619" /> <location filename="../ViewManager/ViewManager.py" line="2018" /> <location filename="../ViewManager/ViewManager.py" line="1966" /> @@ -95749,8 +95754,8 @@ <translation>Ctrl+Left</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1042" /> <location filename="../QScintilla/MiniEditor.py" line="1041" /> - <location filename="../QScintilla/MiniEditor.py" line="1040" /> <location filename="../QScintilla/ShellWindow.py" line="627" /> <location filename="../QScintilla/ShellWindow.py" line="626" /> <location filename="../ViewManager/ViewManager.py" line="1974" /> @@ -95759,8 +95764,8 @@ <translation>右移一个词距</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1843" /> - <location filename="../QScintilla/MiniEditor.py" line="1053" /> + <location filename="../QScintilla/MiniEditor.py" line="1844" /> + <location filename="../QScintilla/MiniEditor.py" line="1054" /> <location filename="../QScintilla/ShellWindow.py" line="635" /> <location filename="../ViewManager/ViewManager.py" line="2755" /> <location filename="../ViewManager/ViewManager.py" line="1982" /> @@ -95768,8 +95773,8 @@ <translation>Ctrl+Right</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1063" /> - <location filename="../QScintilla/MiniEditor.py" line="1060" /> + <location filename="../QScintilla/MiniEditor.py" line="1064" /> + <location filename="../QScintilla/MiniEditor.py" line="1061" /> <location filename="../QScintilla/ShellWindow.py" line="645" /> <location filename="../QScintilla/ShellWindow.py" line="642" /> <location filename="../ViewManager/ViewManager.py" line="1992" /> @@ -95778,8 +95783,8 @@ <translation>移动至文档行的第一个可见字符</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2104" /> - <location filename="../QScintilla/MiniEditor.py" line="1073" /> + <location filename="../QScintilla/MiniEditor.py" line="2105" /> + <location filename="../QScintilla/MiniEditor.py" line="1074" /> <location filename="../QScintilla/ShellWindow.py" line="655" /> <location filename="../ViewManager/ViewManager.py" line="3016" /> <location filename="../ViewManager/ViewManager.py" line="2002" /> @@ -95787,22 +95792,22 @@ <translation>Home</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1082" /> <location filename="../QScintilla/MiniEditor.py" line="1081" /> - <location filename="../QScintilla/MiniEditor.py" line="1080" /> <location filename="../ViewManager/ViewManager.py" line="2010" /> <location filename="../ViewManager/ViewManager.py" line="2009" /> <source>Move to start of display line</source> <translation>移动至所显示行的起始位置</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1093" /> + <location filename="../QScintilla/MiniEditor.py" line="1094" /> <location filename="../ViewManager/ViewManager.py" line="2022" /> <source>Alt+Home</source> <translation>Alt+Home</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1102" /> <location filename="../QScintilla/MiniEditor.py" line="1101" /> - <location filename="../QScintilla/MiniEditor.py" line="1100" /> <location filename="../QScintilla/ShellWindow.py" line="663" /> <location filename="../QScintilla/ShellWindow.py" line="662" /> <location filename="../ViewManager/ViewManager.py" line="2030" /> @@ -95811,15 +95816,15 @@ <translation>移动至文档行的末尾</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1109" /> + <location filename="../QScintilla/MiniEditor.py" line="1110" /> <location filename="../QScintilla/ShellWindow.py" line="671" /> <location filename="../ViewManager/ViewManager.py" line="2038" /> <source>Meta+E</source> <translation>Meta+E</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2121" /> - <location filename="../QScintilla/MiniEditor.py" line="1113" /> + <location filename="../QScintilla/MiniEditor.py" line="2122" /> + <location filename="../QScintilla/MiniEditor.py" line="1114" /> <location filename="../QScintilla/ShellWindow.py" line="675" /> <location filename="../ViewManager/ViewManager.py" line="3033" /> <location filename="../ViewManager/ViewManager.py" line="2042" /> @@ -95827,16 +95832,16 @@ <translation>End</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1122" /> <location filename="../QScintilla/MiniEditor.py" line="1121" /> - <location filename="../QScintilla/MiniEditor.py" line="1120" /> <location filename="../ViewManager/ViewManager.py" line="2050" /> <location filename="../ViewManager/ViewManager.py" line="2049" /> <source>Scroll view down one line</source> <translation>视图向下滚动一行</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1225" /> - <location filename="../QScintilla/MiniEditor.py" line="1122" /> + <location filename="../QScintilla/MiniEditor.py" line="1226" /> + <location filename="../QScintilla/MiniEditor.py" line="1123" /> <location filename="../QScintilla/ShellWindow.py" line="716" /> <location filename="../ViewManager/ViewManager.py" line="2154" /> <location filename="../ViewManager/ViewManager.py" line="2051" /> @@ -95844,16 +95849,16 @@ <translation>Ctrl+Down</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1134" /> <location filename="../QScintilla/MiniEditor.py" line="1133" /> - <location filename="../QScintilla/MiniEditor.py" line="1132" /> <location filename="../ViewManager/ViewManager.py" line="2062" /> <location filename="../ViewManager/ViewManager.py" line="2061" /> <source>Scroll view up one line</source> <translation>视图向上滚动一行</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1205" /> - <location filename="../QScintilla/MiniEditor.py" line="1134" /> + <location filename="../QScintilla/MiniEditor.py" line="1206" /> + <location filename="../QScintilla/MiniEditor.py" line="1135" /> <location filename="../QScintilla/ShellWindow.py" line="728" /> <location filename="../ViewManager/ViewManager.py" line="2134" /> <location filename="../ViewManager/ViewManager.py" line="2063" /> @@ -95861,36 +95866,36 @@ <translation>Ctrl+Up</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1146" /> <location filename="../QScintilla/MiniEditor.py" line="1145" /> - <location filename="../QScintilla/MiniEditor.py" line="1144" /> <location filename="../ViewManager/ViewManager.py" line="2074" /> <location filename="../ViewManager/ViewManager.py" line="2073" /> <source>Move up one paragraph</source> <translation>上移一段</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1146" /> + <location filename="../QScintilla/MiniEditor.py" line="1147" /> <location filename="../ViewManager/ViewManager.py" line="2075" /> <source>Alt+Up</source> <translation>Alt+Up</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1158" /> <location filename="../QScintilla/MiniEditor.py" line="1157" /> - <location filename="../QScintilla/MiniEditor.py" line="1156" /> <location filename="../ViewManager/ViewManager.py" line="2086" /> <location filename="../ViewManager/ViewManager.py" line="2085" /> <source>Move down one paragraph</source> <translation>下移一段</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1158" /> + <location filename="../QScintilla/MiniEditor.py" line="1159" /> <location filename="../ViewManager/ViewManager.py" line="2087" /> <source>Alt+Down</source> <translation>Alt+Down</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1170" /> <location filename="../QScintilla/MiniEditor.py" line="1169" /> - <location filename="../QScintilla/MiniEditor.py" line="1168" /> <location filename="../QScintilla/ShellWindow.py" line="739" /> <location filename="../QScintilla/ShellWindow.py" line="738" /> <location filename="../ViewManager/ViewManager.py" line="2098" /> @@ -95899,15 +95904,15 @@ <translation>上移一页</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1170" /> + <location filename="../QScintilla/MiniEditor.py" line="1171" /> <location filename="../QScintilla/ShellWindow.py" line="740" /> <location filename="../ViewManager/ViewManager.py" line="2099" /> <source>PgUp</source> <translation>PgUp</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1182" /> <location filename="../QScintilla/MiniEditor.py" line="1181" /> - <location filename="../QScintilla/MiniEditor.py" line="1180" /> <location filename="../QScintilla/ShellWindow.py" line="751" /> <location filename="../QScintilla/ShellWindow.py" line="750" /> <location filename="../ViewManager/ViewManager.py" line="2110" /> @@ -95916,50 +95921,50 @@ <translation>下移一页</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1182" /> + <location filename="../QScintilla/MiniEditor.py" line="1183" /> <location filename="../QScintilla/ShellWindow.py" line="752" /> <location filename="../ViewManager/ViewManager.py" line="2111" /> <source>PgDown</source> <translation>PgDown</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1189" /> + <location filename="../QScintilla/MiniEditor.py" line="1190" /> <location filename="../QScintilla/ShellWindow.py" line="759" /> <location filename="../ViewManager/ViewManager.py" line="2118" /> <source>Meta+V</source> <translation>Meta+V</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1198" /> <location filename="../QScintilla/MiniEditor.py" line="1197" /> - <location filename="../QScintilla/MiniEditor.py" line="1196" /> <location filename="../ViewManager/ViewManager.py" line="2126" /> <location filename="../ViewManager/ViewManager.py" line="2125" /> <source>Move to start of document</source> <translation>移动至文档的起始位置</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1209" /> + <location filename="../QScintilla/MiniEditor.py" line="1210" /> <location filename="../ViewManager/ViewManager.py" line="2138" /> <source>Ctrl+Home</source> <translation>Ctrl+Home</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1218" /> <location filename="../QScintilla/MiniEditor.py" line="1217" /> - <location filename="../QScintilla/MiniEditor.py" line="1216" /> <location filename="../ViewManager/ViewManager.py" line="2146" /> <location filename="../ViewManager/ViewManager.py" line="2145" /> <source>Move to end of document</source> <translation>移动至文档的末尾</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1229" /> + <location filename="../QScintilla/MiniEditor.py" line="1230" /> <location filename="../ViewManager/ViewManager.py" line="2158" /> <source>Ctrl+End</source> <translation>Ctrl+End</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1238" /> <location filename="../QScintilla/MiniEditor.py" line="1237" /> - <location filename="../QScintilla/MiniEditor.py" line="1236" /> <location filename="../QScintilla/ShellWindow.py" line="453" /> <location filename="../QScintilla/ShellWindow.py" line="452" /> <location filename="../ViewManager/ViewManager.py" line="2166" /> @@ -95968,29 +95973,29 @@ <translation>缩进一级</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1238" /> + <location filename="../QScintilla/MiniEditor.py" line="1239" /> <location filename="../QScintilla/ShellWindow.py" line="454" /> <location filename="../ViewManager/ViewManager.py" line="2167" /> <source>Tab</source> <translation>Tab 键</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1250" /> <location filename="../QScintilla/MiniEditor.py" line="1249" /> - <location filename="../QScintilla/MiniEditor.py" line="1248" /> <location filename="../ViewManager/ViewManager.py" line="2178" /> <location filename="../ViewManager/ViewManager.py" line="2177" /> <source>Unindent one level</source> <translation>取消缩进一级</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1250" /> + <location filename="../QScintilla/MiniEditor.py" line="1251" /> <location filename="../ViewManager/ViewManager.py" line="2179" /> <source>Shift+Tab</source> <translation>Shift+Tab</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1263" /> - <location filename="../QScintilla/MiniEditor.py" line="1260" /> + <location filename="../QScintilla/MiniEditor.py" line="1264" /> + <location filename="../QScintilla/MiniEditor.py" line="1261" /> <location filename="../QScintilla/ShellWindow.py" line="781" /> <location filename="../QScintilla/ShellWindow.py" line="778" /> <location filename="../ViewManager/ViewManager.py" line="2192" /> @@ -95999,22 +96004,22 @@ <translation>选区向左扩展一个字符</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1266" /> + <location filename="../QScintilla/MiniEditor.py" line="1267" /> <location filename="../QScintilla/ShellWindow.py" line="784" /> <location filename="../ViewManager/ViewManager.py" line="2195" /> <source>Shift+Left</source> <translation>Shift+Left</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1273" /> + <location filename="../QScintilla/MiniEditor.py" line="1274" /> <location filename="../QScintilla/ShellWindow.py" line="791" /> <location filename="../ViewManager/ViewManager.py" line="2202" /> <source>Meta+Shift+B</source> <translation>Meta+Shift+B</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1283" /> - <location filename="../QScintilla/MiniEditor.py" line="1280" /> + <location filename="../QScintilla/MiniEditor.py" line="1284" /> + <location filename="../QScintilla/MiniEditor.py" line="1281" /> <location filename="../QScintilla/ShellWindow.py" line="801" /> <location filename="../QScintilla/ShellWindow.py" line="798" /> <location filename="../ViewManager/ViewManager.py" line="2212" /> @@ -96023,70 +96028,70 @@ <translation>选区向右扩展一个字符</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1286" /> + <location filename="../QScintilla/MiniEditor.py" line="1287" /> <location filename="../QScintilla/ShellWindow.py" line="804" /> <location filename="../ViewManager/ViewManager.py" line="2215" /> <source>Shift+Right</source> <translation>Shift+Right</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1293" /> + <location filename="../QScintilla/MiniEditor.py" line="1294" /> <location filename="../QScintilla/ShellWindow.py" line="811" /> <location filename="../ViewManager/ViewManager.py" line="2222" /> <source>Meta+Shift+F</source> <translation>Meta+Shift+F</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1302" /> <location filename="../QScintilla/MiniEditor.py" line="1301" /> - <location filename="../QScintilla/MiniEditor.py" line="1300" /> <location filename="../ViewManager/ViewManager.py" line="2230" /> <location filename="../ViewManager/ViewManager.py" line="2229" /> <source>Extend selection up one line</source> <translation>选区向上扩展一行</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1302" /> + <location filename="../QScintilla/MiniEditor.py" line="1303" /> <location filename="../ViewManager/ViewManager.py" line="2231" /> <source>Shift+Up</source> <translation>Shift+Up</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1309" /> + <location filename="../QScintilla/MiniEditor.py" line="1310" /> <location filename="../ViewManager/ViewManager.py" line="2238" /> <source>Meta+Shift+P</source> <translation>Meta+Shift+P</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1318" /> <location filename="../QScintilla/MiniEditor.py" line="1317" /> - <location filename="../QScintilla/MiniEditor.py" line="1316" /> <location filename="../ViewManager/ViewManager.py" line="2246" /> <location filename="../ViewManager/ViewManager.py" line="2245" /> <source>Extend selection down one line</source> <translation>选区向下扩展一行</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1318" /> + <location filename="../QScintilla/MiniEditor.py" line="1319" /> <location filename="../ViewManager/ViewManager.py" line="2247" /> <source>Shift+Down</source> <translation>Shift+Down</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1325" /> + <location filename="../QScintilla/MiniEditor.py" line="1326" /> <location filename="../ViewManager/ViewManager.py" line="2254" /> <source>Meta+Shift+N</source> <translation>Meta+Shift+N</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1335" /> - <location filename="../QScintilla/MiniEditor.py" line="1332" /> + <location filename="../QScintilla/MiniEditor.py" line="1336" /> + <location filename="../QScintilla/MiniEditor.py" line="1333" /> <location filename="../ViewManager/ViewManager.py" line="2264" /> <location filename="../ViewManager/ViewManager.py" line="2261" /> <source>Extend selection left one word part</source> <translation>选区向左扩展一个单词部分</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1386" /> - <location filename="../QScintilla/MiniEditor.py" line="1346" /> + <location filename="../QScintilla/MiniEditor.py" line="1387" /> + <location filename="../QScintilla/MiniEditor.py" line="1347" /> <location filename="../QScintilla/ShellWindow.py" line="828" /> <location filename="../ViewManager/ViewManager.py" line="2315" /> <location filename="../ViewManager/ViewManager.py" line="2275" /> @@ -96094,17 +96099,17 @@ <translation>Alt+Shift+Left</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1357" /> - <location filename="../QScintilla/MiniEditor.py" line="1354" /> + <location filename="../QScintilla/MiniEditor.py" line="1358" /> + <location filename="../QScintilla/MiniEditor.py" line="1355" /> <location filename="../ViewManager/ViewManager.py" line="2286" /> <location filename="../ViewManager/ViewManager.py" line="2283" /> <source>Extend selection right one word part</source> <translation>选区向右扩展一个单词部分</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2181" /> - <location filename="../QScintilla/MiniEditor.py" line="1414" /> - <location filename="../QScintilla/MiniEditor.py" line="1368" /> + <location filename="../QScintilla/MiniEditor.py" line="2182" /> + <location filename="../QScintilla/MiniEditor.py" line="1415" /> + <location filename="../QScintilla/MiniEditor.py" line="1369" /> <location filename="../QScintilla/ShellWindow.py" line="856" /> <location filename="../ViewManager/ViewManager.py" line="3093" /> <location filename="../ViewManager/ViewManager.py" line="2343" /> @@ -96113,8 +96118,8 @@ <translation>Alt+Shift+Right</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1378" /> <location filename="../QScintilla/MiniEditor.py" line="1377" /> - <location filename="../QScintilla/MiniEditor.py" line="1376" /> <location filename="../QScintilla/ShellWindow.py" line="819" /> <location filename="../QScintilla/ShellWindow.py" line="818" /> <location filename="../ViewManager/ViewManager.py" line="2306" /> @@ -96123,8 +96128,8 @@ <translation>选区向左扩展一个单词</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2307" /> - <location filename="../QScintilla/MiniEditor.py" line="1392" /> + <location filename="../QScintilla/MiniEditor.py" line="2308" /> + <location filename="../QScintilla/MiniEditor.py" line="1393" /> <location filename="../QScintilla/ShellWindow.py" line="834" /> <location filename="../ViewManager/ViewManager.py" line="3219" /> <location filename="../ViewManager/ViewManager.py" line="2321" /> @@ -96132,8 +96137,8 @@ <translation>Ctrl+Shift+Left</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1403" /> - <location filename="../QScintilla/MiniEditor.py" line="1400" /> + <location filename="../QScintilla/MiniEditor.py" line="1404" /> + <location filename="../QScintilla/MiniEditor.py" line="1401" /> <location filename="../QScintilla/ShellWindow.py" line="845" /> <location filename="../QScintilla/ShellWindow.py" line="842" /> <location filename="../ViewManager/ViewManager.py" line="2332" /> @@ -96142,8 +96147,8 @@ <translation>选区向右扩展一个单词</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1868" /> - <location filename="../QScintilla/MiniEditor.py" line="1420" /> + <location filename="../QScintilla/MiniEditor.py" line="1869" /> + <location filename="../QScintilla/MiniEditor.py" line="1421" /> <location filename="../QScintilla/ShellWindow.py" line="862" /> <location filename="../ViewManager/ViewManager.py" line="2780" /> <location filename="../ViewManager/ViewManager.py" line="2349" /> @@ -96151,8 +96156,8 @@ <translation>Ctrl+Shift+Right</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1432" /> - <location filename="../QScintilla/MiniEditor.py" line="1428" /> + <location filename="../QScintilla/MiniEditor.py" line="1433" /> + <location filename="../QScintilla/MiniEditor.py" line="1429" /> <location filename="../QScintilla/ShellWindow.py" line="874" /> <location filename="../QScintilla/ShellWindow.py" line="870" /> <location filename="../ViewManager/ViewManager.py" line="2361" /> @@ -96161,15 +96166,15 @@ <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1443" /> + <location filename="../QScintilla/MiniEditor.py" line="1444" /> <location filename="../QScintilla/ShellWindow.py" line="885" /> <location filename="../ViewManager/ViewManager.py" line="2372" /> <source>Shift+Home</source> <translation>Shift+Home</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1453" /> - <location filename="../QScintilla/MiniEditor.py" line="1450" /> + <location filename="../QScintilla/MiniEditor.py" line="1454" /> + <location filename="../QScintilla/MiniEditor.py" line="1451" /> <location filename="../QScintilla/ShellWindow.py" line="895" /> <location filename="../QScintilla/ShellWindow.py" line="892" /> <location filename="../ViewManager/ViewManager.py" line="2382" /> @@ -96178,124 +96183,124 @@ <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1463" /> + <location filename="../QScintilla/MiniEditor.py" line="1464" /> <location filename="../QScintilla/ShellWindow.py" line="905" /> <location filename="../ViewManager/ViewManager.py" line="2392" /> <source>Meta+Shift+E</source> <translation>Meta+Shift+E</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1467" /> + <location filename="../QScintilla/MiniEditor.py" line="1468" /> <location filename="../QScintilla/ShellWindow.py" line="909" /> <location filename="../ViewManager/ViewManager.py" line="2396" /> <source>Shift+End</source> <translation>Shift+End</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1477" /> - <location filename="../QScintilla/MiniEditor.py" line="1474" /> + <location filename="../QScintilla/MiniEditor.py" line="1478" /> + <location filename="../QScintilla/MiniEditor.py" line="1475" /> <location filename="../ViewManager/ViewManager.py" line="2406" /> <location filename="../ViewManager/ViewManager.py" line="2403" /> <source>Extend selection up one paragraph</source> <translation>选区向上扩展一段</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1480" /> + <location filename="../QScintilla/MiniEditor.py" line="1481" /> <location filename="../ViewManager/ViewManager.py" line="2409" /> <source>Alt+Shift+Up</source> <translation>Alt+Shift+Up</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1493" /> - <location filename="../QScintilla/MiniEditor.py" line="1490" /> + <location filename="../QScintilla/MiniEditor.py" line="1494" /> + <location filename="../QScintilla/MiniEditor.py" line="1491" /> <location filename="../ViewManager/ViewManager.py" line="2422" /> <location filename="../ViewManager/ViewManager.py" line="2419" /> <source>Extend selection down one paragraph</source> <translation>选区向下扩展一段</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1496" /> + <location filename="../QScintilla/MiniEditor.py" line="1497" /> <location filename="../ViewManager/ViewManager.py" line="2425" /> <source>Alt+Shift+Down</source> <translation>Alt+Shift+Down</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1508" /> <location filename="../QScintilla/MiniEditor.py" line="1507" /> - <location filename="../QScintilla/MiniEditor.py" line="1506" /> <location filename="../ViewManager/ViewManager.py" line="2436" /> <location filename="../ViewManager/ViewManager.py" line="2435" /> <source>Extend selection up one page</source> <translation>选区向上扩展一页</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1508" /> + <location filename="../QScintilla/MiniEditor.py" line="1509" /> <location filename="../ViewManager/ViewManager.py" line="2437" /> <source>Shift+PgUp</source> <translation>Shift+PgUp</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1520" /> <location filename="../QScintilla/MiniEditor.py" line="1519" /> - <location filename="../QScintilla/MiniEditor.py" line="1518" /> <location filename="../ViewManager/ViewManager.py" line="2448" /> <location filename="../ViewManager/ViewManager.py" line="2447" /> <source>Extend selection down one page</source> <translation>选区向下扩展一页</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1520" /> + <location filename="../QScintilla/MiniEditor.py" line="1521" /> <location filename="../ViewManager/ViewManager.py" line="2449" /> <source>Shift+PgDown</source> <translation>Shift+PgDown</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1527" /> + <location filename="../QScintilla/MiniEditor.py" line="1528" /> <location filename="../ViewManager/ViewManager.py" line="2456" /> <source>Meta+Shift+V</source> <translation>Meta+Shift+V</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1537" /> - <location filename="../QScintilla/MiniEditor.py" line="1534" /> + <location filename="../QScintilla/MiniEditor.py" line="1538" /> + <location filename="../QScintilla/MiniEditor.py" line="1535" /> <location filename="../ViewManager/ViewManager.py" line="2466" /> <location filename="../ViewManager/ViewManager.py" line="2463" /> <source>Extend selection to start of document</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1547" /> + <location filename="../QScintilla/MiniEditor.py" line="1548" /> <location filename="../ViewManager/ViewManager.py" line="2476" /> <source>Ctrl+Shift+Up</source> <translation>Ctrl+Shift+Up</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1552" /> + <location filename="../QScintilla/MiniEditor.py" line="1553" /> <location filename="../ViewManager/ViewManager.py" line="2481" /> <source>Ctrl+Shift+Home</source> <translation>Ctrl+Shift+Home</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1563" /> - <location filename="../QScintilla/MiniEditor.py" line="1560" /> + <location filename="../QScintilla/MiniEditor.py" line="1564" /> + <location filename="../QScintilla/MiniEditor.py" line="1561" /> <location filename="../ViewManager/ViewManager.py" line="2492" /> <location filename="../ViewManager/ViewManager.py" line="2489" /> <source>Extend selection to end of document</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1574" /> + <location filename="../QScintilla/MiniEditor.py" line="1575" /> <location filename="../ViewManager/ViewManager.py" line="2503" /> <source>Ctrl+Shift+Down</source> <translation>Ctrl+Shift+Down</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1580" /> + <location filename="../QScintilla/MiniEditor.py" line="1581" /> <location filename="../ViewManager/ViewManager.py" line="2509" /> <source>Ctrl+Shift+End</source> <translation>Ctrl+Shift+End</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1590" /> <location filename="../QScintilla/MiniEditor.py" line="1589" /> - <location filename="../QScintilla/MiniEditor.py" line="1588" /> <location filename="../QScintilla/ShellWindow.py" line="477" /> <location filename="../QScintilla/ShellWindow.py" line="476" /> <location filename="../ViewManager/ViewManager.py" line="2518" /> @@ -96304,37 +96309,37 @@ <translation>删除前一个字符</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1590" /> + <location filename="../QScintilla/MiniEditor.py" line="1591" /> <location filename="../QScintilla/ShellWindow.py" line="478" /> <location filename="../ViewManager/ViewManager.py" line="2519" /> <source>Backspace</source> <translation>Backspace</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1597" /> + <location filename="../QScintilla/MiniEditor.py" line="1598" /> <location filename="../QScintilla/ShellWindow.py" line="485" /> <location filename="../ViewManager/ViewManager.py" line="2526" /> <source>Meta+H</source> <translation>Meta+H</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1602" /> + <location filename="../QScintilla/MiniEditor.py" line="1603" /> <location filename="../QScintilla/ShellWindow.py" line="490" /> <location filename="../ViewManager/ViewManager.py" line="2531" /> <source>Shift+Backspace</source> <translation>Shift+Backspace</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1613" /> - <location filename="../QScintilla/MiniEditor.py" line="1610" /> + <location filename="../QScintilla/MiniEditor.py" line="1614" /> + <location filename="../QScintilla/MiniEditor.py" line="1611" /> <location filename="../ViewManager/ViewManager.py" line="2542" /> <location filename="../ViewManager/ViewManager.py" line="2539" /> <source>Delete previous character if not at start of line</source> <translation type="unfinished">如果不在行首,删除前一个字符</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1628" /> <location filename="../QScintilla/MiniEditor.py" line="1627" /> - <location filename="../QScintilla/MiniEditor.py" line="1626" /> <location filename="../QScintilla/ShellWindow.py" line="499" /> <location filename="../QScintilla/ShellWindow.py" line="498" /> <location filename="../ViewManager/ViewManager.py" line="2556" /> @@ -96343,22 +96348,22 @@ <translation>删除当前字符</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1628" /> + <location filename="../QScintilla/MiniEditor.py" line="1629" /> <location filename="../QScintilla/ShellWindow.py" line="500" /> <location filename="../ViewManager/ViewManager.py" line="2557" /> <source>Del</source> <translation>Del</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1635" /> + <location filename="../QScintilla/MiniEditor.py" line="1636" /> <location filename="../QScintilla/ShellWindow.py" line="507" /> <location filename="../ViewManager/ViewManager.py" line="2564" /> <source>Meta+D</source> <translation>Meta+D</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1644" /> <location filename="../QScintilla/MiniEditor.py" line="1643" /> - <location filename="../QScintilla/MiniEditor.py" line="1642" /> <location filename="../QScintilla/ShellWindow.py" line="515" /> <location filename="../QScintilla/ShellWindow.py" line="514" /> <location filename="../ViewManager/ViewManager.py" line="2572" /> @@ -96367,15 +96372,15 @@ <translation>向左删除一个单词</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1644" /> + <location filename="../QScintilla/MiniEditor.py" line="1645" /> <location filename="../QScintilla/ShellWindow.py" line="516" /> <location filename="../ViewManager/ViewManager.py" line="2573" /> <source>Ctrl+Backspace</source> <translation>Ctrl+Backspace</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1656" /> <location filename="../QScintilla/MiniEditor.py" line="1655" /> - <location filename="../QScintilla/MiniEditor.py" line="1654" /> <location filename="../QScintilla/ShellWindow.py" line="527" /> <location filename="../QScintilla/ShellWindow.py" line="526" /> <location filename="../ViewManager/ViewManager.py" line="2584" /> @@ -96384,15 +96389,15 @@ <translation>向右删除一个单词</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1656" /> + <location filename="../QScintilla/MiniEditor.py" line="1657" /> <location filename="../QScintilla/ShellWindow.py" line="528" /> <location filename="../ViewManager/ViewManager.py" line="2585" /> <source>Ctrl+Del</source> <translation>Ctrl+Del</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1668" /> <location filename="../QScintilla/MiniEditor.py" line="1667" /> - <location filename="../QScintilla/MiniEditor.py" line="1666" /> <location filename="../QScintilla/ShellWindow.py" line="539" /> <location filename="../QScintilla/ShellWindow.py" line="538" /> <location filename="../ViewManager/ViewManager.py" line="2596" /> @@ -96401,15 +96406,15 @@ <translation>向左删除一行</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1669" /> + <location filename="../QScintilla/MiniEditor.py" line="1670" /> <location filename="../QScintilla/ShellWindow.py" line="541" /> <location filename="../ViewManager/ViewManager.py" line="2598" /> <source>Ctrl+Shift+Backspace</source> <translation>Ctrl+Shift+Backspace</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1682" /> <location filename="../QScintilla/MiniEditor.py" line="1681" /> - <location filename="../QScintilla/MiniEditor.py" line="1680" /> <location filename="../QScintilla/ShellWindow.py" line="553" /> <location filename="../QScintilla/ShellWindow.py" line="552" /> <location filename="../ViewManager/ViewManager.py" line="2610" /> @@ -96418,22 +96423,22 @@ <translation>向右删除一行</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1689" /> + <location filename="../QScintilla/MiniEditor.py" line="1690" /> <location filename="../QScintilla/ShellWindow.py" line="561" /> <location filename="../ViewManager/ViewManager.py" line="2618" /> <source>Meta+K</source> <translation>Meta+K</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1694" /> + <location filename="../QScintilla/MiniEditor.py" line="1695" /> <location filename="../QScintilla/ShellWindow.py" line="566" /> <location filename="../ViewManager/ViewManager.py" line="2623" /> <source>Ctrl+Shift+Del</source> <translation>Ctrl+Shift+Del</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1704" /> <location filename="../QScintilla/MiniEditor.py" line="1703" /> - <location filename="../QScintilla/MiniEditor.py" line="1702" /> <location filename="../QScintilla/ShellWindow.py" line="465" /> <location filename="../QScintilla/ShellWindow.py" line="464" /> <location filename="../ViewManager/ViewManager.py" line="2632" /> @@ -96442,14 +96447,14 @@ <translation>插入新行</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1704" /> + <location filename="../QScintilla/MiniEditor.py" line="1705" /> <location filename="../QScintilla/ShellWindow.py" line="466" /> <location filename="../ViewManager/ViewManager.py" line="2633" /> <source>Return</source> <translation>Return</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1705" /> + <location filename="../QScintilla/MiniEditor.py" line="1706" /> <location filename="../QScintilla/ShellWindow.py" line="467" /> <location filename="../ViewManager/ViewManager.py" line="2634" /> <source>Enter</source> @@ -96472,8 +96477,8 @@ <translation>Shift+Enter</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1716" /> <location filename="../QScintilla/MiniEditor.py" line="1715" /> - <location filename="../QScintilla/MiniEditor.py" line="1714" /> <location filename="../QScintilla/ShellWindow.py" line="441" /> <location filename="../QScintilla/ShellWindow.py" line="440" /> <location filename="../ViewManager/ViewManager.py" line="2659" /> @@ -96482,129 +96487,129 @@ <translation>删除当前行</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1716" /> + <location filename="../QScintilla/MiniEditor.py" line="1717" /> <location filename="../QScintilla/ShellWindow.py" line="442" /> <location filename="../ViewManager/ViewManager.py" line="2660" /> <source>Ctrl+Shift+L</source> <translation>Ctrl+Shift+L</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1728" /> <location filename="../QScintilla/MiniEditor.py" line="1727" /> - <location filename="../QScintilla/MiniEditor.py" line="1726" /> <location filename="../ViewManager/ViewManager.py" line="2671" /> <location filename="../ViewManager/ViewManager.py" line="2670" /> <source>Duplicate current line</source> <translation>重复当前行</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1728" /> + <location filename="../QScintilla/MiniEditor.py" line="1729" /> <location filename="../ViewManager/ViewManager.py" line="2672" /> <source>Ctrl+D</source> <translation>Ctrl+D</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1741" /> - <location filename="../QScintilla/MiniEditor.py" line="1738" /> + <location filename="../QScintilla/MiniEditor.py" line="1742" /> + <location filename="../QScintilla/MiniEditor.py" line="1739" /> <location filename="../ViewManager/ViewManager.py" line="2685" /> <location filename="../ViewManager/ViewManager.py" line="2682" /> <source>Swap current and previous lines</source> <translation>当前行与上一行交换位置</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1744" /> + <location filename="../QScintilla/MiniEditor.py" line="1745" /> <location filename="../ViewManager/ViewManager.py" line="2688" /> <source>Ctrl+T</source> <translation>Ctrl+T</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1756" /> <location filename="../QScintilla/MiniEditor.py" line="1755" /> - <location filename="../QScintilla/MiniEditor.py" line="1754" /> <location filename="../ViewManager/ViewManager.py" line="2699" /> <location filename="../ViewManager/ViewManager.py" line="2698" /> <source>Reverse selected lines</source> <translation>反向选择行</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1756" /> + <location filename="../QScintilla/MiniEditor.py" line="1757" /> <location filename="../ViewManager/ViewManager.py" line="2700" /> <source>Meta+Alt+R</source> <translation type="unfinished" /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1768" /> <location filename="../QScintilla/MiniEditor.py" line="1767" /> - <location filename="../QScintilla/MiniEditor.py" line="1766" /> <location filename="../ViewManager/ViewManager.py" line="2711" /> <location filename="../ViewManager/ViewManager.py" line="2710" /> <source>Cut current line</source> <translation>剪切当前行</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1768" /> + <location filename="../QScintilla/MiniEditor.py" line="1769" /> <location filename="../ViewManager/ViewManager.py" line="2712" /> <source>Alt+Shift+L</source> <translation>Alt+Shift+L</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1780" /> <location filename="../QScintilla/MiniEditor.py" line="1779" /> - <location filename="../QScintilla/MiniEditor.py" line="1778" /> <location filename="../ViewManager/ViewManager.py" line="2723" /> <location filename="../ViewManager/ViewManager.py" line="2722" /> <source>Copy current line</source> <translation>复制当前行</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1780" /> + <location filename="../QScintilla/MiniEditor.py" line="1781" /> <location filename="../ViewManager/ViewManager.py" line="2724" /> <source>Ctrl+Shift+T</source> <translation>Ctrl+Shift+T</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1792" /> <location filename="../QScintilla/MiniEditor.py" line="1791" /> - <location filename="../QScintilla/MiniEditor.py" line="1790" /> <location filename="../ViewManager/ViewManager.py" line="2735" /> <location filename="../ViewManager/ViewManager.py" line="2734" /> <source>Toggle insert/overtype</source> <translation>切换插入/改写状态</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1792" /> + <location filename="../QScintilla/MiniEditor.py" line="1793" /> <location filename="../ViewManager/ViewManager.py" line="2736" /> <source>Ins</source> <translation>Ins</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1836" /> <location filename="../QScintilla/MiniEditor.py" line="1835" /> - <location filename="../QScintilla/MiniEditor.py" line="1834" /> <location filename="../ViewManager/ViewManager.py" line="2747" /> <location filename="../ViewManager/ViewManager.py" line="2746" /> <source>Move to end of display line</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1847" /> + <location filename="../QScintilla/MiniEditor.py" line="1848" /> <location filename="../ViewManager/ViewManager.py" line="2759" /> <source>Alt+End</source> <translation>Alt+End</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1857" /> - <location filename="../QScintilla/MiniEditor.py" line="1854" /> + <location filename="../QScintilla/MiniEditor.py" line="1858" /> + <location filename="../QScintilla/MiniEditor.py" line="1855" /> <location filename="../ViewManager/ViewManager.py" line="2769" /> <location filename="../ViewManager/ViewManager.py" line="2766" /> <source>Extend selection to end of display line</source> <translation type="unfinished" /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1878" /> <location filename="../QScintilla/MiniEditor.py" line="1877" /> - <location filename="../QScintilla/MiniEditor.py" line="1876" /> <location filename="../ViewManager/ViewManager.py" line="2789" /> <location filename="../ViewManager/ViewManager.py" line="2788" /> <source>Formfeed</source> <translation>Formfeed</translation> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="1890" /> <location filename="../QScintilla/MiniEditor.py" line="1889" /> - <location filename="../QScintilla/MiniEditor.py" line="1888" /> <location filename="../QScintilla/ShellWindow.py" line="767" /> <location filename="../QScintilla/ShellWindow.py" line="766" /> <location filename="../ViewManager/ViewManager.py" line="2801" /> @@ -96613,423 +96618,423 @@ <translation>Escape</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1890" /> + <location filename="../QScintilla/MiniEditor.py" line="1891" /> <location filename="../QScintilla/ShellWindow.py" line="768" /> <location filename="../ViewManager/ViewManager.py" line="2802" /> <source>Esc</source> <translation>Esc</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1903" /> - <location filename="../QScintilla/MiniEditor.py" line="1900" /> + <location filename="../QScintilla/MiniEditor.py" line="1904" /> + <location filename="../QScintilla/MiniEditor.py" line="1901" /> <location filename="../ViewManager/ViewManager.py" line="2815" /> <location filename="../ViewManager/ViewManager.py" line="2812" /> <source>Extend rectangular selection down one line</source> <translation>矩形选区向下扩展一行</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1906" /> + <location filename="../QScintilla/MiniEditor.py" line="1907" /> <location filename="../ViewManager/ViewManager.py" line="2818" /> <source>Alt+Ctrl+Down</source> <translation>Alt+Ctrl+Down</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1914" /> + <location filename="../QScintilla/MiniEditor.py" line="1915" /> <location filename="../ViewManager/ViewManager.py" line="2826" /> <source>Meta+Alt+Shift+N</source> <translation>Meta+Alt+Shift+N</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1925" /> - <location filename="../QScintilla/MiniEditor.py" line="1922" /> + <location filename="../QScintilla/MiniEditor.py" line="1926" /> + <location filename="../QScintilla/MiniEditor.py" line="1923" /> <location filename="../ViewManager/ViewManager.py" line="2837" /> <location filename="../ViewManager/ViewManager.py" line="2834" /> <source>Extend rectangular selection up one line</source> <translation>矩形选区向上扩展一行</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1928" /> + <location filename="../QScintilla/MiniEditor.py" line="1929" /> <location filename="../ViewManager/ViewManager.py" line="2840" /> <source>Alt+Ctrl+Up</source> <translation>Alt+Ctrl+Up</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1936" /> + <location filename="../QScintilla/MiniEditor.py" line="1937" /> <location filename="../ViewManager/ViewManager.py" line="2848" /> <source>Meta+Alt+Shift+P</source> <translation>Meta+Alt+Shift+P</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1947" /> - <location filename="../QScintilla/MiniEditor.py" line="1944" /> + <location filename="../QScintilla/MiniEditor.py" line="1948" /> + <location filename="../QScintilla/MiniEditor.py" line="1945" /> <location filename="../ViewManager/ViewManager.py" line="2859" /> <location filename="../ViewManager/ViewManager.py" line="2856" /> <source>Extend rectangular selection left one character</source> <translation>矩形选区向左扩展一个字符</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1950" /> + <location filename="../QScintilla/MiniEditor.py" line="1951" /> <location filename="../ViewManager/ViewManager.py" line="2862" /> <source>Alt+Ctrl+Left</source> <translation>Alt+Ctrl+Left</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1958" /> + <location filename="../QScintilla/MiniEditor.py" line="1959" /> <location filename="../ViewManager/ViewManager.py" line="2870" /> <source>Meta+Alt+Shift+B</source> <translation>Meta+Alt+Shift+B</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1969" /> - <location filename="../QScintilla/MiniEditor.py" line="1966" /> + <location filename="../QScintilla/MiniEditor.py" line="1970" /> + <location filename="../QScintilla/MiniEditor.py" line="1967" /> <location filename="../ViewManager/ViewManager.py" line="2881" /> <location filename="../ViewManager/ViewManager.py" line="2878" /> <source>Extend rectangular selection right one character</source> <translation>矩形选区向右扩展一个字符</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1972" /> + <location filename="../QScintilla/MiniEditor.py" line="1973" /> <location filename="../ViewManager/ViewManager.py" line="2884" /> <source>Alt+Ctrl+Right</source> <translation>Alt+Ctrl+Right</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1980" /> + <location filename="../QScintilla/MiniEditor.py" line="1981" /> <location filename="../ViewManager/ViewManager.py" line="2892" /> <source>Meta+Alt+Shift+F</source> <translation>Meta+Alt+Shift+F</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1993" /> - <location filename="../QScintilla/MiniEditor.py" line="1988" /> + <location filename="../QScintilla/MiniEditor.py" line="1994" /> + <location filename="../QScintilla/MiniEditor.py" line="1989" /> <location filename="../ViewManager/ViewManager.py" line="2905" /> <location filename="../ViewManager/ViewManager.py" line="2900" /> <source>Extend rectangular selection to first visible character in document line</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2006" /> + <location filename="../QScintilla/MiniEditor.py" line="2007" /> <location filename="../ViewManager/ViewManager.py" line="2918" /> <source>Alt+Shift+Home</source> <translation>Alt+Shift+Home</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2017" /> - <location filename="../QScintilla/MiniEditor.py" line="2014" /> + <location filename="../QScintilla/MiniEditor.py" line="2018" /> + <location filename="../QScintilla/MiniEditor.py" line="2015" /> <location filename="../ViewManager/ViewManager.py" line="2929" /> <location filename="../ViewManager/ViewManager.py" line="2926" /> <source>Extend rectangular selection to end of document line</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2028" /> + <location filename="../QScintilla/MiniEditor.py" line="2029" /> <location filename="../ViewManager/ViewManager.py" line="2940" /> <source>Meta+Alt+Shift+E</source> <translation>Meta+Alt+Shift+E</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2033" /> + <location filename="../QScintilla/MiniEditor.py" line="2034" /> <location filename="../ViewManager/ViewManager.py" line="2945" /> <source>Alt+Shift+End</source> <translation>Alt+Shift+End</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2043" /> - <location filename="../QScintilla/MiniEditor.py" line="2040" /> + <location filename="../QScintilla/MiniEditor.py" line="2044" /> + <location filename="../QScintilla/MiniEditor.py" line="2041" /> <location filename="../ViewManager/ViewManager.py" line="2955" /> <location filename="../ViewManager/ViewManager.py" line="2952" /> <source>Extend rectangular selection up one page</source> <translation>矩形选区向上扩展一页</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2046" /> + <location filename="../QScintilla/MiniEditor.py" line="2047" /> <location filename="../ViewManager/ViewManager.py" line="2958" /> <source>Alt+Shift+PgUp</source> <translation>Alt+Shift+PgUp</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2059" /> - <location filename="../QScintilla/MiniEditor.py" line="2056" /> + <location filename="../QScintilla/MiniEditor.py" line="2060" /> + <location filename="../QScintilla/MiniEditor.py" line="2057" /> <location filename="../ViewManager/ViewManager.py" line="2971" /> <location filename="../ViewManager/ViewManager.py" line="2968" /> <source>Extend rectangular selection down one page</source> <translation>矩形选区向下扩展一页</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2062" /> + <location filename="../QScintilla/MiniEditor.py" line="2063" /> <location filename="../ViewManager/ViewManager.py" line="2974" /> <source>Alt+Shift+PgDown</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2070" /> + <location filename="../QScintilla/MiniEditor.py" line="2071" /> <location filename="../ViewManager/ViewManager.py" line="2982" /> <source>Meta+Alt+Shift+V</source> <translation type="unfinished" /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="2546" /> <location filename="../QScintilla/MiniEditor.py" line="2545" /> - <location filename="../QScintilla/MiniEditor.py" line="2544" /> + <location filename="../QScintilla/MiniEditor.py" line="2080" /> <location filename="../QScintilla/MiniEditor.py" line="2079" /> - <location filename="../QScintilla/MiniEditor.py" line="2078" /> <location filename="../ViewManager/ViewManager.py" line="2991" /> <location filename="../ViewManager/ViewManager.py" line="2990" /> <source>Duplicate current selection</source> <translation>重复当前选区</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2546" /> - <location filename="../QScintilla/MiniEditor.py" line="2080" /> + <location filename="../QScintilla/MiniEditor.py" line="2547" /> + <location filename="../QScintilla/MiniEditor.py" line="2081" /> <location filename="../ViewManager/ViewManager.py" line="2992" /> <source>Ctrl+Shift+D</source> <translation>Ctrl+Shift+D</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2094" /> - <location filename="../QScintilla/MiniEditor.py" line="2091" /> + <location filename="../QScintilla/MiniEditor.py" line="2095" /> + <location filename="../QScintilla/MiniEditor.py" line="2092" /> <location filename="../ViewManager/ViewManager.py" line="3006" /> <location filename="../ViewManager/ViewManager.py" line="3003" /> <source>Scroll to start of document</source> <translation type="unfinished" /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="2114" /> <location filename="../QScintilla/MiniEditor.py" line="2113" /> - <location filename="../QScintilla/MiniEditor.py" line="2112" /> <location filename="../ViewManager/ViewManager.py" line="3025" /> <location filename="../ViewManager/ViewManager.py" line="3024" /> <source>Scroll to end of document</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2132" /> - <location filename="../QScintilla/MiniEditor.py" line="2129" /> + <location filename="../QScintilla/MiniEditor.py" line="2133" /> + <location filename="../QScintilla/MiniEditor.py" line="2130" /> <location filename="../ViewManager/ViewManager.py" line="3044" /> <location filename="../ViewManager/ViewManager.py" line="3041" /> <source>Scroll vertically to center current line</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2142" /> + <location filename="../QScintilla/MiniEditor.py" line="2143" /> <location filename="../ViewManager/ViewManager.py" line="3054" /> <source>Meta+L</source> <translation type="unfinished" /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="2152" /> <location filename="../QScintilla/MiniEditor.py" line="2151" /> - <location filename="../QScintilla/MiniEditor.py" line="2150" /> <location filename="../ViewManager/ViewManager.py" line="3063" /> <location filename="../ViewManager/ViewManager.py" line="3062" /> <source>Move to end of next word</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2170" /> - <location filename="../QScintilla/MiniEditor.py" line="2167" /> + <location filename="../QScintilla/MiniEditor.py" line="2171" /> + <location filename="../QScintilla/MiniEditor.py" line="2168" /> <location filename="../ViewManager/ViewManager.py" line="3082" /> <location filename="../ViewManager/ViewManager.py" line="3079" /> <source>Extend selection to end of next word</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2193" /> - <location filename="../QScintilla/MiniEditor.py" line="2190" /> + <location filename="../QScintilla/MiniEditor.py" line="2194" /> + <location filename="../QScintilla/MiniEditor.py" line="2191" /> <location filename="../ViewManager/ViewManager.py" line="3105" /> <location filename="../ViewManager/ViewManager.py" line="3102" /> <source>Move to end of previous word</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2210" /> - <location filename="../QScintilla/MiniEditor.py" line="2207" /> + <location filename="../QScintilla/MiniEditor.py" line="2211" /> + <location filename="../QScintilla/MiniEditor.py" line="2208" /> <location filename="../ViewManager/ViewManager.py" line="3122" /> <location filename="../ViewManager/ViewManager.py" line="3119" /> <source>Extend selection to end of previous word</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2227" /> - <location filename="../QScintilla/MiniEditor.py" line="2224" /> + <location filename="../QScintilla/MiniEditor.py" line="2228" /> + <location filename="../QScintilla/MiniEditor.py" line="2225" /> <location filename="../ViewManager/ViewManager.py" line="3139" /> <location filename="../ViewManager/ViewManager.py" line="3136" /> <source>Move to start of document line</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2237" /> + <location filename="../QScintilla/MiniEditor.py" line="2238" /> <location filename="../ViewManager/ViewManager.py" line="3149" /> <source>Meta+A</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2248" /> - <location filename="../QScintilla/MiniEditor.py" line="2245" /> + <location filename="../QScintilla/MiniEditor.py" line="2249" /> + <location filename="../QScintilla/MiniEditor.py" line="2246" /> <location filename="../ViewManager/ViewManager.py" line="3160" /> <location filename="../ViewManager/ViewManager.py" line="3157" /> <source>Extend selection to start of document line</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2259" /> + <location filename="../QScintilla/MiniEditor.py" line="2260" /> <location filename="../ViewManager/ViewManager.py" line="3171" /> <source>Meta+Shift+A</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2272" /> - <location filename="../QScintilla/MiniEditor.py" line="2268" /> + <location filename="../QScintilla/MiniEditor.py" line="2273" /> + <location filename="../QScintilla/MiniEditor.py" line="2269" /> <location filename="../ViewManager/ViewManager.py" line="3184" /> <location filename="../ViewManager/ViewManager.py" line="3180" /> <source>Extend rectangular selection to start of document line</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2284" /> + <location filename="../QScintilla/MiniEditor.py" line="2285" /> <location filename="../ViewManager/ViewManager.py" line="3196" /> <source>Meta+Alt+Shift+A</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2296" /> - <location filename="../QScintilla/MiniEditor.py" line="2293" /> + <location filename="../QScintilla/MiniEditor.py" line="2297" /> + <location filename="../QScintilla/MiniEditor.py" line="2294" /> <location filename="../ViewManager/ViewManager.py" line="3208" /> <location filename="../ViewManager/ViewManager.py" line="3205" /> <source>Extend selection to start of display line</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2319" /> - <location filename="../QScintilla/MiniEditor.py" line="2316" /> + <location filename="../QScintilla/MiniEditor.py" line="2320" /> + <location filename="../QScintilla/MiniEditor.py" line="2317" /> <location filename="../ViewManager/ViewManager.py" line="3231" /> <location filename="../ViewManager/ViewManager.py" line="3228" /> <source>Move to start of display or document line</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2337" /> - <location filename="../QScintilla/MiniEditor.py" line="2333" /> + <location filename="../QScintilla/MiniEditor.py" line="2338" /> + <location filename="../QScintilla/MiniEditor.py" line="2334" /> <location filename="../ViewManager/ViewManager.py" line="3249" /> <location filename="../ViewManager/ViewManager.py" line="3245" /> <source>Extend selection to start of display or document line</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2356" /> - <location filename="../QScintilla/MiniEditor.py" line="2352" /> + <location filename="../QScintilla/MiniEditor.py" line="2357" /> + <location filename="../QScintilla/MiniEditor.py" line="2353" /> <location filename="../ViewManager/ViewManager.py" line="3268" /> <location filename="../ViewManager/ViewManager.py" line="3264" /> <source>Move to first visible character in display or document line</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2376" /> - <location filename="../QScintilla/MiniEditor.py" line="2371" /> + <location filename="../QScintilla/MiniEditor.py" line="2377" /> + <location filename="../QScintilla/MiniEditor.py" line="2372" /> <location filename="../ViewManager/ViewManager.py" line="3288" /> <location filename="../ViewManager/ViewManager.py" line="3283" /> <source>Extend selection to first visible character in display or document line</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2395" /> - <location filename="../QScintilla/MiniEditor.py" line="2392" /> + <location filename="../QScintilla/MiniEditor.py" line="2396" /> + <location filename="../QScintilla/MiniEditor.py" line="2393" /> <location filename="../ViewManager/ViewManager.py" line="3307" /> <location filename="../ViewManager/ViewManager.py" line="3304" /> <source>Move to end of display or document line</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2412" /> - <location filename="../QScintilla/MiniEditor.py" line="2409" /> + <location filename="../QScintilla/MiniEditor.py" line="2413" /> + <location filename="../QScintilla/MiniEditor.py" line="2410" /> <location filename="../ViewManager/ViewManager.py" line="3324" /> <location filename="../ViewManager/ViewManager.py" line="3321" /> <source>Extend selection to end of display or document line</source> <translation type="unfinished" /> </message> <message> + <location filename="../QScintilla/MiniEditor.py" line="2428" /> <location filename="../QScintilla/MiniEditor.py" line="2427" /> - <location filename="../QScintilla/MiniEditor.py" line="2426" /> <location filename="../ViewManager/ViewManager.py" line="3339" /> <location filename="../ViewManager/ViewManager.py" line="3338" /> <source>Stuttered move up one page</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2442" /> - <location filename="../QScintilla/MiniEditor.py" line="2439" /> + <location filename="../QScintilla/MiniEditor.py" line="2443" /> + <location filename="../QScintilla/MiniEditor.py" line="2440" /> <location filename="../ViewManager/ViewManager.py" line="3354" /> <location filename="../ViewManager/ViewManager.py" line="3351" /> <source>Stuttered extend selection up one page</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2459" /> - <location filename="../QScintilla/MiniEditor.py" line="2456" /> + <location filename="../QScintilla/MiniEditor.py" line="2460" /> + <location filename="../QScintilla/MiniEditor.py" line="2457" /> <location filename="../ViewManager/ViewManager.py" line="3371" /> <location filename="../ViewManager/ViewManager.py" line="3368" /> <source>Stuttered move down one page</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2476" /> - <location filename="../QScintilla/MiniEditor.py" line="2473" /> + <location filename="../QScintilla/MiniEditor.py" line="2477" /> + <location filename="../QScintilla/MiniEditor.py" line="2474" /> <location filename="../ViewManager/ViewManager.py" line="3388" /> <location filename="../ViewManager/ViewManager.py" line="3385" /> <source>Stuttered extend selection down one page</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2493" /> - <location filename="../QScintilla/MiniEditor.py" line="2490" /> + <location filename="../QScintilla/MiniEditor.py" line="2494" /> + <location filename="../QScintilla/MiniEditor.py" line="2491" /> <location filename="../ViewManager/ViewManager.py" line="3405" /> <location filename="../ViewManager/ViewManager.py" line="3402" /> <source>Delete right to end of next word</source> <translation type="unfinished">删除下一个单词末尾的右边</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2503" /> + <location filename="../QScintilla/MiniEditor.py" line="2504" /> <location filename="../ViewManager/ViewManager.py" line="3415" /> <source>Alt+Del</source> <translation>Alt+Del</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2514" /> - <location filename="../QScintilla/MiniEditor.py" line="2511" /> + <location filename="../QScintilla/MiniEditor.py" line="2515" /> + <location filename="../QScintilla/MiniEditor.py" line="2512" /> <location filename="../ViewManager/ViewManager.py" line="3426" /> <location filename="../ViewManager/ViewManager.py" line="3423" /> <source>Move selected lines up one line</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2531" /> - <location filename="../QScintilla/MiniEditor.py" line="2528" /> + <location filename="../QScintilla/MiniEditor.py" line="2532" /> + <location filename="../QScintilla/MiniEditor.py" line="2529" /> <location filename="../ViewManager/ViewManager.py" line="3443" /> <location filename="../ViewManager/ViewManager.py" line="3440" /> <source>Move selected lines down one line</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1805" /> - <location filename="../QScintilla/MiniEditor.py" line="1802" /> + <location filename="../QScintilla/MiniEditor.py" line="1806" /> + <location filename="../QScintilla/MiniEditor.py" line="1803" /> <location filename="../ViewManager/ViewManager.py" line="3461" /> <location filename="../ViewManager/ViewManager.py" line="3458" /> <source>Convert selection to lower case</source> <translation>将所选内容转换成小写</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1808" /> + <location filename="../QScintilla/MiniEditor.py" line="1809" /> <location filename="../ViewManager/ViewManager.py" line="3464" /> <source>Alt+Shift+U</source> <translation>Alt+Shift+U</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1821" /> - <location filename="../QScintilla/MiniEditor.py" line="1818" /> + <location filename="../QScintilla/MiniEditor.py" line="1822" /> + <location filename="../QScintilla/MiniEditor.py" line="1819" /> <location filename="../ViewManager/ViewManager.py" line="3477" /> <location filename="../ViewManager/ViewManager.py" line="3474" /> <source>Convert selection to upper case</source> <translation>将所选内容转换成大写</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="1824" /> + <location filename="../QScintilla/MiniEditor.py" line="1825" /> <location filename="../ViewManager/ViewManager.py" line="3480" /> <source>Ctrl+Shift+U</source> <translation>Ctrl+Shift+U</translation> @@ -97046,7 +97051,7 @@ <translation>编辑</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2563" /> + <location filename="../QScintilla/MiniEditor.py" line="2564" /> <location filename="../QScintilla/ShellWindow.py" line="923" /> <location filename="../ViewManager/ViewManager.py" line="4167" /> <location filename="../ViewManager/ViewManager.py" line="4165" /> @@ -97055,14 +97060,14 @@ <translation>搜索</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2565" /> + <location filename="../QScintilla/MiniEditor.py" line="2566" /> <location filename="../QScintilla/ShellWindow.py" line="925" /> <location filename="../ViewManager/ViewManager.py" line="3600" /> <source>&Search...</source> <translation>搜索(&S)…</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2567" /> + <location filename="../QScintilla/MiniEditor.py" line="2568" /> <location filename="../QScintilla/ShellWindow.py" line="927" /> <location filename="../ViewManager/ViewManager.py" line="3602" /> <source>Ctrl+F</source> @@ -97070,34 +97075,34 @@ <translation>Ctrl+F</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2574" /> + <location filename="../QScintilla/MiniEditor.py" line="2575" /> <location filename="../QScintilla/ShellWindow.py" line="934" /> <location filename="../ViewManager/ViewManager.py" line="3609" /> <source>Search for a text</source> <translation>搜索文本</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2577" /> + <location filename="../QScintilla/MiniEditor.py" line="2578" /> <location filename="../ViewManager/ViewManager.py" line="3612" /> <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>搜索</b><p>在当前编辑器中搜索某文本。显示一个对话框可以输入要搜索的文本和搜索选项。</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2589" /> + <location filename="../QScintilla/MiniEditor.py" line="2590" /> <location filename="../QScintilla/ShellWindow.py" line="949" /> <location filename="../ViewManager/ViewManager.py" line="3624" /> <source>Search next</source> <translation>搜索下一个</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2591" /> + <location filename="../QScintilla/MiniEditor.py" line="2592" /> <location filename="../QScintilla/ShellWindow.py" line="951" /> <location filename="../ViewManager/ViewManager.py" line="3626" /> <source>Search &next</source> <translation>搜索下一个(&N)</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2593" /> + <location filename="../QScintilla/MiniEditor.py" line="2594" /> <location filename="../QScintilla/ShellWindow.py" line="953" /> <location filename="../ViewManager/ViewManager.py" line="3628" /> <source>F3</source> @@ -97105,34 +97110,34 @@ <translation>F3</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2600" /> + <location filename="../QScintilla/MiniEditor.py" line="2601" /> <location filename="../QScintilla/ShellWindow.py" line="960" /> <location filename="../ViewManager/ViewManager.py" line="3635" /> <source>Search next occurrence of text</source> <translation>搜索下一处文本</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2603" /> + <location filename="../QScintilla/MiniEditor.py" line="2604" /> <location filename="../ViewManager/ViewManager.py" line="3638" /> <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>搜索下一个</b><p>在当前编辑器中搜索某文本下一次出现的位置。仍然使用前面输入的搜索文本和选项。</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2615" /> + <location filename="../QScintilla/MiniEditor.py" line="2616" /> <location filename="../QScintilla/ShellWindow.py" line="977" /> <location filename="../ViewManager/ViewManager.py" line="3650" /> <source>Search previous</source> <translation>搜索上一个</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2617" /> + <location filename="../QScintilla/MiniEditor.py" line="2618" /> <location filename="../QScintilla/ShellWindow.py" line="979" /> <location filename="../ViewManager/ViewManager.py" line="3652" /> <source>Search &previous</source> <translation>搜索上一个(&P)</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2619" /> + <location filename="../QScintilla/MiniEditor.py" line="2620" /> <location filename="../QScintilla/ShellWindow.py" line="981" /> <location filename="../ViewManager/ViewManager.py" line="3654" /> <source>Shift+F3</source> @@ -97140,41 +97145,41 @@ <translation>Shift+F3</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2628" /> + <location filename="../QScintilla/MiniEditor.py" line="2629" /> <location filename="../QScintilla/ShellWindow.py" line="990" /> <location filename="../ViewManager/ViewManager.py" line="3663" /> <source>Search previous occurrence of text</source> <translation>搜索上一处文本</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2633" /> + <location filename="../QScintilla/MiniEditor.py" line="2634" /> <location filename="../ViewManager/ViewManager.py" line="3668" /> <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>搜索上一个</b><p>在当前编辑器中搜索某文本上一次出现的位置。仍然使用前面输入的搜索文本和选项。</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2647" /> - <location filename="../QScintilla/MiniEditor.py" line="2645" /> + <location filename="../QScintilla/MiniEditor.py" line="2648" /> + <location filename="../QScintilla/MiniEditor.py" line="2646" /> <location filename="../ViewManager/ViewManager.py" line="3682" /> <location filename="../ViewManager/ViewManager.py" line="3680" /> <source>Clear search markers</source> <translation>清除搜索标记</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2649" /> + <location filename="../QScintilla/MiniEditor.py" line="2650" /> <location filename="../ViewManager/ViewManager.py" line="3684" /> <source>Ctrl+3</source> <comment>Search|Clear search markers</comment> <translation>Ctrl+3</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2658" /> + <location filename="../QScintilla/MiniEditor.py" line="2659" /> <location filename="../ViewManager/ViewManager.py" line="3693" /> <source>Clear all displayed search markers</source> <translation>清除所有显示的搜索标记</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2663" /> + <location filename="../QScintilla/MiniEditor.py" line="2664" /> <location filename="../ViewManager/ViewManager.py" line="3698" /> <source><b>Clear search markers</b><p>Clear all displayed search markers.</p></source> <translation><b>清除搜索标记</b><p>清除所有显示的搜索标记。</p></translation> @@ -97224,113 +97229,113 @@ <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2673" /> + <location filename="../QScintilla/MiniEditor.py" line="2674" /> <location filename="../ViewManager/ViewManager.py" line="3766" /> <source>Replace</source> <translation>替换</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2674" /> + <location filename="../QScintilla/MiniEditor.py" line="2675" /> <location filename="../ViewManager/ViewManager.py" line="3767" /> <source>&Replace...</source> <translation>替换(&R)…</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2676" /> + <location filename="../QScintilla/MiniEditor.py" line="2677" /> <location filename="../ViewManager/ViewManager.py" line="3769" /> <source>Ctrl+R</source> <comment>Search|Replace</comment> <translation>Ctrl+R</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2683" /> + <location filename="../QScintilla/MiniEditor.py" line="2684" /> <location filename="../ViewManager/ViewManager.py" line="3776" /> <source>Replace some text</source> <translation>替换某文本</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2686" /> + <location filename="../QScintilla/MiniEditor.py" line="2687" /> <location filename="../ViewManager/ViewManager.py" line="3779" /> <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>替换</b><p>在当前编辑器搜索某文本并替换之。显示一个对话框可输入搜索文本、替换文本以及搜索替换的选项。</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2700" /> - <location filename="../QScintilla/MiniEditor.py" line="2698" /> + <location filename="../QScintilla/MiniEditor.py" line="2701" /> + <location filename="../QScintilla/MiniEditor.py" line="2699" /> <location filename="../ViewManager/ViewManager.py" line="3793" /> <location filename="../ViewManager/ViewManager.py" line="3791" /> <source>Replace and Search</source> <translation type="unfinished">替换和搜索</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2702" /> + <location filename="../QScintilla/MiniEditor.py" line="2703" /> <location filename="../ViewManager/ViewManager.py" line="3795" /> <source>Meta+R</source> <comment>Search|Replace and Search</comment> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2711" /> + <location filename="../QScintilla/MiniEditor.py" line="2712" /> <location filename="../ViewManager/ViewManager.py" line="3804" /> <source>Replace the found text and search the next occurrence</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2716" /> + <location filename="../QScintilla/MiniEditor.py" line="2717" /> <location filename="../ViewManager/ViewManager.py" line="3809" /> <source><b>Replace and Search</b><p>Replace the found occurrence of text in the current editor and search for the next one. The previously entered search text and options are reused.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2732" /> - <location filename="../QScintilla/MiniEditor.py" line="2730" /> + <location filename="../QScintilla/MiniEditor.py" line="2733" /> + <location filename="../QScintilla/MiniEditor.py" line="2731" /> <location filename="../ViewManager/ViewManager.py" line="3825" /> <location filename="../ViewManager/ViewManager.py" line="3823" /> <source>Replace Occurrence</source> <translation>替换当前</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2734" /> + <location filename="../QScintilla/MiniEditor.py" line="2735" /> <location filename="../ViewManager/ViewManager.py" line="3827" /> <source>Ctrl+Meta+R</source> <comment>Search|Replace Occurrence</comment> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2743" /> + <location filename="../QScintilla/MiniEditor.py" line="2744" /> <location filename="../ViewManager/ViewManager.py" line="3836" /> <source>Replace the found text</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2746" /> + <location filename="../QScintilla/MiniEditor.py" line="2747" /> <location filename="../ViewManager/ViewManager.py" line="3839" /> <source><b>Replace Occurrence</b><p>Replace the found occurrence of the search text in the current editor.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2759" /> - <location filename="../QScintilla/MiniEditor.py" line="2757" /> + <location filename="../QScintilla/MiniEditor.py" line="2760" /> + <location filename="../QScintilla/MiniEditor.py" line="2758" /> <location filename="../ViewManager/ViewManager.py" line="3852" /> <location filename="../ViewManager/ViewManager.py" line="3850" /> <source>Replace All</source> <translation type="unfinished">替换全部</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2761" /> + <location filename="../QScintilla/MiniEditor.py" line="2762" /> <location filename="../ViewManager/ViewManager.py" line="3854" /> <source>Shift+Meta+R</source> <comment>Search|Replace All</comment> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2770" /> + <location filename="../QScintilla/MiniEditor.py" line="2771" /> <location filename="../ViewManager/ViewManager.py" line="3863" /> <source>Replace search text occurrences</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2773" /> + <location filename="../QScintilla/MiniEditor.py" line="2774" /> <location filename="../ViewManager/ViewManager.py" line="3866" /> <source><b>Replace All</b><p>Replace all occurrences of the search text in the current editor.</p></source> <translation type="unfinished" /> @@ -97555,21 +97560,21 @@ <translation>搜索(&S)</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2788" /> + <location filename="../QScintilla/MiniEditor.py" line="2789" /> <location filename="../QScintilla/ShellWindow.py" line="1016" /> <location filename="../ViewManager/ViewManager.py" line="4208" /> <source>Zoom in</source> <translation>放大</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2790" /> + <location filename="../QScintilla/MiniEditor.py" line="2791" /> <location filename="../QScintilla/ShellWindow.py" line="1018" /> <location filename="../ViewManager/ViewManager.py" line="4210" /> <source>Zoom &in</source> <translation>放大(&I)</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2792" /> + <location filename="../QScintilla/MiniEditor.py" line="2793" /> <location filename="../QScintilla/ShellWindow.py" line="1020" /> <location filename="../ViewManager/ViewManager.py" line="4212" /> <source>Ctrl++</source> @@ -97577,7 +97582,7 @@ <translation>Ctrl++</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2795" /> + <location filename="../QScintilla/MiniEditor.py" line="2796" /> <location filename="../QScintilla/ShellWindow.py" line="1023" /> <location filename="../ViewManager/ViewManager.py" line="4215" /> <source>Zoom In</source> @@ -97585,35 +97590,35 @@ <translation>放大</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2801" /> + <location filename="../QScintilla/MiniEditor.py" line="2802" /> <location filename="../QScintilla/ShellWindow.py" line="1029" /> <location filename="../ViewManager/ViewManager.py" line="4221" /> <source>Zoom in on the text</source> <translation>放大显示文本</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2804" /> + <location filename="../QScintilla/MiniEditor.py" line="2805" /> <location filename="../QScintilla/ShellWindow.py" line="1032" /> <location filename="../ViewManager/ViewManager.py" line="4224" /> <source><b>Zoom in</b><p>Zoom in on the text. This makes the text bigger.</p></source> <translation><b>放大</b><p>放大显示文本。将使文本变大。</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2814" /> + <location filename="../QScintilla/MiniEditor.py" line="2815" /> <location filename="../QScintilla/ShellWindow.py" line="1042" /> <location filename="../ViewManager/ViewManager.py" line="4234" /> <source>Zoom out</source> <translation>缩小</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2816" /> + <location filename="../QScintilla/MiniEditor.py" line="2817" /> <location filename="../QScintilla/ShellWindow.py" line="1044" /> <location filename="../ViewManager/ViewManager.py" line="4236" /> <source>Zoom &out</source> <translation>缩小(&O)</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2818" /> + <location filename="../QScintilla/MiniEditor.py" line="2819" /> <location filename="../QScintilla/ShellWindow.py" line="1046" /> <location filename="../ViewManager/ViewManager.py" line="4238" /> <source>Ctrl+-</source> @@ -97621,7 +97626,7 @@ <translation>Ctrl+-</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2821" /> + <location filename="../QScintilla/MiniEditor.py" line="2822" /> <location filename="../QScintilla/ShellWindow.py" line="1049" /> <location filename="../ViewManager/ViewManager.py" line="4241" /> <source>Zoom Out</source> @@ -97629,35 +97634,35 @@ <translation>缩小</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2827" /> + <location filename="../QScintilla/MiniEditor.py" line="2828" /> <location filename="../QScintilla/ShellWindow.py" line="1055" /> <location filename="../ViewManager/ViewManager.py" line="4247" /> <source>Zoom out on the text</source> <translation>缩小显示文本</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2830" /> + <location filename="../QScintilla/MiniEditor.py" line="2831" /> <location filename="../QScintilla/ShellWindow.py" line="1058" /> <location filename="../ViewManager/ViewManager.py" line="4250" /> <source><b>Zoom out</b><p>Zoom out on the text. This makes the text smaller.</p></source> <translation><b>缩小</b><p>缩小显示文本。将使文本变小。</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2840" /> + <location filename="../QScintilla/MiniEditor.py" line="2841" /> <location filename="../QScintilla/ShellWindow.py" line="1068" /> <location filename="../ViewManager/ViewManager.py" line="4260" /> <source>Zoom reset</source> <translation>重置缩放</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2842" /> + <location filename="../QScintilla/MiniEditor.py" line="2843" /> <location filename="../QScintilla/ShellWindow.py" line="1070" /> <location filename="../ViewManager/ViewManager.py" line="4262" /> <source>Zoom &reset</source> <translation>重置缩放(&R)</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2844" /> + <location filename="../QScintilla/MiniEditor.py" line="2845" /> <location filename="../QScintilla/ShellWindow.py" line="1072" /> <location filename="../ViewManager/ViewManager.py" line="4264" /> <source>Ctrl+0</source> @@ -97665,42 +97670,42 @@ <translation>Ctrl+0</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2851" /> + <location filename="../QScintilla/MiniEditor.py" line="2852" /> <location filename="../QScintilla/ShellWindow.py" line="1079" /> <location filename="../ViewManager/ViewManager.py" line="4271" /> <source>Reset the zoom of the text</source> <translation>重置文本缩放大小</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2854" /> + <location filename="../QScintilla/MiniEditor.py" line="2855" /> <location filename="../QScintilla/ShellWindow.py" line="1082" /> <location filename="../ViewManager/ViewManager.py" line="4274" /> <source><b>Zoom reset</b><p>Reset the zoom of the text. This sets the zoom factor to 100%.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2865" /> + <location filename="../QScintilla/MiniEditor.py" line="2866" /> <location filename="../QScintilla/ShellWindow.py" line="1093" /> <location filename="../ViewManager/ViewManager.py" line="4285" /> <source>Zoom</source> <translation>缩放</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2867" /> + <location filename="../QScintilla/MiniEditor.py" line="2868" /> <location filename="../QScintilla/ShellWindow.py" line="1095" /> <location filename="../ViewManager/ViewManager.py" line="4287" /> <source>&Zoom</source> <translation>缩放(&Z)</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2874" /> + <location filename="../QScintilla/MiniEditor.py" line="2875" /> <location filename="../QScintilla/ShellWindow.py" line="1102" /> <location filename="../ViewManager/ViewManager.py" line="4294" /> <source>Zoom the text</source> <translation>缩放文本</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2877" /> + <location filename="../QScintilla/MiniEditor.py" line="2878" /> <location filename="../QScintilla/ShellWindow.py" line="1105" /> <location filename="../ViewManager/ViewManager.py" line="4297" /> <source><b>Zoom</b><p>Zoom the text. This opens a dialog where the desired size can be entered.</p></source> @@ -98465,65 +98470,65 @@ <translation><p>文件 <b>{0}</b> 有未保存的更改。</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6077" /> + <location filename="../ViewManager/ViewManager.py" line="6078" /> <source>Line: {0:5}</source> <translation>行:{0:5}</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6083" /> + <location filename="../ViewManager/ViewManager.py" line="6084" /> <source>Pos: {0:5}</source> <translation>列:{0:5}</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6103" /> + <location filename="../ViewManager/ViewManager.py" line="6104" /> <source>Language: {0}</source> <translation>语言:{0}</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6112" /> + <location filename="../ViewManager/ViewManager.py" line="6113" /> <source>EOL Mode: {0}</source> <translation>行尾模式:{0}</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6640" /> - <location filename="../ViewManager/ViewManager.py" line="6597" /> + <location filename="../ViewManager/ViewManager.py" line="6641" /> + <location filename="../ViewManager/ViewManager.py" line="6598" /> <source>&Clear</source> <translation>清除(&C)</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6634" /> + <location filename="../ViewManager/ViewManager.py" line="6635" /> <source>&Add</source> <translation>添加(&A)</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6637" /> + <location filename="../ViewManager/ViewManager.py" line="6638" /> <source>&Edit...</source> <translation>编辑(&E)…</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="7707" /> - <location filename="../ViewManager/ViewManager.py" line="7693" /> - <location filename="../ViewManager/ViewManager.py" line="7661" /> + <location filename="../ViewManager/ViewManager.py" line="7708" /> + <location filename="../ViewManager/ViewManager.py" line="7694" /> + <location filename="../ViewManager/ViewManager.py" line="7662" /> <source>Edit Spelling Dictionary</source> <translation type="unfinished">编辑拼写字典</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="7664" /> + <location filename="../ViewManager/ViewManager.py" line="7665" /> <source><p>The spelling dictionary file <b>{0}</b> could not be read.</p><p>Reason: {1}</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="7680" /> + <location filename="../ViewManager/ViewManager.py" line="7681" /> <source>Editing {0}</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="7696" /> + <location filename="../ViewManager/ViewManager.py" line="7697" /> <source><p>The spelling dictionary file <b>{0}</b> could not be written.</p><p>Reason: {1}</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="7710" /> + <location filename="../ViewManager/ViewManager.py" line="7711" /> <source>The spelling dictionary was saved successfully.</source> <translation type="unfinished" /> </message> @@ -98533,28 +98538,28 @@ <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6819" /> + <location filename="../ViewManager/ViewManager.py" line="6820" /> <source>Clear Editor</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6820" /> + <location filename="../ViewManager/ViewManager.py" line="6821" /> <source>Do you really want to delete all text of the current editor?</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="8240" /> - <location filename="../ViewManager/ViewManager.py" line="8223" /> - <source>File System Watcher Error</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="8224" /> - <source><p>The operating system resources for file system watches are exhausted. This limit should be increased. On a Linux system you should <ul><li>sudo nano /etc/sysctl.conf</li><li>add to the bottom "fs.inotify.max_user_instances = 1024"</li><li>save and close the editor</li><li>sudo sysctl -p</li></ul></p><p>Error Message: {0}</p></source> - <translation type="unfinished" /> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="8241" /> + <location filename="../ViewManager/ViewManager.py" line="8224" /> + <source>File System Watcher Error</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="8225" /> + <source><p>The operating system resources for file system watches are exhausted. This limit should be increased. On a Linux system you should <ul><li>sudo nano /etc/sysctl.conf</li><li>add to the bottom "fs.inotify.max_user_instances = 1024"</li><li>save and close the editor</li><li>sudo sysctl -p</li></ul></p><p>Error Message: {0}</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="8242" /> <source>The file system watcher reported an error with code <b>{0}</b>.</p><p>Error Message: {1}</p></source> <translation type="unfinished" /> </message> @@ -105941,301 +105946,306 @@ <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="95" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="96" /> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="94" /> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="93" /> <source>whitespace before '{0}'</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="96" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="95" /> + <source>whitespace after decorator '@'</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="97" /> <source>multiple spaces before operator</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="99" /> - <source>multiple spaces after operator</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="100" /> - <source>tab before operator</source> + <source>multiple spaces after operator</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="101" /> - <source>tab after operator</source> + <source>tab before operator</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="102" /> + <source>tab after operator</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="103" /> <source>missing whitespace around operator</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="105" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="106" /> <source>missing whitespace around arithmetic operator</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="108" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="109" /> <source>missing whitespace around bitwise or shift operator</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="111" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="112" /> <source>missing whitespace around modulo operator</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="114" /> - <source>missing whitespace after '{0}'</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="115" /> - <source>multiple spaces after '{0}'</source> + <source>missing whitespace after '{0}'</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="116" /> - <source>tab after '{0}'</source> + <source>multiple spaces after '{0}'</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="117" /> + <source>tab after '{0}'</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="118" /> <source>unexpected spaces around keyword / parameter equals</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="120" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="121" /> <source>missing whitespace around parameter equals</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="123" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="124" /> <source>at least two spaces before inline comment</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="126" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="127" /> <source>inline comment should start with '# '</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="129" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="130" /> <source>block comment should start with '# '</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="132" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="133" /> <source>too many leading '#' for block comment</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="135" /> - <source>multiple spaces after keyword</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="136" /> - <source>multiple spaces before keyword</source> + <source>multiple spaces after keyword</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="137" /> - <source>tab after keyword</source> + <source>multiple spaces before keyword</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="138" /> - <source>tab before keyword</source> + <source>tab after keyword</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="139" /> + <source>tab before keyword</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="140" /> <source>missing whitespace after keyword</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="145" /> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="142" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="146" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="143" /> <source>expected {0} blank lines, found {1}</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="148" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="149" /> <source>too many blank lines ({0}), expected {1}</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="151" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="152" /> <source>blank lines found after function decorator</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="154" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="155" /> <source>expected {0} blank lines after class or function definition, found {1}</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="158" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="159" /> <source>expected {0} blank lines before a nested definition, found {1}</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="161" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="162" /> <source>too many blank lines ({0}) before a nested definition, expected {1}</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="165" /> - <source>too many blank lines ({0})</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="166" /> - <source>multiple imports on one line</source> + <source>too many blank lines ({0})</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="167" /> + <source>multiple imports on one line</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="168" /> <source>module level import not at top of file</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="170" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="171" /> <source>line too long ({0} > {1} characters)</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="173" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="174" /> <source>the backslash is redundant between brackets</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="176" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="177" /> <source>multiple statements on one line (colon)</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="179" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="180" /> <source>multiple statements on one line (semicolon)</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="182" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="183" /> <source>statement ends with a semicolon</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="185" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="186" /> <source>multiple statements on one line (def)</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="191" /> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="188" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="192" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="189" /> <source>comparison to {0} should be {1}</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="194" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="195" /> <source>test for membership should be 'not in'</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="197" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="198" /> <source>test for object identity should be 'is not'</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="200" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="201" /> <source>do not compare types, for exact checks use 'is' / 'is not', for instance checks use 'isinstance()'</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="205" /> - <source>do not use bare except</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="206" /> + <source>do not use bare except</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="207" /> <source>do not assign a lambda expression, use a def</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="209" /> - <source>ambiguous variable name '{0}'</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="210" /> + <source>ambiguous variable name '{0}'</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="211" /> <source>ambiguous class definition '{0}'</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="213" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="214" /> <source>ambiguous function definition '{0}'</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="216" /> - <source>{0}: {1}</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="217" /> + <source>{0}: {1}</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="218" /> <source>{0}</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="225" /> - <source>indentation contains tabs</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="226" /> - <source>trailing whitespace</source> + <source>indentation contains tabs</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="227" /> - <source>no newline at end of file</source> + <source>trailing whitespace</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="228" /> - <source>blank line contains whitespace</source> + <source>no newline at end of file</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="229" /> - <source>blank line at end of file</source> + <source>blank line contains whitespace</source> <translation type="unfinished" /> </message> <message> <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="230" /> + <source>blank line at end of file</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="231" /> <source>line break before binary operator</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="233" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="234" /> <source>line break after binary operator</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="236" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="237" /> <source>doc line too long ({0} > {1} characters)</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="239" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="240" /> <source>invalid escape sequence '\{0}'</source> <translation type="unfinished" /> </message> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="242" /> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="243" /> <source>'async' and 'await' are reserved keywords starting with Python 3.7</source> <translation type="unfinished" /> </message>