Wed, 24 Jun 2020 17:36:34 +0200
Removed support for Python2.
--- a/ChangeLog Wed Apr 08 19:22:28 2020 +0200 +++ b/ChangeLog Wed Jun 24 17:36:34 2020 +0200 @@ -1,5 +1,8 @@ ChangeLog --------- +Version 3.0.0: +- removed support for Python2 + Version 2.2.0: - replaced pixmap icons by vector icons
--- a/PluginSelectionEncloser.py Wed Apr 08 19:22:28 2020 +0200 +++ b/PluginSelectionEncloser.py Wed Jun 24 17:36:34 2020 +0200 @@ -7,8 +7,6 @@ Module implementing the Selection Encloser plug-in. """ -from __future__ import unicode_literals - import os import json @@ -24,17 +22,17 @@ author = "Detlev Offenbach <detlev@die-offenbachs.de>" autoactivate = True deactivateable = True -version = "2.2.0" +version = "3.0.0" className = "SelectionEncloserPlugin" packageName = "SelectionEncloser" shortDescription = "Enclose the selection with a string." -longDescription = \ - """This plug-in implements a tool to enclose the selection of""" \ - """ the current editor with a string. The enclosing string is""" \ +longDescription = ( + """This plug-in implements a tool to enclose the selection of""" + """ the current editor with a string. The enclosing string is""" """ selectable via a configurable menu hierarchy.""" +) needsRestart = False pyqtApi = 2 -python2Compatible = True # End-Of-Header error = "" @@ -50,10 +48,10 @@ @return reference to the configuration page """ global selectionEncloserPluginObject - from SelectionEncloser.ConfigurationPage.SelectionEncloserPage import \ + from SelectionEncloser.ConfigurationPage.SelectionEncloserPage import ( SelectionEncloserPage - page = SelectionEncloserPage(selectionEncloserPluginObject) - return page + ) + return SelectionEncloserPage(selectionEncloserPluginObject) def getConfigData(): @@ -70,7 +68,7 @@ lightness = palette.color(QPalette.Window).lightness() usesDarkPalette = lightness <= 128 if usesDarkPalette: - iconSuffix = "dark" + iconSuffix = "dark" else: iconSuffix = "light"
--- a/SelectionEncloser.e4p Wed Apr 08 19:22:28 2020 +0200 +++ b/SelectionEncloser.e4p Wed Jun 24 17:36:34 2020 +0200 @@ -236,6 +236,34 @@ <value> <dict> <key> + <string>AnnotationsChecker</string> + </key> + <value> + <dict> + <key> + <string>MaximumComplexity</string> + </key> + <value> + <int>3</int> + </value> + <key> + <string>MinimumCoverage</string> + </key> + <value> + <int>75</int> + </value> + </dict> + </value> + <key> + <string>BlankLines</string> + </key> + <value> + <tuple> + <int>2</int> + <int>1</int> + </tuple> + </value> + <key> <string>BuiltinsChecker</string> </key> <value> @@ -267,6 +295,19 @@ </dict> </value> <key> + <string>CommentedCodeChecker</string> + </key> + <value> + <dict> + <key> + <string>Aggressive</string> + </key> + <value> + <bool>False</bool> + </value> + </dict> + </value> + <key> <string>CopyrightAuthor</string> </key> <value> @@ -285,6 +326,12 @@ <string>eric</string> </value> <key> + <string>EnabledCheckerCategories</string> + </key> + <value> + <string>C, D, E, M, N, S, W</string> + </value> + <key> <string>ExcludeFiles</string> </key> <value> @@ -294,7 +341,7 @@ <string>ExcludeMessages</string> </key> <value> - <string>C101, E265, E266, E305, E402, M811, N802, N803, N807, N808, N821, W293</string> + <string>C101,E265,E266,E305,E402,M811,N802,N803,N807,N808,N821,W293,W504</string> </value> <key> <string>FixCodes</string> @@ -312,7 +359,7 @@ <string>FutureChecker</string> </key> <value> - <string>unicode_literals</string> + <string></string> </value> <key> <string>HangClosing</string> @@ -345,6 +392,12 @@ <int>10</int> </value> <key> + <string>MaxDocLineLength</string> + </key> + <value> + <int>79</int> + </value> + <key> <string>MaxLineLength</string> </key> <value> @@ -363,6 +416,91 @@ <bool>True</bool> </value> <key> + <string>SecurityChecker</string> + </key> + <value> + <dict> + <key> + <string>CheckTypedException</string> + </key> + <value> + <bool>False</bool> + </value> + <key> + <string>HardcodedTmpDirectories</string> + </key> + <value> + <list> + <string>/tmp</string> + <string>/var/tmp</string> + <string>/dev/shm</string> + <string>~/tmp</string> + </list> + </value> + <key> + <string>InsecureHashes</string> + </key> + <value> + <list> + <string>md4</string> + <string>md5</string> + <string>sha</string> + <string>sha1</string> + </list> + </value> + <key> + <string>InsecureSslProtocolVersions</string> + </key> + <value> + <list> + <string>PROTOCOL_SSLv2</string> + <string>SSLv2_METHOD</string> + <string>SSLv23_METHOD</string> + <string>PROTOCOL_SSLv3</string> + <string>PROTOCOL_TLSv1</string> + <string>SSLv3_METHOD</string> + <string>TLSv1_METHOD</string> + </list> + </value> + <key> + <string>WeakKeySizeDsaHigh</string> + </key> + <value> + <string>1024</string> + </value> + <key> + <string>WeakKeySizeDsaMedium</string> + </key> + <value> + <string>2048</string> + </value> + <key> + <string>WeakKeySizeEcHigh</string> + </key> + <value> + <string>160</string> + </value> + <key> + <string>WeakKeySizeEcMedium</string> + </key> + <value> + <string>224</string> + </value> + <key> + <string>WeakKeySizeRsaHigh</string> + </key> + <value> + <string>1024</string> + </value> + <key> + <string>WeakKeySizeRsaMedium</string> + </key> + <value> + <string>2048</string> + </value> + </dict> + </value> + <key> <string>ShowIgnored</string> </key> <value>
--- a/SelectionEncloser/ConfigurationPage/SelectionEncloserEditDialog.py Wed Apr 08 19:22:28 2020 +0200 +++ b/SelectionEncloser/ConfigurationPage/SelectionEncloserEditDialog.py Wed Jun 24 17:36:34 2020 +0200 @@ -7,8 +7,6 @@ Module implementing a dialog to edit an enclosing menu entry. """ -from __future__ import unicode_literals - from PyQt5.QtCore import pyqtSlot from PyQt5.QtWidgets import QDialog, QDialogButtonBox
--- a/SelectionEncloser/ConfigurationPage/SelectionEncloserPage.py Wed Apr 08 19:22:28 2020 +0200 +++ b/SelectionEncloser/ConfigurationPage/SelectionEncloserPage.py Wed Jun 24 17:36:34 2020 +0200 @@ -7,8 +7,6 @@ Module implementing Selection Encloser configuration page. """ -from __future__ import unicode_literals - import os from PyQt5.QtCore import pyqtSlot, Qt @@ -16,8 +14,9 @@ from E5Gui.E5Application import e5App -from Preferences.ConfigurationPages.ConfigurationPageBase import \ +from Preferences.ConfigurationPages.ConfigurationPageBase import ( ConfigurationPageBase +) from .Ui_SelectionEncloserPage import Ui_SelectionEncloserPage import UI.PixmapCache @@ -45,7 +44,7 @@ lightness = palette.color(QPalette.Window).lightness() usesDarkPalette = lightness <= 128 if usesDarkPalette: - iconSuffix = "dark" + iconSuffix = "dark" else: iconSuffix = "light" @@ -219,8 +218,9 @@ if ok and menuTitle: itm.setText(0, menuTitle) else: - from .SelectionEncloserEditDialog import \ + from .SelectionEncloserEditDialog import ( SelectionEncloserEditDialog + ) dlg = SelectionEncloserEditDialog( itm.text(0), itm.data(0, Qt.UserRole), self) if dlg.exec_() == QDialog.Accepted: @@ -250,15 +250,16 @@ # top level item if self.menuTree.indexOfTopLevelItem(itm) == 0: upEnable = False - if self.menuTree.indexOfTopLevelItem(itm) == \ - self.menuTree.topLevelItemCount() - 1: + if ( + self.menuTree.indexOfTopLevelItem(itm) == + self.menuTree.topLevelItemCount() - 1 + ): downEnable = False else: # sub item if parent.indexOfChild(itm) == 0: upEnable = False - if parent.indexOfChild(itm) == \ - parent.childCount() - 1: + if parent.indexOfChild(itm) == parent.childCount() - 1: downEnable = False addEnable = False self.addButton.setEnabled(addEnable)
--- a/SelectionEncloser/Documentation/source/Plugin_Tools_Selection_Encloser.PluginSelectionEncloser.html Wed Apr 08 19:22:28 2020 +0200 +++ b/SelectionEncloser/Documentation/source/Plugin_Tools_Selection_Encloser.PluginSelectionEncloser.html Wed Jun 24 17:36:34 2020 +0200 @@ -18,258 +18,342 @@ </style> </head> -<body><a NAME="top" ID="top"></a> +<body> +<a NAME="top" ID="top"></a> <h1>Plugin_Tools_Selection_Encloser.PluginSelectionEncloser</h1> + <p> Module implementing the Selection Encloser plug-in. </p> <h3>Global Attributes</h3> + <table> -<tr><td>author</td></tr><tr><td>autoactivate</td></tr><tr><td>className</td></tr><tr><td>deactivateable</td></tr><tr><td>error</td></tr><tr><td>longDescription</td></tr><tr><td>name</td></tr><tr><td>needsRestart</td></tr><tr><td>packageName</td></tr><tr><td>pyqtApi</td></tr><tr><td>python2Compatible</td></tr><tr><td>selectionEncloserPluginObject</td></tr><tr><td>shortDescription</td></tr><tr><td>version</td></tr> +<tr><td>author</td></tr><tr><td>autoactivate</td></tr><tr><td>className</td></tr><tr><td>deactivateable</td></tr><tr><td>error</td></tr><tr><td>longDescription</td></tr><tr><td>name</td></tr><tr><td>needsRestart</td></tr><tr><td>packageName</td></tr><tr><td>pyqtApi</td></tr><tr><td>selectionEncloserPluginObject</td></tr><tr><td>shortDescription</td></tr><tr><td>version</td></tr> </table> <h3>Classes</h3> + <table> + <tr> <td><a href="#SelectionEncloserPlugin">SelectionEncloserPlugin</a></td> <td>Class implementing the Selection Encloser plugin.</td> </tr> </table> <h3>Functions</h3> + <table> + <tr> <td><a href="#createSelectionEncloserPage">createSelectionEncloserPage</a></td> <td>Module function to create the Selection Encloser configuration page.</td> -</tr><tr> +</tr> +<tr> <td><a href="#getConfigData">getConfigData</a></td> <td>Module function returning data as required by the configuration dialog.</td> -</tr><tr> +</tr> +<tr> <td><a href="#prepareUninstall">prepareUninstall</a></td> <td>Module function to prepare for an uninstallation.</td> </tr> </table> -<hr /><hr /> +<hr /> +<hr /> <a NAME="SelectionEncloserPlugin" ID="SelectionEncloserPlugin"></a> <h2>SelectionEncloserPlugin</h2> + <p> Class implementing the Selection Encloser plugin. </p> <h3>Derived from</h3> QObject <h3>Class Attributes</h3> + <table> <tr><td>PreferencesKey</td></tr> </table> <h3>Class Methods</h3> + <table> <tr><td>None</td></tr> </table> <h3>Methods</h3> + <table> + <tr> <td><a href="#SelectionEncloserPlugin.__init__">SelectionEncloserPlugin</a></td> <td>Constructor</td> -</tr><tr> +</tr> +<tr> <td><a href="#SelectionEncloserPlugin.__editorClosed">__editorClosed</a></td> <td>Private slot called, when an editor was closed.</td> -</tr><tr> +</tr> +<tr> <td><a href="#SelectionEncloserPlugin.__editorOpened">__editorOpened</a></td> <td>Private slot called, when a new editor was opened.</td> -</tr><tr> +</tr> +<tr> <td><a href="#SelectionEncloserPlugin.__editorShowMenu">__editorShowMenu</a></td> <td>Private slot called, when the the editor context menu or a submenu is about to be shown.</td> -</tr><tr> +</tr> +<tr> <td><a href="#SelectionEncloserPlugin.__encloseSelection">__encloseSelection</a></td> <td>Private slot to enclose the selection with the selected string.</td> -</tr><tr> +</tr> +<tr> <td><a href="#SelectionEncloserPlugin.__initMenu">__initMenu</a></td> <td>Private method to initialize the menu.</td> -</tr><tr> +</tr> +<tr> <td><a href="#SelectionEncloserPlugin.__loadTranslator">__loadTranslator</a></td> <td>Private method to load the translation file.</td> -</tr><tr> +</tr> +<tr> <td><a href="#SelectionEncloserPlugin.__populateMenu">__populateMenu</a></td> <td>Private slot to populate the tools menu with our entry.</td> -</tr><tr> +</tr> +<tr> <td><a href="#SelectionEncloserPlugin.__showMenu">__showMenu</a></td> <td>Private slot to build the menu hierarchy.</td> -</tr><tr> +</tr> +<tr> <td><a href="#SelectionEncloserPlugin.activate">activate</a></td> <td>Public method to activate this plugin.</td> -</tr><tr> +</tr> +<tr> <td><a href="#SelectionEncloserPlugin.deactivate">deactivate</a></td> <td>Public method to deactivate this plugin.</td> -</tr><tr> +</tr> +<tr> <td><a href="#SelectionEncloserPlugin.getPreferences">getPreferences</a></td> <td>Public method to retrieve the various settings.</td> -</tr><tr> +</tr> +<tr> <td><a href="#SelectionEncloserPlugin.setPreferences">setPreferences</a></td> <td>Public method to store the various settings.</td> </tr> </table> <h3>Static Methods</h3> + <table> <tr><td>None</td></tr> </table> + <a NAME="SelectionEncloserPlugin.__init__" ID="SelectionEncloserPlugin.__init__"></a> <h4>SelectionEncloserPlugin (Constructor)</h4> <b>SelectionEncloserPlugin</b>(<i>ui</i>) + <p> Constructor -</p><dl> +</p> +<dl> + <dt><i>ui</i></dt> <dd> reference to the user interface object (UI.UserInterface) </dd> -</dl><a NAME="SelectionEncloserPlugin.__editorClosed" ID="SelectionEncloserPlugin.__editorClosed"></a> +</dl> +<a NAME="SelectionEncloserPlugin.__editorClosed" ID="SelectionEncloserPlugin.__editorClosed"></a> <h4>SelectionEncloserPlugin.__editorClosed</h4> <b>__editorClosed</b>(<i>editor</i>) + <p> Private slot called, when an editor was closed. -</p><dl> +</p> +<dl> + <dt><i>editor</i></dt> <dd> reference to the editor (QScintilla.Editor) </dd> -</dl><a NAME="SelectionEncloserPlugin.__editorOpened" ID="SelectionEncloserPlugin.__editorOpened"></a> +</dl> +<a NAME="SelectionEncloserPlugin.__editorOpened" ID="SelectionEncloserPlugin.__editorOpened"></a> <h4>SelectionEncloserPlugin.__editorOpened</h4> <b>__editorOpened</b>(<i>editor</i>) + <p> Private slot called, when a new editor was opened. -</p><dl> +</p> +<dl> + <dt><i>editor</i></dt> <dd> reference to the new editor (QScintilla.Editor) </dd> -</dl><a NAME="SelectionEncloserPlugin.__editorShowMenu" ID="SelectionEncloserPlugin.__editorShowMenu"></a> +</dl> +<a NAME="SelectionEncloserPlugin.__editorShowMenu" ID="SelectionEncloserPlugin.__editorShowMenu"></a> <h4>SelectionEncloserPlugin.__editorShowMenu</h4> <b>__editorShowMenu</b>(<i>menuName, menu, editor</i>) + <p> Private slot called, when the the editor context menu or a submenu is about to be shown. -</p><dl> +</p> +<dl> + <dt><i>menuName</i></dt> <dd> name of the menu to be shown (string) -</dd><dt><i>menu</i></dt> +</dd> +<dt><i>menu</i></dt> <dd> reference to the menu (QMenu) -</dd><dt><i>editor</i></dt> +</dd> +<dt><i>editor</i></dt> <dd> reference to the editor </dd> -</dl><a NAME="SelectionEncloserPlugin.__encloseSelection" ID="SelectionEncloserPlugin.__encloseSelection"></a> +</dl> +<a NAME="SelectionEncloserPlugin.__encloseSelection" ID="SelectionEncloserPlugin.__encloseSelection"></a> <h4>SelectionEncloserPlugin.__encloseSelection</h4> <b>__encloseSelection</b>(<i></i>) + <p> Private slot to enclose the selection with the selected string. -</p><a NAME="SelectionEncloserPlugin.__initMenu" ID="SelectionEncloserPlugin.__initMenu"></a> +</p> +<a NAME="SelectionEncloserPlugin.__initMenu" ID="SelectionEncloserPlugin.__initMenu"></a> <h4>SelectionEncloserPlugin.__initMenu</h4> <b>__initMenu</b>(<i></i>) + <p> Private method to initialize the menu. -</p><a NAME="SelectionEncloserPlugin.__loadTranslator" ID="SelectionEncloserPlugin.__loadTranslator"></a> +</p> +<a NAME="SelectionEncloserPlugin.__loadTranslator" ID="SelectionEncloserPlugin.__loadTranslator"></a> <h4>SelectionEncloserPlugin.__loadTranslator</h4> <b>__loadTranslator</b>(<i></i>) + <p> Private method to load the translation file. -</p><a NAME="SelectionEncloserPlugin.__populateMenu" ID="SelectionEncloserPlugin.__populateMenu"></a> +</p> +<a NAME="SelectionEncloserPlugin.__populateMenu" ID="SelectionEncloserPlugin.__populateMenu"></a> <h4>SelectionEncloserPlugin.__populateMenu</h4> <b>__populateMenu</b>(<i>name, menu</i>) + <p> Private slot to populate the tools menu with our entry. -</p><dl> +</p> +<dl> + <dt><i>name</i></dt> <dd> name of the menu (string) -</dd><dt><i>menu</i></dt> +</dd> +<dt><i>menu</i></dt> <dd> reference to the menu to be populated (QMenu) </dd> -</dl><a NAME="SelectionEncloserPlugin.__showMenu" ID="SelectionEncloserPlugin.__showMenu"></a> +</dl> +<a NAME="SelectionEncloserPlugin.__showMenu" ID="SelectionEncloserPlugin.__showMenu"></a> <h4>SelectionEncloserPlugin.__showMenu</h4> <b>__showMenu</b>(<i></i>) + <p> Private slot to build the menu hierarchy. -</p><a NAME="SelectionEncloserPlugin.activate" ID="SelectionEncloserPlugin.activate"></a> +</p> +<a NAME="SelectionEncloserPlugin.activate" ID="SelectionEncloserPlugin.activate"></a> <h4>SelectionEncloserPlugin.activate</h4> <b>activate</b>(<i></i>) + <p> Public method to activate this plugin. -</p><dl> +</p> +<dl> <dt>Returns:</dt> <dd> tuple of None and activation status (boolean) </dd> -</dl><a NAME="SelectionEncloserPlugin.deactivate" ID="SelectionEncloserPlugin.deactivate"></a> +</dl> +<a NAME="SelectionEncloserPlugin.deactivate" ID="SelectionEncloserPlugin.deactivate"></a> <h4>SelectionEncloserPlugin.deactivate</h4> <b>deactivate</b>(<i></i>) + <p> Public method to deactivate this plugin. -</p><a NAME="SelectionEncloserPlugin.getPreferences" ID="SelectionEncloserPlugin.getPreferences"></a> +</p> +<a NAME="SelectionEncloserPlugin.getPreferences" ID="SelectionEncloserPlugin.getPreferences"></a> <h4>SelectionEncloserPlugin.getPreferences</h4> <b>getPreferences</b>(<i>key</i>) + <p> Public method to retrieve the various settings. -</p><dl> +</p> +<dl> + <dt><i>key</i></dt> <dd> the key of the value to get (string) </dd> -</dl><dl> +</dl> +<dl> <dt>Returns:</dt> <dd> the requested setting </dd> -</dl><a NAME="SelectionEncloserPlugin.setPreferences" ID="SelectionEncloserPlugin.setPreferences"></a> +</dl> +<a NAME="SelectionEncloserPlugin.setPreferences" ID="SelectionEncloserPlugin.setPreferences"></a> <h4>SelectionEncloserPlugin.setPreferences</h4> <b>setPreferences</b>(<i>key, value</i>) + <p> Public method to store the various settings. -</p><dl> +</p> +<dl> + <dt><i>key</i></dt> <dd> the key of the setting to be set (string) -</dd><dt><i>value</i></dt> +</dd> +<dt><i>value</i></dt> <dd> the value to be set </dd> </dl> <div align="right"><a href="#top">Up</a></div> -<hr /><hr /> +<hr /> +<hr /> <a NAME="createSelectionEncloserPage" ID="createSelectionEncloserPage"></a> <h2>createSelectionEncloserPage</h2> <b>createSelectionEncloserPage</b>(<i>configDlg</i>) + <p> Module function to create the Selection Encloser configuration page. -</p><dl> +</p> +<dl> + <dt><i>configDlg</i></dt> <dd> reference to the configuration dialog </dd> -</dl><dl> +</dl> +<dl> <dt>Returns:</dt> <dd> reference to the configuration page </dd> </dl> <div align="right"><a href="#top">Up</a></div> -<hr /><hr /> +<hr /> +<hr /> <a NAME="getConfigData" ID="getConfigData"></a> <h2>getConfigData</h2> <b>getConfigData</b>(<i></i>) + <p> Module function returning data as required by the configuration dialog. -</p><dl> +</p> +<dl> <dt>Returns:</dt> <dd> dictionary containing the relevant data </dd> </dl> <div align="right"><a href="#top">Up</a></div> -<hr /><hr /> +<hr /> +<hr /> <a NAME="prepareUninstall" ID="prepareUninstall"></a> <h2>prepareUninstall</h2> <b>prepareUninstall</b>(<i></i>) + <p> Module function to prepare for an uninstallation. </p>
--- a/SelectionEncloser/Documentation/source/Plugin_Tools_Selection_Encloser.SelectionEncloser.ConfigurationPage.SelectionEncloserEditDialog.html Wed Apr 08 19:22:28 2020 +0200 +++ b/SelectionEncloser/Documentation/source/Plugin_Tools_Selection_Encloser.SelectionEncloser.ConfigurationPage.SelectionEncloserEditDialog.html Wed Jun 24 17:36:34 2020 +0200 @@ -18,113 +18,149 @@ </style> </head> -<body><a NAME="top" ID="top"></a> +<body> +<a NAME="top" ID="top"></a> <h1>Plugin_Tools_Selection_Encloser.SelectionEncloser.ConfigurationPage.SelectionEncloserEditDialog</h1> + <p> Module implementing a dialog to edit an enclosing menu entry. </p> <h3>Global Attributes</h3> + <table> <tr><td>None</td></tr> </table> <h3>Classes</h3> + <table> + <tr> <td><a href="#SelectionEncloserEditDialog">SelectionEncloserEditDialog</a></td> <td>Class implementing a dialog to edit an enclosing menu entry.</td> </tr> </table> <h3>Functions</h3> + <table> <tr><td>None</td></tr> </table> -<hr /><hr /> +<hr /> +<hr /> <a NAME="SelectionEncloserEditDialog" ID="SelectionEncloserEditDialog"></a> <h2>SelectionEncloserEditDialog</h2> + <p> Class implementing a dialog to edit an enclosing menu entry. </p> <h3>Derived from</h3> QDialog, Ui_SelectionEncloserEditDialog <h3>Class Attributes</h3> + <table> <tr><td>None</td></tr> </table> <h3>Class Methods</h3> + <table> <tr><td>None</td></tr> </table> <h3>Methods</h3> + <table> + <tr> <td><a href="#SelectionEncloserEditDialog.__init__">SelectionEncloserEditDialog</a></td> <td>Constructor</td> -</tr><tr> +</tr> +<tr> <td><a href="#SelectionEncloserEditDialog.__updateOkButton">__updateOkButton</a></td> <td>Private slot to set the status of the OK button.</td> -</tr><tr> +</tr> +<tr> <td><a href="#SelectionEncloserEditDialog.getData">getData</a></td> <td>Public method to get the dialog data.</td> -</tr><tr> +</tr> +<tr> <td><a href="#SelectionEncloserEditDialog.on_stringEdit_textChanged">on_stringEdit_textChanged</a></td> <td>Private slot to react on changes of the string.</td> -</tr><tr> +</tr> +<tr> <td><a href="#SelectionEncloserEditDialog.on_titleEdit_textChanged">on_titleEdit_textChanged</a></td> <td>Private slot to react on changes of the title.</td> </tr> </table> <h3>Static Methods</h3> + <table> <tr><td>None</td></tr> </table> + <a NAME="SelectionEncloserEditDialog.__init__" ID="SelectionEncloserEditDialog.__init__"></a> <h4>SelectionEncloserEditDialog (Constructor)</h4> <b>SelectionEncloserEditDialog</b>(<i>title="", string="", parent=None</i>) + <p> Constructor -</p><dl> +</p> +<dl> + <dt><i>title</i></dt> <dd> menu entry title (string) -</dd><dt><i>string</i></dt> +</dd> +<dt><i>string</i></dt> <dd> enclosing string or string format expression (string) -</dd><dt><i>parent</i></dt> +</dd> +<dt><i>parent</i></dt> <dd> reference to the parent widget (QWidget) </dd> -</dl><a NAME="SelectionEncloserEditDialog.__updateOkButton" ID="SelectionEncloserEditDialog.__updateOkButton"></a> +</dl> +<a NAME="SelectionEncloserEditDialog.__updateOkButton" ID="SelectionEncloserEditDialog.__updateOkButton"></a> <h4>SelectionEncloserEditDialog.__updateOkButton</h4> <b>__updateOkButton</b>(<i></i>) + <p> Private slot to set the status of the OK button. -</p><a NAME="SelectionEncloserEditDialog.getData" ID="SelectionEncloserEditDialog.getData"></a> +</p> +<a NAME="SelectionEncloserEditDialog.getData" ID="SelectionEncloserEditDialog.getData"></a> <h4>SelectionEncloserEditDialog.getData</h4> <b>getData</b>(<i></i>) + <p> Public method to get the dialog data. -</p><dl> +</p> +<dl> <dt>Returns:</dt> <dd> tuple with menu entry title (string) and enclosing string or string format expression (string) </dd> -</dl><a NAME="SelectionEncloserEditDialog.on_stringEdit_textChanged" ID="SelectionEncloserEditDialog.on_stringEdit_textChanged"></a> +</dl> +<a NAME="SelectionEncloserEditDialog.on_stringEdit_textChanged" ID="SelectionEncloserEditDialog.on_stringEdit_textChanged"></a> <h4>SelectionEncloserEditDialog.on_stringEdit_textChanged</h4> <b>on_stringEdit_textChanged</b>(<i>txt</i>) + <p> Private slot to react on changes of the string. -</p><dl> +</p> +<dl> + <dt><i>txt</i></dt> <dd> enclosing string (string) </dd> -</dl><a NAME="SelectionEncloserEditDialog.on_titleEdit_textChanged" ID="SelectionEncloserEditDialog.on_titleEdit_textChanged"></a> +</dl> +<a NAME="SelectionEncloserEditDialog.on_titleEdit_textChanged" ID="SelectionEncloserEditDialog.on_titleEdit_textChanged"></a> <h4>SelectionEncloserEditDialog.on_titleEdit_textChanged</h4> <b>on_titleEdit_textChanged</b>(<i>txt</i>) + <p> Private slot to react on changes of the title. -</p><dl> +</p> +<dl> + <dt><i>txt</i></dt> <dd> title text (string)
--- a/SelectionEncloser/Documentation/source/Plugin_Tools_Selection_Encloser.SelectionEncloser.ConfigurationPage.SelectionEncloserPage.html Wed Apr 08 19:22:28 2020 +0200 +++ b/SelectionEncloser/Documentation/source/Plugin_Tools_Selection_Encloser.SelectionEncloser.ConfigurationPage.SelectionEncloserPage.html Wed Jun 24 17:36:34 2020 +0200 @@ -18,146 +18,195 @@ </style> </head> -<body><a NAME="top" ID="top"></a> +<body> +<a NAME="top" ID="top"></a> <h1>Plugin_Tools_Selection_Encloser.SelectionEncloser.ConfigurationPage.SelectionEncloserPage</h1> + <p> Module implementing Selection Encloser configuration page. </p> <h3>Global Attributes</h3> + <table> <tr><td>None</td></tr> </table> <h3>Classes</h3> + <table> + <tr> <td><a href="#SelectionEncloserPage">SelectionEncloserPage</a></td> <td>Class implementing Selection Encloser configuration page.</td> </tr> </table> <h3>Functions</h3> + <table> <tr><td>None</td></tr> </table> -<hr /><hr /> +<hr /> +<hr /> <a NAME="SelectionEncloserPage" ID="SelectionEncloserPage"></a> <h2>SelectionEncloserPage</h2> + <p> Class implementing Selection Encloser configuration page. </p> <h3>Derived from</h3> ConfigurationPageBase, Ui_SelectionEncloserPage <h3>Class Attributes</h3> + <table> <tr><td>None</td></tr> </table> <h3>Class Methods</h3> + <table> <tr><td>None</td></tr> </table> <h3>Methods</h3> + <table> + <tr> <td><a href="#SelectionEncloserPage.__init__">SelectionEncloserPage</a></td> <td>Constructor</td> -</tr><tr> +</tr> +<tr> <td><a href="#SelectionEncloserPage.__moveSelectedEntry">__moveSelectedEntry</a></td> <td>Private method to move the selected entry up or down.</td> -</tr><tr> +</tr> +<tr> <td><a href="#SelectionEncloserPage.on_addButton_clicked">on_addButton_clicked</a></td> <td>Private slot to add a menu entry.</td> -</tr><tr> +</tr> +<tr> <td><a href="#SelectionEncloserPage.on_addMenuButton_clicked">on_addMenuButton_clicked</a></td> <td>Private slot to add a top level menu item.</td> -</tr><tr> +</tr> +<tr> <td><a href="#SelectionEncloserPage.on_addSeparatorButton_clicked">on_addSeparatorButton_clicked</a></td> <td>Private slot to add a separator entry below the selected entry.</td> -</tr><tr> +</tr> +<tr> <td><a href="#SelectionEncloserPage.on_deleteButton_clicked">on_deleteButton_clicked</a></td> <td>Private slot to delete the selected entry.</td> -</tr><tr> +</tr> +<tr> <td><a href="#SelectionEncloserPage.on_downButton_clicked">on_downButton_clicked</a></td> <td>Private slot to move an entry down.</td> -</tr><tr> +</tr> +<tr> <td><a href="#SelectionEncloserPage.on_editButton_clicked">on_editButton_clicked</a></td> <td>Private slot to edit the selected entry.</td> -</tr><tr> +</tr> +<tr> <td><a href="#SelectionEncloserPage.on_menuTree_itemSelectionChanged">on_menuTree_itemSelectionChanged</a></td> <td>Private slot handling the selection of an item.</td> -</tr><tr> +</tr> +<tr> <td><a href="#SelectionEncloserPage.on_upButton_clicked">on_upButton_clicked</a></td> <td>Private slot to move an entry up.</td> -</tr><tr> +</tr> +<tr> <td><a href="#SelectionEncloserPage.save">save</a></td> <td>Public slot to save the Selection Encloser configuration.</td> </tr> </table> <h3>Static Methods</h3> + <table> <tr><td>None</td></tr> </table> + <a NAME="SelectionEncloserPage.__init__" ID="SelectionEncloserPage.__init__"></a> <h4>SelectionEncloserPage (Constructor)</h4> <b>SelectionEncloserPage</b>(<i>plugin</i>) + <p> Constructor -</p><dl> +</p> +<dl> + <dt><i>plugin</i></dt> <dd> reference to the plugin object </dd> -</dl><a NAME="SelectionEncloserPage.__moveSelectedEntry" ID="SelectionEncloserPage.__moveSelectedEntry"></a> +</dl> +<a NAME="SelectionEncloserPage.__moveSelectedEntry" ID="SelectionEncloserPage.__moveSelectedEntry"></a> <h4>SelectionEncloserPage.__moveSelectedEntry</h4> <b>__moveSelectedEntry</b>(<i>moveUp</i>) + <p> Private method to move the selected entry up or down. -</p><dl> +</p> +<dl> + <dt><i>moveUp</i></dt> <dd> flag indicating to move the entry up (boolean) </dd> -</dl><a NAME="SelectionEncloserPage.on_addButton_clicked" ID="SelectionEncloserPage.on_addButton_clicked"></a> +</dl> +<a NAME="SelectionEncloserPage.on_addButton_clicked" ID="SelectionEncloserPage.on_addButton_clicked"></a> <h4>SelectionEncloserPage.on_addButton_clicked</h4> <b>on_addButton_clicked</b>(<i></i>) + <p> Private slot to add a menu entry. -</p><a NAME="SelectionEncloserPage.on_addMenuButton_clicked" ID="SelectionEncloserPage.on_addMenuButton_clicked"></a> +</p> +<a NAME="SelectionEncloserPage.on_addMenuButton_clicked" ID="SelectionEncloserPage.on_addMenuButton_clicked"></a> <h4>SelectionEncloserPage.on_addMenuButton_clicked</h4> <b>on_addMenuButton_clicked</b>(<i></i>) + <p> Private slot to add a top level menu item. -</p><a NAME="SelectionEncloserPage.on_addSeparatorButton_clicked" ID="SelectionEncloserPage.on_addSeparatorButton_clicked"></a> +</p> +<a NAME="SelectionEncloserPage.on_addSeparatorButton_clicked" ID="SelectionEncloserPage.on_addSeparatorButton_clicked"></a> <h4>SelectionEncloserPage.on_addSeparatorButton_clicked</h4> <b>on_addSeparatorButton_clicked</b>(<i></i>) + <p> Private slot to add a separator entry below the selected entry. -</p><a NAME="SelectionEncloserPage.on_deleteButton_clicked" ID="SelectionEncloserPage.on_deleteButton_clicked"></a> +</p> +<a NAME="SelectionEncloserPage.on_deleteButton_clicked" ID="SelectionEncloserPage.on_deleteButton_clicked"></a> <h4>SelectionEncloserPage.on_deleteButton_clicked</h4> <b>on_deleteButton_clicked</b>(<i></i>) + <p> Private slot to delete the selected entry. -</p><a NAME="SelectionEncloserPage.on_downButton_clicked" ID="SelectionEncloserPage.on_downButton_clicked"></a> +</p> +<a NAME="SelectionEncloserPage.on_downButton_clicked" ID="SelectionEncloserPage.on_downButton_clicked"></a> <h4>SelectionEncloserPage.on_downButton_clicked</h4> <b>on_downButton_clicked</b>(<i></i>) + <p> Private slot to move an entry down. -</p><a NAME="SelectionEncloserPage.on_editButton_clicked" ID="SelectionEncloserPage.on_editButton_clicked"></a> +</p> +<a NAME="SelectionEncloserPage.on_editButton_clicked" ID="SelectionEncloserPage.on_editButton_clicked"></a> <h4>SelectionEncloserPage.on_editButton_clicked</h4> <b>on_editButton_clicked</b>(<i></i>) + <p> Private slot to edit the selected entry. -</p><a NAME="SelectionEncloserPage.on_menuTree_itemSelectionChanged" ID="SelectionEncloserPage.on_menuTree_itemSelectionChanged"></a> +</p> +<a NAME="SelectionEncloserPage.on_menuTree_itemSelectionChanged" ID="SelectionEncloserPage.on_menuTree_itemSelectionChanged"></a> <h4>SelectionEncloserPage.on_menuTree_itemSelectionChanged</h4> <b>on_menuTree_itemSelectionChanged</b>(<i></i>) + <p> Private slot handling the selection of an item. -</p><a NAME="SelectionEncloserPage.on_upButton_clicked" ID="SelectionEncloserPage.on_upButton_clicked"></a> +</p> +<a NAME="SelectionEncloserPage.on_upButton_clicked" ID="SelectionEncloserPage.on_upButton_clicked"></a> <h4>SelectionEncloserPage.on_upButton_clicked</h4> <b>on_upButton_clicked</b>(<i></i>) + <p> Private slot to move an entry up. -</p><a NAME="SelectionEncloserPage.save" ID="SelectionEncloserPage.save"></a> +</p> +<a NAME="SelectionEncloserPage.save" ID="SelectionEncloserPage.save"></a> <h4>SelectionEncloserPage.save</h4> <b>save</b>(<i></i>) + <p> Public slot to save the Selection Encloser configuration. </p>
--- a/SelectionEncloser/Documentation/source/index-Plugin_Tools_Selection_Encloser.SelectionEncloser.ConfigurationPage.html Wed Apr 08 19:22:28 2020 +0200 +++ b/SelectionEncloser/Documentation/source/index-Plugin_Tools_Selection_Encloser.SelectionEncloser.ConfigurationPage.html Wed Jun 24 17:36:34 2020 +0200 @@ -20,6 +20,7 @@ </head> <body> <h1>Plugin_Tools_Selection_Encloser.SelectionEncloser.ConfigurationPage</h1> + <p> Package implementing the Selection Encloser plug-in configuration page. </p> @@ -27,10 +28,12 @@ <h3>Modules</h3> <table> + <tr> <td><a href="Plugin_Tools_Selection_Encloser.SelectionEncloser.ConfigurationPage.SelectionEncloserEditDialog.html">SelectionEncloserEditDialog</a></td> <td>Module implementing a dialog to edit an enclosing menu entry.</td> -</tr><tr> +</tr> +<tr> <td><a href="Plugin_Tools_Selection_Encloser.SelectionEncloser.ConfigurationPage.SelectionEncloserPage.html">SelectionEncloserPage</a></td> <td>Module implementing Selection Encloser configuration page.</td> </tr>
--- a/SelectionEncloser/Documentation/source/index-Plugin_Tools_Selection_Encloser.SelectionEncloser.html Wed Apr 08 19:22:28 2020 +0200 +++ b/SelectionEncloser/Documentation/source/index-Plugin_Tools_Selection_Encloser.SelectionEncloser.html Wed Jun 24 17:36:34 2020 +0200 @@ -20,6 +20,7 @@ </head> <body> <h1>Plugin_Tools_Selection_Encloser.SelectionEncloser</h1> + <p> Package implementing the Selection Encloser plug-in data and configuration dialog. @@ -27,6 +28,7 @@ <h3>Packages</h3> <table> + <tr> <td><a href="index-Plugin_Tools_Selection_Encloser.SelectionEncloser.ConfigurationPage.html">ConfigurationPage</a></td> <td>Package implementing the Selection Encloser plug-in configuration page.</td>
--- a/SelectionEncloser/Documentation/source/index-Plugin_Tools_Selection_Encloser.html Wed Apr 08 19:22:28 2020 +0200 +++ b/SelectionEncloser/Documentation/source/index-Plugin_Tools_Selection_Encloser.html Wed Jun 24 17:36:34 2020 +0200 @@ -20,12 +20,14 @@ </head> <body> <h1>Plugin_Tools_Selection_Encloser</h1> + <p> Package implementing the Selection Encloser plug-in. </p> <h3>Packages</h3> <table> + <tr> <td><a href="index-Plugin_Tools_Selection_Encloser.SelectionEncloser.html">SelectionEncloser</a></td> <td>Package implementing the Selection Encloser plug-in data and configuration dialog.</td> @@ -34,6 +36,7 @@ <h3>Modules</h3> <table> + <tr> <td><a href="Plugin_Tools_Selection_Encloser.PluginSelectionEncloser.html">PluginSelectionEncloser</a></td> <td>Module implementing the Selection Encloser plug-in.</td>
--- a/SelectionEncloser/Documentation/source/index.html Wed Apr 08 19:22:28 2020 +0200 +++ b/SelectionEncloser/Documentation/source/index.html Wed Jun 24 17:36:34 2020 +0200 @@ -24,6 +24,7 @@ <h3>Packages</h3> <table> + <tr> <td><a href="index-Plugin_Tools_Selection_Encloser.html">Plugin_Tools_Selection_Encloser</a></td> <td>Package implementing the Selection Encloser plug-in.</td>
--- a/SelectionEncloser/i18n/selectionencloser_de.ts Wed Apr 08 19:22:28 2020 +0200 +++ b/SelectionEncloser/i18n/selectionencloser_de.ts Wed Jun 24 17:36:34 2020 +0200 @@ -3,32 +3,32 @@ <context> <name>SelectionEncloserEditDialog</name> <message> - <location filename="../../SelectionEncloser/ConfigurationPage/SelectionEncloserEditDialog.ui" line="14"/> + <location filename="../ConfigurationPage/SelectionEncloserEditDialog.ui" line="14"/> <source>Menu Entry</source> <translation>Menüeintrag</translation> </message> <message> - <location filename="../../SelectionEncloser/ConfigurationPage/SelectionEncloserEditDialog.ui" line="23"/> + <location filename="../ConfigurationPage/SelectionEncloserEditDialog.ui" line="23"/> <source>Title:</source> <translation>Titel:</translation> </message> <message> - <location filename="../../SelectionEncloser/ConfigurationPage/SelectionEncloserEditDialog.ui" line="30"/> + <location filename="../ConfigurationPage/SelectionEncloserEditDialog.ui" line="30"/> <source>Enter the menu entry title</source> <translation>Gib den Titel des Menüeintrages ein</translation> </message> <message> - <location filename="../../SelectionEncloser/ConfigurationPage/SelectionEncloserEditDialog.ui" line="37"/> + <location filename="../ConfigurationPage/SelectionEncloserEditDialog.ui" line="37"/> <source>String:</source> <translation>Zeichenkette:</translation> </message> <message> - <location filename="../../SelectionEncloser/ConfigurationPage/SelectionEncloserEditDialog.ui" line="44"/> + <location filename="../ConfigurationPage/SelectionEncloserEditDialog.ui" line="44"/> <source>Enter the enclosing string or string format expression</source> <translation>Gib die einschließende Zeichenkette oder die Zeichenkettenformatierung ein</translation> </message> <message> - <location filename="../../SelectionEncloser/ConfigurationPage/SelectionEncloserEditDialog.ui" line="51"/> + <location filename="../ConfigurationPage/SelectionEncloserEditDialog.ui" line="51"/> <source><b>Note</b>: '%s' or '{0}' is replace by the selected text</source> <translation><b>Hinweis</b>: '%s' oder '{0}' werden mit dem ausgewählten Text ersetzt</translation> </message> @@ -36,72 +36,72 @@ <context> <name>SelectionEncloserPage</name> <message> - <location filename="../../SelectionEncloser/ConfigurationPage/SelectionEncloserPage.ui" line="17"/> + <location filename="../ConfigurationPage/SelectionEncloserPage.ui" line="17"/> <source><b>Configure Selection Encloser</b></source> <translation><b>Auswahlumschließung konfigurieren</b></translation> </message> <message> - <location filename="../../SelectionEncloser/ConfigurationPage/SelectionEncloserPage.ui" line="37"/> + <location filename="../ConfigurationPage/SelectionEncloserPage.ui" line="37"/> <source>Menu Hierarchy:</source> <translation>Menühierarchie:</translation> </message> <message> - <location filename="../../SelectionEncloser/ConfigurationPage/SelectionEncloserPage.ui" line="61"/> + <location filename="../ConfigurationPage/SelectionEncloserPage.ui" line="61"/> <source>Press to edit the selected entry</source> <translation>Drücken, um den ausgewählten Eintrag zu editieren</translation> </message> <message> - <location filename="../../SelectionEncloser/ConfigurationPage/SelectionEncloserPage.ui" line="68"/> + <location filename="../ConfigurationPage/SelectionEncloserPage.ui" line="68"/> <source>Press to add a new top level menu item</source> <translation>Drücken, um einen neuen Hauptmenüeintrag zu erstellen</translation> </message> <message> - <location filename="../../SelectionEncloser/ConfigurationPage/SelectionEncloserPage.ui" line="75"/> + <location filename="../ConfigurationPage/SelectionEncloserPage.ui" line="75"/> <source>Press to add a new menu item</source> <translation>Drücken, um einen neuen Menüeintrag zu erstellen</translation> </message> <message> - <location filename="../../SelectionEncloser/ConfigurationPage/SelectionEncloserPage.ui" line="89"/> + <location filename="../ConfigurationPage/SelectionEncloserPage.ui" line="89"/> <source>Press to delete the selected item</source> <translation>Drücken, um den ausgewählten Eintrag zu löschen</translation> </message> <message> - <location filename="../../SelectionEncloser/ConfigurationPage/SelectionEncloserPage.ui" line="96"/> + <location filename="../ConfigurationPage/SelectionEncloserPage.ui" line="96"/> <source>Press to move the selected entry up</source> <translation>Drücken, um den ausgewählten Eintrag nach oben zu verschieben</translation> </message> <message> - <location filename="../../SelectionEncloser/ConfigurationPage/SelectionEncloserPage.ui" line="103"/> + <location filename="../ConfigurationPage/SelectionEncloserPage.ui" line="103"/> <source>Press to move the selected entry down</source> <translation>Drücken, um den ausgewählten Eintrag nach unten zu verschieben</translation> </message> <message> - <location filename="../../SelectionEncloser/ConfigurationPage/SelectionEncloserPage.py" line="96"/> + <location filename="../ConfigurationPage/SelectionEncloserPage.py" line="112"/> <source>Menu Title</source> <translation>Menutitel</translation> </message> <message> - <location filename="../../SelectionEncloser/ConfigurationPage/SelectionEncloserPage.py" line="96"/> + <location filename="../ConfigurationPage/SelectionEncloserPage.py" line="112"/> <source>Enter menu title:</source> <translation>Gib den Menütitel ein:</translation> </message> <message> - <location filename="../../SelectionEncloser/ConfigurationPage/SelectionEncloserPage.py" line="196"/> + <location filename="../ConfigurationPage/SelectionEncloserPage.py" line="212"/> <source>Menu Entry</source> <translation>Menüeintrag</translation> </message> <message> - <location filename="../../SelectionEncloser/ConfigurationPage/SelectionEncloserPage.py" line="196"/> + <location filename="../ConfigurationPage/SelectionEncloserPage.py" line="212"/> <source>Enter menu entry text:</source> <translation>Gib den Menüeintrag ein:</translation> </message> <message> - <location filename="../../SelectionEncloser/ConfigurationPage/SelectionEncloserPage.ui" line="82"/> + <location filename="../ConfigurationPage/SelectionEncloserPage.ui" line="82"/> <source>Press to add a separator entry below the selected entry</source> <translation>Drücken, um eine Trennlinie nach dem ausgewählten Eintrag einzufügen</translation> </message> <message> - <location filename="../../SelectionEncloser/ConfigurationPage/SelectionEncloserPage.py" line="252"/> + <location filename="../ConfigurationPage/SelectionEncloserPage.py" line="270"/> <source>--Separator--</source> <translation>--Trennlinie--</translation> </message> @@ -109,17 +109,17 @@ <context> <name>SelectionEncloserPlugin</name> <message> - <location filename="../../PluginSelectionEncloser.py" line="69"/> + <location filename="../../PluginSelectionEncloser.py" line="77"/> <source>Selection Encloser</source> <translation>Auswahlumschließung</translation> </message> <message> - <location filename="../../PluginSelectionEncloser.py" line="106"/> + <location filename="../../PluginSelectionEncloser.py" line="112"/> <source>Quotes</source> <translation>Anführungszeichen</translation> </message> <message> - <location filename="../../PluginSelectionEncloser.py" line="112"/> + <location filename="../../PluginSelectionEncloser.py" line="118"/> <source>HTML</source> <translation>HTML</translation> </message>
--- a/SelectionEncloser/i18n/selectionencloser_en.ts Wed Apr 08 19:22:28 2020 +0200 +++ b/SelectionEncloser/i18n/selectionencloser_en.ts Wed Jun 24 17:36:34 2020 +0200 @@ -3,32 +3,32 @@ <context> <name>SelectionEncloserEditDialog</name> <message> - <location filename="../../SelectionEncloser/ConfigurationPage/SelectionEncloserEditDialog.ui" line="14"/> + <location filename="../ConfigurationPage/SelectionEncloserEditDialog.ui" line="14"/> <source>Menu Entry</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../SelectionEncloser/ConfigurationPage/SelectionEncloserEditDialog.ui" line="23"/> + <location filename="../ConfigurationPage/SelectionEncloserEditDialog.ui" line="23"/> <source>Title:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../SelectionEncloser/ConfigurationPage/SelectionEncloserEditDialog.ui" line="30"/> + <location filename="../ConfigurationPage/SelectionEncloserEditDialog.ui" line="30"/> <source>Enter the menu entry title</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../SelectionEncloser/ConfigurationPage/SelectionEncloserEditDialog.ui" line="37"/> + <location filename="../ConfigurationPage/SelectionEncloserEditDialog.ui" line="37"/> <source>String:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../SelectionEncloser/ConfigurationPage/SelectionEncloserEditDialog.ui" line="44"/> + <location filename="../ConfigurationPage/SelectionEncloserEditDialog.ui" line="44"/> <source>Enter the enclosing string or string format expression</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../SelectionEncloser/ConfigurationPage/SelectionEncloserEditDialog.ui" line="51"/> + <location filename="../ConfigurationPage/SelectionEncloserEditDialog.ui" line="51"/> <source><b>Note</b>: '%s' or '{0}' is replace by the selected text</source> <translation type="unfinished"></translation> </message> @@ -36,72 +36,72 @@ <context> <name>SelectionEncloserPage</name> <message> - <location filename="../../SelectionEncloser/ConfigurationPage/SelectionEncloserPage.ui" line="17"/> + <location filename="../ConfigurationPage/SelectionEncloserPage.ui" line="17"/> <source><b>Configure Selection Encloser</b></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../SelectionEncloser/ConfigurationPage/SelectionEncloserPage.ui" line="37"/> + <location filename="../ConfigurationPage/SelectionEncloserPage.ui" line="37"/> <source>Menu Hierarchy:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../SelectionEncloser/ConfigurationPage/SelectionEncloserPage.ui" line="61"/> + <location filename="../ConfigurationPage/SelectionEncloserPage.ui" line="61"/> <source>Press to edit the selected entry</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../SelectionEncloser/ConfigurationPage/SelectionEncloserPage.ui" line="68"/> + <location filename="../ConfigurationPage/SelectionEncloserPage.ui" line="68"/> <source>Press to add a new top level menu item</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../SelectionEncloser/ConfigurationPage/SelectionEncloserPage.ui" line="75"/> + <location filename="../ConfigurationPage/SelectionEncloserPage.ui" line="75"/> <source>Press to add a new menu item</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../SelectionEncloser/ConfigurationPage/SelectionEncloserPage.ui" line="89"/> + <location filename="../ConfigurationPage/SelectionEncloserPage.ui" line="89"/> <source>Press to delete the selected item</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../SelectionEncloser/ConfigurationPage/SelectionEncloserPage.ui" line="96"/> + <location filename="../ConfigurationPage/SelectionEncloserPage.ui" line="96"/> <source>Press to move the selected entry up</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../SelectionEncloser/ConfigurationPage/SelectionEncloserPage.ui" line="103"/> + <location filename="../ConfigurationPage/SelectionEncloserPage.ui" line="103"/> <source>Press to move the selected entry down</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../SelectionEncloser/ConfigurationPage/SelectionEncloserPage.py" line="96"/> + <location filename="../ConfigurationPage/SelectionEncloserPage.py" line="112"/> <source>Menu Title</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../SelectionEncloser/ConfigurationPage/SelectionEncloserPage.py" line="96"/> + <location filename="../ConfigurationPage/SelectionEncloserPage.py" line="112"/> <source>Enter menu title:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../SelectionEncloser/ConfigurationPage/SelectionEncloserPage.py" line="196"/> + <location filename="../ConfigurationPage/SelectionEncloserPage.py" line="212"/> <source>Menu Entry</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../SelectionEncloser/ConfigurationPage/SelectionEncloserPage.py" line="196"/> + <location filename="../ConfigurationPage/SelectionEncloserPage.py" line="212"/> <source>Enter menu entry text:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../SelectionEncloser/ConfigurationPage/SelectionEncloserPage.ui" line="82"/> + <location filename="../ConfigurationPage/SelectionEncloserPage.ui" line="82"/> <source>Press to add a separator entry below the selected entry</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../SelectionEncloser/ConfigurationPage/SelectionEncloserPage.py" line="252"/> + <location filename="../ConfigurationPage/SelectionEncloserPage.py" line="270"/> <source>--Separator--</source> <translation type="unfinished"></translation> </message> @@ -109,17 +109,17 @@ <context> <name>SelectionEncloserPlugin</name> <message> - <location filename="../../PluginSelectionEncloser.py" line="69"/> + <location filename="../../PluginSelectionEncloser.py" line="77"/> <source>Selection Encloser</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../PluginSelectionEncloser.py" line="106"/> + <location filename="../../PluginSelectionEncloser.py" line="112"/> <source>Quotes</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../PluginSelectionEncloser.py" line="112"/> + <location filename="../../PluginSelectionEncloser.py" line="118"/> <source>HTML</source> <translation type="unfinished"></translation> </message>
--- a/SelectionEncloser/i18n/selectionencloser_es.ts Wed Apr 08 19:22:28 2020 +0200 +++ b/SelectionEncloser/i18n/selectionencloser_es.ts Wed Jun 24 17:36:34 2020 +0200 @@ -3,32 +3,32 @@ <context> <name>SelectionEncloserEditDialog</name> <message> - <location filename="../../SelectionEncloser/ConfigurationPage/SelectionEncloserEditDialog.ui" line="14"/> + <location filename="../ConfigurationPage/SelectionEncloserEditDialog.ui" line="14"/> <source>Menu Entry</source> <translation>Entrada de Menú</translation> </message> <message> - <location filename="../../SelectionEncloser/ConfigurationPage/SelectionEncloserEditDialog.ui" line="23"/> + <location filename="../ConfigurationPage/SelectionEncloserEditDialog.ui" line="23"/> <source>Title:</source> <translation>Título:</translation> </message> <message> - <location filename="../../SelectionEncloser/ConfigurationPage/SelectionEncloserEditDialog.ui" line="30"/> + <location filename="../ConfigurationPage/SelectionEncloserEditDialog.ui" line="30"/> <source>Enter the menu entry title</source> <translation>Introducir el título de la entrada de menú</translation> </message> <message> - <location filename="../../SelectionEncloser/ConfigurationPage/SelectionEncloserEditDialog.ui" line="37"/> + <location filename="../ConfigurationPage/SelectionEncloserEditDialog.ui" line="37"/> <source>String:</source> <translation>Cadena:</translation> </message> <message> - <location filename="../../SelectionEncloser/ConfigurationPage/SelectionEncloserEditDialog.ui" line="44"/> + <location filename="../ConfigurationPage/SelectionEncloserEditDialog.ui" line="44"/> <source>Enter the enclosing string or string format expression</source> <translation>Introducir la cadena de cierre o la expresión de formato de cadena</translation> </message> <message> - <location filename="../../SelectionEncloser/ConfigurationPage/SelectionEncloserEditDialog.ui" line="51"/> + <location filename="../ConfigurationPage/SelectionEncloserEditDialog.ui" line="51"/> <source><b>Note</b>: '%s' or '{0}' is replace by the selected text</source> <translation><b>Nota</b>: '%s' o '{0}' se reemplaza por el texto seleccionado</translation> </message> @@ -36,72 +36,72 @@ <context> <name>SelectionEncloserPage</name> <message> - <location filename="../../SelectionEncloser/ConfigurationPage/SelectionEncloserPage.ui" line="17"/> + <location filename="../ConfigurationPage/SelectionEncloserPage.ui" line="17"/> <source><b>Configure Selection Encloser</b></source> <translation><b>Configurar Cierre de Selección</b></translation> </message> <message> - <location filename="../../SelectionEncloser/ConfigurationPage/SelectionEncloserPage.ui" line="37"/> + <location filename="../ConfigurationPage/SelectionEncloserPage.ui" line="37"/> <source>Menu Hierarchy:</source> <translation>Jerarquía de Menú:</translation> </message> <message> - <location filename="../../SelectionEncloser/ConfigurationPage/SelectionEncloserPage.ui" line="61"/> + <location filename="../ConfigurationPage/SelectionEncloserPage.ui" line="61"/> <source>Press to edit the selected entry</source> <translation>Pulsar para editar la entrada seleccinada</translation> </message> <message> - <location filename="../../SelectionEncloser/ConfigurationPage/SelectionEncloserPage.ui" line="68"/> + <location filename="../ConfigurationPage/SelectionEncloserPage.ui" line="68"/> <source>Press to add a new top level menu item</source> <translation>Pulsar para añadir un nuevo elemento de menú de nivel superior</translation> </message> <message> - <location filename="../../SelectionEncloser/ConfigurationPage/SelectionEncloserPage.ui" line="75"/> + <location filename="../ConfigurationPage/SelectionEncloserPage.ui" line="75"/> <source>Press to add a new menu item</source> <translation>Pulsar para añadir un nuevo elemento de menú</translation> </message> <message> - <location filename="../../SelectionEncloser/ConfigurationPage/SelectionEncloserPage.ui" line="89"/> + <location filename="../ConfigurationPage/SelectionEncloserPage.ui" line="89"/> <source>Press to delete the selected item</source> <translation>Pulsar para borrar el elemento seleccinado</translation> </message> <message> - <location filename="../../SelectionEncloser/ConfigurationPage/SelectionEncloserPage.ui" line="96"/> + <location filename="../ConfigurationPage/SelectionEncloserPage.ui" line="96"/> <source>Press to move the selected entry up</source> <translation>Pulsar para mover la entrada seleccionada hacia arriba</translation> </message> <message> - <location filename="../../SelectionEncloser/ConfigurationPage/SelectionEncloserPage.ui" line="103"/> + <location filename="../ConfigurationPage/SelectionEncloserPage.ui" line="103"/> <source>Press to move the selected entry down</source> <translation>Pulsar para mover la entrada seleccionada hacia abajo</translation> </message> <message> - <location filename="../../SelectionEncloser/ConfigurationPage/SelectionEncloserPage.py" line="96"/> + <location filename="../ConfigurationPage/SelectionEncloserPage.py" line="112"/> <source>Menu Title</source> <translation>Título de Menú</translation> </message> <message> - <location filename="../../SelectionEncloser/ConfigurationPage/SelectionEncloserPage.py" line="96"/> + <location filename="../ConfigurationPage/SelectionEncloserPage.py" line="112"/> <source>Enter menu title:</source> <translation>Introducir el título del menú:</translation> </message> <message> - <location filename="../../SelectionEncloser/ConfigurationPage/SelectionEncloserPage.py" line="196"/> + <location filename="../ConfigurationPage/SelectionEncloserPage.py" line="212"/> <source>Menu Entry</source> <translation>Entrada de Menú</translation> </message> <message> - <location filename="../../SelectionEncloser/ConfigurationPage/SelectionEncloserPage.py" line="196"/> + <location filename="../ConfigurationPage/SelectionEncloserPage.py" line="212"/> <source>Enter menu entry text:</source> <translation>Introducir el texto de la entrada de menú:</translation> </message> <message> - <location filename="../../SelectionEncloser/ConfigurationPage/SelectionEncloserPage.ui" line="82"/> + <location filename="../ConfigurationPage/SelectionEncloserPage.ui" line="82"/> <source>Press to add a separator entry below the selected entry</source> <translation>Pulsar para añadir una entrada de separador bajo la entrada seleccionada</translation> </message> <message> - <location filename="../../SelectionEncloser/ConfigurationPage/SelectionEncloserPage.py" line="252"/> + <location filename="../ConfigurationPage/SelectionEncloserPage.py" line="270"/> <source>--Separator--</source> <translation>--Separador--</translation> </message> @@ -109,17 +109,17 @@ <context> <name>SelectionEncloserPlugin</name> <message> - <location filename="../../PluginSelectionEncloser.py" line="69"/> + <location filename="../../PluginSelectionEncloser.py" line="77"/> <source>Selection Encloser</source> <translation>Cierre de Selección</translation> </message> <message> - <location filename="../../PluginSelectionEncloser.py" line="106"/> + <location filename="../../PluginSelectionEncloser.py" line="112"/> <source>Quotes</source> <translation>Comillas</translation> </message> <message> - <location filename="../../PluginSelectionEncloser.py" line="112"/> + <location filename="../../PluginSelectionEncloser.py" line="118"/> <source>HTML</source> <translation>HTML</translation> </message>
--- a/SelectionEncloser/i18n/selectionencloser_ru.ts Wed Apr 08 19:22:28 2020 +0200 +++ b/SelectionEncloser/i18n/selectionencloser_ru.ts Wed Jun 24 17:36:34 2020 +0200 @@ -76,22 +76,22 @@ <translation>Переместить выбранный пункт вниз</translation> </message> <message> - <location filename="../ConfigurationPage/SelectionEncloserPage.py" line="96"/> + <location filename="../ConfigurationPage/SelectionEncloserPage.py" line="112"/> <source>Menu Title</source> <translation>Заголовок меню</translation> </message> <message> - <location filename="../ConfigurationPage/SelectionEncloserPage.py" line="96"/> + <location filename="../ConfigurationPage/SelectionEncloserPage.py" line="112"/> <source>Enter menu title:</source> <translation>Введите заголовок меню:</translation> </message> <message> - <location filename="../ConfigurationPage/SelectionEncloserPage.py" line="196"/> + <location filename="../ConfigurationPage/SelectionEncloserPage.py" line="212"/> <source>Menu Entry</source> <translation>Пункт меню</translation> </message> <message> - <location filename="../ConfigurationPage/SelectionEncloserPage.py" line="196"/> + <location filename="../ConfigurationPage/SelectionEncloserPage.py" line="212"/> <source>Enter menu entry text:</source> <translation>Введите текст пункта меню:</translation> </message> @@ -101,7 +101,7 @@ <translation>Добавить разделитель ниже выбранного пункта</translation> </message> <message> - <location filename="../ConfigurationPage/SelectionEncloserPage.py" line="252"/> + <location filename="../ConfigurationPage/SelectionEncloserPage.py" line="270"/> <source>--Separator--</source> <translation>--Separator--</translation> </message> @@ -109,17 +109,17 @@ <context> <name>SelectionEncloserPlugin</name> <message> - <location filename="../../PluginSelectionEncloser.py" line="69"/> + <location filename="../../PluginSelectionEncloser.py" line="77"/> <source>Selection Encloser</source> <translation>Selection Encloser</translation> </message> <message> - <location filename="../../PluginSelectionEncloser.py" line="106"/> + <location filename="../../PluginSelectionEncloser.py" line="112"/> <source>Quotes</source> <translation>Кавычки</translation> </message> <message> - <location filename="../../PluginSelectionEncloser.py" line="112"/> + <location filename="../../PluginSelectionEncloser.py" line="118"/> <source>HTML</source> <translation>HTML</translation> </message>