Mon, 22 Jun 2020 18:08:10 +0200
Removed support for Python2.
--- a/ChangeLog Sat May 02 15:05:16 2020 +0200 +++ b/ChangeLog Mon Jun 22 18:08:10 2020 +0200 @@ -1,5 +1,8 @@ ChangeLog --------- +Version 7.0.0 +- removed support for Python2 + Version 6.12.1: - updated Russian translations
--- a/PluginRefactoringRope.py Sat May 02 15:05:16 2020 +0200 +++ b/PluginRefactoringRope.py Mon Jun 22 18:08:10 2020 +0200 @@ -23,7 +23,7 @@ author = "Detlev Offenbach <detlev@die-offenbachs.de>" autoactivate = True deactivateable = True -version = "6.12.1" +version = "7.0.0" className = "RefactoringRopePlugin" packageName = "RefactoringRope" internalPackages = "rope" @@ -36,7 +36,6 @@ ) pyqtApi = 2 doNotCompile = True -python2Compatible = True # End-Of-Header error = "" @@ -303,8 +302,7 @@ @return list of valid language strings @rtype list of str """ - return ["Python", "Python2", "Python3", "Pygments|Python", - "Pygments|Python 3"] + return ["Python3", "Pygments|Python 3", "MicroPython"] def __editorOpened(self, editor): """
--- a/PluginRope.e4p Sat May 02 15:05:16 2020 +0200 +++ b/PluginRope.e4p Mon Jun 22 18:08:10 2020 +0200 @@ -479,6 +479,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> @@ -488,7 +494,7 @@ <string>ExcludeMessages</string> </key> <value> - <string>A, C101, E265, E266, E305, E402, M201, M301, M302, M303, M304, M305, M306, M307, M308, M311, M312, M313, M314, M315, M321, M701, M702, M811, M834, N802, N803, N807, N808, N821, W293, W504, A</string> + <string>C101,E265,E266,E305,E402,M201,M301,M302,M303,M304,M305,M306,M307,M308,M311,M312,M313,M314,M315,M321,M701,M702,M811,M834,N802,N803,N807,N808,N821,W293,W504</string> </value> <key> <string>FixCodes</string> @@ -563,6 +569,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/RefactoringRope/CodeAssistClient.py Sat May 02 15:05:16 2020 +0200 +++ b/RefactoringRope/CodeAssistClient.py Mon Jun 22 18:08:10 2020 +0200 @@ -246,7 +246,7 @@ cts = rope.contrib.codeassist.get_calltip( self.__project, source, offset, resource, maxfixes=maxfixes, remove_self=True) - except Exception: + except Exception: # secok pass if cts is not None: @@ -437,7 +437,7 @@ try: rope.base.libutils.report_change( self.__project, filename, oldSource) - except Exception: + except Exception: # secok # simply ignore it pass
--- a/RefactoringRope/CodeAssistServer.py Sat May 02 15:05:16 2020 +0200 +++ b/RefactoringRope/CodeAssistServer.py Mon Jun 22 18:08:10 2020 +0200 @@ -99,9 +99,6 @@ "<unknown>": self.tr("not known"), } - # Python 2 - self.__ensureActive("Python2") - # Python 3 self.__ensureActive("Python3") @@ -120,13 +117,7 @@ """ self.__editorLanguageMapping = {} for name in self.connectionNames(): - if name == "Python2": - self.__editorLanguageMapping.update({ - "Python": "Python2", - "Python2": "Python2", - "Pygments|Python": "Python2", - }) - elif name == "Python3": + if name == "Python3": self.__editorLanguageMapping.update({ "Python3": "Python3", "Pygments|Python 3": "Python3", @@ -670,64 +661,26 @@ venvName = "" clientEnv = os.environ.copy() if "PATH" in clientEnv: - try: - clientEnv["PATH"] = self.__ui.getOriginalPathString() - except AttributeError: - # ignore for eric6 < 18.12 - pass - try: - # new code using virtual environments - venvManager = e5App().getObject("VirtualEnvManager") - if idString == "Python2": - # Python 2 - venvName = Preferences.getDebugger("Python2VirtualEnv") - if not venvName and sys.version_info[0] == 2: - try: - venvName, _ = ( - venvManager.getDefaultEnvironment() - ) - except AttributeError: - # ignore for eric6 < 18.10 - pass - elif idString == "Python3": - # Python 3 - venvName = Preferences.getDebugger("Python3VirtualEnv") - if not venvName and sys.version_info[0] >= 3: - try: - venvName, _ = ( - venvManager.getDefaultEnvironment() - ) - except AttributeError: - # ignore for eric6 < 18.10 - pass - if venvName: - interpreter = venvManager.getVirtualenvInterpreter( - venvName) - - try: - execPath = venvManager.getVirtualenvExecPath( - venvName) - except AttributeError: - # eric6 < 18.12 - execPath = "" - - # build a suitable environment - if execPath: - if "PATH" in clientEnv: - clientEnv["PATH"] = os.pathsep.join( - [execPath, clientEnv["PATH"]]) - else: - clientEnv["PATH"] = execPath - except KeyError: - # backward compatibility (eric <18.07) - if idString == "Python2": - # Python 2 - interpreter = Preferences.getDebugger( - "PythonInterpreter") - elif idString == "Python3": - # Python 3 - interpreter = Preferences.getDebugger( - "Python3Interpreter") + clientEnv["PATH"] = self.__ui.getOriginalPathString() + venvManager = e5App().getObject("VirtualEnvManager") + if idString == "Python3": + # Python 3 + venvName = Preferences.getDebugger("Python3VirtualEnv") + if not venvName and sys.version_info[0] >= 3: + venvName, _ = venvManager.getDefaultEnvironment() + if venvName: + interpreter = venvManager.getVirtualenvInterpreter( + venvName) + + execPath = venvManager.getVirtualenvExecPath(venvName) + + # build a suitable environment + if execPath: + if "PATH" in clientEnv: + clientEnv["PATH"] = os.pathsep.join( + [execPath, clientEnv["PATH"]]) + else: + clientEnv["PATH"] = execPath if interpreter: ok = self.__startCodeAssistClient(interpreter, idString, clientEnv) @@ -763,18 +716,7 @@ venvName = self.__e5project.getDebugProperty("VIRTUALENV") if not venvName: # get it from debugger settings next - if projectLanguage == "Python2": - # Python 2 - venvName = Preferences.getDebugger("Python2VirtualEnv") - if not venvName and sys.version_info[0] == 2: - try: - venvName, _ = ( - venvManager.getDefaultEnvironment() - ) - except AttributeError: - # ignore for eric6 < 18.10 - pass - elif projectLanguage == "Python3": + if projectLanguage == "Python3": # Python 3 venvName = Preferences.getDebugger("Python3VirtualEnv") if not venvName and sys.version_info[0] >= 3: @@ -811,10 +753,7 @@ interpreter = self.__e5project.getDebugProperty("INTERPRETER") if not interpreter or not Utilities.isinpath(interpreter): # get it from debugger settings second - if projectLanguage == "Python2": - interpreter = Preferences.getDebugger( - "PythonInterpreter") - elif projectLanguage == "Python3": + if projectLanguage == "Python3": interpreter = Preferences.getDebugger( "Python3Interpreter")
--- a/RefactoringRope/ConfigurationPage/AutoCompletionRopePage.py Sat May 02 15:05:16 2020 +0200 +++ b/RefactoringRope/ConfigurationPage/AutoCompletionRopePage.py Mon Jun 22 18:08:10 2020 +0200 @@ -54,17 +54,9 @@ Public slot to perform some polishing actions. """ names = self.__plugin.getCodeAssistServer().connectionNames() - self.python2Button.setEnabled("Python2" in names) self.python3Button.setEnabled("Python3" in names) @pyqtSlot() - def on_python2Button_clicked(self): - """ - Private slot to edit the rope configuration for Python 2. - """ - self.__plugin.getCodeAssistServer().editConfig("Python2") - - @pyqtSlot() def on_python3Button_clicked(self): """ Private slot to edit the rope configuration for Python 3.
--- a/RefactoringRope/ConfigurationPage/AutoCompletionRopePage.ui Sat May 02 15:05:16 2020 +0200 +++ b/RefactoringRope/ConfigurationPage/AutoCompletionRopePage.ui Mon Jun 22 18:08:10 2020 +0200 @@ -100,16 +100,6 @@ <item> <layout class="QHBoxLayout" name="horizontalLayout"> <item> - <widget class="QPushButton" name="python2Button"> - <property name="toolTip"> - <string>Press to edit the rope configuration for Python2</string> - </property> - <property name="text"> - <string>Edit Python 2 rope configuration</string> - </property> - </widget> - </item> - <item> <widget class="QPushButton" name="python3Button"> <property name="toolTip"> <string>Press to edit the rope configuration for Python3</string>
--- a/RefactoringRope/Documentation/source/Plugin_Refactoring_Rope.PluginRefactoringRope.html Sat May 02 15:05:16 2020 +0200 +++ b/RefactoringRope/Documentation/source/Plugin_Refactoring_Rope.PluginRefactoringRope.html Mon Jun 22 18:08:10 2020 +0200 @@ -28,7 +28,7 @@ <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>doNotCompile</td></tr><tr><td>error</td></tr><tr><td>internalPackages</td></tr><tr><td>longDescription</td></tr><tr><td>name</td></tr><tr><td>packageName</td></tr><tr><td>pyqtApi</td></tr><tr><td>python2Compatible</td></tr><tr><td>refactoringRopePluginObject</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>doNotCompile</td></tr><tr><td>error</td></tr><tr><td>internalPackages</td></tr><tr><td>longDescription</td></tr><tr><td>name</td></tr><tr><td>packageName</td></tr><tr><td>pyqtApi</td></tr><tr><td>refactoringRopePluginObject</td></tr><tr><td>shortDescription</td></tr><tr><td>version</td></tr> </table> <h3>Classes</h3>
--- a/RefactoringRope/Documentation/source/Plugin_Refactoring_Rope.RefactoringRope.ConfigurationPage.AutoCompletionRopePage.html Sat May 02 15:05:16 2020 +0200 +++ b/RefactoringRope/Documentation/source/Plugin_Refactoring_Rope.RefactoringRope.ConfigurationPage.AutoCompletionRopePage.html Mon Jun 22 18:08:10 2020 +0200 @@ -73,10 +73,6 @@ <td>Constructor</td> </tr> <tr> -<td><a href="#AutoCompletionRopePage.on_python2Button_clicked">on_python2Button_clicked</a></td> -<td>Private slot to edit the rope configuration for Python 2.</td> -</tr> -<tr> <td><a href="#AutoCompletionRopePage.on_python3Button_clicked">on_python3Button_clicked</a></td> <td>Private slot to edit the rope configuration for Python 3.</td> </tr> @@ -109,13 +105,6 @@ reference to the plugin object </dd> </dl> -<a NAME="AutoCompletionRopePage.on_python2Button_clicked" ID="AutoCompletionRopePage.on_python2Button_clicked"></a> -<h4>AutoCompletionRopePage.on_python2Button_clicked</h4> -<b>on_python2Button_clicked</b>(<i></i>) - -<p> - Private slot to edit the rope configuration for Python 2. -</p> <a NAME="AutoCompletionRopePage.on_python3Button_clicked" ID="AutoCompletionRopePage.on_python3Button_clicked"></a> <h4>AutoCompletionRopePage.on_python3Button_clicked</h4> <b>on_python3Button_clicked</b>(<i></i>)
--- a/RefactoringRope/MoveDialog.py Sat May 02 15:05:16 2020 +0200 +++ b/RefactoringRope/MoveDialog.py Mon Jun 22 18:08:10 2020 +0200 @@ -181,7 +181,7 @@ self, self.windowTitle(), dest, - self.tr("Python Files (*.py *.py2 *.py3);;All Files (*)")) + self.tr("Python Files (*.py *.py3);;All Files (*)")) else: # move_module destination = E5FileDialog.getExistingDirectory(
--- a/RefactoringRope/RefactoringClient.py Sat May 02 15:05:16 2020 +0200 +++ b/RefactoringRope/RefactoringClient.py Mon Jun 22 18:08:10 2020 +0200 @@ -368,7 +368,7 @@ try: rope.base.libutils.report_change( self.__project, filename, oldSource) - except Exception: + except Exception: # secok # simply ignore it pass
--- a/RefactoringRope/RefactoringServer.py Sat May 02 15:05:16 2020 +0200 +++ b/RefactoringRope/RefactoringServer.py Mon Jun 22 18:08:10 2020 +0200 @@ -1096,8 +1096,6 @@ @param kind kind of extraction to be done @type str ("method" or "variable") """ - assert kind in ["variable", "method"] - aw = self.__vm.activeWindow() if aw is None: @@ -2066,18 +2064,7 @@ isRemote = False if (not venvName) or isRemote: # get it from debugger settings next - if self.__projectLanguage == "Python2": - # Python 2 - venvName = Preferences.getDebugger("Python2VirtualEnv") - if not venvName and sys.version_info[0] == 2: - try: - venvName, _ = ( - venvManager.getDefaultEnvironment() - ) - except AttributeError: - # ignore for eric6 < 18.10 - pass - elif self.__projectLanguage in ("Python3", "MicroPython"): + if self.__projectLanguage in ("Python3", "MicroPython"): # Python 3 venvName = Preferences.getDebugger("Python3VirtualEnv") if not venvName and sys.version_info[0] >= 3: @@ -2115,10 +2102,7 @@ interpreter = self.__e5project.getDebugProperty("INTERPRETER") if not interpreter or not Utilities.isinpath(interpreter): # get it from debugger settings second - if self.__projectLanguage == "Python2": - interpreter = Preferences.getDebugger( - "PythonInterpreter") - elif self.__projectLanguage in ("Python3", "MicroPython"): + if self.__projectLanguage in ("Python3", "MicroPython"): interpreter = Preferences.getDebugger( "Python3Interpreter") else:
--- a/RefactoringRope/i18n/rope_cs.ts Sat May 02 15:05:16 2020 +0200 +++ b/RefactoringRope/i18n/rope_cs.ts Mon Jun 22 18:08:10 2020 +0200 @@ -67,21 +67,11 @@ </message> <message> <location filename="../ConfigurationPage/AutoCompletionRopePage.ui" line="105"/> - <source>Press to edit the rope configuration for Python2</source> + <source>Press to edit the rope configuration for Python3</source> <translation type="unfinished"></translation> </message> <message> <location filename="../ConfigurationPage/AutoCompletionRopePage.ui" line="108"/> - <source>Edit Python 2 rope configuration</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../ConfigurationPage/AutoCompletionRopePage.ui" line="115"/> - <source>Press to edit the rope configuration for Python3</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../ConfigurationPage/AutoCompletionRopePage.ui" line="118"/> <source>Edit Python 3 rope configuration</source> <translation type="unfinished"></translation> </message> @@ -222,7 +212,7 @@ <translation>Provést pro všechny odpovídající metody v &hiearchii třídy</translation> </message> <message> - <location filename="../ChangeSignatureDialog.py" line="58"/> + <location filename="../ChangeSignatureDialog.py" line="59"/> <source>Preview</source> <translation>Náhled</translation> </message> @@ -258,7 +248,7 @@ <context> <name>CodeAssistServer</name> <message> - <location filename="../CodeAssistServer.py" line="595"/> + <location filename="../CodeAssistServer.py" line="589"/> <source>An exception happened in the code assist client. Please report it to the eric bugs email address. Exception: {0} Value: {1} @@ -267,29 +257,29 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../CodeAssistServer.py" line="637"/> + <location filename="../CodeAssistServer.py" line="631"/> <source>'{0}' is not supported because the configured interpreter could not be started. </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../CodeAssistServer.py" line="642"/> + <location filename="../CodeAssistServer.py" line="636"/> <source>'{0}' is not supported because no suitable interpreter is configured. </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../CodeAssistServer.py" line="234"/> + <location filename="../CodeAssistServer.py" line="227"/> <source>Configure Rope</source> <translation>Nastavení Rope</translation> </message> <message> - <location filename="../CodeAssistServer.py" line="234"/> + <location filename="../CodeAssistServer.py" line="227"/> <source>The Rope configuration file '{0}' does not exist.</source> <translation>Rope konfigurační soubor '{0}' neexistuje.</translation> </message> <message> - <location filename="../CodeAssistServer.py" line="839"/> + <location filename="../CodeAssistServer.py" line="780"/> <source>Rope</source> <translation>Rope</translation> </message> @@ -339,37 +329,37 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../CodeAssistServer.py" line="434"/> + <location filename="../CodeAssistServer.py" line="427"/> <source>Language <b>{0}</b> is not supported.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../CodeAssistServer.py" line="437"/> + <location filename="../CodeAssistServer.py" line="431"/> <source>Language '{0}' is not supported.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../CodeAssistServer.py" line="481"/> + <location filename="../CodeAssistServer.py" line="475"/> <source>Present in <i>{0}</i> module</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../CodeAssistServer.py" line="485"/> + <location filename="../CodeAssistServer.py" line="479"/> <source>Present in '{0}' module</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../CodeAssistServer.py" line="503"/> + <location filename="../CodeAssistServer.py" line="497"/> <source>No documentation available.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../CodeAssistServer.py" line="559"/> + <location filename="../CodeAssistServer.py" line="553"/> <source>Code Assist: No definition found</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../CodeAssistServer.py" line="585"/> + <location filename="../CodeAssistServer.py" line="579"/> <source>The data received from the code assist server could not be decoded. Please report this issue with the received data to the eric bugs email address. Error: {0} Data: @@ -515,17 +505,17 @@ <context> <name>HistoryDialog</name> <message> - <location filename="../HistoryDialog.py" line="79"/> + <location filename="../HistoryDialog.py" line="80"/> <source>&Undo</source> <translation>&Vrátit</translation> </message> <message> - <location filename="../HistoryDialog.py" line="195"/> + <location filename="../HistoryDialog.py" line="196"/> <source>Undo refactorings</source> <translation>Vrátit refaktorizace</translation> </message> <message> - <location filename="../HistoryDialog.py" line="195"/> + <location filename="../HistoryDialog.py" line="196"/> <source>Shall all refactorings up to <b>{0}</b> be undone?</source> <translation>Mají být všechny refaktorizace až do <b>{0}</b> vráceny?</translation> </message> @@ -535,7 +525,7 @@ <translation>Historie návratů</translation> </message> <message> - <location filename="../HistoryDialog.py" line="81"/> + <location filename="../HistoryDialog.py" line="82"/> <source>&Redo</source> <translation>&Znovu použít</translation> </message> @@ -545,12 +535,12 @@ <translation>Historie návratů</translation> </message> <message> - <location filename="../HistoryDialog.py" line="217"/> + <location filename="../HistoryDialog.py" line="218"/> <source>Redo refactorings</source> <translation>Znovu použít refaktorizaci</translation> </message> <message> - <location filename="../HistoryDialog.py" line="217"/> + <location filename="../HistoryDialog.py" line="218"/> <source>Shall all refactorings up to <b>{0}</b> be redone?</source> <translation>Mají být všechny refaktorizace až do <b>{0}</b> vráceny?</translation> </message> @@ -565,32 +555,32 @@ <translation>Vybraz změnu k náhledu na pravo</translation> </message> <message> - <location filename="../HistoryDialog.py" line="74"/> + <location filename="../HistoryDialog.py" line="75"/> <source><b>Project History</b></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HistoryDialog.py" line="76"/> + <location filename="../HistoryDialog.py" line="77"/> <source><b>File History: {0}</b></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HistoryDialog.py" line="83"/> + <location filename="../HistoryDialog.py" line="84"/> <source>Re&fresh</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HistoryDialog.py" line="85"/> + <location filename="../HistoryDialog.py" line="86"/> <source>&Clear History</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HistoryDialog.py" line="254"/> + <location filename="../HistoryDialog.py" line="255"/> <source>Clear History</source> <translation>Smazat historii</translation> </message> <message> - <location filename="../HistoryDialog.py" line="254"/> + <location filename="../HistoryDialog.py" line="255"/> <source>Do you really want to clear the refactoring history?</source> <translation type="unfinished"></translation> </message> @@ -641,7 +631,7 @@ <translation>Jen inline &aktuální výskyt</translation> </message> <message> - <location filename="../InlineDialog.py" line="81"/> + <location filename="../InlineDialog.py" line="80"/> <source>Inlining occurrences of <b>{0}</b> (type '<i>{1}</i>').</source> <translation type="unfinished"></translation> </message> @@ -837,80 +827,80 @@ <translation>Náhled</translation> </message> <message> - <location filename="../MoveDialog.py" line="92"/> + <location filename="../MoveDialog.py" line="91"/> <source>Move Method</source> <translation>Metoda přesunu</translation> </message> <message> - <location filename="../MoveDialog.py" line="97"/> + <location filename="../MoveDialog.py" line="96"/> <source>Move Global Method</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MoveDialog.py" line="99"/> + <location filename="../MoveDialog.py" line="98"/> <source>Destination Module:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MoveDialog.py" line="100"/> + <location filename="../MoveDialog.py" line="99"/> <source>Enter the destination module for the method</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MoveDialog.py" line="102"/> + <location filename="../MoveDialog.py" line="101"/> <source>Select the destination module via a file selection dialog</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MoveDialog.py" line="105"/> + <location filename="../MoveDialog.py" line="104"/> <source>Move Module</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MoveDialog.py" line="107"/> + <location filename="../MoveDialog.py" line="106"/> <source>Destination Package:</source> <translation>Cílový balíček:</translation> </message> <message> - <location filename="../MoveDialog.py" line="108"/> + <location filename="../MoveDialog.py" line="107"/> <source>Enter the destination package for the module</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MoveDialog.py" line="110"/> + <location filename="../MoveDialog.py" line="109"/> <source>Select the destination package via a directory selection dialog</source> <translation>Vybrat cílový balíček přes dialog výběru adresáře</translation> </message> <message> - <location filename="../MoveDialog.py" line="114"/> + <location filename="../MoveDialog.py" line="113"/> <source>Move</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MoveDialog.py" line="181"/> - <source>Python Files (*.py *.py2 *.py3);;All Files (*)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../MoveDialog.py" line="197"/> + <location filename="../MoveDialog.py" line="196"/> <source>The selected module must be inside the project.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MoveDialog.py" line="201"/> + <location filename="../MoveDialog.py" line="200"/> <source>The selected directory must be inside the project.</source> <translation>Vybraný adresář musí být součástí projektu.</translation> </message> <message> - <location filename="../MoveDialog.py" line="243"/> + <location filename="../MoveDialog.py" line="242"/> <source>The selected module <b>{0}</b> does not exist.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MoveDialog.py" line="252"/> + <location filename="../MoveDialog.py" line="251"/> <source>The selected directory <b>{0}</b> is not a package.</source> <translation>Vybraný adresář <b>{0}</b> není balíček.</translation> </message> + <message> + <location filename="../MoveDialog.py" line="180"/> + <source>Python Files (*.py *.py3);;All Files (*)</source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>PreviewDialog</name> @@ -933,7 +923,7 @@ <context> <name>RefactoringRopePlugin</name> <message> - <location filename="../../PluginRefactoringRope.py" line="107"/> + <location filename="../../PluginRefactoringRope.py" line="123"/> <source>Rope</source> <translation>Rope</translation> </message> @@ -941,697 +931,697 @@ <context> <name>RefactoringServer</name> <message> - <location filename="../RefactoringServer.py" line="951"/> + <location filename="../RefactoringServer.py" line="964"/> <source>Rename</source> <translation>Přejmenovat</translation> </message> <message> - <location filename="../RefactoringServer.py" line="167"/> + <location filename="../RefactoringServer.py" line="180"/> <source>&Rename</source> <translation>&Přejmenovat</translation> </message> <message> - <location filename="../RefactoringServer.py" line="172"/> + <location filename="../RefactoringServer.py" line="185"/> <source>Rename the highlighted object</source> <translation>Přejmenovat zvýrazněný objekt</translation> </message> <message> - <location filename="../RefactoringServer.py" line="174"/> + <location filename="../RefactoringServer.py" line="187"/> <source><b>Rename</b><p>Rename the highlighted Python object.</p></source> <translation><b>Přejmenovat</b><p>Přejmenuje se zvýrazněný Python objekt.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="957"/> + <location filename="../RefactoringServer.py" line="970"/> <source>Local Rename</source> <translation>Lokální přejmenování</translation> </message> <message> - <location filename="../RefactoringServer.py" line="182"/> + <location filename="../RefactoringServer.py" line="195"/> <source>&Local Rename</source> <translation>&Lokální přejmenování</translation> </message> <message> - <location filename="../RefactoringServer.py" line="187"/> + <location filename="../RefactoringServer.py" line="200"/> <source>Rename the highlighted object in the current module only</source> <translation>Přejmenovat zvýrazněný objekt jen v aktuálním modulu</translation> </message> <message> - <location filename="../RefactoringServer.py" line="189"/> + <location filename="../RefactoringServer.py" line="202"/> <source><b>Local Rename</b><p>Rename the highlighted Python object in the current module only.</p></source> <translation><b>Lokální přejmenování</b><p>Přejmenovat zvýrazněný Python objekt jen v aktuálním modulu.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="963"/> + <location filename="../RefactoringServer.py" line="976"/> <source>Rename Current Module</source> <translation>Přejmenovat aktuální modul</translation> </message> <message> - <location filename="../RefactoringServer.py" line="203"/> + <location filename="../RefactoringServer.py" line="216"/> <source>Rename the current module</source> <translation>Přejmenovat aktuální modul</translation> </message> <message> - <location filename="../RefactoringServer.py" line="205"/> + <location filename="../RefactoringServer.py" line="218"/> <source><b>Rename Current Module</b><p>Rename the current module.</p></source> <translation><b>Přejmenovat aktuální modul</b><p>Aktuální modul se přejmenuje.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1034"/> + <location filename="../RefactoringServer.py" line="1049"/> <source>Change Occurrences</source> <translation>Změnit výskyty</translation> </message> <message> - <location filename="../RefactoringServer.py" line="213"/> + <location filename="../RefactoringServer.py" line="226"/> <source>Change &Occurrences</source> <translation>Změnit &výskyty</translation> </message> <message> - <location filename="../RefactoringServer.py" line="218"/> + <location filename="../RefactoringServer.py" line="231"/> <source>Change all occurrences in the local scope</source> <translation>Změnit všechny výskyty v lokálním rozsahu</translation> </message> <message> - <location filename="../RefactoringServer.py" line="220"/> + <location filename="../RefactoringServer.py" line="233"/> <source><b>Change Occurrences</b><p>Change all occurrences in the local scope.</p></source> <translation><b>Změnit výskyty</b><p>Změnit všechny výskyty v lokálním rozsahu.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="232"/> + <location filename="../RefactoringServer.py" line="245"/> <source>Extract method</source> <translation>Vyjmout metodu</translation> </message> <message> - <location filename="../RefactoringServer.py" line="232"/> + <location filename="../RefactoringServer.py" line="245"/> <source>Extract &Method</source> <translation>Vyjmout &metodu</translation> </message> <message> - <location filename="../RefactoringServer.py" line="237"/> + <location filename="../RefactoringServer.py" line="250"/> <source>Extract the highlighted area as a method</source> <translation>Zvýrazněná plocha se vyjme jako metoda</translation> </message> <message> - <location filename="../RefactoringServer.py" line="239"/> + <location filename="../RefactoringServer.py" line="252"/> <source><b>Extract method</b><p>Extract the highlighted area as a method or function.</p></source> <translation><b>Vyjmout metodu</b><p>Zvýrazněná plocha se vyjme jako metoda.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="247"/> + <location filename="../RefactoringServer.py" line="260"/> <source>Extract local variable</source> <translation>Vyjmout lokální proměnnou</translation> </message> <message> - <location filename="../RefactoringServer.py" line="247"/> + <location filename="../RefactoringServer.py" line="260"/> <source>&Extract Local Variable</source> <translation>&Extrahovat lokální proměnnou</translation> </message> <message> - <location filename="../RefactoringServer.py" line="252"/> + <location filename="../RefactoringServer.py" line="265"/> <source>Extract the highlighted area as a local variable</source> <translation>Vyjmout zvýrazněnou oblast jako lokální proměnnou</translation> </message> <message> - <location filename="../RefactoringServer.py" line="254"/> + <location filename="../RefactoringServer.py" line="267"/> <source><b>Extract local variable</b><p>Extract the highlighted area as a local variable.</p></source> <translation><b>Vyjmout lokální proměnnou</b><p>Vyjmout zvýrazněnou oblast jako lokální proměnnou.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1129"/> + <location filename="../RefactoringServer.py" line="1142"/> <source>Inline</source> <translation>Inline</translation> </message> <message> - <location filename="../RefactoringServer.py" line="266"/> + <location filename="../RefactoringServer.py" line="279"/> <source>&Inline</source> <translation>&Inline</translation> </message> <message> - <location filename="../RefactoringServer.py" line="271"/> + <location filename="../RefactoringServer.py" line="284"/> <source>Inlines the selected local variable or method</source> <translation>Nataví Inline vybrané lokální proměnné nebo metody</translation> </message> <message> - <location filename="../RefactoringServer.py" line="273"/> + <location filename="../RefactoringServer.py" line="286"/> <source><b>Inline</b><p>Inlines the selected local variable or method.</p></source> <translation><b>Inline</b><p>Nataví Inline vybrané lokální proměnné nebo metody.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="285"/> + <location filename="../RefactoringServer.py" line="298"/> <source>Move method</source> <translation>Metoda přesunu</translation> </message> <message> - <location filename="../RefactoringServer.py" line="285"/> + <location filename="../RefactoringServer.py" line="298"/> <source>Mo&ve Method</source> <translation>Metoda &přesunu</translation> </message> <message> - <location filename="../RefactoringServer.py" line="290"/> + <location filename="../RefactoringServer.py" line="303"/> <source>Move the highlighted method to another class</source> <translation>Přesunout zvýrazněné metody do jiné třídy</translation> </message> <message> - <location filename="../RefactoringServer.py" line="292"/> + <location filename="../RefactoringServer.py" line="305"/> <source><b>Move method</b><p>Move the highlighted method to another class.</p></source> <translation><b>Metoda přesunu</b><p>Přesunout zvýrazněné metody do jiné třídy.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="300"/> + <location filename="../RefactoringServer.py" line="313"/> <source>Move current module</source> <translation>Přesunout aktuální modul</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1179"/> + <location filename="../RefactoringServer.py" line="1192"/> <source>Move Current Module</source> <translation>Přesunout aktuální modul</translation> </message> <message> - <location filename="../RefactoringServer.py" line="305"/> + <location filename="../RefactoringServer.py" line="318"/> <source>Move the current module to another package</source> <translation>Přesunout aktuální modul do jiného balíčku</translation> </message> <message> - <location filename="../RefactoringServer.py" line="307"/> + <location filename="../RefactoringServer.py" line="320"/> <source><b>Move current module</b><p>Move the current module to another package.</p></source> <translation><b>Přesunout aktuální modul</b><p>Přesunout aktuální modul do jiného balíčku.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1212"/> + <location filename="../RefactoringServer.py" line="1225"/> <source>Use Function</source> <translation>Použít funkci</translation> </message> <message> - <location filename="../RefactoringServer.py" line="324"/> + <location filename="../RefactoringServer.py" line="337"/> <source>Use a function wherever possible.</source> <translation>Použít funkce kdekoliv je to možné.</translation> </message> <message> - <location filename="../RefactoringServer.py" line="326"/> + <location filename="../RefactoringServer.py" line="339"/> <source><b>Use function</b><p>Tries to use a function wherever possible.</p></source> <translation><b>Použít funkci</b><p>Funkce se použije kdekoliv je to možné.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1249"/> + <location filename="../RefactoringServer.py" line="1262"/> <source>Introduce Factory Method</source> <translation>Metoda Introduce Factory</translation> </message> <message> - <location filename="../RefactoringServer.py" line="338"/> + <location filename="../RefactoringServer.py" line="351"/> <source>Introduce &Factory Method</source> <translation>Metoda Introduce &Factory</translation> </message> <message> - <location filename="../RefactoringServer.py" line="343"/> + <location filename="../RefactoringServer.py" line="356"/> <source>Introduce a factory method or function</source> <translation>Metoda nebo funkce Introduce Factory</translation> </message> <message> - <location filename="../RefactoringServer.py" line="345"/> + <location filename="../RefactoringServer.py" line="358"/> <source><b>Introduce Factory Method</b><p>Introduce a factory method or function.</p></source> <translation><b>Metoda Introduce Factory</b><p>Metoda nebo funkce Introduce Factory.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1283"/> + <location filename="../RefactoringServer.py" line="1296"/> <source>Introduce Parameter</source> <translation></translation> </message> <message> - <location filename="../RefactoringServer.py" line="353"/> + <location filename="../RefactoringServer.py" line="366"/> <source>Introduce &Parameter</source> <translation>Introduce &parametr</translation> </message> <message> - <location filename="../RefactoringServer.py" line="358"/> + <location filename="../RefactoringServer.py" line="371"/> <source>Introduce a parameter in a function</source> <translation>Introduce parametr ve funkci</translation> </message> <message> - <location filename="../RefactoringServer.py" line="360"/> + <location filename="../RefactoringServer.py" line="373"/> <source><b>Introduce Parameter</b><p>Introduce a parameter in a function.</p></source> <translation><b>Introduce parametr</b><p>Introduce parametr ve funkci.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1316"/> + <location filename="../RefactoringServer.py" line="1329"/> <source>Organize Imports</source> <translation>Uspořádat importy</translation> </message> <message> - <location filename="../RefactoringServer.py" line="372"/> + <location filename="../RefactoringServer.py" line="385"/> <source>&Organize Imports</source> <translation>&Uspořádat importy</translation> </message> <message> - <location filename="../RefactoringServer.py" line="377"/> + <location filename="../RefactoringServer.py" line="390"/> <source>Sort imports according to PEP-8</source> <translation>Setřídit importy podle PEP-8</translation> </message> <message> - <location filename="../RefactoringServer.py" line="379"/> + <location filename="../RefactoringServer.py" line="392"/> <source><b>Organize Imports</b><p>Sort imports according to PEP-8.</p></source> <translation><b>Uspořádat importy</b><p>Setřídit importy podle PEP-8.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1324"/> + <location filename="../RefactoringServer.py" line="1337"/> <source>Expand Star Imports</source> <translation>Rozvinout na hvězdičkové importy</translation> </message> <message> - <location filename="../RefactoringServer.py" line="387"/> + <location filename="../RefactoringServer.py" line="400"/> <source>E&xpand Star Imports</source> <translation>Ro&zvinout na hvězdičkové importy</translation> </message> <message> - <location filename="../RefactoringServer.py" line="392"/> + <location filename="../RefactoringServer.py" line="405"/> <source>Expand imports like "from xxx import *"</source> <translation>Rozvinout importy jako "from xxx import *"</translation> </message> <message> - <location filename="../RefactoringServer.py" line="394"/> + <location filename="../RefactoringServer.py" line="407"/> <source><b>Expand Star Imports</b><p>Expand imports like "from xxx import *".</p><p>Select the import to act on or none to do all. Unused imports are deleted.</p></source> <translation><b>Rozvinout na hvězdičkové importy</b><p>Rozvinout importy jako "from xxx import *"</p><p>Vyberte import, který se má upravit, nebo žádný, když chcete upravit všchny. Nepoužité importy budou smazány.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1332"/> + <location filename="../RefactoringServer.py" line="1345"/> <source>Relative to Absolute</source> <translation>Relativní na absolultní</translation> </message> <message> - <location filename="../RefactoringServer.py" line="404"/> + <location filename="../RefactoringServer.py" line="417"/> <source>Relative to &Absolute</source> <translation>Relativní na &absolultní</translation> </message> <message> - <location filename="../RefactoringServer.py" line="409"/> + <location filename="../RefactoringServer.py" line="422"/> <source>Transform relative imports to absolute ones</source> <translation>Převést relativní importy na absolutní</translation> </message> <message> - <location filename="../RefactoringServer.py" line="411"/> + <location filename="../RefactoringServer.py" line="424"/> <source><b>Relative to Absolute</b><p>Transform relative imports to absolute ones.</p><p>Select the import to act on or none to do all. Unused imports are deleted.</p></source> <translation><b>Relativní na absolutní</b><p>Převést relativní importy na absolutní.</p><p>Vyberte import, který se má převést, nebo žádný, když chcete upravit všchny. Nepoužité importy budou smazány.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1340"/> + <location filename="../RefactoringServer.py" line="1353"/> <source>Froms to Imports</source> <translation>From na import</translation> </message> <message> - <location filename="../RefactoringServer.py" line="421"/> + <location filename="../RefactoringServer.py" line="434"/> <source>Froms to &Imports</source> <translation>From na &import</translation> </message> <message> - <location filename="../RefactoringServer.py" line="426"/> + <location filename="../RefactoringServer.py" line="439"/> <source>Transform From imports to plain imports</source> <translation>Převést from importy na plné importy</translation> </message> <message> - <location filename="../RefactoringServer.py" line="428"/> + <location filename="../RefactoringServer.py" line="441"/> <source><b>Froms to Imports</b><p>Transform From imports to plain imports.</p><p>Select the import to act on or none to do all. Unused imports are deleted.</p></source> <translation><b>From na import</b><p>Převést from importy na plné importy.</p><p>Vyberte import, který se má převést, nebo žádný, když chcete upravit všchny. Nepoužité importy budou smazány.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1348"/> + <location filename="../RefactoringServer.py" line="1361"/> <source>Handle Long Imports</source> <translation>Úprava dlouhých importů</translation> </message> <message> - <location filename="../RefactoringServer.py" line="438"/> + <location filename="../RefactoringServer.py" line="451"/> <source>Handle &Long Imports</source> <translation>Úprava d&louhých importů</translation> </message> <message> - <location filename="../RefactoringServer.py" line="443"/> + <location filename="../RefactoringServer.py" line="456"/> <source>Transform long import statements to look better</source> <translation>Upravit dlouhé importy tak, aby vypadaly lépe</translation> </message> <message> - <location filename="../RefactoringServer.py" line="445"/> + <location filename="../RefactoringServer.py" line="458"/> <source><b>Handle Long Imports</b><p>Transform long import statements to look better.</p><p>Select the import to act on or none to do all. Unused imports are deleted.</p></source> <translation><b>Úprava dlouhých importů</b><p>Upravit dlouhé importy tak, aby vypadaly lépe.</p><p>Vyberte import, který se má převést, nebo žádný, když chcete upravit všchny. Nepoužité importy budou smazány.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1399"/> + <location filename="../RefactoringServer.py" line="1412"/> <source>Restructure</source> <translation>Restrukturalizovat</translation> </message> <message> - <location filename="../RefactoringServer.py" line="459"/> + <location filename="../RefactoringServer.py" line="472"/> <source>Res&tructure</source> <translation>Res&trukturalizovat</translation> </message> <message> - <location filename="../RefactoringServer.py" line="464"/> + <location filename="../RefactoringServer.py" line="477"/> <source>Restructure code</source> <translation>Restrukturalizovat kód</translation> </message> <message> - <location filename="../RefactoringServer.py" line="466"/> + <location filename="../RefactoringServer.py" line="479"/> <source><b>Restructure</b><p>Restructure code. See "Rope Help" for examples.</p></source> <translation><b>Restrukturalizovat</b><p>Restrukturalizovat kód. V "Rope Help" jsou příklady.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1416"/> + <location filename="../RefactoringServer.py" line="1429"/> <source>Change Method Signature</source> <translation>Změnit podpis metody</translation> </message> <message> - <location filename="../RefactoringServer.py" line="474"/> + <location filename="../RefactoringServer.py" line="487"/> <source>&Change Method Signature</source> <translation>Změnit &podpis metody</translation> </message> <message> - <location filename="../RefactoringServer.py" line="479"/> + <location filename="../RefactoringServer.py" line="492"/> <source>Change the signature of the selected method or function</source> <translation>Změnit podpis vybrané metody nebo funce</translation> </message> <message> - <location filename="../RefactoringServer.py" line="481"/> + <location filename="../RefactoringServer.py" line="494"/> <source><b>Change Method Signature</b><p>Change the signature of the selected method or function.</p></source> <translation><b>Změnit podpis metody</b><p>Změnit podpis vybrané metody.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1451"/> + <location filename="../RefactoringServer.py" line="1464"/> <source>Inline Argument Default</source> <translation></translation> </message> <message> - <location filename="../RefactoringServer.py" line="490"/> + <location filename="../RefactoringServer.py" line="503"/> <source>Inline &Argument Default</source> <translation>Inline výchozí &argument</translation> </message> <message> - <location filename="../RefactoringServer.py" line="495"/> + <location filename="../RefactoringServer.py" line="508"/> <source>Inline a parameters default value</source> <translation>Výchozí hodnota inline parametru</translation> </message> <message> - <location filename="../RefactoringServer.py" line="497"/> + <location filename="../RefactoringServer.py" line="510"/> <source><b>Inline Argument Default</b><p>Inline a parameters default value.</p></source> <translation><b>Výchozí hodnota inline argumentu</b><p>Výchozí hodnota inline argumentu.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1485"/> + <location filename="../RefactoringServer.py" line="1498"/> <source>Transform Module to Package</source> <translation>Transformovat modul do balíčku</translation> </message> <message> - <location filename="../RefactoringServer.py" line="510"/> + <location filename="../RefactoringServer.py" line="523"/> <source>Transform the current module to a package</source> <translation>Transformace aktuálního modulu do balíčku</translation> </message> <message> - <location filename="../RefactoringServer.py" line="512"/> + <location filename="../RefactoringServer.py" line="525"/> <source><b>Transform Module to Package</b><p>Transform the current module to a package.</p></source> <translation><b>Transformovat modul do balíčku</b><p>Transformace aktuálního modulu do balíčku.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1514"/> + <location filename="../RefactoringServer.py" line="1527"/> <source>Encapsulate Attribute</source> <translation>Zapouzdřit atribut</translation> </message> <message> - <location filename="../RefactoringServer.py" line="520"/> + <location filename="../RefactoringServer.py" line="533"/> <source>Encap&sulate Attribute</source> <translation>&Zapouzdřit atribut</translation> </message> <message> - <location filename="../RefactoringServer.py" line="525"/> + <location filename="../RefactoringServer.py" line="538"/> <source>Generate a getter/setter for an attribute</source> <translation>Generovat getter/setter pro atribut</translation> </message> <message> - <location filename="../RefactoringServer.py" line="527"/> + <location filename="../RefactoringServer.py" line="540"/> <source><b>Encapsulate Attribute</b><p>Generate a getter/setter for an attribute and changes its occurrences to use them.</p></source> <translation><b>Zapouzdřit atribut</b><p>Generovat getter/setter pro atribut a zaměnit výskyty atributu za tyto funkce.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1548"/> + <location filename="../RefactoringServer.py" line="1561"/> <source>Local Variable to Attribute</source> <translation>Lokální proměnná na atribut</translation> </message> <message> - <location filename="../RefactoringServer.py" line="536"/> + <location filename="../RefactoringServer.py" line="549"/> <source>Local Varia&ble to Attribute</source> <translation>Lokální proměnná na &atribut</translation> </message> <message> - <location filename="../RefactoringServer.py" line="541"/> + <location filename="../RefactoringServer.py" line="554"/> <source>Change a local variable to an attribute</source> <translation>Změnit lokální proměnnou na atribut</translation> </message> <message> - <location filename="../RefactoringServer.py" line="543"/> + <location filename="../RefactoringServer.py" line="556"/> <source><b>Local Variable to Attribute</b><p>Change a local variable to an attribute.</p></source> <translation><b>Lokální proměnná na atribut</b><p>Změnit lokální proměnnou na atribut.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="551"/> + <location filename="../RefactoringServer.py" line="564"/> <source>Method To Method Object</source> <translation>Metoda na metodu objektu</translation> </message> <message> - <location filename="../RefactoringServer.py" line="551"/> + <location filename="../RefactoringServer.py" line="564"/> <source>Method To Method Ob&ject</source> <translation>Metoda na metodu ob&jektu</translation> </message> <message> - <location filename="../RefactoringServer.py" line="556"/> + <location filename="../RefactoringServer.py" line="569"/> <source>Transform a function or a method to a method object</source> <translation>Transformovat funkci nebo metodu na metodu objektu</translation> </message> <message> - <location filename="../RefactoringServer.py" line="558"/> + <location filename="../RefactoringServer.py" line="571"/> <source><b>Method To Method Object</b><p>Transform a function or a method to a method object.</p></source> <translation><b>Metoda na metodu objektu</b><p>Transformovat funkci nebo metodu na metodu objektu.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="570"/> + <location filename="../RefactoringServer.py" line="583"/> <source>Show Project History</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="570"/> + <location filename="../RefactoringServer.py" line="583"/> <source>Show Project History...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="575"/> + <location filename="../RefactoringServer.py" line="588"/> <source>Show the refactoring history of the project</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="577"/> + <location filename="../RefactoringServer.py" line="590"/> <source><b>Show Project History</b><p>This opens a dialog to show the refactoring history of the project.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="586"/> + <location filename="../RefactoringServer.py" line="599"/> <source>Show Current File History</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="586"/> + <location filename="../RefactoringServer.py" line="599"/> <source>Show Current File History...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="591"/> + <location filename="../RefactoringServer.py" line="604"/> <source>Show the refactoring history of the current file</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="593"/> + <location filename="../RefactoringServer.py" line="606"/> <source><b>Show Current File History</b><p>This opens a dialog to show the refactoring history of the current file.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1651"/> + <location filename="../RefactoringServer.py" line="1664"/> <source>Clear History</source> <translation>Smazat historii</translation> </message> <message> - <location filename="../RefactoringServer.py" line="607"/> + <location filename="../RefactoringServer.py" line="620"/> <source>Clear the refactoring history</source> <translation>Smazat historii refaktorizace</translation> </message> <message> - <location filename="../RefactoringServer.py" line="609"/> + <location filename="../RefactoringServer.py" line="622"/> <source><b>Clear History</b><p>Clears the refactoring history.</p></source> <translation><b>Smazat historii</b><p>Smaže historii refaktorizace.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="621"/> + <location filename="../RefactoringServer.py" line="634"/> <source>Find occurrences</source> <translation>Hledat výskyty</translation> </message> <message> - <location filename="../RefactoringServer.py" line="621"/> + <location filename="../RefactoringServer.py" line="634"/> <source>Find &Occurrences</source> <translation>Hledat &výskyty</translation> </message> <message> - <location filename="../RefactoringServer.py" line="626"/> + <location filename="../RefactoringServer.py" line="639"/> <source>Find occurrences of the highlighted object</source> <translation>Vyhledat výskyty zvýrazněných objektů</translation> </message> <message> - <location filename="../RefactoringServer.py" line="628"/> + <location filename="../RefactoringServer.py" line="641"/> <source><b>Find occurrences</b><p>Find occurrences of the highlighted class, method, function or variable.</p></source> <translation><b>Hledat výskyty</b><p>Hledají se výskyty zvýrazněných tříd, metod, funkcí nebo proměnných.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="637"/> + <location filename="../RefactoringServer.py" line="650"/> <source>Find definition</source> <translation>Najít definici</translation> </message> <message> - <location filename="../RefactoringServer.py" line="637"/> + <location filename="../RefactoringServer.py" line="650"/> <source>Find &Definition</source> <translation>Najít &definici</translation> </message> <message> - <location filename="../RefactoringServer.py" line="642"/> + <location filename="../RefactoringServer.py" line="655"/> <source>Find definition of the highlighted item</source> <translation>Najít definice zvýrazněné položky</translation> </message> <message> - <location filename="../RefactoringServer.py" line="644"/> + <location filename="../RefactoringServer.py" line="657"/> <source><b>Find definition</b><p>Find the definition of the highlighted class, method, function or variable.</p></source> <translation><b>Najít definici</b><p>Vyhledají se definice pro zvýrazněné třídy, metody, funkce nebo proměnné.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="653"/> + <location filename="../RefactoringServer.py" line="666"/> <source>Find implementations</source> <translation>Najít umístění</translation> </message> <message> - <location filename="../RefactoringServer.py" line="653"/> + <location filename="../RefactoringServer.py" line="666"/> <source>Find &Implementations</source> <translation>Najít &umístění</translation> </message> <message> - <location filename="../RefactoringServer.py" line="658"/> + <location filename="../RefactoringServer.py" line="671"/> <source>Find places where the selected method is overridden</source> <translation>Najít místa kde budou vybrané metory přepsány</translation> </message> <message> - <location filename="../RefactoringServer.py" line="660"/> + <location filename="../RefactoringServer.py" line="673"/> <source><b>Find implementations</b><p>Find places where the selected method is overridden.</p></source> <translation><b>Najít umístění</b><p>Najít místa kde budou vybrané metory přepsány.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1850"/> + <location filename="../RefactoringServer.py" line="1862"/> <source>Configure Rope</source> <translation>Nastavení Rope</translation> </message> <message> - <location filename="../RefactoringServer.py" line="672"/> + <location filename="../RefactoringServer.py" line="685"/> <source>&Configure Rope</source> <translation>Nastavení &Rope</translation> </message> <message> - <location filename="../RefactoringServer.py" line="677"/> + <location filename="../RefactoringServer.py" line="690"/> <source>Open the rope configuration file</source> <translation>Otevřít rope konfigurační soubor</translation> </message> <message> - <location filename="../RefactoringServer.py" line="679"/> + <location filename="../RefactoringServer.py" line="692"/> <source><b>Configure Rope</b><p>Opens the rope configuration file in an editor.</p></source> <translation><b>Nastavení Rope</b><p>Otevře rope konfigurační soubor do editoru.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="688"/> + <location filename="../RefactoringServer.py" line="701"/> <source>Rope Help</source> <translation>Rope nápověda</translation> </message> <message> - <location filename="../RefactoringServer.py" line="688"/> + <location filename="../RefactoringServer.py" line="701"/> <source>Rope &Help</source> <translation>Rope &nápověda</translation> </message> <message> - <location filename="../RefactoringServer.py" line="693"/> + <location filename="../RefactoringServer.py" line="706"/> <source>Show help about the rope refactorings</source> <translation>Zobrazit nápovědu o rope refaktorizaci</translation> </message> <message> - <location filename="../RefactoringServer.py" line="695"/> + <location filename="../RefactoringServer.py" line="708"/> <source><b>Rope help</b><p>Show some help text about the rope refactorings.</p></source> <translation><b>Rope nápověda</b><p>Zobrazí se nápověda o Rope refaktorizaci.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1897"/> + <location filename="../RefactoringServer.py" line="1910"/> <source>Analyse all modules</source> <translation>Analyzovat všechny moduly</translation> </message> <message> - <location filename="../RefactoringServer.py" line="703"/> + <location filename="../RefactoringServer.py" line="716"/> <source>&Analyse all modules</source> <translation>&Analyzovat všechny moduly</translation> </message> <message> - <location filename="../RefactoringServer.py" line="708"/> + <location filename="../RefactoringServer.py" line="721"/> <source>Perform static object analysis on all modules</source> <translation>Provést analýzy statických objektů ve všech modulech</translation> </message> <message> - <location filename="../RefactoringServer.py" line="710"/> + <location filename="../RefactoringServer.py" line="723"/> <source><b>Analyse all modules</b><p>Perform static object analysis (SOA) on all modules. This might be time consuming. Analysis of all modules should only be neccessary, if the project was created with the rope plugin disabled or if files were added.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1875"/> + <location filename="../RefactoringServer.py" line="1887"/> <source>Update Configuration</source> <translation>Aktualizovat nastavení</translation> </message> <message> - <location filename="../RefactoringServer.py" line="721"/> + <location filename="../RefactoringServer.py" line="734"/> <source>&Update Configuration</source> <translation>Akt&ualizovat nastavení</translation> </message> <message> - <location filename="../RefactoringServer.py" line="726"/> + <location filename="../RefactoringServer.py" line="739"/> <source>Generates a new configuration file overwriting the current one.</source> <translation>Vygeneruje nový soubor s nastavením a přepíše ten stávající.</translation> </message> <message> - <location filename="../RefactoringServer.py" line="728"/> + <location filename="../RefactoringServer.py" line="741"/> <source><b>Update Configuration</b><p>Generates a new configuration file overwriting the current one.</p></source> <translation><b>Aktualizovat nastavení</b><p>Vygeneruje nový soubor s nastavením a přepíše ten stávající.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="761"/> + <location filename="../RefactoringServer.py" line="774"/> <source>&Refactoring</source> <translation>&Refaktorizace</translation> </message> <message> - <location filename="../RefactoringServer.py" line="756"/> + <location filename="../RefactoringServer.py" line="769"/> <source>&Query</source> <translation>&Dotaz</translation> </message> <message> - <location filename="../RefactoringServer.py" line="792"/> + <location filename="../RefactoringServer.py" line="805"/> <source>Im&ports</source> <translation>Im&porty</translation> </message> <message> - <location filename="../RefactoringServer.py" line="801"/> + <location filename="../RefactoringServer.py" line="814"/> <source>History</source> <translation>Historie</translation> </message> <message> - <location filename="../RefactoringServer.py" line="808"/> + <location filename="../RefactoringServer.py" line="821"/> <source>&Utilities</source> <translation>&Pomůcky</translation> </message> <message> - <location filename="../RefactoringServer.py" line="828"/> + <location filename="../RefactoringServer.py" line="841"/> <source>About rope</source> <translation>O rope</translation> </message> <message> - <location filename="../RefactoringServer.py" line="828"/> + <location filename="../RefactoringServer.py" line="841"/> <source>{0} Version {1} @@ -1639,212 +1629,212 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="860"/> + <location filename="../RefactoringServer.py" line="873"/> <source>Rope Error</source> <translation>Rope chyba</translation> </message> <message> - <location filename="../RefactoringServer.py" line="877"/> + <location filename="../RefactoringServer.py" line="890"/> <source>Rope error: {0}</source> <translation>Rope chyba: {0}</translation> </message> <message> - <location filename="../RefactoringServer.py" line="985"/> + <location filename="../RefactoringServer.py" line="998"/> <source>Highlight the declaration you want to rename and try again.</source> <translation>Zvýraznit deklaraci, kterou chcete přejmenovat, a pak zkusit znovu.</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1006"/> + <location filename="../RefactoringServer.py" line="1021"/> <source>The selection must not extend beyond one line.</source> <translation>Výběr nesmí přesahovat přes jednu řádku.</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1037"/> + <location filename="../RefactoringServer.py" line="1052"/> <source>Highlight an occurrence to be changed and try again.</source> <translation>Zvýraznit výskyty, které se budou měnit, a zkusit znova.</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1067"/> + <location filename="../RefactoringServer.py" line="1082"/> <source>Extract Method</source> <translation>Vyjmout metodu</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1073"/> + <location filename="../RefactoringServer.py" line="1088"/> <source>Extract Local Variable</source> <translation>Vyjmout lokální proměnnou</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1093"/> + <location filename="../RefactoringServer.py" line="1106"/> <source>Highlight the region of code you want to extract and try again.</source> <translation>Zvýraznit oblast kódu, kterou chcete vyjmout, a pak zkusit znovu.</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1132"/> + <location filename="../RefactoringServer.py" line="1145"/> <source>Highlight the local variable, method or parameter you want to inline and try again.</source> <translation>Zvýraznit lokální proměnnou, metoru nebo parametr, který má být inline a zkusit znova.</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1170"/> + <location filename="../RefactoringServer.py" line="1183"/> <source>Move Method</source> <translation>Metoda přesunu</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1173"/> + <location filename="../RefactoringServer.py" line="1186"/> <source>Highlight the method to move and try again.</source> <translation>Zvýraznit medodu, která se má přesunout, a zkusit znova.</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1215"/> + <location filename="../RefactoringServer.py" line="1228"/> <source>Highlight a global function and try again.</source> <translation>Zvýraznit globální funkce a zkusti znova.</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1252"/> + <location filename="../RefactoringServer.py" line="1265"/> <source>Highlight the class to introduce a factory method for and try again.</source> <translation>Zvýraznit třídu pro metodu introduce factory a zkusit znova.</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1286"/> + <location filename="../RefactoringServer.py" line="1299"/> <source>Highlight the code for the new parameter and try again.</source> <translation>Zvýraznit kód pro nový parametr, a pak zkusit znovu.</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1419"/> + <location filename="../RefactoringServer.py" line="1432"/> <source>Highlight the method or function to change and try again.</source> <translation>Zvýraznit metodu, kterou chcete změnit, a pak zkusit znovu.</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1454"/> + <location filename="../RefactoringServer.py" line="1467"/> <source>Highlight the method or function to inline a parameter's default and try again.</source> <translation>Zvyraznit metodu nebo třídu na výchozí hodnotu inline parametru a zkusit znova.</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1517"/> + <location filename="../RefactoringServer.py" line="1530"/> <source>Highlight the attribute to encapsulate and try again.</source> <translation>Zvýraznit atribut pro zapouzdření a zkusit znova.</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1551"/> + <location filename="../RefactoringServer.py" line="1564"/> <source>Highlight the local variable to make an attribute and try again.</source> <translation>Zvýraznit lokální proměnnou na vytvoření atributu a zkusit znova.</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1587"/> + <location filename="../RefactoringServer.py" line="1600"/> <source>Replace Method With Method Object</source> <translation>Nahradit metodu metodou objektu</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1590"/> + <location filename="../RefactoringServer.py" line="1603"/> <source>Highlight the method or function to convert and try again.</source> <translation>Zvýraznit metodu nebo funkci, kterou chcete konvertovat, a zkusit znovu.</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1651"/> + <location filename="../RefactoringServer.py" line="1664"/> <source>Do you really want to clear the refactoring history?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1693"/> + <location filename="../RefactoringServer.py" line="1706"/> <source>Find Occurrences</source> <translation>Hledat výskyty</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1727"/> + <location filename="../RefactoringServer.py" line="1740"/> <source>No occurrences found.</source> <translation>Žádné výskyty nenalezeny.</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1740"/> + <location filename="../RefactoringServer.py" line="1753"/> <source>Find Definition</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1775"/> + <location filename="../RefactoringServer.py" line="1788"/> <source>No matching definition found.</source> <translation>Odpovídající definice nebyla nalezena.</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1788"/> + <location filename="../RefactoringServer.py" line="1801"/> <source>Find Implementations</source> <translation>Najít umístění</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1822"/> + <location filename="../RefactoringServer.py" line="1835"/> <source>No implementations found.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1844"/> + <location filename="../RefactoringServer.py" line="1856"/> <source>The Rope configuration file '{0}' does not exist.</source> <translation>Rope konfigurační soubor '{0}' neexistuje.</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1850"/> + <location filename="../RefactoringServer.py" line="1862"/> <source>The Rope admin directory does not exist.</source> <translation>Rope admin adresář neexistuje.</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1859"/> + <location filename="../RefactoringServer.py" line="1871"/> <source>Shall rope's current configuration be replaced by a new default configuration?</source> <translation>Může být aktuální Rope nastavení nahrazeno novým výchozím nastavením?</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1875"/> + <location filename="../RefactoringServer.py" line="1887"/> <source><p>The configuration could not be updated.</p><p>Reason: {0}</p></source> <translation><p>Nastavení nemůže být aktualizováno.</p><p>Důvod: {0}</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1889"/> + <location filename="../RefactoringServer.py" line="1900"/> <source>Help about rope refactorings</source> <translation>Nápověda o rope refaktorizaci</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1898"/> + <location filename="../RefactoringServer.py" line="1911"/> <source>This action might take some time. Do you really want to perform SOA?</source> <translation>Tato akce potrvá nějaký čas. Opravdu chcete spustit SOA?</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1920"/> + <location filename="../RefactoringServer.py" line="1933"/> <source>Static object analysis (SOA) done. SOA database updated.</source> <translation>Analýza statických objektů (SOA) je hotova. SOA databáze aktualizována.</translation> </message> <message> - <location filename="../RefactoringServer.py" line="2121"/> + <location filename="../RefactoringServer.py" line="2118"/> <source>Project language '{0}' is not supported because the configured interpreter could not be started. Refactoring is disabled.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="2130"/> + <location filename="../RefactoringServer.py" line="2127"/> <source>Project language '{0}' is not supported because no suitable interpreter is configured. Refactoring is disabled.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="2136"/> + <location filename="../RefactoringServer.py" line="2133"/> <source>Refactoring for project language '{0}' is not supported.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="2262"/> + <location filename="../RefactoringServer.py" line="2261"/> <source>Refactoring Protocol Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="2276"/> + <location filename="../RefactoringServer.py" line="2275"/> <source>Refactoring Client Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="2262"/> + <location filename="../RefactoringServer.py" line="2261"/> <source><p>The data received from the refactoring server could not be decoded. Please report this issue with the received data to the eric bugs email address.</p><p>Error: {0}</p><p>Data:<br/>{1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="2276"/> + <location filename="../RefactoringServer.py" line="2275"/> <source><p>An exception happened in the refactoring client. Please report it to the eric bugs email address.</p><p>Exception: {0}</p><p>Value: {1}</p><p>Traceback: {2}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="2115"/> + <location filename="../RefactoringServer.py" line="2112"/> <source>The project is configured for remote access. Using local interpreter instead.</source> <translation type="unfinished"></translation> </message>
--- a/RefactoringRope/i18n/rope_de.ts Sat May 02 15:05:16 2020 +0200 +++ b/RefactoringRope/i18n/rope_de.ts Mon Jun 22 18:08:10 2020 +0200 @@ -1,6 +1,5 @@ <?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE TS> -<TS version="2.1" language="de"> +<!DOCTYPE TS><TS version="2.0" language="de" sourcelanguage=""> <context> <name>AddParameterDialog</name> <message> @@ -68,21 +67,11 @@ </message> <message> <location filename="../ConfigurationPage/AutoCompletionRopePage.ui" line="105"/> - <source>Press to edit the rope configuration for Python2</source> - <translation>Drücken, um die Rope Konfiguration für Python2 zu editieren</translation> - </message> - <message> - <location filename="../ConfigurationPage/AutoCompletionRopePage.ui" line="108"/> - <source>Edit Python 2 rope configuration</source> - <translation>Python2 Rope Konfiguration editieren</translation> - </message> - <message> - <location filename="../ConfigurationPage/AutoCompletionRopePage.ui" line="115"/> <source>Press to edit the rope configuration for Python3</source> <translation>Drücken, um die Rope Konfiguration für Python3 zu editieren</translation> </message> <message> - <location filename="../ConfigurationPage/AutoCompletionRopePage.ui" line="118"/> + <location filename="../ConfigurationPage/AutoCompletionRopePage.ui" line="108"/> <source>Edit Python 3 rope configuration</source> <translation>Python3 Rope Konfiguration editieren</translation> </message> @@ -223,7 +212,7 @@ <translation>Für alle gleichnamigen Methoden der &Klassenhierarchie durchführen</translation> </message> <message> - <location filename="../ChangeSignatureDialog.py" line="58"/> + <location filename="../ChangeSignatureDialog.py" line="59"/> <source>Preview</source> <translation>Vorschau</translation> </message> @@ -259,7 +248,7 @@ <context> <name>CodeAssistServer</name> <message> - <location filename="../CodeAssistServer.py" line="595"/> + <location filename="../CodeAssistServer.py" line="589"/> <source>An exception happened in the code assist client. Please report it to the eric bugs email address. Exception: {0} Value: {1} @@ -272,31 +261,31 @@ </translation> </message> <message> - <location filename="../CodeAssistServer.py" line="637"/> + <location filename="../CodeAssistServer.py" line="631"/> <source>'{0}' is not supported because the configured interpreter could not be started. </source> <translation>'{0}' wird nicht unterstützt, da der konfigurierte Interpreter nicht gestartet werden konnte. </translation> </message> <message> - <location filename="../CodeAssistServer.py" line="642"/> + <location filename="../CodeAssistServer.py" line="636"/> <source>'{0}' is not supported because no suitable interpreter is configured. </source> <translation>'{0}' wird nicht unrestützt, da kein geeigneter Interpreter konfiguriert ist. </translation> </message> <message> - <location filename="../CodeAssistServer.py" line="234"/> + <location filename="../CodeAssistServer.py" line="227"/> <source>Configure Rope</source> <translation>Rope konfigurieren</translation> </message> <message> - <location filename="../CodeAssistServer.py" line="234"/> + <location filename="../CodeAssistServer.py" line="227"/> <source>The Rope configuration file '{0}' does not exist.</source> <translation>Die Rope Konfigurationsdatei '{0}' existiert nicht.</translation> </message> <message> - <location filename="../CodeAssistServer.py" line="839"/> + <location filename="../CodeAssistServer.py" line="780"/> <source>Rope</source> <translation>Rope</translation> </message> @@ -346,37 +335,37 @@ <translation>unbekannt</translation> </message> <message> - <location filename="../CodeAssistServer.py" line="434"/> + <location filename="../CodeAssistServer.py" line="427"/> <source>Language <b>{0}</b> is not supported.</source> <translation>Die Sprache <b>{0}</b> wird nicht unterstützt.</translation> </message> <message> - <location filename="../CodeAssistServer.py" line="437"/> + <location filename="../CodeAssistServer.py" line="431"/> <source>Language '{0}' is not supported.</source> <translation>Die Sprache '{0}' wird nicht unterstützt.</translation> </message> <message> - <location filename="../CodeAssistServer.py" line="481"/> + <location filename="../CodeAssistServer.py" line="475"/> <source>Present in <i>{0}</i> module</source> <translation>Im Modul <i>{0}</i> vorhanden</translation> </message> <message> - <location filename="../CodeAssistServer.py" line="485"/> + <location filename="../CodeAssistServer.py" line="479"/> <source>Present in '{0}' module</source> <translation>Im Modul '{0}' vorhanden</translation> </message> <message> - <location filename="../CodeAssistServer.py" line="503"/> + <location filename="../CodeAssistServer.py" line="497"/> <source>No documentation available.</source> <translation>Keine Dokumentation verfügbar.</translation> </message> <message> - <location filename="../CodeAssistServer.py" line="559"/> + <location filename="../CodeAssistServer.py" line="553"/> <source>Code Assist: No definition found</source> <translation>Code Assist: Keine Definition gefunden</translation> </message> <message> - <location filename="../CodeAssistServer.py" line="585"/> + <location filename="../CodeAssistServer.py" line="579"/> <source>The data received from the code assist server could not be decoded. Please report this issue with the received data to the eric bugs email address. Error: {0} Data: @@ -528,17 +517,17 @@ <context> <name>HistoryDialog</name> <message> - <location filename="../HistoryDialog.py" line="79"/> + <location filename="../HistoryDialog.py" line="80"/> <source>&Undo</source> <translation>&Rückgängig</translation> </message> <message> - <location filename="../HistoryDialog.py" line="195"/> + <location filename="../HistoryDialog.py" line="196"/> <source>Undo refactorings</source> <translation>Refaktorierungen rückgängig machen</translation> </message> <message> - <location filename="../HistoryDialog.py" line="195"/> + <location filename="../HistoryDialog.py" line="196"/> <source>Shall all refactorings up to <b>{0}</b> be undone?</source> <translation>Sollen alle Refaktorierungen bis <b>{0}</b> rückgängig gemacht werden?</translation> </message> @@ -548,7 +537,7 @@ <translation>Historie</translation> </message> <message> - <location filename="../HistoryDialog.py" line="81"/> + <location filename="../HistoryDialog.py" line="82"/> <source>&Redo</source> <translation>&Wiederherstellen</translation> </message> @@ -558,12 +547,12 @@ <translation>Historie</translation> </message> <message> - <location filename="../HistoryDialog.py" line="217"/> + <location filename="../HistoryDialog.py" line="218"/> <source>Redo refactorings</source> <translation>Refaktorierung wiederherstellen</translation> </message> <message> - <location filename="../HistoryDialog.py" line="217"/> + <location filename="../HistoryDialog.py" line="218"/> <source>Shall all refactorings up to <b>{0}</b> be redone?</source> <translation>Sollen alle Refaktorierungen bis <b>{0}</b> wiederhergestellt werden?</translation> </message> @@ -578,32 +567,32 @@ <translation>Wähle eine Änderung zur Vorschau im rechten Teil</translation> </message> <message> - <location filename="../HistoryDialog.py" line="74"/> + <location filename="../HistoryDialog.py" line="75"/> <source><b>Project History</b></source> <translation><b>Projektchronik</b></translation> </message> <message> - <location filename="../HistoryDialog.py" line="76"/> + <location filename="../HistoryDialog.py" line="77"/> <source><b>File History: {0}</b></source> <translation><b>Dateichronik: {0}</b></translation> </message> <message> - <location filename="../HistoryDialog.py" line="83"/> + <location filename="../HistoryDialog.py" line="84"/> <source>Re&fresh</source> <translation>&Erneuern</translation> </message> <message> - <location filename="../HistoryDialog.py" line="85"/> + <location filename="../HistoryDialog.py" line="86"/> <source>&Clear History</source> <translation>Chronik &löschen</translation> </message> <message> - <location filename="../HistoryDialog.py" line="254"/> + <location filename="../HistoryDialog.py" line="255"/> <source>Clear History</source> <translation>Chronik löschen</translation> </message> <message> - <location filename="../HistoryDialog.py" line="254"/> + <location filename="../HistoryDialog.py" line="255"/> <source>Do you really want to clear the refactoring history?</source> <translation>Soll die Refaktorierungschronik wirklich gelöscht werden?</translation> </message> @@ -654,7 +643,7 @@ <translation>Nur das aktuelle &Vorkommen inlinen</translation> </message> <message> - <location filename="../InlineDialog.py" line="81"/> + <location filename="../InlineDialog.py" line="80"/> <source>Inlining occurrences of <b>{0}</b> (type '<i>{1}</i>').</source> <translation>Inlining Vorkommen von <b>{0}</b> (Typ '<i>{1}</i>').</translation> </message> @@ -850,80 +839,80 @@ <translation>Vorschau</translation> </message> <message> - <location filename="../MoveDialog.py" line="92"/> + <location filename="../MoveDialog.py" line="91"/> <source>Move Method</source> <translation>Methode verschieben</translation> </message> <message> - <location filename="../MoveDialog.py" line="97"/> + <location filename="../MoveDialog.py" line="96"/> <source>Move Global Method</source> <translation>Globale Methode verschieben</translation> </message> <message> - <location filename="../MoveDialog.py" line="99"/> + <location filename="../MoveDialog.py" line="98"/> <source>Destination Module:</source> <translation>Zielmodul:</translation> </message> <message> - <location filename="../MoveDialog.py" line="100"/> + <location filename="../MoveDialog.py" line="99"/> <source>Enter the destination module for the method</source> <translation>Gib das Zielmodul für die Methode ein</translation> </message> <message> - <location filename="../MoveDialog.py" line="102"/> + <location filename="../MoveDialog.py" line="101"/> <source>Select the destination module via a file selection dialog</source> <translation>Wähle das Zielmodul mit einem Dateiauswahldialog</translation> </message> <message> - <location filename="../MoveDialog.py" line="105"/> + <location filename="../MoveDialog.py" line="104"/> <source>Move Module</source> <translation>Modul verschieben</translation> </message> <message> - <location filename="../MoveDialog.py" line="107"/> + <location filename="../MoveDialog.py" line="106"/> <source>Destination Package:</source> <translation>Zielpackage:</translation> </message> <message> - <location filename="../MoveDialog.py" line="108"/> + <location filename="../MoveDialog.py" line="107"/> <source>Enter the destination package for the module</source> <translation>Gib das Zielpackage für das Modul ein</translation> </message> <message> - <location filename="../MoveDialog.py" line="110"/> + <location filename="../MoveDialog.py" line="109"/> <source>Select the destination package via a directory selection dialog</source> <translation>Wähle das Zielpackage mit einem Verzeichnisauswahldialog</translation> </message> <message> - <location filename="../MoveDialog.py" line="114"/> + <location filename="../MoveDialog.py" line="113"/> <source>Move</source> <translation>Verschieben</translation> </message> <message> - <location filename="../MoveDialog.py" line="181"/> - <source>Python Files (*.py *.py2 *.py3);;All Files (*)</source> - <translation>Python Dateien (*.py *.py2 *.py3);;Alle Dateien (*)</translation> - </message> - <message> - <location filename="../MoveDialog.py" line="197"/> + <location filename="../MoveDialog.py" line="196"/> <source>The selected module must be inside the project.</source> <translation>Das ausgewählte Modul muss innerhalb des Projektes sein.</translation> </message> <message> - <location filename="../MoveDialog.py" line="201"/> + <location filename="../MoveDialog.py" line="200"/> <source>The selected directory must be inside the project.</source> <translation>Das ausgewählte Verzeichnis muss innerhalb des Projektes sein.</translation> </message> <message> - <location filename="../MoveDialog.py" line="243"/> + <location filename="../MoveDialog.py" line="242"/> <source>The selected module <b>{0}</b> does not exist.</source> <translation>Das ausgewählte Modul <b>{0}</b> existiert nicht.</translation> </message> <message> - <location filename="../MoveDialog.py" line="252"/> + <location filename="../MoveDialog.py" line="251"/> <source>The selected directory <b>{0}</b> is not a package.</source> <translation>Das ausgewählte Verzeichnis <b>{0}</b> ist kein Package.</translation> </message> + <message> + <location filename="../MoveDialog.py" line="180"/> + <source>Python Files (*.py *.py3);;All Files (*)</source> + <translation>Python Dateien (*.py *.py3);;Alle Dateien (*)</translation> + </message> </context> <context> <name>PreviewDialog</name> @@ -946,7 +935,7 @@ <context> <name>RefactoringRopePlugin</name> <message> - <location filename="../../PluginRefactoringRope.py" line="107"/> + <location filename="../../PluginRefactoringRope.py" line="123"/> <source>Rope</source> <translation>Rope</translation> </message> @@ -954,697 +943,697 @@ <context> <name>RefactoringServer</name> <message> - <location filename="../RefactoringServer.py" line="951"/> + <location filename="../RefactoringServer.py" line="964"/> <source>Rename</source> <translation>Umbenennen</translation> </message> <message> - <location filename="../RefactoringServer.py" line="167"/> + <location filename="../RefactoringServer.py" line="180"/> <source>&Rename</source> <translation>&Umbenennen</translation> </message> <message> - <location filename="../RefactoringServer.py" line="172"/> + <location filename="../RefactoringServer.py" line="185"/> <source>Rename the highlighted object</source> <translation>Das hervorgehobene Objekt umbenennen</translation> </message> <message> - <location filename="../RefactoringServer.py" line="174"/> + <location filename="../RefactoringServer.py" line="187"/> <source><b>Rename</b><p>Rename the highlighted Python object.</p></source> <translation><b>Umbenennen</b><p>Benenne das hervorgehobene Python Objekt um.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="957"/> + <location filename="../RefactoringServer.py" line="970"/> <source>Local Rename</source> <translation>Lokales Umbenennen</translation> </message> <message> - <location filename="../RefactoringServer.py" line="182"/> + <location filename="../RefactoringServer.py" line="195"/> <source>&Local Rename</source> <translation>Lo&kale Umbenennung</translation> </message> <message> - <location filename="../RefactoringServer.py" line="187"/> + <location filename="../RefactoringServer.py" line="200"/> <source>Rename the highlighted object in the current module only</source> <translation>Das hervorgehobene Objekt nur im aktuellen Modul umbenennen</translation> </message> <message> - <location filename="../RefactoringServer.py" line="189"/> + <location filename="../RefactoringServer.py" line="202"/> <source><b>Local Rename</b><p>Rename the highlighted Python object in the current module only.</p></source> <translation><b>Lokales Umbenennen</b><p>Benenne das hervorgehobene Objekt nur im aktuellen Modul um.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="963"/> + <location filename="../RefactoringServer.py" line="976"/> <source>Rename Current Module</source> <translation>Aktuelles Modul umbenennen</translation> </message> <message> - <location filename="../RefactoringServer.py" line="203"/> + <location filename="../RefactoringServer.py" line="216"/> <source>Rename the current module</source> <translation>Das aktuelle Modul umbenennen</translation> </message> <message> - <location filename="../RefactoringServer.py" line="205"/> + <location filename="../RefactoringServer.py" line="218"/> <source><b>Rename Current Module</b><p>Rename the current module.</p></source> <translation><b>Aktuelles Modul umbenennen</b><p>Das aktuelle Modul umbenennen.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1034"/> + <location filename="../RefactoringServer.py" line="1049"/> <source>Change Occurrences</source> <translation>Vorkommen ändern</translation> </message> <message> - <location filename="../RefactoringServer.py" line="213"/> + <location filename="../RefactoringServer.py" line="226"/> <source>Change &Occurrences</source> <translation>V&orkommen ändern</translation> </message> <message> - <location filename="../RefactoringServer.py" line="218"/> + <location filename="../RefactoringServer.py" line="231"/> <source>Change all occurrences in the local scope</source> <translation>Ändert alle Vorkommen im lokalen Sichtbereich</translation> </message> <message> - <location filename="../RefactoringServer.py" line="220"/> + <location filename="../RefactoringServer.py" line="233"/> <source><b>Change Occurrences</b><p>Change all occurrences in the local scope.</p></source> <translation><b>Vorkommen ändern</b><p>Ändert alle Vorkommen im lokalen Sichtbereich.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="232"/> + <location filename="../RefactoringServer.py" line="245"/> <source>Extract method</source> <translation>Methode extrahieren</translation> </message> <message> - <location filename="../RefactoringServer.py" line="232"/> + <location filename="../RefactoringServer.py" line="245"/> <source>Extract &Method</source> <translation>&Methode extrahieren</translation> </message> <message> - <location filename="../RefactoringServer.py" line="237"/> + <location filename="../RefactoringServer.py" line="250"/> <source>Extract the highlighted area as a method</source> <translation>Extrahiert den hervorgehobenen Bereich als Methode</translation> </message> <message> - <location filename="../RefactoringServer.py" line="239"/> + <location filename="../RefactoringServer.py" line="252"/> <source><b>Extract method</b><p>Extract the highlighted area as a method or function.</p></source> <translation><b>Methode extrahieren</b><p>Extrahiert den hervorgehobenen Bereich als Methode oder Funktion.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="247"/> + <location filename="../RefactoringServer.py" line="260"/> <source>Extract local variable</source> <translation>Lokale Variable extrahieren</translation> </message> <message> - <location filename="../RefactoringServer.py" line="247"/> + <location filename="../RefactoringServer.py" line="260"/> <source>&Extract Local Variable</source> <translation>&Lokale Variable extrahieren</translation> </message> <message> - <location filename="../RefactoringServer.py" line="252"/> + <location filename="../RefactoringServer.py" line="265"/> <source>Extract the highlighted area as a local variable</source> <translation>Extrahiert den hervorgehobenen Bereich als lokale Variable</translation> </message> <message> - <location filename="../RefactoringServer.py" line="254"/> + <location filename="../RefactoringServer.py" line="267"/> <source><b>Extract local variable</b><p>Extract the highlighted area as a local variable.</p></source> <translation><b>Lokale Variable extrahieren</b><p>Extrahiert den hervorgehobenen Bereich als lokale Variable.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1129"/> + <location filename="../RefactoringServer.py" line="1142"/> <source>Inline</source> <translation>Inline</translation> </message> <message> - <location filename="../RefactoringServer.py" line="266"/> + <location filename="../RefactoringServer.py" line="279"/> <source>&Inline</source> <translation>&Inline</translation> </message> <message> - <location filename="../RefactoringServer.py" line="271"/> + <location filename="../RefactoringServer.py" line="284"/> <source>Inlines the selected local variable or method</source> <translation>Inlined die ausgewählte lokale Variable oder Methode</translation> </message> <message> - <location filename="../RefactoringServer.py" line="273"/> + <location filename="../RefactoringServer.py" line="286"/> <source><b>Inline</b><p>Inlines the selected local variable or method.</p></source> <translation><b>Inline</b><p>Inlined die ausgewählte lokale Variable oder Methode.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="285"/> + <location filename="../RefactoringServer.py" line="298"/> <source>Move method</source> <translation>Methode verschieben</translation> </message> <message> - <location filename="../RefactoringServer.py" line="285"/> + <location filename="../RefactoringServer.py" line="298"/> <source>Mo&ve Method</source> <translation>Methode &verschieben</translation> </message> <message> - <location filename="../RefactoringServer.py" line="290"/> + <location filename="../RefactoringServer.py" line="303"/> <source>Move the highlighted method to another class</source> <translation>Verschiebt die ausgewählte Methode in eine andere Klasse</translation> </message> <message> - <location filename="../RefactoringServer.py" line="292"/> + <location filename="../RefactoringServer.py" line="305"/> <source><b>Move method</b><p>Move the highlighted method to another class.</p></source> <translation><b>Methode verschieben</b><p>Verschiebt die ausgewählte Methode in eine andere Klasse.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="300"/> + <location filename="../RefactoringServer.py" line="313"/> <source>Move current module</source> <translation>Aktuelles Modul verschieben</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1179"/> + <location filename="../RefactoringServer.py" line="1192"/> <source>Move Current Module</source> <translation>Aktuelles Modul verschieben</translation> </message> <message> - <location filename="../RefactoringServer.py" line="305"/> + <location filename="../RefactoringServer.py" line="318"/> <source>Move the current module to another package</source> <translation>Verschiebt das aktuelle Modul in ein anderes Package</translation> </message> <message> - <location filename="../RefactoringServer.py" line="307"/> + <location filename="../RefactoringServer.py" line="320"/> <source><b>Move current module</b><p>Move the current module to another package.</p></source> <translation><b>Aktuelles Modul verschieben</b><p>Verschiebt das aktuelle Modul in ein anderes Package.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1212"/> + <location filename="../RefactoringServer.py" line="1225"/> <source>Use Function</source> <translation>Funktion verwenden</translation> </message> <message> - <location filename="../RefactoringServer.py" line="324"/> + <location filename="../RefactoringServer.py" line="337"/> <source>Use a function wherever possible.</source> <translation>Verwende eine Funktion wo immer möglich.</translation> </message> <message> - <location filename="../RefactoringServer.py" line="326"/> + <location filename="../RefactoringServer.py" line="339"/> <source><b>Use function</b><p>Tries to use a function wherever possible.</p></source> <translation><b>Funktion verwenden</b><p>Versucht, wo immer möglich eine Funktion zu verwenden.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1249"/> + <location filename="../RefactoringServer.py" line="1262"/> <source>Introduce Factory Method</source> <translation>Factory Methode einführen</translation> </message> <message> - <location filename="../RefactoringServer.py" line="338"/> + <location filename="../RefactoringServer.py" line="351"/> <source>Introduce &Factory Method</source> <translation>&Factory Methode einführen</translation> </message> <message> - <location filename="../RefactoringServer.py" line="343"/> + <location filename="../RefactoringServer.py" line="356"/> <source>Introduce a factory method or function</source> <translation>Eine Factory Methode oder Funktion einführen</translation> </message> <message> - <location filename="../RefactoringServer.py" line="345"/> + <location filename="../RefactoringServer.py" line="358"/> <source><b>Introduce Factory Method</b><p>Introduce a factory method or function.</p></source> <translation><b>Factory Methode einführen</b><p>Eine Factory Methode oder Funktion einführen.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1283"/> + <location filename="../RefactoringServer.py" line="1296"/> <source>Introduce Parameter</source> <translation>Parameter einführen</translation> </message> <message> - <location filename="../RefactoringServer.py" line="353"/> + <location filename="../RefactoringServer.py" line="366"/> <source>Introduce &Parameter</source> <translation>&Parameter einführen</translation> </message> <message> - <location filename="../RefactoringServer.py" line="358"/> + <location filename="../RefactoringServer.py" line="371"/> <source>Introduce a parameter in a function</source> <translation>Führt einen Parameter für eine Funktion ein</translation> </message> <message> - <location filename="../RefactoringServer.py" line="360"/> + <location filename="../RefactoringServer.py" line="373"/> <source><b>Introduce Parameter</b><p>Introduce a parameter in a function.</p></source> <translation><b>Parameter einführen</b><p>Führt einen Parameter für eine Funktion ein.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1316"/> + <location filename="../RefactoringServer.py" line="1329"/> <source>Organize Imports</source> <translation>Imports organisieren</translation> </message> <message> - <location filename="../RefactoringServer.py" line="372"/> + <location filename="../RefactoringServer.py" line="385"/> <source>&Organize Imports</source> <translation>Imports &organisieren</translation> </message> <message> - <location filename="../RefactoringServer.py" line="377"/> + <location filename="../RefactoringServer.py" line="390"/> <source>Sort imports according to PEP-8</source> <translation>Sortiert Imports in Übereinstimmung mit PEP-8</translation> </message> <message> - <location filename="../RefactoringServer.py" line="379"/> + <location filename="../RefactoringServer.py" line="392"/> <source><b>Organize Imports</b><p>Sort imports according to PEP-8.</p></source> <translation><b>Imports organisieren</b><p>Sortiert Imports in Übereinstimmung mit PEP-8.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1324"/> + <location filename="../RefactoringServer.py" line="1337"/> <source>Expand Star Imports</source> <translation>Stern-Imports expandieren</translation> </message> <message> - <location filename="../RefactoringServer.py" line="387"/> + <location filename="../RefactoringServer.py" line="400"/> <source>E&xpand Star Imports</source> <translation>Stern-Imports e&xpandieren</translation> </message> <message> - <location filename="../RefactoringServer.py" line="392"/> + <location filename="../RefactoringServer.py" line="405"/> <source>Expand imports like "from xxx import *"</source> <translation>Expandiert Imports der Form "from xxx import *"</translation> </message> <message> - <location filename="../RefactoringServer.py" line="394"/> + <location filename="../RefactoringServer.py" line="407"/> <source><b>Expand Star Imports</b><p>Expand imports like "from xxx import *".</p><p>Select the import to act on or none to do all. Unused imports are deleted.</p></source> <translation><b>Stern-Imports expandieren</b><p>Expandiert Imports der Form "from xxx import *".</p><p>Wähle das zu ändernde Import oder nichts, um alle zu ändern. Nicht benötigte Imports werden gelöscht.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1332"/> + <location filename="../RefactoringServer.py" line="1345"/> <source>Relative to Absolute</source> <translation>Relativ zu Absolut</translation> </message> <message> - <location filename="../RefactoringServer.py" line="404"/> + <location filename="../RefactoringServer.py" line="417"/> <source>Relative to &Absolute</source> <translation>Relativ zu &Absolut</translation> </message> <message> - <location filename="../RefactoringServer.py" line="409"/> + <location filename="../RefactoringServer.py" line="422"/> <source>Transform relative imports to absolute ones</source> <translation>Transformiere relative Imports zu absoluten</translation> </message> <message> - <location filename="../RefactoringServer.py" line="411"/> + <location filename="../RefactoringServer.py" line="424"/> <source><b>Relative to Absolute</b><p>Transform relative imports to absolute ones.</p><p>Select the import to act on or none to do all. Unused imports are deleted.</p></source> <translation><b>Relativ zu Absolut</b><p>Transformiere relative Imports zu absoluten.</p><p>Wähle das zu ändernde Import oder nichts, um alle zu ändern. Nicht benötigte Imports werden gelöscht.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1340"/> + <location filename="../RefactoringServer.py" line="1353"/> <source>Froms to Imports</source> <translation>Froms zu Imports</translation> </message> <message> - <location filename="../RefactoringServer.py" line="421"/> + <location filename="../RefactoringServer.py" line="434"/> <source>Froms to &Imports</source> <translation>Froms zu &Imports</translation> </message> <message> - <location filename="../RefactoringServer.py" line="426"/> + <location filename="../RefactoringServer.py" line="439"/> <source>Transform From imports to plain imports</source> <translation>Transformiert From Imports zu reinen Imports</translation> </message> <message> - <location filename="../RefactoringServer.py" line="428"/> + <location filename="../RefactoringServer.py" line="441"/> <source><b>Froms to Imports</b><p>Transform From imports to plain imports.</p><p>Select the import to act on or none to do all. Unused imports are deleted.</p></source> <translation><b>Froms zu Imports</b><p>Transformiert From Imports zu reinen Imports.</p><p>Wähle das zu ändernde Import oder nichts, um alle zu ändern. Nicht benötigte Imports werden gelöscht.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1348"/> + <location filename="../RefactoringServer.py" line="1361"/> <source>Handle Long Imports</source> <translation>Lange Imports bearbeiten</translation> </message> <message> - <location filename="../RefactoringServer.py" line="438"/> + <location filename="../RefactoringServer.py" line="451"/> <source>Handle &Long Imports</source> <translation>&Lange Imports bearbeiten</translation> </message> <message> - <location filename="../RefactoringServer.py" line="443"/> + <location filename="../RefactoringServer.py" line="456"/> <source>Transform long import statements to look better</source> <translation>Transformiert lange Imports, damit sie besser aussehen</translation> </message> <message> - <location filename="../RefactoringServer.py" line="445"/> + <location filename="../RefactoringServer.py" line="458"/> <source><b>Handle Long Imports</b><p>Transform long import statements to look better.</p><p>Select the import to act on or none to do all. Unused imports are deleted.</p></source> <translation><b>Lange Imports bearbeiten</b><p>Transformiert lange Imports, damit sie besser aussehen.</p><p>Wähle das zu ändernde Import oder nichts, um alle zu ändern. Nicht benötigte Imports werden gelöscht.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1399"/> + <location filename="../RefactoringServer.py" line="1412"/> <source>Restructure</source> <translation>Restrukturieren</translation> </message> <message> - <location filename="../RefactoringServer.py" line="459"/> + <location filename="../RefactoringServer.py" line="472"/> <source>Res&tructure</source> <translation>R&estrukturieren</translation> </message> <message> - <location filename="../RefactoringServer.py" line="464"/> + <location filename="../RefactoringServer.py" line="477"/> <source>Restructure code</source> <translation>Code restrukturieren</translation> </message> <message> - <location filename="../RefactoringServer.py" line="466"/> + <location filename="../RefactoringServer.py" line="479"/> <source><b>Restructure</b><p>Restructure code. See "Rope Help" for examples.</p></source> <translation><b>Restrukturieren</b><p>Code restrukturieren. Siehe "Rope Hilfe" für Beispiele.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1416"/> + <location filename="../RefactoringServer.py" line="1429"/> <source>Change Method Signature</source> <translation>Methodensignatur ändern</translation> </message> <message> - <location filename="../RefactoringServer.py" line="474"/> + <location filename="../RefactoringServer.py" line="487"/> <source>&Change Method Signature</source> <translation>Methoden&signatur ändern</translation> </message> <message> - <location filename="../RefactoringServer.py" line="479"/> + <location filename="../RefactoringServer.py" line="492"/> <source>Change the signature of the selected method or function</source> <translation>Ändert die Signatur der selektierten Methode oder Funktion</translation> </message> <message> - <location filename="../RefactoringServer.py" line="481"/> + <location filename="../RefactoringServer.py" line="494"/> <source><b>Change Method Signature</b><p>Change the signature of the selected method or function.</p></source> <translation><b>Methodensignatur ändern</b><p>Ändert die Signatur der selektierten Methode oder Funktion.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1451"/> + <location filename="../RefactoringServer.py" line="1464"/> <source>Inline Argument Default</source> <translation>Inline Arguments Default</translation> </message> <message> - <location filename="../RefactoringServer.py" line="490"/> + <location filename="../RefactoringServer.py" line="503"/> <source>Inline &Argument Default</source> <translation>Inline &Arguments Default</translation> </message> <message> - <location filename="../RefactoringServer.py" line="495"/> + <location filename="../RefactoringServer.py" line="508"/> <source>Inline a parameters default value</source> <translation>Inline den Defaultwert eines Parameters</translation> </message> <message> - <location filename="../RefactoringServer.py" line="497"/> + <location filename="../RefactoringServer.py" line="510"/> <source><b>Inline Argument Default</b><p>Inline a parameters default value.</p></source> <translation><b>Inline Arguments Default</b><p>Inline den Defaultwert eines Parameters</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1485"/> + <location filename="../RefactoringServer.py" line="1498"/> <source>Transform Module to Package</source> <translation>Modul in Package umwandeln</translation> </message> <message> - <location filename="../RefactoringServer.py" line="510"/> + <location filename="../RefactoringServer.py" line="523"/> <source>Transform the current module to a package</source> <translation>Wandelt das aktuelle Modul in ein Package um</translation> </message> <message> - <location filename="../RefactoringServer.py" line="512"/> + <location filename="../RefactoringServer.py" line="525"/> <source><b>Transform Module to Package</b><p>Transform the current module to a package.</p></source> <translation><b>Modul in Package umwandeln</b><p>Wandelt das aktuelle Modul in ein Package um.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1514"/> + <location filename="../RefactoringServer.py" line="1527"/> <source>Encapsulate Attribute</source> <translation>Attribut kapseln</translation> </message> <message> - <location filename="../RefactoringServer.py" line="520"/> + <location filename="../RefactoringServer.py" line="533"/> <source>Encap&sulate Attribute</source> <translation>A&ttribut kapseln</translation> </message> <message> - <location filename="../RefactoringServer.py" line="525"/> + <location filename="../RefactoringServer.py" line="538"/> <source>Generate a getter/setter for an attribute</source> <translation>Generiert getter/setter Methoden für ein Attribut</translation> </message> <message> - <location filename="../RefactoringServer.py" line="527"/> + <location filename="../RefactoringServer.py" line="540"/> <source><b>Encapsulate Attribute</b><p>Generate a getter/setter for an attribute and changes its occurrences to use them.</p></source> <translation><b>Attribut kapseln</b><p>Generiert getter/setter Methoden für ein Attribut und ändert alle Vorkommen.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1548"/> + <location filename="../RefactoringServer.py" line="1561"/> <source>Local Variable to Attribute</source> <translation>Lokale Variable zu Attribut</translation> </message> <message> - <location filename="../RefactoringServer.py" line="536"/> + <location filename="../RefactoringServer.py" line="549"/> <source>Local Varia&ble to Attribute</source> <translation>Lokale Varia&ble zu Attribut</translation> </message> <message> - <location filename="../RefactoringServer.py" line="541"/> + <location filename="../RefactoringServer.py" line="554"/> <source>Change a local variable to an attribute</source> <translation>Wandelt eine lokale Variable in ein Attribut um</translation> </message> <message> - <location filename="../RefactoringServer.py" line="543"/> + <location filename="../RefactoringServer.py" line="556"/> <source><b>Local Variable to Attribute</b><p>Change a local variable to an attribute.</p></source> <translation><b>Lokale Variable zu Attribut</b><p>Wandelt eine lokale Variable in ein Attribut um.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="551"/> + <location filename="../RefactoringServer.py" line="564"/> <source>Method To Method Object</source> <translation>Methode zu Methodenobjekt</translation> </message> <message> - <location filename="../RefactoringServer.py" line="551"/> + <location filename="../RefactoringServer.py" line="564"/> <source>Method To Method Ob&ject</source> <translation>Methode zu Methodenob&jekt</translation> </message> <message> - <location filename="../RefactoringServer.py" line="556"/> + <location filename="../RefactoringServer.py" line="569"/> <source>Transform a function or a method to a method object</source> <translation>Wandle eine Funktion oder eine Methode in ein Methodenobjekt um</translation> </message> <message> - <location filename="../RefactoringServer.py" line="558"/> + <location filename="../RefactoringServer.py" line="571"/> <source><b>Method To Method Object</b><p>Transform a function or a method to a method object.</p></source> <translation><b>Methode zu Methodenobjekt</b><p>Wandle eine Funktion oder eine Methode in ein Methodenobjekt um.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="570"/> + <location filename="../RefactoringServer.py" line="583"/> <source>Show Project History</source> <translation>Projektchronik anzeigen</translation> </message> <message> - <location filename="../RefactoringServer.py" line="570"/> + <location filename="../RefactoringServer.py" line="583"/> <source>Show Project History...</source> <translation>Projektchronik anzeigen...</translation> </message> <message> - <location filename="../RefactoringServer.py" line="575"/> + <location filename="../RefactoringServer.py" line="588"/> <source>Show the refactoring history of the project</source> <translation>Zeigt die Refaktorisierungschronik des Projektes</translation> </message> <message> - <location filename="../RefactoringServer.py" line="577"/> + <location filename="../RefactoringServer.py" line="590"/> <source><b>Show Project History</b><p>This opens a dialog to show the refactoring history of the project.</p></source> <translation><b>Projektchronik anzeigen</b><p>Dies öffnet einen Dialog zur Anzeige der Refaktorisierungschronik des Projektes.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="586"/> + <location filename="../RefactoringServer.py" line="599"/> <source>Show Current File History</source> <translation>Dateichronik anzeigen</translation> </message> <message> - <location filename="../RefactoringServer.py" line="586"/> + <location filename="../RefactoringServer.py" line="599"/> <source>Show Current File History...</source> <translation>Dateichronik anzeigen...</translation> </message> <message> - <location filename="../RefactoringServer.py" line="591"/> + <location filename="../RefactoringServer.py" line="604"/> <source>Show the refactoring history of the current file</source> <translation>Zeigt die Refaktorisierungschronik der aktuellen Datei an</translation> </message> <message> - <location filename="../RefactoringServer.py" line="593"/> + <location filename="../RefactoringServer.py" line="606"/> <source><b>Show Current File History</b><p>This opens a dialog to show the refactoring history of the current file.</p></source> <translation><b>Dateichronik anzeigen</b><p>Dies öffnet einen Dialog zur Anzeige der Refaktorisierungschronik der aktuellen Datei.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1651"/> + <location filename="../RefactoringServer.py" line="1664"/> <source>Clear History</source> <translation>Chronik löschen</translation> </message> <message> - <location filename="../RefactoringServer.py" line="607"/> + <location filename="../RefactoringServer.py" line="620"/> <source>Clear the refactoring history</source> <translation>Löscht die Refakturierungschronik</translation> </message> <message> - <location filename="../RefactoringServer.py" line="609"/> + <location filename="../RefactoringServer.py" line="622"/> <source><b>Clear History</b><p>Clears the refactoring history.</p></source> <translation><b>Chronik löschen</b><p>Löscht die Refakturierungschronik.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="621"/> + <location filename="../RefactoringServer.py" line="634"/> <source>Find occurrences</source> <translation>Vorkommen finden</translation> </message> <message> - <location filename="../RefactoringServer.py" line="621"/> + <location filename="../RefactoringServer.py" line="634"/> <source>Find &Occurrences</source> <translation>&Vorkommen finden</translation> </message> <message> - <location filename="../RefactoringServer.py" line="626"/> + <location filename="../RefactoringServer.py" line="639"/> <source>Find occurrences of the highlighted object</source> <translation>Finde Vorkommen des ausgewählten Objektes</translation> </message> <message> - <location filename="../RefactoringServer.py" line="628"/> + <location filename="../RefactoringServer.py" line="641"/> <source><b>Find occurrences</b><p>Find occurrences of the highlighted class, method, function or variable.</p></source> <translation><b>Vorkommen finden</b><p>Finde Vorkommen der ausgewählten Klasse, Methode, Funktion oder Variablen.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="637"/> + <location filename="../RefactoringServer.py" line="650"/> <source>Find definition</source> <translation>Definition finden</translation> </message> <message> - <location filename="../RefactoringServer.py" line="637"/> + <location filename="../RefactoringServer.py" line="650"/> <source>Find &Definition</source> <translation>&Definition finden</translation> </message> <message> - <location filename="../RefactoringServer.py" line="642"/> + <location filename="../RefactoringServer.py" line="655"/> <source>Find definition of the highlighted item</source> <translation>Definition des hervorgehobenen Objektes finden</translation> </message> <message> - <location filename="../RefactoringServer.py" line="644"/> + <location filename="../RefactoringServer.py" line="657"/> <source><b>Find definition</b><p>Find the definition of the highlighted class, method, function or variable.</p></source> <translation><b>Definition finden</b><p>Findet die Definition der hervorgehobenen Klasse, Methode, Funktion oder Variablen.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="653"/> + <location filename="../RefactoringServer.py" line="666"/> <source>Find implementations</source> <translation>Implementierungen finden</translation> </message> <message> - <location filename="../RefactoringServer.py" line="653"/> + <location filename="../RefactoringServer.py" line="666"/> <source>Find &Implementations</source> <translation>&Implementierungen finden</translation> </message> <message> - <location filename="../RefactoringServer.py" line="658"/> + <location filename="../RefactoringServer.py" line="671"/> <source>Find places where the selected method is overridden</source> <translation>Finde Stellen, an denen die ausgewählte Methode überschrieben wird</translation> </message> <message> - <location filename="../RefactoringServer.py" line="660"/> + <location filename="../RefactoringServer.py" line="673"/> <source><b>Find implementations</b><p>Find places where the selected method is overridden.</p></source> <translation><b>Implementierungen finden</b><p>Finde Stellen, an denen die ausgewählte Methode überschrieben wird.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1850"/> + <location filename="../RefactoringServer.py" line="1862"/> <source>Configure Rope</source> <translation>Rope konfigurieren</translation> </message> <message> - <location filename="../RefactoringServer.py" line="672"/> + <location filename="../RefactoringServer.py" line="685"/> <source>&Configure Rope</source> <translation>Rope &konfigurieren</translation> </message> <message> - <location filename="../RefactoringServer.py" line="677"/> + <location filename="../RefactoringServer.py" line="690"/> <source>Open the rope configuration file</source> <translation>Öffnet die Rope Konfigurationsdatei</translation> </message> <message> - <location filename="../RefactoringServer.py" line="679"/> + <location filename="../RefactoringServer.py" line="692"/> <source><b>Configure Rope</b><p>Opens the rope configuration file in an editor.</p></source> <translation><b>Rope konfigurieren</b><p>Öffnet die Rope Konfigurationsdatei in einem Editor.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="688"/> + <location filename="../RefactoringServer.py" line="701"/> <source>Rope Help</source> <translation>Rope Hilfe</translation> </message> <message> - <location filename="../RefactoringServer.py" line="688"/> + <location filename="../RefactoringServer.py" line="701"/> <source>Rope &Help</source> <translation>Rope &Hilfe</translation> </message> <message> - <location filename="../RefactoringServer.py" line="693"/> + <location filename="../RefactoringServer.py" line="706"/> <source>Show help about the rope refactorings</source> <translation>Zeigt einen Hilfetext für die Rope Refaktorierungen an</translation> </message> <message> - <location filename="../RefactoringServer.py" line="695"/> + <location filename="../RefactoringServer.py" line="708"/> <source><b>Rope help</b><p>Show some help text about the rope refactorings.</p></source> <translation><b>Rope Hilfe</b><p>Zeigt einen Hilfetext für die von Rope zur Verfügung gestellten Refaktorierungen an.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1897"/> + <location filename="../RefactoringServer.py" line="1910"/> <source>Analyse all modules</source> <translation>Analysiere alle Module</translation> </message> <message> - <location filename="../RefactoringServer.py" line="703"/> + <location filename="../RefactoringServer.py" line="716"/> <source>&Analyse all modules</source> <translation>&Analysiere alle Module</translation> </message> <message> - <location filename="../RefactoringServer.py" line="708"/> + <location filename="../RefactoringServer.py" line="721"/> <source>Perform static object analysis on all modules</source> <translation>Führt eine statische Objektanalyse aller Module durch</translation> </message> <message> - <location filename="../RefactoringServer.py" line="710"/> + <location filename="../RefactoringServer.py" line="723"/> <source><b>Analyse all modules</b><p>Perform static object analysis (SOA) on all modules. This might be time consuming. Analysis of all modules should only be neccessary, if the project was created with the rope plugin disabled or if files were added.</p></source> <translation><b>Analysiere alle Module</b><p>Führt eine statische Objektanalyse aller Module durch. Dies ist sehr zeitaufwändig. Eine Analyse aller Module ist nur notwendig, wenn das Projekt mit abgeschaltetem rope Plugin erzeugt wurde oder wenn Dateien hinzugefügt wurden.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1875"/> + <location filename="../RefactoringServer.py" line="1887"/> <source>Update Configuration</source> <translation>Konfiguration aktualisieren</translation> </message> <message> - <location filename="../RefactoringServer.py" line="721"/> + <location filename="../RefactoringServer.py" line="734"/> <source>&Update Configuration</source> <translation>&Konfiguration aktualisieren</translation> </message> <message> - <location filename="../RefactoringServer.py" line="726"/> + <location filename="../RefactoringServer.py" line="739"/> <source>Generates a new configuration file overwriting the current one.</source> <translation>Überschreibt die aktuelle Konfiguration mit einer neuen Standardkonfiguration.</translation> </message> <message> - <location filename="../RefactoringServer.py" line="728"/> + <location filename="../RefactoringServer.py" line="741"/> <source><b>Update Configuration</b><p>Generates a new configuration file overwriting the current one.</p></source> <translation><b>Konfiguration aktualisieren</b><p>Überschreibt die aktuelle Konfiguration mit einer neuen Standardkonfiguration.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="761"/> + <location filename="../RefactoringServer.py" line="774"/> <source>&Refactoring</source> <translation>&Refaktorierung</translation> </message> <message> - <location filename="../RefactoringServer.py" line="756"/> + <location filename="../RefactoringServer.py" line="769"/> <source>&Query</source> <translation>&Abfrage</translation> </message> <message> - <location filename="../RefactoringServer.py" line="792"/> + <location filename="../RefactoringServer.py" line="805"/> <source>Im&ports</source> <translation>Im&ports</translation> </message> <message> - <location filename="../RefactoringServer.py" line="801"/> + <location filename="../RefactoringServer.py" line="814"/> <source>History</source> <translation>Chronik</translation> </message> <message> - <location filename="../RefactoringServer.py" line="808"/> + <location filename="../RefactoringServer.py" line="821"/> <source>&Utilities</source> <translation>&Utilities</translation> </message> <message> - <location filename="../RefactoringServer.py" line="828"/> + <location filename="../RefactoringServer.py" line="841"/> <source>About rope</source> <translation>Über rope</translation> </message> <message> - <location filename="../RefactoringServer.py" line="828"/> + <location filename="../RefactoringServer.py" line="841"/> <source>{0} Version {1} @@ -1655,212 +1644,212 @@ {2}</translation> </message> <message> - <location filename="../RefactoringServer.py" line="860"/> + <location filename="../RefactoringServer.py" line="873"/> <source>Rope Error</source> <translation>Rope Fehler</translation> </message> <message> - <location filename="../RefactoringServer.py" line="877"/> + <location filename="../RefactoringServer.py" line="890"/> <source>Rope error: {0}</source> <translation>Rope Fehler: {0}</translation> </message> <message> - <location filename="../RefactoringServer.py" line="985"/> + <location filename="../RefactoringServer.py" line="998"/> <source>Highlight the declaration you want to rename and try again.</source> <translation>Selektiere die umzubenennende Deklaration und wiederhole den Vorgang.</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1006"/> + <location filename="../RefactoringServer.py" line="1021"/> <source>The selection must not extend beyond one line.</source> <translation>Die Auswahl darf nicht über das Zeilenende gehen.</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1037"/> + <location filename="../RefactoringServer.py" line="1052"/> <source>Highlight an occurrence to be changed and try again.</source> <translation>Selektiere ein zu änderndes Vorkommen und wiederhole den Vorgang.</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1067"/> + <location filename="../RefactoringServer.py" line="1082"/> <source>Extract Method</source> <translation>Methode extrahieren</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1073"/> + <location filename="../RefactoringServer.py" line="1088"/> <source>Extract Local Variable</source> <translation>Lokale Variable extrahieren</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1093"/> + <location filename="../RefactoringServer.py" line="1106"/> <source>Highlight the region of code you want to extract and try again.</source> <translation>Selektiere den zu extrahierenden Quelltextbereich und wiederhole den Vorgang.</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1132"/> + <location filename="../RefactoringServer.py" line="1145"/> <source>Highlight the local variable, method or parameter you want to inline and try again.</source> <translation>Selektiere die zu inlinende lokale Variable, Methode oder Parameter und wiederhole den Vorgang.</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1170"/> + <location filename="../RefactoringServer.py" line="1183"/> <source>Move Method</source> <translation>Methode verschieben</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1173"/> + <location filename="../RefactoringServer.py" line="1186"/> <source>Highlight the method to move and try again.</source> <translation>Selektiere die zu verschiebende Methode und wiederhole den Vorgang.</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1215"/> + <location filename="../RefactoringServer.py" line="1228"/> <source>Highlight a global function and try again.</source> <translation>Selektiere eine globale Funktion und wiederhole den Vorgang.</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1252"/> + <location filename="../RefactoringServer.py" line="1265"/> <source>Highlight the class to introduce a factory method for and try again.</source> <translation>Selektiere die Klasse, für die eine Factory Methode eingeführt werden soll, und wiederhole den Vorgang.</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1286"/> + <location filename="../RefactoringServer.py" line="1299"/> <source>Highlight the code for the new parameter and try again.</source> <translation>Selektiere den Code für den neuen Parameter und wiederhole den Vorgang.</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1419"/> + <location filename="../RefactoringServer.py" line="1432"/> <source>Highlight the method or function to change and try again.</source> <translation>Selektiere die zu ändernde Methode oder Funktion und wiederhole den Vorgang.</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1454"/> + <location filename="../RefactoringServer.py" line="1467"/> <source>Highlight the method or function to inline a parameter's default and try again.</source> <translation>Selektiere die Methode oder Funktion, für die der Defaultwert eines Parameters inlined werden soll, und wiederhole den Vorgang.</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1517"/> + <location filename="../RefactoringServer.py" line="1530"/> <source>Highlight the attribute to encapsulate and try again.</source> <translation>Selektiere das zu kapselnde Attribut und wiederhole den Vorgang.</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1551"/> + <location filename="../RefactoringServer.py" line="1564"/> <source>Highlight the local variable to make an attribute and try again.</source> <translation>Selektiere die lokale Variable, die in ein Attribut gewandelt werden soll, und wiederhole den Vorgang.</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1587"/> + <location filename="../RefactoringServer.py" line="1600"/> <source>Replace Method With Method Object</source> <translation>Ersetze Methode mit Methodenobjekt</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1590"/> + <location filename="../RefactoringServer.py" line="1603"/> <source>Highlight the method or function to convert and try again.</source> <translation>Selektiere die umzuwandelnde Methode oder Funktion und wiederhole den Vorgang.</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1651"/> + <location filename="../RefactoringServer.py" line="1664"/> <source>Do you really want to clear the refactoring history?</source> <translation>Soll die Refaktorierungschronik wirklich gelöscht werden?</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1693"/> + <location filename="../RefactoringServer.py" line="1706"/> <source>Find Occurrences</source> <translation>Vorkommen finden</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1727"/> + <location filename="../RefactoringServer.py" line="1740"/> <source>No occurrences found.</source> <translation>Keine Vorkommen gefunden.</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1740"/> + <location filename="../RefactoringServer.py" line="1753"/> <source>Find Definition</source> <translation>Definition finden</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1775"/> + <location filename="../RefactoringServer.py" line="1788"/> <source>No matching definition found.</source> <translation>Keine passende Definition gefunden.</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1788"/> + <location filename="../RefactoringServer.py" line="1801"/> <source>Find Implementations</source> <translation>Implementierungen finden</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1822"/> + <location filename="../RefactoringServer.py" line="1835"/> <source>No implementations found.</source> <translation>Keine Implementierungen gefunden.</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1844"/> + <location filename="../RefactoringServer.py" line="1856"/> <source>The Rope configuration file '{0}' does not exist.</source> <translation>Die Rope Konfigurationsdatei '{0}' existiert nicht.</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1850"/> + <location filename="../RefactoringServer.py" line="1862"/> <source>The Rope admin directory does not exist.</source> <translation>Das Rope Verwaltungsverzeichnis existiert nicht.</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1859"/> + <location filename="../RefactoringServer.py" line="1871"/> <source>Shall rope's current configuration be replaced by a new default configuration?</source> <translation>Soll ropes aktuelle Konfiguration mit einer neuen Standardkonfiguration überschrieben werden?</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1875"/> + <location filename="../RefactoringServer.py" line="1887"/> <source><p>The configuration could not be updated.</p><p>Reason: {0}</p></source> <translation><p>Die Konfiguration konnte nicht aktualisiert werden.</p><p>Ursache: {0}</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1889"/> + <location filename="../RefactoringServer.py" line="1900"/> <source>Help about rope refactorings</source> <translation>Hilfe für Rope Refactorierungen</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1898"/> + <location filename="../RefactoringServer.py" line="1911"/> <source>This action might take some time. Do you really want to perform SOA?</source> <translation>Diese Aktion benötigt einige Zeit. Soll SOA wirklich durchgeführt werden?</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1920"/> + <location filename="../RefactoringServer.py" line="1933"/> <source>Static object analysis (SOA) done. SOA database updated.</source> <translation>Statische Objektanalyse (SOA) beendet. SOA Datenbank aktualisiert.</translation> </message> <message> - <location filename="../RefactoringServer.py" line="2121"/> + <location filename="../RefactoringServer.py" line="2118"/> <source>Project language '{0}' is not supported because the configured interpreter could not be started. Refactoring is disabled.</source> <translation>Die Projektsprache '{0}' wird nicht unterstützt, da der konfigurierte Interpreter nicht gestartet werden konnte. Refaktorieren ist ausgeschaltet.</translation> </message> <message> - <location filename="../RefactoringServer.py" line="2130"/> + <location filename="../RefactoringServer.py" line="2127"/> <source>Project language '{0}' is not supported because no suitable interpreter is configured. Refactoring is disabled.</source> <translation>Die Projektsprache '{0}' wird nicht unrestützt, da kein geeigneter Interpreter konfiguriert ist. Refaktorieren ist ausgeschaltet.</translation> </message> <message> - <location filename="../RefactoringServer.py" line="2136"/> + <location filename="../RefactoringServer.py" line="2133"/> <source>Refactoring for project language '{0}' is not supported.</source> <translation>Refaktorieren für die Projektsprache '{0}' wird nicht unterstützt.</translation> </message> <message> - <location filename="../RefactoringServer.py" line="2262"/> + <location filename="../RefactoringServer.py" line="2261"/> <source>Refactoring Protocol Error</source> <translation>Refaktorieren Protokollfehler</translation> </message> <message> - <location filename="../RefactoringServer.py" line="2276"/> + <location filename="../RefactoringServer.py" line="2275"/> <source>Refactoring Client Error</source> <translation>Refaktorieren Clientfehler</translation> </message> <message> - <location filename="../RefactoringServer.py" line="2262"/> + <location filename="../RefactoringServer.py" line="2261"/> <source><p>The data received from the refactoring server could not be decoded. Please report this issue with the received data to the eric bugs email address.</p><p>Error: {0}</p><p>Data:<br/>{1}</p></source> <translation><p>Die vom Refaktorierungsserver gesendeten Daten konnten nicht dekodiert werden. Bitte berichten sie das Problem zusammen mit den empfangenen Daten an die eric Fehleremailadresse.</p><p>Fehler: {0}</p><p>Daten:<br/>{1}</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="2276"/> + <location filename="../RefactoringServer.py" line="2275"/> <source><p>An exception happened in the refactoring client. Please report it to the eric bugs email address.</p><p>Exception: {0}</p><p>Value: {1}</p><p>Traceback: {2}</p></source> <translation><p>Im Refaktierungsclient trat eine Ausnahme auf. Bitte berichten sie das Problem an die eric Fehleremailadresse.</p><p>Ausnahme: {0}</p><p>Wert: {1}</p><p>Traceback: {2}</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="2115"/> + <location filename="../RefactoringServer.py" line="2112"/> <source>The project is configured for remote access. Using local interpreter instead.</source> <translation>Das Projekt wurde für Remotezugriff konfiguriert. Es wird stattdessen ein lokaler Interpreter verwendet.</translation> </message>
--- a/RefactoringRope/i18n/rope_en.ts Sat May 02 15:05:16 2020 +0200 +++ b/RefactoringRope/i18n/rope_en.ts Mon Jun 22 18:08:10 2020 +0200 @@ -67,21 +67,11 @@ </message> <message> <location filename="../ConfigurationPage/AutoCompletionRopePage.ui" line="105"/> - <source>Press to edit the rope configuration for Python2</source> + <source>Press to edit the rope configuration for Python3</source> <translation type="unfinished"></translation> </message> <message> <location filename="../ConfigurationPage/AutoCompletionRopePage.ui" line="108"/> - <source>Edit Python 2 rope configuration</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../ConfigurationPage/AutoCompletionRopePage.ui" line="115"/> - <source>Press to edit the rope configuration for Python3</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../ConfigurationPage/AutoCompletionRopePage.ui" line="118"/> <source>Edit Python 3 rope configuration</source> <translation type="unfinished"></translation> </message> @@ -236,7 +226,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../ChangeSignatureDialog.py" line="58"/> + <location filename="../ChangeSignatureDialog.py" line="59"/> <source>Preview</source> <translation type="unfinished"></translation> </message> @@ -257,7 +247,7 @@ <context> <name>CodeAssistServer</name> <message> - <location filename="../CodeAssistServer.py" line="595"/> + <location filename="../CodeAssistServer.py" line="589"/> <source>An exception happened in the code assist client. Please report it to the eric bugs email address. Exception: {0} Value: {1} @@ -266,29 +256,29 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../CodeAssistServer.py" line="637"/> + <location filename="../CodeAssistServer.py" line="631"/> <source>'{0}' is not supported because the configured interpreter could not be started. </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../CodeAssistServer.py" line="642"/> + <location filename="../CodeAssistServer.py" line="636"/> <source>'{0}' is not supported because no suitable interpreter is configured. </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../CodeAssistServer.py" line="234"/> + <location filename="../CodeAssistServer.py" line="227"/> <source>Configure Rope</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../CodeAssistServer.py" line="234"/> + <location filename="../CodeAssistServer.py" line="227"/> <source>The Rope configuration file '{0}' does not exist.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../CodeAssistServer.py" line="839"/> + <location filename="../CodeAssistServer.py" line="780"/> <source>Rope</source> <translation type="unfinished"></translation> </message> @@ -338,37 +328,37 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../CodeAssistServer.py" line="434"/> + <location filename="../CodeAssistServer.py" line="427"/> <source>Language <b>{0}</b> is not supported.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../CodeAssistServer.py" line="437"/> + <location filename="../CodeAssistServer.py" line="431"/> <source>Language '{0}' is not supported.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../CodeAssistServer.py" line="481"/> + <location filename="../CodeAssistServer.py" line="475"/> <source>Present in <i>{0}</i> module</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../CodeAssistServer.py" line="485"/> + <location filename="../CodeAssistServer.py" line="479"/> <source>Present in '{0}' module</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../CodeAssistServer.py" line="503"/> + <location filename="../CodeAssistServer.py" line="497"/> <source>No documentation available.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../CodeAssistServer.py" line="559"/> + <location filename="../CodeAssistServer.py" line="553"/> <source>Code Assist: No definition found</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../CodeAssistServer.py" line="585"/> + <location filename="../CodeAssistServer.py" line="579"/> <source>The data received from the code assist server could not be decoded. Please report this issue with the received data to the eric bugs email address. Error: {0} Data: @@ -513,7 +503,7 @@ <context> <name>HistoryDialog</name> <message> - <location filename="../HistoryDialog.py" line="79"/> + <location filename="../HistoryDialog.py" line="80"/> <source>&Undo</source> <translation type="unfinished"></translation> </message> @@ -523,7 +513,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../HistoryDialog.py" line="81"/> + <location filename="../HistoryDialog.py" line="82"/> <source>&Redo</source> <translation type="unfinished"></translation> </message> @@ -533,22 +523,22 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../HistoryDialog.py" line="195"/> + <location filename="../HistoryDialog.py" line="196"/> <source>Undo refactorings</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HistoryDialog.py" line="195"/> + <location filename="../HistoryDialog.py" line="196"/> <source>Shall all refactorings up to <b>{0}</b> be undone?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HistoryDialog.py" line="217"/> + <location filename="../HistoryDialog.py" line="218"/> <source>Redo refactorings</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HistoryDialog.py" line="217"/> + <location filename="../HistoryDialog.py" line="218"/> <source>Shall all refactorings up to <b>{0}</b> be redone?</source> <translation type="unfinished"></translation> </message> @@ -563,32 +553,32 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../HistoryDialog.py" line="74"/> + <location filename="../HistoryDialog.py" line="75"/> <source><b>Project History</b></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HistoryDialog.py" line="76"/> + <location filename="../HistoryDialog.py" line="77"/> <source><b>File History: {0}</b></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HistoryDialog.py" line="83"/> + <location filename="../HistoryDialog.py" line="84"/> <source>Re&fresh</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HistoryDialog.py" line="85"/> + <location filename="../HistoryDialog.py" line="86"/> <source>&Clear History</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HistoryDialog.py" line="254"/> + <location filename="../HistoryDialog.py" line="255"/> <source>Clear History</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HistoryDialog.py" line="254"/> + <location filename="../HistoryDialog.py" line="255"/> <source>Do you really want to clear the refactoring history?</source> <translation type="unfinished"></translation> </message> @@ -639,7 +629,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../InlineDialog.py" line="81"/> + <location filename="../InlineDialog.py" line="80"/> <source>Inlining occurrences of <b>{0}</b> (type '<i>{1}</i>').</source> <translation type="unfinished"></translation> </message> @@ -835,80 +825,80 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../MoveDialog.py" line="92"/> + <location filename="../MoveDialog.py" line="91"/> <source>Move Method</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MoveDialog.py" line="97"/> + <location filename="../MoveDialog.py" line="96"/> <source>Move Global Method</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MoveDialog.py" line="99"/> + <location filename="../MoveDialog.py" line="98"/> <source>Destination Module:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MoveDialog.py" line="100"/> + <location filename="../MoveDialog.py" line="99"/> <source>Enter the destination module for the method</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MoveDialog.py" line="102"/> + <location filename="../MoveDialog.py" line="101"/> <source>Select the destination module via a file selection dialog</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MoveDialog.py" line="105"/> + <location filename="../MoveDialog.py" line="104"/> <source>Move Module</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MoveDialog.py" line="107"/> + <location filename="../MoveDialog.py" line="106"/> <source>Destination Package:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MoveDialog.py" line="108"/> + <location filename="../MoveDialog.py" line="107"/> <source>Enter the destination package for the module</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MoveDialog.py" line="110"/> + <location filename="../MoveDialog.py" line="109"/> <source>Select the destination package via a directory selection dialog</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MoveDialog.py" line="114"/> + <location filename="../MoveDialog.py" line="113"/> <source>Move</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MoveDialog.py" line="181"/> - <source>Python Files (*.py *.py2 *.py3);;All Files (*)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../MoveDialog.py" line="197"/> + <location filename="../MoveDialog.py" line="196"/> <source>The selected module must be inside the project.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MoveDialog.py" line="201"/> + <location filename="../MoveDialog.py" line="200"/> <source>The selected directory must be inside the project.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MoveDialog.py" line="243"/> + <location filename="../MoveDialog.py" line="242"/> <source>The selected module <b>{0}</b> does not exist.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MoveDialog.py" line="252"/> + <location filename="../MoveDialog.py" line="251"/> <source>The selected directory <b>{0}</b> is not a package.</source> <translation type="unfinished"></translation> </message> + <message> + <location filename="../MoveDialog.py" line="180"/> + <source>Python Files (*.py *.py3);;All Files (*)</source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>PreviewDialog</name> @@ -931,7 +921,7 @@ <context> <name>RefactoringRopePlugin</name> <message> - <location filename="../../PluginRefactoringRope.py" line="107"/> + <location filename="../../PluginRefactoringRope.py" line="123"/> <source>Rope</source> <translation type="unfinished"></translation> </message> @@ -939,697 +929,697 @@ <context> <name>RefactoringServer</name> <message> - <location filename="../RefactoringServer.py" line="951"/> + <location filename="../RefactoringServer.py" line="964"/> <source>Rename</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="167"/> + <location filename="../RefactoringServer.py" line="180"/> <source>&Rename</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="172"/> + <location filename="../RefactoringServer.py" line="185"/> <source>Rename the highlighted object</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="174"/> + <location filename="../RefactoringServer.py" line="187"/> <source><b>Rename</b><p>Rename the highlighted Python object.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="957"/> + <location filename="../RefactoringServer.py" line="970"/> <source>Local Rename</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="182"/> + <location filename="../RefactoringServer.py" line="195"/> <source>&Local Rename</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="187"/> + <location filename="../RefactoringServer.py" line="200"/> <source>Rename the highlighted object in the current module only</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="189"/> + <location filename="../RefactoringServer.py" line="202"/> <source><b>Local Rename</b><p>Rename the highlighted Python object in the current module only.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="963"/> + <location filename="../RefactoringServer.py" line="976"/> <source>Rename Current Module</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="203"/> + <location filename="../RefactoringServer.py" line="216"/> <source>Rename the current module</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="205"/> + <location filename="../RefactoringServer.py" line="218"/> <source><b>Rename Current Module</b><p>Rename the current module.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1034"/> + <location filename="../RefactoringServer.py" line="1049"/> <source>Change Occurrences</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="213"/> + <location filename="../RefactoringServer.py" line="226"/> <source>Change &Occurrences</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="218"/> + <location filename="../RefactoringServer.py" line="231"/> <source>Change all occurrences in the local scope</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="220"/> + <location filename="../RefactoringServer.py" line="233"/> <source><b>Change Occurrences</b><p>Change all occurrences in the local scope.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="232"/> + <location filename="../RefactoringServer.py" line="245"/> <source>Extract method</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="232"/> + <location filename="../RefactoringServer.py" line="245"/> <source>Extract &Method</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="237"/> + <location filename="../RefactoringServer.py" line="250"/> <source>Extract the highlighted area as a method</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="239"/> + <location filename="../RefactoringServer.py" line="252"/> <source><b>Extract method</b><p>Extract the highlighted area as a method or function.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="247"/> + <location filename="../RefactoringServer.py" line="260"/> <source>Extract local variable</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="247"/> + <location filename="../RefactoringServer.py" line="260"/> <source>&Extract Local Variable</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="252"/> + <location filename="../RefactoringServer.py" line="265"/> <source>Extract the highlighted area as a local variable</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="254"/> + <location filename="../RefactoringServer.py" line="267"/> <source><b>Extract local variable</b><p>Extract the highlighted area as a local variable.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1129"/> + <location filename="../RefactoringServer.py" line="1142"/> <source>Inline</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="266"/> + <location filename="../RefactoringServer.py" line="279"/> <source>&Inline</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="271"/> + <location filename="../RefactoringServer.py" line="284"/> <source>Inlines the selected local variable or method</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="273"/> + <location filename="../RefactoringServer.py" line="286"/> <source><b>Inline</b><p>Inlines the selected local variable or method.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="285"/> + <location filename="../RefactoringServer.py" line="298"/> <source>Move method</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="285"/> + <location filename="../RefactoringServer.py" line="298"/> <source>Mo&ve Method</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="290"/> + <location filename="../RefactoringServer.py" line="303"/> <source>Move the highlighted method to another class</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="292"/> + <location filename="../RefactoringServer.py" line="305"/> <source><b>Move method</b><p>Move the highlighted method to another class.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="300"/> + <location filename="../RefactoringServer.py" line="313"/> <source>Move current module</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1179"/> + <location filename="../RefactoringServer.py" line="1192"/> <source>Move Current Module</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="305"/> + <location filename="../RefactoringServer.py" line="318"/> <source>Move the current module to another package</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="307"/> + <location filename="../RefactoringServer.py" line="320"/> <source><b>Move current module</b><p>Move the current module to another package.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1212"/> + <location filename="../RefactoringServer.py" line="1225"/> <source>Use Function</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="324"/> + <location filename="../RefactoringServer.py" line="337"/> <source>Use a function wherever possible.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="326"/> + <location filename="../RefactoringServer.py" line="339"/> <source><b>Use function</b><p>Tries to use a function wherever possible.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1249"/> + <location filename="../RefactoringServer.py" line="1262"/> <source>Introduce Factory Method</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="338"/> + <location filename="../RefactoringServer.py" line="351"/> <source>Introduce &Factory Method</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="343"/> + <location filename="../RefactoringServer.py" line="356"/> <source>Introduce a factory method or function</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="345"/> + <location filename="../RefactoringServer.py" line="358"/> <source><b>Introduce Factory Method</b><p>Introduce a factory method or function.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1283"/> + <location filename="../RefactoringServer.py" line="1296"/> <source>Introduce Parameter</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="353"/> + <location filename="../RefactoringServer.py" line="366"/> <source>Introduce &Parameter</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="358"/> + <location filename="../RefactoringServer.py" line="371"/> <source>Introduce a parameter in a function</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="360"/> + <location filename="../RefactoringServer.py" line="373"/> <source><b>Introduce Parameter</b><p>Introduce a parameter in a function.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1316"/> + <location filename="../RefactoringServer.py" line="1329"/> <source>Organize Imports</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="372"/> + <location filename="../RefactoringServer.py" line="385"/> <source>&Organize Imports</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="377"/> + <location filename="../RefactoringServer.py" line="390"/> <source>Sort imports according to PEP-8</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="379"/> + <location filename="../RefactoringServer.py" line="392"/> <source><b>Organize Imports</b><p>Sort imports according to PEP-8.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1324"/> + <location filename="../RefactoringServer.py" line="1337"/> <source>Expand Star Imports</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="387"/> + <location filename="../RefactoringServer.py" line="400"/> <source>E&xpand Star Imports</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="392"/> + <location filename="../RefactoringServer.py" line="405"/> <source>Expand imports like "from xxx import *"</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="394"/> + <location filename="../RefactoringServer.py" line="407"/> <source><b>Expand Star Imports</b><p>Expand imports like "from xxx import *".</p><p>Select the import to act on or none to do all. Unused imports are deleted.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1332"/> + <location filename="../RefactoringServer.py" line="1345"/> <source>Relative to Absolute</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="404"/> + <location filename="../RefactoringServer.py" line="417"/> <source>Relative to &Absolute</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="409"/> + <location filename="../RefactoringServer.py" line="422"/> <source>Transform relative imports to absolute ones</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="411"/> + <location filename="../RefactoringServer.py" line="424"/> <source><b>Relative to Absolute</b><p>Transform relative imports to absolute ones.</p><p>Select the import to act on or none to do all. Unused imports are deleted.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1340"/> + <location filename="../RefactoringServer.py" line="1353"/> <source>Froms to Imports</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="421"/> + <location filename="../RefactoringServer.py" line="434"/> <source>Froms to &Imports</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="426"/> + <location filename="../RefactoringServer.py" line="439"/> <source>Transform From imports to plain imports</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="428"/> + <location filename="../RefactoringServer.py" line="441"/> <source><b>Froms to Imports</b><p>Transform From imports to plain imports.</p><p>Select the import to act on or none to do all. Unused imports are deleted.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1348"/> + <location filename="../RefactoringServer.py" line="1361"/> <source>Handle Long Imports</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="438"/> + <location filename="../RefactoringServer.py" line="451"/> <source>Handle &Long Imports</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="443"/> + <location filename="../RefactoringServer.py" line="456"/> <source>Transform long import statements to look better</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="445"/> + <location filename="../RefactoringServer.py" line="458"/> <source><b>Handle Long Imports</b><p>Transform long import statements to look better.</p><p>Select the import to act on or none to do all. Unused imports are deleted.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1399"/> + <location filename="../RefactoringServer.py" line="1412"/> <source>Restructure</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="459"/> + <location filename="../RefactoringServer.py" line="472"/> <source>Res&tructure</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="464"/> + <location filename="../RefactoringServer.py" line="477"/> <source>Restructure code</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="466"/> + <location filename="../RefactoringServer.py" line="479"/> <source><b>Restructure</b><p>Restructure code. See "Rope Help" for examples.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1416"/> + <location filename="../RefactoringServer.py" line="1429"/> <source>Change Method Signature</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="474"/> + <location filename="../RefactoringServer.py" line="487"/> <source>&Change Method Signature</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="479"/> + <location filename="../RefactoringServer.py" line="492"/> <source>Change the signature of the selected method or function</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="481"/> + <location filename="../RefactoringServer.py" line="494"/> <source><b>Change Method Signature</b><p>Change the signature of the selected method or function.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1451"/> + <location filename="../RefactoringServer.py" line="1464"/> <source>Inline Argument Default</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="490"/> + <location filename="../RefactoringServer.py" line="503"/> <source>Inline &Argument Default</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="495"/> + <location filename="../RefactoringServer.py" line="508"/> <source>Inline a parameters default value</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="497"/> + <location filename="../RefactoringServer.py" line="510"/> <source><b>Inline Argument Default</b><p>Inline a parameters default value.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1485"/> + <location filename="../RefactoringServer.py" line="1498"/> <source>Transform Module to Package</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="510"/> + <location filename="../RefactoringServer.py" line="523"/> <source>Transform the current module to a package</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="512"/> + <location filename="../RefactoringServer.py" line="525"/> <source><b>Transform Module to Package</b><p>Transform the current module to a package.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1514"/> + <location filename="../RefactoringServer.py" line="1527"/> <source>Encapsulate Attribute</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="520"/> + <location filename="../RefactoringServer.py" line="533"/> <source>Encap&sulate Attribute</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="525"/> + <location filename="../RefactoringServer.py" line="538"/> <source>Generate a getter/setter for an attribute</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="527"/> + <location filename="../RefactoringServer.py" line="540"/> <source><b>Encapsulate Attribute</b><p>Generate a getter/setter for an attribute and changes its occurrences to use them.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1548"/> + <location filename="../RefactoringServer.py" line="1561"/> <source>Local Variable to Attribute</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="536"/> + <location filename="../RefactoringServer.py" line="549"/> <source>Local Varia&ble to Attribute</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="541"/> + <location filename="../RefactoringServer.py" line="554"/> <source>Change a local variable to an attribute</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="543"/> + <location filename="../RefactoringServer.py" line="556"/> <source><b>Local Variable to Attribute</b><p>Change a local variable to an attribute.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="551"/> + <location filename="../RefactoringServer.py" line="564"/> <source>Method To Method Object</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="551"/> + <location filename="../RefactoringServer.py" line="564"/> <source>Method To Method Ob&ject</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="556"/> + <location filename="../RefactoringServer.py" line="569"/> <source>Transform a function or a method to a method object</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="558"/> + <location filename="../RefactoringServer.py" line="571"/> <source><b>Method To Method Object</b><p>Transform a function or a method to a method object.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="570"/> + <location filename="../RefactoringServer.py" line="583"/> <source>Show Project History</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="570"/> + <location filename="../RefactoringServer.py" line="583"/> <source>Show Project History...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="575"/> + <location filename="../RefactoringServer.py" line="588"/> <source>Show the refactoring history of the project</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="577"/> + <location filename="../RefactoringServer.py" line="590"/> <source><b>Show Project History</b><p>This opens a dialog to show the refactoring history of the project.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="586"/> + <location filename="../RefactoringServer.py" line="599"/> <source>Show Current File History</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="586"/> + <location filename="../RefactoringServer.py" line="599"/> <source>Show Current File History...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="591"/> + <location filename="../RefactoringServer.py" line="604"/> <source>Show the refactoring history of the current file</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="593"/> + <location filename="../RefactoringServer.py" line="606"/> <source><b>Show Current File History</b><p>This opens a dialog to show the refactoring history of the current file.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1651"/> + <location filename="../RefactoringServer.py" line="1664"/> <source>Clear History</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="607"/> + <location filename="../RefactoringServer.py" line="620"/> <source>Clear the refactoring history</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="609"/> + <location filename="../RefactoringServer.py" line="622"/> <source><b>Clear History</b><p>Clears the refactoring history.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="621"/> + <location filename="../RefactoringServer.py" line="634"/> <source>Find occurrences</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="621"/> + <location filename="../RefactoringServer.py" line="634"/> <source>Find &Occurrences</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="626"/> + <location filename="../RefactoringServer.py" line="639"/> <source>Find occurrences of the highlighted object</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="628"/> + <location filename="../RefactoringServer.py" line="641"/> <source><b>Find occurrences</b><p>Find occurrences of the highlighted class, method, function or variable.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="637"/> + <location filename="../RefactoringServer.py" line="650"/> <source>Find definition</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="637"/> + <location filename="../RefactoringServer.py" line="650"/> <source>Find &Definition</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="642"/> + <location filename="../RefactoringServer.py" line="655"/> <source>Find definition of the highlighted item</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="644"/> + <location filename="../RefactoringServer.py" line="657"/> <source><b>Find definition</b><p>Find the definition of the highlighted class, method, function or variable.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="653"/> + <location filename="../RefactoringServer.py" line="666"/> <source>Find implementations</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="653"/> + <location filename="../RefactoringServer.py" line="666"/> <source>Find &Implementations</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="658"/> + <location filename="../RefactoringServer.py" line="671"/> <source>Find places where the selected method is overridden</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="660"/> + <location filename="../RefactoringServer.py" line="673"/> <source><b>Find implementations</b><p>Find places where the selected method is overridden.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1850"/> + <location filename="../RefactoringServer.py" line="1862"/> <source>Configure Rope</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="672"/> + <location filename="../RefactoringServer.py" line="685"/> <source>&Configure Rope</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="677"/> + <location filename="../RefactoringServer.py" line="690"/> <source>Open the rope configuration file</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="679"/> + <location filename="../RefactoringServer.py" line="692"/> <source><b>Configure Rope</b><p>Opens the rope configuration file in an editor.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="688"/> + <location filename="../RefactoringServer.py" line="701"/> <source>Rope Help</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="688"/> + <location filename="../RefactoringServer.py" line="701"/> <source>Rope &Help</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="693"/> + <location filename="../RefactoringServer.py" line="706"/> <source>Show help about the rope refactorings</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="695"/> + <location filename="../RefactoringServer.py" line="708"/> <source><b>Rope help</b><p>Show some help text about the rope refactorings.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1897"/> + <location filename="../RefactoringServer.py" line="1910"/> <source>Analyse all modules</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="703"/> + <location filename="../RefactoringServer.py" line="716"/> <source>&Analyse all modules</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="708"/> - <source>Perform static object analysis on all modules</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../RefactoringServer.py" line="710"/> - <source><b>Analyse all modules</b><p>Perform static object analysis (SOA) on all modules. This might be time consuming. Analysis of all modules should only be neccessary, if the project was created with the rope plugin disabled or if files were added.</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../RefactoringServer.py" line="1875"/> - <source>Update Configuration</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../RefactoringServer.py" line="721"/> + <source>Perform static object analysis on all modules</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../RefactoringServer.py" line="723"/> + <source><b>Analyse all modules</b><p>Perform static object analysis (SOA) on all modules. This might be time consuming. Analysis of all modules should only be neccessary, if the project was created with the rope plugin disabled or if files were added.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../RefactoringServer.py" line="1887"/> + <source>Update Configuration</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../RefactoringServer.py" line="734"/> <source>&Update Configuration</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="726"/> + <location filename="../RefactoringServer.py" line="739"/> <source>Generates a new configuration file overwriting the current one.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="728"/> + <location filename="../RefactoringServer.py" line="741"/> <source><b>Update Configuration</b><p>Generates a new configuration file overwriting the current one.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="761"/> + <location filename="../RefactoringServer.py" line="774"/> <source>&Refactoring</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="756"/> + <location filename="../RefactoringServer.py" line="769"/> <source>&Query</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="792"/> + <location filename="../RefactoringServer.py" line="805"/> <source>Im&ports</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="801"/> + <location filename="../RefactoringServer.py" line="814"/> <source>History</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="808"/> + <location filename="../RefactoringServer.py" line="821"/> <source>&Utilities</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="828"/> + <location filename="../RefactoringServer.py" line="841"/> <source>About rope</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="828"/> + <location filename="../RefactoringServer.py" line="841"/> <source>{0} Version {1} @@ -1637,212 +1627,212 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="860"/> + <location filename="../RefactoringServer.py" line="873"/> <source>Rope Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="877"/> + <location filename="../RefactoringServer.py" line="890"/> <source>Rope error: {0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="985"/> + <location filename="../RefactoringServer.py" line="998"/> <source>Highlight the declaration you want to rename and try again.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1006"/> + <location filename="../RefactoringServer.py" line="1021"/> <source>The selection must not extend beyond one line.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1037"/> + <location filename="../RefactoringServer.py" line="1052"/> <source>Highlight an occurrence to be changed and try again.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1067"/> + <location filename="../RefactoringServer.py" line="1082"/> <source>Extract Method</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1073"/> + <location filename="../RefactoringServer.py" line="1088"/> <source>Extract Local Variable</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1093"/> + <location filename="../RefactoringServer.py" line="1106"/> <source>Highlight the region of code you want to extract and try again.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1132"/> + <location filename="../RefactoringServer.py" line="1145"/> <source>Highlight the local variable, method or parameter you want to inline and try again.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1170"/> + <location filename="../RefactoringServer.py" line="1183"/> <source>Move Method</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1173"/> + <location filename="../RefactoringServer.py" line="1186"/> <source>Highlight the method to move and try again.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1215"/> + <location filename="../RefactoringServer.py" line="1228"/> <source>Highlight a global function and try again.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1252"/> + <location filename="../RefactoringServer.py" line="1265"/> <source>Highlight the class to introduce a factory method for and try again.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1286"/> + <location filename="../RefactoringServer.py" line="1299"/> <source>Highlight the code for the new parameter and try again.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1419"/> + <location filename="../RefactoringServer.py" line="1432"/> <source>Highlight the method or function to change and try again.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1454"/> + <location filename="../RefactoringServer.py" line="1467"/> <source>Highlight the method or function to inline a parameter's default and try again.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1517"/> + <location filename="../RefactoringServer.py" line="1530"/> <source>Highlight the attribute to encapsulate and try again.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1551"/> + <location filename="../RefactoringServer.py" line="1564"/> <source>Highlight the local variable to make an attribute and try again.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1587"/> + <location filename="../RefactoringServer.py" line="1600"/> <source>Replace Method With Method Object</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1590"/> + <location filename="../RefactoringServer.py" line="1603"/> <source>Highlight the method or function to convert and try again.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1651"/> + <location filename="../RefactoringServer.py" line="1664"/> <source>Do you really want to clear the refactoring history?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1693"/> + <location filename="../RefactoringServer.py" line="1706"/> <source>Find Occurrences</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1727"/> + <location filename="../RefactoringServer.py" line="1740"/> <source>No occurrences found.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1740"/> + <location filename="../RefactoringServer.py" line="1753"/> <source>Find Definition</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1775"/> + <location filename="../RefactoringServer.py" line="1788"/> <source>No matching definition found.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1788"/> + <location filename="../RefactoringServer.py" line="1801"/> <source>Find Implementations</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1822"/> + <location filename="../RefactoringServer.py" line="1835"/> <source>No implementations found.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1844"/> + <location filename="../RefactoringServer.py" line="1856"/> <source>The Rope configuration file '{0}' does not exist.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1850"/> + <location filename="../RefactoringServer.py" line="1862"/> <source>The Rope admin directory does not exist.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1859"/> + <location filename="../RefactoringServer.py" line="1871"/> <source>Shall rope's current configuration be replaced by a new default configuration?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1875"/> + <location filename="../RefactoringServer.py" line="1887"/> <source><p>The configuration could not be updated.</p><p>Reason: {0}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1889"/> + <location filename="../RefactoringServer.py" line="1900"/> <source>Help about rope refactorings</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1898"/> + <location filename="../RefactoringServer.py" line="1911"/> <source>This action might take some time. Do you really want to perform SOA?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1920"/> + <location filename="../RefactoringServer.py" line="1933"/> <source>Static object analysis (SOA) done. SOA database updated.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="2121"/> + <location filename="../RefactoringServer.py" line="2118"/> <source>Project language '{0}' is not supported because the configured interpreter could not be started. Refactoring is disabled.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="2130"/> + <location filename="../RefactoringServer.py" line="2127"/> <source>Project language '{0}' is not supported because no suitable interpreter is configured. Refactoring is disabled.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="2136"/> + <location filename="../RefactoringServer.py" line="2133"/> <source>Refactoring for project language '{0}' is not supported.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="2262"/> + <location filename="../RefactoringServer.py" line="2261"/> <source>Refactoring Protocol Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="2276"/> + <location filename="../RefactoringServer.py" line="2275"/> <source>Refactoring Client Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="2262"/> + <location filename="../RefactoringServer.py" line="2261"/> <source><p>The data received from the refactoring server could not be decoded. Please report this issue with the received data to the eric bugs email address.</p><p>Error: {0}</p><p>Data:<br/>{1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="2276"/> + <location filename="../RefactoringServer.py" line="2275"/> <source><p>An exception happened in the refactoring client. Please report it to the eric bugs email address.</p><p>Exception: {0}</p><p>Value: {1}</p><p>Traceback: {2}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="2115"/> + <location filename="../RefactoringServer.py" line="2112"/> <source>The project is configured for remote access. Using local interpreter instead.</source> <translation type="unfinished"></translation> </message>
--- a/RefactoringRope/i18n/rope_es.ts Sat May 02 15:05:16 2020 +0200 +++ b/RefactoringRope/i18n/rope_es.ts Mon Jun 22 18:08:10 2020 +0200 @@ -68,20 +68,20 @@ <message> <location filename="../ConfigurationPage/AutoCompletionRopePage.ui" line="105"/> <source>Press to edit the rope configuration for Python2</source> - <translation>Pulsar para editar la configuración de rope para Python2</translation> + <translation type="obsolete">Pulsar para editar la configuración de rope para Python2</translation> </message> <message> <location filename="../ConfigurationPage/AutoCompletionRopePage.ui" line="108"/> <source>Edit Python 2 rope configuration</source> - <translation>Editar configuración de rope para Python 2</translation> + <translation type="obsolete">Editar configuración de rope para Python 2</translation> </message> <message> - <location filename="../ConfigurationPage/AutoCompletionRopePage.ui" line="115"/> + <location filename="../ConfigurationPage/AutoCompletionRopePage.ui" line="105"/> <source>Press to edit the rope configuration for Python3</source> <translation>Pulsar para editar la configuración de rope para Python3</translation> </message> <message> - <location filename="../ConfigurationPage/AutoCompletionRopePage.ui" line="118"/> + <location filename="../ConfigurationPage/AutoCompletionRopePage.ui" line="108"/> <source>Edit Python 3 rope configuration</source> <translation>Editar configuración de rope para Python 3</translation> </message> @@ -237,7 +237,7 @@ <translation>&Hacerlo para todos los métodos que combinen en la jerarquía de clases</translation> </message> <message> - <location filename="../ChangeSignatureDialog.py" line="58"/> + <location filename="../ChangeSignatureDialog.py" line="59"/> <source>Preview</source> <translation>Vista Preliminar</translation> </message> @@ -269,7 +269,7 @@ </translation> </message> <message> - <location filename="../CodeAssistServer.py" line="595"/> + <location filename="../CodeAssistServer.py" line="589"/> <source>An exception happened in the code assist client. Please report it to the eric bugs email address. Exception: {0} Value: {1} @@ -282,31 +282,31 @@ </translation> </message> <message> - <location filename="../CodeAssistServer.py" line="637"/> + <location filename="../CodeAssistServer.py" line="631"/> <source>'{0}' is not supported because the configured interpreter could not be started. </source> <translation>'{0}' no se soporta porque el intérprete configurado no se ha podido iniciar. </translation> </message> <message> - <location filename="../CodeAssistServer.py" line="642"/> + <location filename="../CodeAssistServer.py" line="636"/> <source>'{0}' is not supported because no suitable interpreter is configured. </source> <translation>'{0}' no se soporta porque no hay un intérprete adecuado configurado. </translation> </message> <message> - <location filename="../CodeAssistServer.py" line="234"/> + <location filename="../CodeAssistServer.py" line="227"/> <source>Configure Rope</source> <translation>Configurar Rope</translation> </message> <message> - <location filename="../CodeAssistServer.py" line="234"/> + <location filename="../CodeAssistServer.py" line="227"/> <source>The Rope configuration file '{0}' does not exist.</source> <translation>El archivo de configuración de Rope '{0}' no existe.</translation> </message> <message> - <location filename="../CodeAssistServer.py" line="839"/> + <location filename="../CodeAssistServer.py" line="780"/> <source>Rope</source> <translation>Rope</translation> </message> @@ -356,37 +356,37 @@ <translation>desconocido</translation> </message> <message> - <location filename="../CodeAssistServer.py" line="434"/> + <location filename="../CodeAssistServer.py" line="427"/> <source>Language <b>{0}</b> is not supported.</source> <translation>El lenguaje <b>{0}</b> no está soportado.</translation> </message> <message> - <location filename="../CodeAssistServer.py" line="437"/> + <location filename="../CodeAssistServer.py" line="431"/> <source>Language '{0}' is not supported.</source> <translation>El lenguaje '{0}' no está soportado.</translation> </message> <message> - <location filename="../CodeAssistServer.py" line="481"/> + <location filename="../CodeAssistServer.py" line="475"/> <source>Present in <i>{0}</i> module</source> <translation>Presente en el módulo <i>{0}</i></translation> </message> <message> - <location filename="../CodeAssistServer.py" line="485"/> + <location filename="../CodeAssistServer.py" line="479"/> <source>Present in '{0}' module</source> <translation>Presente en el módulo'{0}'</translation> </message> <message> - <location filename="../CodeAssistServer.py" line="503"/> + <location filename="../CodeAssistServer.py" line="497"/> <source>No documentation available.</source> <translation>No hay documentación disponible.</translation> </message> <message> - <location filename="../CodeAssistServer.py" line="559"/> + <location filename="../CodeAssistServer.py" line="553"/> <source>Code Assist: No definition found</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../CodeAssistServer.py" line="585"/> + <location filename="../CodeAssistServer.py" line="579"/> <source>The data received from the code assist server could not be decoded. Please report this issue with the received data to the eric bugs email address. Error: {0} Data: @@ -534,7 +534,7 @@ <context> <name>HistoryDialog</name> <message> - <location filename="../HistoryDialog.py" line="79"/> + <location filename="../HistoryDialog.py" line="80"/> <source>&Undo</source> <translation>&Deshacer</translation> </message> @@ -544,7 +544,7 @@ <translation>Historial de Deshacer</translation> </message> <message> - <location filename="../HistoryDialog.py" line="81"/> + <location filename="../HistoryDialog.py" line="82"/> <source>&Redo</source> <translation>&Rehacer</translation> </message> @@ -554,22 +554,22 @@ <translation>Historial de Rehacer</translation> </message> <message> - <location filename="../HistoryDialog.py" line="195"/> + <location filename="../HistoryDialog.py" line="196"/> <source>Undo refactorings</source> <translation>Deshacer refactorizaciones</translation> </message> <message> - <location filename="../HistoryDialog.py" line="195"/> + <location filename="../HistoryDialog.py" line="196"/> <source>Shall all refactorings up to <b>{0}</b> be undone?</source> <translation>¿Deben deshacerse todas las refactorizaciones hasta <b>{0}</b>?</translation> </message> <message> - <location filename="../HistoryDialog.py" line="217"/> + <location filename="../HistoryDialog.py" line="218"/> <source>Redo refactorings</source> <translation>Rehacer refactorizaciones</translation> </message> <message> - <location filename="../HistoryDialog.py" line="217"/> + <location filename="../HistoryDialog.py" line="218"/> <source>Shall all refactorings up to <b>{0}</b> be redone?</source> <translation>¿Deben rehacerse todas las refactorizaciones hasta <b>{0}</b>?</translation> </message> @@ -584,32 +584,32 @@ <translation>Seleccionar un cambio para vista preliminar en la derecha</translation> </message> <message> - <location filename="../HistoryDialog.py" line="74"/> + <location filename="../HistoryDialog.py" line="75"/> <source><b>Project History</b></source> <translation><b>Historial de Proyectos</b></translation> </message> <message> - <location filename="../HistoryDialog.py" line="76"/> + <location filename="../HistoryDialog.py" line="77"/> <source><b>File History: {0}</b></source> <translation><b>Historal del Archivo: {0}</b></translation> </message> <message> - <location filename="../HistoryDialog.py" line="83"/> + <location filename="../HistoryDialog.py" line="84"/> <source>Re&fresh</source> <translation>Ac&tualizar</translation> </message> <message> - <location filename="../HistoryDialog.py" line="85"/> + <location filename="../HistoryDialog.py" line="86"/> <source>&Clear History</source> <translation>&Borrar Historial</translation> </message> <message> - <location filename="../HistoryDialog.py" line="254"/> + <location filename="../HistoryDialog.py" line="255"/> <source>Clear History</source> <translation>Borrar Historial</translation> </message> <message> - <location filename="../HistoryDialog.py" line="254"/> + <location filename="../HistoryDialog.py" line="255"/> <source>Do you really want to clear the refactoring history?</source> <translation>¿Realmente desea borrar el historial de refactoring?</translation> </message> @@ -660,7 +660,7 @@ <translation>Vista Preliminar</translation> </message> <message> - <location filename="../InlineDialog.py" line="81"/> + <location filename="../InlineDialog.py" line="80"/> <source>Inlining occurrences of <b>{0}</b> (type '<i>{1}</i>').</source> <translation>Ocurrencias inline de <b>{0}</b> (tipo '<i>{1}</i>').</translation> </message> @@ -856,80 +856,85 @@ <translation>Vista Preliminar</translation> </message> <message> - <location filename="../MoveDialog.py" line="92"/> + <location filename="../MoveDialog.py" line="91"/> <source>Move Method</source> <translation>Mover Método</translation> </message> <message> - <location filename="../MoveDialog.py" line="97"/> + <location filename="../MoveDialog.py" line="96"/> <source>Move Global Method</source> <translation>Mover Método Global</translation> </message> <message> - <location filename="../MoveDialog.py" line="99"/> + <location filename="../MoveDialog.py" line="98"/> <source>Destination Module:</source> <translation>Modulo de Destino:</translation> </message> <message> - <location filename="../MoveDialog.py" line="100"/> + <location filename="../MoveDialog.py" line="99"/> <source>Enter the destination module for the method</source> <translation>Introducir el módulo de destino para el método</translation> </message> <message> - <location filename="../MoveDialog.py" line="102"/> + <location filename="../MoveDialog.py" line="101"/> <source>Select the destination module via a file selection dialog</source> <translation>Seleccionar el módulo de destino a través de un diálogo de selección de archivos</translation> </message> <message> - <location filename="../MoveDialog.py" line="105"/> + <location filename="../MoveDialog.py" line="104"/> <source>Move Module</source> <translation>Mover Módulo</translation> </message> <message> - <location filename="../MoveDialog.py" line="107"/> + <location filename="../MoveDialog.py" line="106"/> <source>Destination Package:</source> <translation>Package de Destino:</translation> </message> <message> - <location filename="../MoveDialog.py" line="108"/> + <location filename="../MoveDialog.py" line="107"/> <source>Enter the destination package for the module</source> <translation>Introducir el package de destino para el módulo</translation> </message> <message> - <location filename="../MoveDialog.py" line="110"/> + <location filename="../MoveDialog.py" line="109"/> <source>Select the destination package via a directory selection dialog</source> <translation>Seleccionar el package de destino a través de un diálogo de selección de directorio</translation> </message> <message> - <location filename="../MoveDialog.py" line="114"/> + <location filename="../MoveDialog.py" line="113"/> <source>Move</source> <translation>Mover</translation> </message> <message> <location filename="../MoveDialog.py" line="181"/> <source>Python Files (*.py *.py2 *.py3);;All Files (*)</source> - <translation>Archivos Python (*.py *.py2 *.py3);;Todos los Archivos (*)</translation> + <translation type="obsolete">Archivos Python (*.py *.py2 *.py3);;Todos los Archivos (*)</translation> </message> <message> - <location filename="../MoveDialog.py" line="197"/> + <location filename="../MoveDialog.py" line="196"/> <source>The selected module must be inside the project.</source> <translation>El módulo seleccionado debe estar dentro del proyecto.</translation> </message> <message> - <location filename="../MoveDialog.py" line="201"/> + <location filename="../MoveDialog.py" line="200"/> <source>The selected directory must be inside the project.</source> <translation>El directorio seleccionado debe de estar dentro del proyecto.</translation> </message> <message> - <location filename="../MoveDialog.py" line="243"/> + <location filename="../MoveDialog.py" line="242"/> <source>The selected module <b>{0}</b> does not exist.</source> <translation>El módulo seleccionado <b>{0}</b> no existe.</translation> </message> <message> - <location filename="../MoveDialog.py" line="252"/> + <location filename="../MoveDialog.py" line="251"/> <source>The selected directory <b>{0}</b> is not a package.</source> <translation>El directorio seleccionado <b>'{0}'</b> no es un paquete.</translation> </message> + <message> + <location filename="../MoveDialog.py" line="180"/> + <source>Python Files (*.py *.py3);;All Files (*)</source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>PreviewDialog</name> @@ -952,7 +957,7 @@ <context> <name>RefactoringRopePlugin</name> <message> - <location filename="../../PluginRefactoringRope.py" line="107"/> + <location filename="../../PluginRefactoringRope.py" line="123"/> <source>Rope</source> <translation>Rope</translation> </message> @@ -960,697 +965,697 @@ <context> <name>RefactoringServer</name> <message> - <location filename="../RefactoringServer.py" line="951"/> + <location filename="../RefactoringServer.py" line="964"/> <source>Rename</source> <translation>Renombrar</translation> </message> <message> - <location filename="../RefactoringServer.py" line="167"/> + <location filename="../RefactoringServer.py" line="180"/> <source>&Rename</source> <translation>&Renombrar</translation> </message> <message> - <location filename="../RefactoringServer.py" line="172"/> + <location filename="../RefactoringServer.py" line="185"/> <source>Rename the highlighted object</source> <translation>Renombrar el objeto resaltado</translation> </message> <message> - <location filename="../RefactoringServer.py" line="174"/> + <location filename="../RefactoringServer.py" line="187"/> <source><b>Rename</b><p>Rename the highlighted Python object.</p></source> <translation><b>Renombrar</b><p>Renombrar el objeto python resaltado.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="957"/> + <location filename="../RefactoringServer.py" line="970"/> <source>Local Rename</source> <translation>Renombrar Local</translation> </message> <message> - <location filename="../RefactoringServer.py" line="182"/> + <location filename="../RefactoringServer.py" line="195"/> <source>&Local Rename</source> <translation>Renombrar &Local</translation> </message> <message> - <location filename="../RefactoringServer.py" line="187"/> + <location filename="../RefactoringServer.py" line="200"/> <source>Rename the highlighted object in the current module only</source> <translation>Renombra el objeto resaltado solamente en el módulo actual</translation> </message> <message> - <location filename="../RefactoringServer.py" line="189"/> + <location filename="../RefactoringServer.py" line="202"/> <source><b>Local Rename</b><p>Rename the highlighted Python object in the current module only.</p></source> <translation><b>Renombrar Local</b><p>Renombrar el objeto python resaltado solamente en el módulo actual.</b></translation> </message> <message> - <location filename="../RefactoringServer.py" line="963"/> + <location filename="../RefactoringServer.py" line="976"/> <source>Rename Current Module</source> <translation>Renombrar Módulo Actual</translation> </message> <message> - <location filename="../RefactoringServer.py" line="203"/> + <location filename="../RefactoringServer.py" line="216"/> <source>Rename the current module</source> <translation>Renombrar el módulo actual</translation> </message> <message> - <location filename="../RefactoringServer.py" line="205"/> + <location filename="../RefactoringServer.py" line="218"/> <source><b>Rename Current Module</b><p>Rename the current module.</p></source> <translation><b>Renombrar Módulo Actual</b><p>Renombrar el módulo actual.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1034"/> + <location filename="../RefactoringServer.py" line="1049"/> <source>Change Occurrences</source> <translation>Cambiar Ocurrencias</translation> </message> <message> - <location filename="../RefactoringServer.py" line="213"/> + <location filename="../RefactoringServer.py" line="226"/> <source>Change &Occurrences</source> <translation>Cambiar &Ocurrencias</translation> </message> <message> - <location filename="../RefactoringServer.py" line="218"/> + <location filename="../RefactoringServer.py" line="231"/> <source>Change all occurrences in the local scope</source> <translation>Cambiar todas las ocurrencias en ámbito local</translation> </message> <message> - <location filename="../RefactoringServer.py" line="220"/> + <location filename="../RefactoringServer.py" line="233"/> <source><b>Change Occurrences</b><p>Change all occurrences in the local scope.</p></source> <translation><b>Cambiar Ocurrencias</b><p>Cambiar todas las ocurrencias en ámbito local.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="232"/> + <location filename="../RefactoringServer.py" line="245"/> <source>Extract method</source> <translation>Extraer Método</translation> </message> <message> - <location filename="../RefactoringServer.py" line="232"/> + <location filename="../RefactoringServer.py" line="245"/> <source>Extract &Method</source> <translation>Extraer &Método</translation> </message> <message> - <location filename="../RefactoringServer.py" line="237"/> + <location filename="../RefactoringServer.py" line="250"/> <source>Extract the highlighted area as a method</source> <translation>Extraer el área resaltada como un método</translation> </message> <message> - <location filename="../RefactoringServer.py" line="239"/> + <location filename="../RefactoringServer.py" line="252"/> <source><b>Extract method</b><p>Extract the highlighted area as a method or function.</p></source> <translation><b>Extraer método</b><p>Extraer el área resaltada como un método o función.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="247"/> + <location filename="../RefactoringServer.py" line="260"/> <source>Extract local variable</source> <translation>Extraer variable local</translation> </message> <message> - <location filename="../RefactoringServer.py" line="247"/> + <location filename="../RefactoringServer.py" line="260"/> <source>&Extract Local Variable</source> <translation>&Extraer Variable Local</translation> </message> <message> - <location filename="../RefactoringServer.py" line="252"/> + <location filename="../RefactoringServer.py" line="265"/> <source>Extract the highlighted area as a local variable</source> <translation>Extraer el área resaltada como una variable local</translation> </message> <message> - <location filename="../RefactoringServer.py" line="254"/> + <location filename="../RefactoringServer.py" line="267"/> <source><b>Extract local variable</b><p>Extract the highlighted area as a local variable.</p></source> <translation><b>Extraer variable local</b><p>Extraer el área resaltada como una variable local.</b></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1129"/> + <location filename="../RefactoringServer.py" line="1142"/> <source>Inline</source> <translation>Inline</translation> </message> <message> - <location filename="../RefactoringServer.py" line="266"/> + <location filename="../RefactoringServer.py" line="279"/> <source>&Inline</source> <translation>&Inline</translation> </message> <message> - <location filename="../RefactoringServer.py" line="271"/> + <location filename="../RefactoringServer.py" line="284"/> <source>Inlines the selected local variable or method</source> <translation>Hace inline la variable o método local seleccionados</translation> </message> <message> - <location filename="../RefactoringServer.py" line="273"/> + <location filename="../RefactoringServer.py" line="286"/> <source><b>Inline</b><p>Inlines the selected local variable or method.</p></source> <translation><b>Inline</b><p>Hace inline la variable o método local seleccionados.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="285"/> + <location filename="../RefactoringServer.py" line="298"/> <source>Move method</source> <translation>Mover método</translation> </message> <message> - <location filename="../RefactoringServer.py" line="285"/> + <location filename="../RefactoringServer.py" line="298"/> <source>Mo&ve Method</source> <translation>Mo&ver Método</translation> </message> <message> - <location filename="../RefactoringServer.py" line="290"/> + <location filename="../RefactoringServer.py" line="303"/> <source>Move the highlighted method to another class</source> <translation>Mover el método resaltado a otra clase</translation> </message> <message> - <location filename="../RefactoringServer.py" line="292"/> + <location filename="../RefactoringServer.py" line="305"/> <source><b>Move method</b><p>Move the highlighted method to another class.</p></source> <translation><b>Mover Método</b><p>Mover el método resaltado a otra clase.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="300"/> + <location filename="../RefactoringServer.py" line="313"/> <source>Move current module</source> <translation>Mover módulo actual</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1179"/> + <location filename="../RefactoringServer.py" line="1192"/> <source>Move Current Module</source> <translation>Mover Módulo Actual</translation> </message> <message> - <location filename="../RefactoringServer.py" line="305"/> + <location filename="../RefactoringServer.py" line="318"/> <source>Move the current module to another package</source> <translation>Mover el módulo actual a otro paquete</translation> </message> <message> - <location filename="../RefactoringServer.py" line="307"/> + <location filename="../RefactoringServer.py" line="320"/> <source><b>Move current module</b><p>Move the current module to another package.</p></source> <translation><b>Mover módulo actual</b><p>Mover el módulo actual a otro paquete.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1212"/> + <location filename="../RefactoringServer.py" line="1225"/> <source>Use Function</source> <translation>Utilizar Función</translation> </message> <message> - <location filename="../RefactoringServer.py" line="324"/> + <location filename="../RefactoringServer.py" line="337"/> <source>Use a function wherever possible.</source> <translation>Utilizar una función donde sea posible.</translation> </message> <message> - <location filename="../RefactoringServer.py" line="326"/> + <location filename="../RefactoringServer.py" line="339"/> <source><b>Use function</b><p>Tries to use a function wherever possible.</p></source> <translation><b>Utilizar función</b><p>Intenta utilizar una función donde sea posible.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1249"/> + <location filename="../RefactoringServer.py" line="1262"/> <source>Introduce Factory Method</source> <translation>Introducir Método Factory</translation> </message> <message> - <location filename="../RefactoringServer.py" line="338"/> + <location filename="../RefactoringServer.py" line="351"/> <source>Introduce &Factory Method</source> <translation>Introducir Método &Factory</translation> </message> <message> - <location filename="../RefactoringServer.py" line="343"/> + <location filename="../RefactoringServer.py" line="356"/> <source>Introduce a factory method or function</source> <translation>Introducir un método o función factory</translation> </message> <message> - <location filename="../RefactoringServer.py" line="345"/> + <location filename="../RefactoringServer.py" line="358"/> <source><b>Introduce Factory Method</b><p>Introduce a factory method or function.</p></source> <translation><b>Introducir Método Factory</b><p>Introducir un método o función factory.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1283"/> + <location filename="../RefactoringServer.py" line="1296"/> <source>Introduce Parameter</source> <translation>Introducir Parámetro</translation> </message> <message> - <location filename="../RefactoringServer.py" line="353"/> + <location filename="../RefactoringServer.py" line="366"/> <source>Introduce &Parameter</source> <translation>Introducir &Parámetro</translation> </message> <message> - <location filename="../RefactoringServer.py" line="358"/> + <location filename="../RefactoringServer.py" line="371"/> <source>Introduce a parameter in a function</source> <translation>Introducir un parámetro en una función</translation> </message> <message> - <location filename="../RefactoringServer.py" line="360"/> + <location filename="../RefactoringServer.py" line="373"/> <source><b>Introduce Parameter</b><p>Introduce a parameter in a function.</p></source> <translation><b>Introducir Parámetro</b><p>Introducir un parámetro en una función.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1316"/> + <location filename="../RefactoringServer.py" line="1329"/> <source>Organize Imports</source> <translation>Organizar Imports</translation> </message> <message> - <location filename="../RefactoringServer.py" line="372"/> + <location filename="../RefactoringServer.py" line="385"/> <source>&Organize Imports</source> <translation>&Organizar Imports</translation> </message> <message> - <location filename="../RefactoringServer.py" line="377"/> + <location filename="../RefactoringServer.py" line="390"/> <source>Sort imports according to PEP-8</source> <translation>Ordenar imports de acuerdo con PEP-8</translation> </message> <message> - <location filename="../RefactoringServer.py" line="379"/> + <location filename="../RefactoringServer.py" line="392"/> <source><b>Organize Imports</b><p>Sort imports according to PEP-8.</p></source> <translation><b>Organizar Imports</b><p>Ordenar imports de acuerdo con PEP-8.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1324"/> + <location filename="../RefactoringServer.py" line="1337"/> <source>Expand Star Imports</source> <translation>Expandir Imports Asterisco</translation> </message> <message> - <location filename="../RefactoringServer.py" line="387"/> + <location filename="../RefactoringServer.py" line="400"/> <source>E&xpand Star Imports</source> <translation>E&xpandir Imports Asterisco</translation> </message> <message> - <location filename="../RefactoringServer.py" line="392"/> + <location filename="../RefactoringServer.py" line="405"/> <source>Expand imports like "from xxx import *"</source> <translation>Expandir imports como "from xxx import *"</translation> </message> <message> - <location filename="../RefactoringServer.py" line="394"/> + <location filename="../RefactoringServer.py" line="407"/> <source><b>Expand Star Imports</b><p>Expand imports like "from xxx import *".</p><p>Select the import to act on or none to do all. Unused imports are deleted.</p></source> <translation><b>Expandir Imports Asterisco</b><p>Expandir imports como "from xxx import *".</p><p>Seleccionar el import sobre el que actuar o ninguno para hacer todo. Los imports no utilizados se borrarán.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1332"/> + <location filename="../RefactoringServer.py" line="1345"/> <source>Relative to Absolute</source> <translation>Relativo a Absoluto</translation> </message> <message> - <location filename="../RefactoringServer.py" line="404"/> + <location filename="../RefactoringServer.py" line="417"/> <source>Relative to &Absolute</source> <translation>Relativo a &Absoluto</translation> </message> <message> - <location filename="../RefactoringServer.py" line="409"/> + <location filename="../RefactoringServer.py" line="422"/> <source>Transform relative imports to absolute ones</source> <translation>Transformar imports relativos a absolutos</translation> </message> <message> - <location filename="../RefactoringServer.py" line="411"/> + <location filename="../RefactoringServer.py" line="424"/> <source><b>Relative to Absolute</b><p>Transform relative imports to absolute ones.</p><p>Select the import to act on or none to do all. Unused imports are deleted.</p></source> <translation><b>Relativos a Absolutos</b><p>Transformar imports relativos a absolutos.</p><p>Seleccionar el import sobre el que actuar o ninguno para hacerlos todos. Los imports no utilizados se borrarán.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1340"/> + <location filename="../RefactoringServer.py" line="1353"/> <source>Froms to Imports</source> <translation>Froms a Imports</translation> </message> <message> - <location filename="../RefactoringServer.py" line="421"/> + <location filename="../RefactoringServer.py" line="434"/> <source>Froms to &Imports</source> <translation>Froms a &Imports</translation> </message> <message> - <location filename="../RefactoringServer.py" line="426"/> + <location filename="../RefactoringServer.py" line="439"/> <source>Transform From imports to plain imports</source> <translation>Transformar imports From a imports planos</translation> </message> <message> - <location filename="../RefactoringServer.py" line="428"/> + <location filename="../RefactoringServer.py" line="441"/> <source><b>Froms to Imports</b><p>Transform From imports to plain imports.</p><p>Select the import to act on or none to do all. Unused imports are deleted.</p></source> <translation><b>Froms a Imports</b><p>Transformar imports From a imports planos.</p><p>Seleccionar el import sobre el que actuar o ninguno para hacerlos todos. Los imports no utilizados se borrarán.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1348"/> + <location filename="../RefactoringServer.py" line="1361"/> <source>Handle Long Imports</source> <translation>Gestionar Imports Largos</translation> </message> <message> - <location filename="../RefactoringServer.py" line="438"/> + <location filename="../RefactoringServer.py" line="451"/> <source>Handle &Long Imports</source> <translation>Gestionar Imports &Largos</translation> </message> <message> - <location filename="../RefactoringServer.py" line="443"/> + <location filename="../RefactoringServer.py" line="456"/> <source>Transform long import statements to look better</source> <translation>Transformar sentencias import largas para mejorar su apariencia</translation> </message> <message> - <location filename="../RefactoringServer.py" line="445"/> + <location filename="../RefactoringServer.py" line="458"/> <source><b>Handle Long Imports</b><p>Transform long import statements to look better.</p><p>Select the import to act on or none to do all. Unused imports are deleted.</p></source> <translation><b>Gestionar Imports Largos</b><p>Transformar sentencias import largas para mejorar su apariencia.</p><p>Seleccionar el import sobre el que actuar o ninguno para hacerlos todos. Los imports no utilizados se borrarán.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1399"/> + <location filename="../RefactoringServer.py" line="1412"/> <source>Restructure</source> <translation>Reestructurar</translation> </message> <message> - <location filename="../RefactoringServer.py" line="459"/> + <location filename="../RefactoringServer.py" line="472"/> <source>Res&tructure</source> <translation>Rees&tructurar</translation> </message> <message> - <location filename="../RefactoringServer.py" line="464"/> + <location filename="../RefactoringServer.py" line="477"/> <source>Restructure code</source> <translation>Reestructurar código</translation> </message> <message> - <location filename="../RefactoringServer.py" line="466"/> + <location filename="../RefactoringServer.py" line="479"/> <source><b>Restructure</b><p>Restructure code. See "Rope Help" for examples.</p></source> <translation><b>Reestructurar</b><p>Reestructurar codigo. Ver "Ayuda de Rope" para ejemplos.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1416"/> + <location filename="../RefactoringServer.py" line="1429"/> <source>Change Method Signature</source> <translation>Cambiar Firma de Método</translation> </message> <message> - <location filename="../RefactoringServer.py" line="474"/> + <location filename="../RefactoringServer.py" line="487"/> <source>&Change Method Signature</source> <translation>&Cambiar Firma de Método</translation> </message> <message> - <location filename="../RefactoringServer.py" line="479"/> + <location filename="../RefactoringServer.py" line="492"/> <source>Change the signature of the selected method or function</source> <translation>Cambia la firma del método o función seleccionados</translation> </message> <message> - <location filename="../RefactoringServer.py" line="481"/> + <location filename="../RefactoringServer.py" line="494"/> <source><b>Change Method Signature</b><p>Change the signature of the selected method or function.</p></source> <translation><b>Cambiar Firma de Método</b><p>Cambia la firma del método o función seleccionados.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1451"/> + <location filename="../RefactoringServer.py" line="1464"/> <source>Inline Argument Default</source> <translation>Valor por defecto de Argumento Inline</translation> </message> <message> - <location filename="../RefactoringServer.py" line="490"/> + <location filename="../RefactoringServer.py" line="503"/> <source>Inline &Argument Default</source> <translation>Valor por defecto de &Argumento Inline</translation> </message> <message> - <location filename="../RefactoringServer.py" line="495"/> + <location filename="../RefactoringServer.py" line="508"/> <source>Inline a parameters default value</source> <translation>Hacer inline un valor por defecto de parámetro</translation> </message> <message> - <location filename="../RefactoringServer.py" line="497"/> + <location filename="../RefactoringServer.py" line="510"/> <source><b>Inline Argument Default</b><p>Inline a parameters default value.</p></source> <translation><b>Valor por defecto de Argumento Inline</b><p>Hacer inline un valor por defecto de parámetro.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1485"/> + <location filename="../RefactoringServer.py" line="1498"/> <source>Transform Module to Package</source> <translation>Transformar Módulo a Package</translation> </message> <message> - <location filename="../RefactoringServer.py" line="510"/> + <location filename="../RefactoringServer.py" line="523"/> <source>Transform the current module to a package</source> <translation>Transformar el módulo actual a package</translation> </message> <message> - <location filename="../RefactoringServer.py" line="512"/> + <location filename="../RefactoringServer.py" line="525"/> <source><b>Transform Module to Package</b><p>Transform the current module to a package.</p></source> <translation><b>Transformar Módulo a Package</b><p>Transformar el módulo actual a package.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1514"/> + <location filename="../RefactoringServer.py" line="1527"/> <source>Encapsulate Attribute</source> <translation>Encapsular Atributo</translation> </message> <message> - <location filename="../RefactoringServer.py" line="520"/> + <location filename="../RefactoringServer.py" line="533"/> <source>Encap&sulate Attribute</source> <translation>Encap&sular Atributo</translation> </message> <message> - <location filename="../RefactoringServer.py" line="525"/> + <location filename="../RefactoringServer.py" line="538"/> <source>Generate a getter/setter for an attribute</source> <translation>Generar un getter/setter para un atributo</translation> </message> <message> - <location filename="../RefactoringServer.py" line="527"/> + <location filename="../RefactoringServer.py" line="540"/> <source><b>Encapsulate Attribute</b><p>Generate a getter/setter for an attribute and changes its occurrences to use them.</p></source> <translation><b>Encapsular Atributo</b><p>Generar un getter/setter para un atributo y cambiar las ocurrencias del atributo para utilizarlos.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1548"/> + <location filename="../RefactoringServer.py" line="1561"/> <source>Local Variable to Attribute</source> <translation>Variable Local a Atributo</translation> </message> <message> - <location filename="../RefactoringServer.py" line="536"/> + <location filename="../RefactoringServer.py" line="549"/> <source>Local Varia&ble to Attribute</source> <translation>Varia&ble Local a Atributo</translation> </message> <message> - <location filename="../RefactoringServer.py" line="541"/> + <location filename="../RefactoringServer.py" line="554"/> <source>Change a local variable to an attribute</source> <translation>Cambia una variable local a atributo</translation> </message> <message> - <location filename="../RefactoringServer.py" line="543"/> + <location filename="../RefactoringServer.py" line="556"/> <source><b>Local Variable to Attribute</b><p>Change a local variable to an attribute.</p></source> <translation><b>Variable Local a Atributo</b><p>Cambia una variable local a atributo.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="551"/> + <location filename="../RefactoringServer.py" line="564"/> <source>Method To Method Object</source> <translation>Método a Método de Objeto</translation> </message> <message> - <location filename="../RefactoringServer.py" line="551"/> + <location filename="../RefactoringServer.py" line="564"/> <source>Method To Method Ob&ject</source> <translation>Método a Método de Ob&jeto</translation> </message> <message> - <location filename="../RefactoringServer.py" line="556"/> + <location filename="../RefactoringServer.py" line="569"/> <source>Transform a function or a method to a method object</source> <translation>Transformar un método o función a método de objeto</translation> </message> <message> - <location filename="../RefactoringServer.py" line="558"/> + <location filename="../RefactoringServer.py" line="571"/> <source><b>Method To Method Object</b><p>Transform a function or a method to a method object.</p></source> <translation><b>Método a Método de Objeto</b><p>Transformar un método o función a método de objeto.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="570"/> + <location filename="../RefactoringServer.py" line="583"/> <source>Show Project History</source> <translation>Mostrar Historial del Proyecto</translation> </message> <message> - <location filename="../RefactoringServer.py" line="570"/> + <location filename="../RefactoringServer.py" line="583"/> <source>Show Project History...</source> <translation>Mostrar Historial del Proyecto...</translation> </message> <message> - <location filename="../RefactoringServer.py" line="575"/> + <location filename="../RefactoringServer.py" line="588"/> <source>Show the refactoring history of the project</source> <translation>Mostrar el historial de refactoring del proyecto</translation> </message> <message> - <location filename="../RefactoringServer.py" line="577"/> + <location filename="../RefactoringServer.py" line="590"/> <source><b>Show Project History</b><p>This opens a dialog to show the refactoring history of the project.</p></source> <translation><b>Mostrar Historial del Proyecto</b><p>Abre un diálogo para mostrar el historial de refactoring del proyecto.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="586"/> + <location filename="../RefactoringServer.py" line="599"/> <source>Show Current File History</source> <translation>Mostrar Historial del Archivo Actual</translation> </message> <message> - <location filename="../RefactoringServer.py" line="586"/> + <location filename="../RefactoringServer.py" line="599"/> <source>Show Current File History...</source> <translation>Mostrar Historial del Archivo Actual...</translation> </message> <message> - <location filename="../RefactoringServer.py" line="591"/> + <location filename="../RefactoringServer.py" line="604"/> <source>Show the refactoring history of the current file</source> <translation>Mostrar el historial de refactoring del archivo actual</translation> </message> <message> - <location filename="../RefactoringServer.py" line="593"/> + <location filename="../RefactoringServer.py" line="606"/> <source><b>Show Current File History</b><p>This opens a dialog to show the refactoring history of the current file.</p></source> <translation><b>Mostrar Historial del Archivo Actual</b><p>Abre un diálogo para mostrar el historial de refactoring del archivo actual.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1651"/> + <location filename="../RefactoringServer.py" line="1664"/> <source>Clear History</source> <translation>Borrar Historial</translation> </message> <message> - <location filename="../RefactoringServer.py" line="607"/> + <location filename="../RefactoringServer.py" line="620"/> <source>Clear the refactoring history</source> <translation>Borrar el historial de refactoring</translation> </message> <message> - <location filename="../RefactoringServer.py" line="609"/> + <location filename="../RefactoringServer.py" line="622"/> <source><b>Clear History</b><p>Clears the refactoring history.</p></source> <translation><b>Borrar historial</b><p>Borra el historial de refactoring.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="621"/> + <location filename="../RefactoringServer.py" line="634"/> <source>Find occurrences</source> <translation>Encontrar ocurrencias</translation> </message> <message> - <location filename="../RefactoringServer.py" line="621"/> + <location filename="../RefactoringServer.py" line="634"/> <source>Find &Occurrences</source> <translation>Encontrar &Ocurrencias</translation> </message> <message> - <location filename="../RefactoringServer.py" line="626"/> + <location filename="../RefactoringServer.py" line="639"/> <source>Find occurrences of the highlighted object</source> <translation>Encontrar las ocurrencias del objeto resaltado</translation> </message> <message> - <location filename="../RefactoringServer.py" line="628"/> + <location filename="../RefactoringServer.py" line="641"/> <source><b>Find occurrences</b><p>Find occurrences of the highlighted class, method, function or variable.</p></source> <translation><b>Encontrar ocurrencias</b><p>Encontrar ocurrencias de la clase, método, función o variable resaltados.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="637"/> + <location filename="../RefactoringServer.py" line="650"/> <source>Find definition</source> <translation>Encontrar definición</translation> </message> <message> - <location filename="../RefactoringServer.py" line="637"/> + <location filename="../RefactoringServer.py" line="650"/> <source>Find &Definition</source> <translation>Encontrar &Definición</translation> </message> <message> - <location filename="../RefactoringServer.py" line="642"/> + <location filename="../RefactoringServer.py" line="655"/> <source>Find definition of the highlighted item</source> <translation>Encontrar definición del elemento resaltado</translation> </message> <message> - <location filename="../RefactoringServer.py" line="644"/> + <location filename="../RefactoringServer.py" line="657"/> <source><b>Find definition</b><p>Find the definition of the highlighted class, method, function or variable.</p></source> <translation><b>Encontrar definición</b><p>Encontrar la definición de la clased, método, función o variable resaltados.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="653"/> + <location filename="../RefactoringServer.py" line="666"/> <source>Find implementations</source> <translation>Encontrar implementaciones</translation> </message> <message> - <location filename="../RefactoringServer.py" line="653"/> + <location filename="../RefactoringServer.py" line="666"/> <source>Find &Implementations</source> <translation>Encontrar &Implementaciones</translation> </message> <message> - <location filename="../RefactoringServer.py" line="658"/> + <location filename="../RefactoringServer.py" line="671"/> <source>Find places where the selected method is overridden</source> <translation>Encontrar lugares donde el método seleccionado esta sobreescrito</translation> </message> <message> - <location filename="../RefactoringServer.py" line="660"/> + <location filename="../RefactoringServer.py" line="673"/> <source><b>Find implementations</b><p>Find places where the selected method is overridden.</p></source> <translation><b>Encontrar implementaciones</b><p>Encontrar lugares donde el metodo seleccionado esta sobreescrito.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1850"/> + <location filename="../RefactoringServer.py" line="1862"/> <source>Configure Rope</source> <translation>Configurar Rope</translation> </message> <message> - <location filename="../RefactoringServer.py" line="672"/> + <location filename="../RefactoringServer.py" line="685"/> <source>&Configure Rope</source> <translation>&Configurar Rope</translation> </message> <message> - <location filename="../RefactoringServer.py" line="677"/> + <location filename="../RefactoringServer.py" line="690"/> <source>Open the rope configuration file</source> <translation>Abrir el archivo de configuración de rope</translation> </message> <message> - <location filename="../RefactoringServer.py" line="679"/> + <location filename="../RefactoringServer.py" line="692"/> <source><b>Configure Rope</b><p>Opens the rope configuration file in an editor.</p></source> <translation><b>Configurar Rope</b><p>Abre el archivo de configuración de rope en un editor.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="688"/> + <location filename="../RefactoringServer.py" line="701"/> <source>Rope Help</source> <translation>Ayuda de Rope</translation> </message> <message> - <location filename="../RefactoringServer.py" line="688"/> + <location filename="../RefactoringServer.py" line="701"/> <source>Rope &Help</source> <translation>Ay&uda de Rope</translation> </message> <message> - <location filename="../RefactoringServer.py" line="693"/> + <location filename="../RefactoringServer.py" line="706"/> <source>Show help about the rope refactorings</source> <translation>Mostrar ayuda acerca de refactorings con rope</translation> </message> <message> - <location filename="../RefactoringServer.py" line="695"/> + <location filename="../RefactoringServer.py" line="708"/> <source><b>Rope help</b><p>Show some help text about the rope refactorings.</p></source> <translation><b>Ayuda de Rope</p><p>Mostrar texto de ayuda acerca de refactorings con rope.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1897"/> + <location filename="../RefactoringServer.py" line="1910"/> <source>Analyse all modules</source> <translation>Analizar todos los módulos</translation> </message> <message> - <location filename="../RefactoringServer.py" line="703"/> + <location filename="../RefactoringServer.py" line="716"/> <source>&Analyse all modules</source> <translation>&Analizar todos los módulos</translation> </message> <message> - <location filename="../RefactoringServer.py" line="708"/> + <location filename="../RefactoringServer.py" line="721"/> <source>Perform static object analysis on all modules</source> <translation>Llevar a cabo un análisis estático de objetos en todos los módulos</translation> </message> <message> - <location filename="../RefactoringServer.py" line="710"/> + <location filename="../RefactoringServer.py" line="723"/> <source><b>Analyse all modules</b><p>Perform static object analysis (SOA) on all modules. This might be time consuming. Analysis of all modules should only be neccessary, if the project was created with the rope plugin disabled or if files were added.</p></source> <translation><b>Analizar todos los módulos</b><p>Llevar a cabo un análisis estático de objetos (SOA) en todos los módulos. Esta operación puede llevar un tiempo. El análisis de todos los módulos debería ser solamente necesario si el proyecto se creó con el plugin rope deshabilitado o si se han añadido archivos.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1875"/> + <location filename="../RefactoringServer.py" line="1887"/> <source>Update Configuration</source> <translation>Actualizar Configuración</translation> </message> <message> - <location filename="../RefactoringServer.py" line="721"/> + <location filename="../RefactoringServer.py" line="734"/> <source>&Update Configuration</source> <translation>Actualizar Config&uración</translation> </message> <message> - <location filename="../RefactoringServer.py" line="726"/> + <location filename="../RefactoringServer.py" line="739"/> <source>Generates a new configuration file overwriting the current one.</source> <translation>Genera un nuevo archivo de configuración sobreescribiendo el actual.</translation> </message> <message> - <location filename="../RefactoringServer.py" line="728"/> + <location filename="../RefactoringServer.py" line="741"/> <source><b>Update Configuration</b><p>Generates a new configuration file overwriting the current one.</p></source> <translation><b>Actualizar Configuración</b><p>Genera un nuevo archivo de configuración sobreescribiendo el actual.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="761"/> + <location filename="../RefactoringServer.py" line="774"/> <source>&Refactoring</source> <translation>&Refactoring</translation> </message> <message> - <location filename="../RefactoringServer.py" line="756"/> + <location filename="../RefactoringServer.py" line="769"/> <source>&Query</source> <translation>&Consulta</translation> </message> <message> - <location filename="../RefactoringServer.py" line="792"/> + <location filename="../RefactoringServer.py" line="805"/> <source>Im&ports</source> <translation>Im&ports</translation> </message> <message> - <location filename="../RefactoringServer.py" line="801"/> + <location filename="../RefactoringServer.py" line="814"/> <source>History</source> <translation>Historial</translation> </message> <message> - <location filename="../RefactoringServer.py" line="808"/> + <location filename="../RefactoringServer.py" line="821"/> <source>&Utilities</source> <translation>&Utilidades</translation> </message> <message> - <location filename="../RefactoringServer.py" line="828"/> + <location filename="../RefactoringServer.py" line="841"/> <source>About rope</source> <translation>Acerca de rope</translation> </message> <message> - <location filename="../RefactoringServer.py" line="828"/> + <location filename="../RefactoringServer.py" line="841"/> <source>{0} Version {1} @@ -1661,127 +1666,127 @@ {2}</translation> </message> <message> - <location filename="../RefactoringServer.py" line="860"/> + <location filename="../RefactoringServer.py" line="873"/> <source>Rope Error</source> <translation>Error de Rope</translation> </message> <message> - <location filename="../RefactoringServer.py" line="877"/> + <location filename="../RefactoringServer.py" line="890"/> <source>Rope error: {0}</source> <translation>Error de rope: {0}</translation> </message> <message> - <location filename="../RefactoringServer.py" line="985"/> + <location filename="../RefactoringServer.py" line="998"/> <source>Highlight the declaration you want to rename and try again.</source> <translation>Resalte la declaración que desea renombrar e inténtelo de nuevo.</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1006"/> + <location filename="../RefactoringServer.py" line="1021"/> <source>The selection must not extend beyond one line.</source> <translation>La selección no se debe extender más allá de una línea.</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1037"/> + <location filename="../RefactoringServer.py" line="1052"/> <source>Highlight an occurrence to be changed and try again.</source> <translation>Resalte una ocurrencia a ser cambiada e inténtelo de nuevo.</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1067"/> + <location filename="../RefactoringServer.py" line="1082"/> <source>Extract Method</source> <translation>Extraer Método</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1073"/> + <location filename="../RefactoringServer.py" line="1088"/> <source>Extract Local Variable</source> <translation>Extraer Variable Local</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1093"/> + <location filename="../RefactoringServer.py" line="1106"/> <source>Highlight the region of code you want to extract and try again.</source> <translation>Resalte la región de código que desea extraer e inténtelo de nuevo.</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1132"/> + <location filename="../RefactoringServer.py" line="1145"/> <source>Highlight the local variable, method or parameter you want to inline and try again.</source> <translation>Resalte la variable local, método o parámetro que desea hacer inline e inténtelo de nuevo.</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1170"/> + <location filename="../RefactoringServer.py" line="1183"/> <source>Move Method</source> <translation>Mover Método</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1173"/> + <location filename="../RefactoringServer.py" line="1186"/> <source>Highlight the method to move and try again.</source> <translation>Resalte el método que desea mover e inténtelo de nuevo.</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1215"/> + <location filename="../RefactoringServer.py" line="1228"/> <source>Highlight a global function and try again.</source> <translation>Resalte una función global e inténtelo de nuevo.</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1252"/> + <location filename="../RefactoringServer.py" line="1265"/> <source>Highlight the class to introduce a factory method for and try again.</source> <translation>Resalte la clase en la que desea introducir un método factory e inténtelo de nuevo.</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1286"/> + <location filename="../RefactoringServer.py" line="1299"/> <source>Highlight the code for the new parameter and try again.</source> <translation>Resalte el codigo para el nuevo parametro e inténtelo de nuevo.</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1419"/> + <location filename="../RefactoringServer.py" line="1432"/> <source>Highlight the method or function to change and try again.</source> <translation>Resalte el método o función que desea cambiar e inténtelo de nuevo.</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1454"/> + <location filename="../RefactoringServer.py" line="1467"/> <source>Highlight the method or function to inline a parameter's default and try again.</source> <translation>Resalte el método o función para la que desea hacer inline un valor por defecto de parámetro e inténtelo de nuevo.</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1517"/> + <location filename="../RefactoringServer.py" line="1530"/> <source>Highlight the attribute to encapsulate and try again.</source> <translation>Resalte el atributo que desea encapsular e inténtelo de nuevo.</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1551"/> + <location filename="../RefactoringServer.py" line="1564"/> <source>Highlight the local variable to make an attribute and try again.</source> <translation>Resalte la variable local que desea convertir en atributo e inténtelo de nuevo.</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1587"/> + <location filename="../RefactoringServer.py" line="1600"/> <source>Replace Method With Method Object</source> <translation>Reemplazar Método con Método de Objeto</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1590"/> + <location filename="../RefactoringServer.py" line="1603"/> <source>Highlight the method or function to convert and try again.</source> <translation>Resalte el metodo o función que desea convertir e inténtelo de nuevo.</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1651"/> + <location filename="../RefactoringServer.py" line="1664"/> <source>Do you really want to clear the refactoring history?</source> <translation>¿Realmente desea borrar el historial de refactoring?</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1693"/> + <location filename="../RefactoringServer.py" line="1706"/> <source>Find Occurrences</source> <translation>Encontrar ocurrencias</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1727"/> + <location filename="../RefactoringServer.py" line="1740"/> <source>No occurrences found.</source> <translation>No se han encontrado ocurrencias.</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1740"/> + <location filename="../RefactoringServer.py" line="1753"/> <source>Find Definition</source> <translation>Encontrar definición</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1775"/> + <location filename="../RefactoringServer.py" line="1788"/> <source>No matching definition found.</source> <translation>No se ha encontrado una definición que combine.</translation> </message> @@ -1791,87 +1796,87 @@ <translation type="obsolete">No se ha encontrado una definición</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1788"/> + <location filename="../RefactoringServer.py" line="1801"/> <source>Find Implementations</source> <translation>Encontrar Implementaciones</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1822"/> + <location filename="../RefactoringServer.py" line="1835"/> <source>No implementations found.</source> <translation>No se han encontrado implementaciones.</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1844"/> + <location filename="../RefactoringServer.py" line="1856"/> <source>The Rope configuration file '{0}' does not exist.</source> <translation>El archivo de configuración de Rope '{0}' no existe.</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1850"/> + <location filename="../RefactoringServer.py" line="1862"/> <source>The Rope admin directory does not exist.</source> <translation>El directorio de administración de Rope no existe.</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1859"/> + <location filename="../RefactoringServer.py" line="1871"/> <source>Shall rope's current configuration be replaced by a new default configuration?</source> <translation>¿Desea reemplazar la configuración actual de rope con una nueva configuración por defecto?</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1875"/> + <location filename="../RefactoringServer.py" line="1887"/> <source><p>The configuration could not be updated.</p><p>Reason: {0}</p></source> <translation><p>La configuración no se ha podido actualizar.</p><p>Razón: {0}</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1889"/> + <location filename="../RefactoringServer.py" line="1900"/> <source>Help about rope refactorings</source> <translation>Ayuda acerca de refactoring con rope</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1898"/> + <location filename="../RefactoringServer.py" line="1911"/> <source>This action might take some time. Do you really want to perform SOA?</source> <translation>Esta acción podría llevar algún tiempo. ¿Desea realmente llevar a cabo un SOA?</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1920"/> + <location filename="../RefactoringServer.py" line="1933"/> <source>Static object analysis (SOA) done. SOA database updated.</source> <translation>Análisis estático de objetos (SOA) completado. Base de datos SOA actualizada.</translation> </message> <message> - <location filename="../RefactoringServer.py" line="2121"/> + <location filename="../RefactoringServer.py" line="2118"/> <source>Project language '{0}' is not supported because the configured interpreter could not be started. Refactoring is disabled.</source> <translation>El lenguaje '{0}' del proyecto no está soportado porque el intérprete configurado no se ha podido iniciar. El refactoring está deshabilitado.</translation> </message> <message> - <location filename="../RefactoringServer.py" line="2130"/> + <location filename="../RefactoringServer.py" line="2127"/> <source>Project language '{0}' is not supported because no suitable interpreter is configured. Refactoring is disabled.</source> <translation>El lenguaje '{0}' del proyecto no está soportado porque no hay configurado un intérprete adecuado. El refactoring está deshabilitado.</translation> </message> <message> - <location filename="../RefactoringServer.py" line="2136"/> + <location filename="../RefactoringServer.py" line="2133"/> <source>Refactoring for project language '{0}' is not supported.</source> <translation>Refactoring para el lenguaje {'0'} del proyecto no está soportado.</translation> </message> <message> - <location filename="../RefactoringServer.py" line="2262"/> + <location filename="../RefactoringServer.py" line="2261"/> <source>Refactoring Protocol Error</source> <translation>Error de Protocolo de Refactoring</translation> </message> <message> - <location filename="../RefactoringServer.py" line="2276"/> + <location filename="../RefactoringServer.py" line="2275"/> <source>Refactoring Client Error</source> <translation>Error de Cliente de Refactoring</translation> </message> <message> - <location filename="../RefactoringServer.py" line="2262"/> + <location filename="../RefactoringServer.py" line="2261"/> <source><p>The data received from the refactoring server could not be decoded. Please report this issue with the received data to the eric bugs email address.</p><p>Error: {0}</p><p>Data:<br/>{1}</p></source> <translation><p>Los datos recibidos desde el servidor de refactoring no se han podido decodificar. Por favor, informar de este error con los datos recibidos a la dirección de correo electrónico de corrección de errores de eric.</p><p>Error: {0}</p><p>Data:<br/>{1}</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="2276"/> + <location filename="../RefactoringServer.py" line="2275"/> <source><p>An exception happened in the refactoring client. Please report it to the eric bugs email address.</p><p>Exception: {0}</p><p>Value: {1}</p><p>Traceback: {2}</p></source> <translation><p>Ha ocurrido una excepción en el cliente de refactoring. Por favor, informar de ello a la dirección de correo electrónico de corrección de errores de eric.</p><p>Excepción: {0}</p><p>Valor: {1}</p><p>Traceback: {2}</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="2115"/> + <location filename="../RefactoringServer.py" line="2112"/> <source>The project is configured for remote access. Using local interpreter instead.</source> <translation type="unfinished"></translation> </message>
--- a/RefactoringRope/i18n/rope_fr.ts Sat May 02 15:05:16 2020 +0200 +++ b/RefactoringRope/i18n/rope_fr.ts Mon Jun 22 18:08:10 2020 +0200 @@ -67,21 +67,11 @@ </message> <message> <location filename="../ConfigurationPage/AutoCompletionRopePage.ui" line="105"/> - <source>Press to edit the rope configuration for Python2</source> + <source>Press to edit the rope configuration for Python3</source> <translation type="unfinished"></translation> </message> <message> <location filename="../ConfigurationPage/AutoCompletionRopePage.ui" line="108"/> - <source>Edit Python 2 rope configuration</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../ConfigurationPage/AutoCompletionRopePage.ui" line="115"/> - <source>Press to edit the rope configuration for Python3</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../ConfigurationPage/AutoCompletionRopePage.ui" line="118"/> <source>Edit Python 3 rope configuration</source> <translation type="unfinished"></translation> </message> @@ -217,7 +207,7 @@ <translation>Paramètres</translation> </message> <message> - <location filename="../ChangeSignatureDialog.py" line="58"/> + <location filename="../ChangeSignatureDialog.py" line="59"/> <source>Preview</source> <translation>Aperçu</translation> </message> @@ -258,7 +248,7 @@ <context> <name>CodeAssistServer</name> <message> - <location filename="../CodeAssistServer.py" line="595"/> + <location filename="../CodeAssistServer.py" line="589"/> <source>An exception happened in the code assist client. Please report it to the eric bugs email address. Exception: {0} Value: {1} @@ -267,29 +257,29 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../CodeAssistServer.py" line="637"/> + <location filename="../CodeAssistServer.py" line="631"/> <source>'{0}' is not supported because the configured interpreter could not be started. </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../CodeAssistServer.py" line="642"/> + <location filename="../CodeAssistServer.py" line="636"/> <source>'{0}' is not supported because no suitable interpreter is configured. </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../CodeAssistServer.py" line="234"/> + <location filename="../CodeAssistServer.py" line="227"/> <source>Configure Rope</source> <translation>Configure Rope</translation> </message> <message> - <location filename="../CodeAssistServer.py" line="234"/> + <location filename="../CodeAssistServer.py" line="227"/> <source>The Rope configuration file '{0}' does not exist.</source> <translation>Le fichier de configuration Rope '{0}' n'existe pas.</translation> </message> <message> - <location filename="../CodeAssistServer.py" line="839"/> + <location filename="../CodeAssistServer.py" line="780"/> <source>Rope</source> <translation>Rope</translation> </message> @@ -339,37 +329,37 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../CodeAssistServer.py" line="434"/> + <location filename="../CodeAssistServer.py" line="427"/> <source>Language <b>{0}</b> is not supported.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../CodeAssistServer.py" line="437"/> + <location filename="../CodeAssistServer.py" line="431"/> <source>Language '{0}' is not supported.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../CodeAssistServer.py" line="481"/> + <location filename="../CodeAssistServer.py" line="475"/> <source>Present in <i>{0}</i> module</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../CodeAssistServer.py" line="485"/> + <location filename="../CodeAssistServer.py" line="479"/> <source>Present in '{0}' module</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../CodeAssistServer.py" line="503"/> + <location filename="../CodeAssistServer.py" line="497"/> <source>No documentation available.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../CodeAssistServer.py" line="559"/> + <location filename="../CodeAssistServer.py" line="553"/> <source>Code Assist: No definition found</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../CodeAssistServer.py" line="585"/> + <location filename="../CodeAssistServer.py" line="579"/> <source>The data received from the code assist server could not be decoded. Please report this issue with the received data to the eric bugs email address. Error: {0} Data: @@ -515,7 +505,7 @@ <context> <name>HistoryDialog</name> <message> - <location filename="../HistoryDialog.py" line="81"/> + <location filename="../HistoryDialog.py" line="82"/> <source>&Redo</source> <translation>&Refaire</translation> </message> @@ -525,22 +515,22 @@ <translation>Historique des actions annulées</translation> </message> <message> - <location filename="../HistoryDialog.py" line="217"/> + <location filename="../HistoryDialog.py" line="218"/> <source>Redo refactorings</source> <translation>Restructurations annulées</translation> </message> <message> - <location filename="../HistoryDialog.py" line="217"/> + <location filename="../HistoryDialog.py" line="218"/> <source>Shall all refactorings up to <b>{0}</b> be redone?</source> <translation>Refaire toutes les restructurations jusqu'à <b>{0}</b>?</translation> </message> <message> - <location filename="../HistoryDialog.py" line="195"/> + <location filename="../HistoryDialog.py" line="196"/> <source>Shall all refactorings up to <b>{0}</b> be undone?</source> <translation>Annuler toutes les restructurations jusqu'à <b>{0}</b>?</translation> </message> <message> - <location filename="../HistoryDialog.py" line="79"/> + <location filename="../HistoryDialog.py" line="80"/> <source>&Undo</source> <translation>&Défaire</translation> </message> @@ -550,7 +540,7 @@ <translation>Historique des actions annulables</translation> </message> <message> - <location filename="../HistoryDialog.py" line="195"/> + <location filename="../HistoryDialog.py" line="196"/> <source>Undo refactorings</source> <translation>Annule toutes les restructurations</translation> </message> @@ -565,32 +555,32 @@ <translation>Sélectionner une modification pour l'afficher dans la zone de droite</translation> </message> <message> - <location filename="../HistoryDialog.py" line="74"/> + <location filename="../HistoryDialog.py" line="75"/> <source><b>Project History</b></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HistoryDialog.py" line="76"/> + <location filename="../HistoryDialog.py" line="77"/> <source><b>File History: {0}</b></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HistoryDialog.py" line="83"/> + <location filename="../HistoryDialog.py" line="84"/> <source>Re&fresh</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HistoryDialog.py" line="85"/> + <location filename="../HistoryDialog.py" line="86"/> <source>&Clear History</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HistoryDialog.py" line="254"/> + <location filename="../HistoryDialog.py" line="255"/> <source>Clear History</source> <translation>Effacer l'historique</translation> </message> <message> - <location filename="../HistoryDialog.py" line="254"/> + <location filename="../HistoryDialog.py" line="255"/> <source>Do you really want to clear the refactoring history?</source> <translation type="unfinished"></translation> </message> @@ -641,7 +631,7 @@ <translation>Intégrer uniquement l'occurence &courante</translation> </message> <message> - <location filename="../InlineDialog.py" line="81"/> + <location filename="../InlineDialog.py" line="80"/> <source>Inlining occurrences of <b>{0}</b> (type '<i>{1}</i>').</source> <translation type="unfinished"></translation> </message> @@ -837,80 +827,80 @@ <translation>Aperçu</translation> </message> <message> - <location filename="../MoveDialog.py" line="92"/> + <location filename="../MoveDialog.py" line="91"/> <source>Move Method</source> <translation>Déplacement de méthode</translation> </message> <message> - <location filename="../MoveDialog.py" line="97"/> + <location filename="../MoveDialog.py" line="96"/> <source>Move Global Method</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MoveDialog.py" line="99"/> + <location filename="../MoveDialog.py" line="98"/> <source>Destination Module:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MoveDialog.py" line="100"/> + <location filename="../MoveDialog.py" line="99"/> <source>Enter the destination module for the method</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MoveDialog.py" line="102"/> + <location filename="../MoveDialog.py" line="101"/> <source>Select the destination module via a file selection dialog</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MoveDialog.py" line="105"/> + <location filename="../MoveDialog.py" line="104"/> <source>Move Module</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MoveDialog.py" line="107"/> + <location filename="../MoveDialog.py" line="106"/> <source>Destination Package:</source> <translation>Package de destination:</translation> </message> <message> - <location filename="../MoveDialog.py" line="108"/> + <location filename="../MoveDialog.py" line="107"/> <source>Enter the destination package for the module</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MoveDialog.py" line="110"/> + <location filename="../MoveDialog.py" line="109"/> <source>Select the destination package via a directory selection dialog</source> <translation>Sélection du package de destination via une boite de dialogue</translation> </message> <message> - <location filename="../MoveDialog.py" line="114"/> + <location filename="../MoveDialog.py" line="113"/> <source>Move</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MoveDialog.py" line="181"/> - <source>Python Files (*.py *.py2 *.py3);;All Files (*)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../MoveDialog.py" line="197"/> + <location filename="../MoveDialog.py" line="196"/> <source>The selected module must be inside the project.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MoveDialog.py" line="201"/> + <location filename="../MoveDialog.py" line="200"/> <source>The selected directory must be inside the project.</source> <translation>Le répertoire sélectionné doit être inclus dans le projet.</translation> </message> <message> - <location filename="../MoveDialog.py" line="243"/> + <location filename="../MoveDialog.py" line="242"/> <source>The selected module <b>{0}</b> does not exist.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MoveDialog.py" line="252"/> + <location filename="../MoveDialog.py" line="251"/> <source>The selected directory <b>{0}</b> is not a package.</source> <translation>Le répertoire sélectionné <b>{0}</b> n'est pas un package.</translation> </message> + <message> + <location filename="../MoveDialog.py" line="180"/> + <source>Python Files (*.py *.py3);;All Files (*)</source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>PreviewDialog</name> @@ -933,7 +923,7 @@ <context> <name>RefactoringRopePlugin</name> <message> - <location filename="../../PluginRefactoringRope.py" line="107"/> + <location filename="../../PluginRefactoringRope.py" line="123"/> <source>Rope</source> <translation>Rope</translation> </message> @@ -941,697 +931,697 @@ <context> <name>RefactoringServer</name> <message> - <location filename="../RefactoringServer.py" line="951"/> + <location filename="../RefactoringServer.py" line="964"/> <source>Rename</source> <translation>Renommer</translation> </message> <message> - <location filename="../RefactoringServer.py" line="167"/> + <location filename="../RefactoringServer.py" line="180"/> <source>&Rename</source> <translation>&Renommer</translation> </message> <message> - <location filename="../RefactoringServer.py" line="172"/> + <location filename="../RefactoringServer.py" line="185"/> <source>Rename the highlighted object</source> <translation>Renommer l'objet sélectionné</translation> </message> <message> - <location filename="../RefactoringServer.py" line="174"/> + <location filename="../RefactoringServer.py" line="187"/> <source><b>Rename</b><p>Rename the highlighted Python object.</p></source> <translation><b>Renommer</b><p>Renomme l'objet Python sélectionné.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="957"/> + <location filename="../RefactoringServer.py" line="970"/> <source>Local Rename</source> <translation>Renommer localement</translation> </message> <message> - <location filename="../RefactoringServer.py" line="182"/> + <location filename="../RefactoringServer.py" line="195"/> <source>&Local Rename</source> <translation>Renommer &localement</translation> </message> <message> - <location filename="../RefactoringServer.py" line="187"/> + <location filename="../RefactoringServer.py" line="200"/> <source>Rename the highlighted object in the current module only</source> <translation>Renomme l'objet sélectionné dans le module courant uniquement</translation> </message> <message> - <location filename="../RefactoringServer.py" line="189"/> + <location filename="../RefactoringServer.py" line="202"/> <source><b>Local Rename</b><p>Rename the highlighted Python object in the current module only.</p></source> <translation><b>Renommer localement</b><p>Renomme l'objet Python sélectionné dans le module courant uniquement.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="963"/> + <location filename="../RefactoringServer.py" line="976"/> <source>Rename Current Module</source> <translation>Renommer le module courant</translation> </message> <message> - <location filename="../RefactoringServer.py" line="203"/> + <location filename="../RefactoringServer.py" line="216"/> <source>Rename the current module</source> <translation>Renomme le module courant</translation> </message> <message> - <location filename="../RefactoringServer.py" line="205"/> + <location filename="../RefactoringServer.py" line="218"/> <source><b>Rename Current Module</b><p>Rename the current module.</p></source> <translation><b>Renommer le module courant</b><p>Renomme le module courant.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1034"/> + <location filename="../RefactoringServer.py" line="1049"/> <source>Change Occurrences</source> <translation>Remplacer les occurences</translation> </message> <message> - <location filename="../RefactoringServer.py" line="213"/> + <location filename="../RefactoringServer.py" line="226"/> <source>Change &Occurrences</source> <translation>Remplacer les &occurences</translation> </message> <message> - <location filename="../RefactoringServer.py" line="218"/> + <location filename="../RefactoringServer.py" line="231"/> <source>Change all occurrences in the local scope</source> <translation>Remplace toutes les occurences dans l'espace local</translation> </message> <message> - <location filename="../RefactoringServer.py" line="220"/> + <location filename="../RefactoringServer.py" line="233"/> <source><b>Change Occurrences</b><p>Change all occurrences in the local scope.</p></source> <translation><b>Remplacer les occurences</b><p>Remplace toutes les occurences dans l'espace local.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="232"/> + <location filename="../RefactoringServer.py" line="245"/> <source>Extract method</source> <translation>Extraire une méthode</translation> </message> <message> - <location filename="../RefactoringServer.py" line="232"/> + <location filename="../RefactoringServer.py" line="245"/> <source>Extract &Method</source> <translation>Extraire une &méthode</translation> </message> <message> - <location filename="../RefactoringServer.py" line="237"/> + <location filename="../RefactoringServer.py" line="250"/> <source>Extract the highlighted area as a method</source> <translation>Extrait la zone sélectionnée en tant que méthode</translation> </message> <message> - <location filename="../RefactoringServer.py" line="239"/> + <location filename="../RefactoringServer.py" line="252"/> <source><b>Extract method</b><p>Extract the highlighted area as a method or function.</p></source> <translation><b>Extraire une méthode</b><p>Extrait la zone sélectionnée en tant que méthode ou fonction.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="247"/> + <location filename="../RefactoringServer.py" line="260"/> <source>Extract local variable</source> <translation>Extraction d'une variable locale</translation> </message> <message> - <location filename="../RefactoringServer.py" line="247"/> + <location filename="../RefactoringServer.py" line="260"/> <source>&Extract Local Variable</source> <translation>&Extraire une variable locale</translation> </message> <message> - <location filename="../RefactoringServer.py" line="252"/> + <location filename="../RefactoringServer.py" line="265"/> <source>Extract the highlighted area as a local variable</source> <translation>Extrait la zone sélectionnée en tant que nouvelle variable locale</translation> </message> <message> - <location filename="../RefactoringServer.py" line="254"/> + <location filename="../RefactoringServer.py" line="267"/> <source><b>Extract local variable</b><p>Extract the highlighted area as a local variable.</p></source> <translation><b>Extraction d'une variable locale</b><p>Affectation de la zone sélectionnée à une nouvelle variable locale.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1129"/> + <location filename="../RefactoringServer.py" line="1142"/> <source>Inline</source> <translation>Inlining</translation> </message> <message> - <location filename="../RefactoringServer.py" line="266"/> + <location filename="../RefactoringServer.py" line="279"/> <source>&Inline</source> <translation>&Inlining</translation> </message> <message> - <location filename="../RefactoringServer.py" line="271"/> + <location filename="../RefactoringServer.py" line="284"/> <source>Inlines the selected local variable or method</source> <translation>Remplace la variable ou méthode sélectionnée par sa définition (inlining)</translation> </message> <message> - <location filename="../RefactoringServer.py" line="273"/> + <location filename="../RefactoringServer.py" line="286"/> <source><b>Inline</b><p>Inlines the selected local variable or method.</p></source> <translation><b>Inlining</b><p>Remplace la variable ou méthode sélectionnée par sa définition (inlining)</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="285"/> + <location filename="../RefactoringServer.py" line="298"/> <source>Move method</source> <translation>Déplacer une méthode</translation> </message> <message> - <location filename="../RefactoringServer.py" line="285"/> + <location filename="../RefactoringServer.py" line="298"/> <source>Mo&ve Method</source> <translation>&Déplacer une méthode</translation> </message> <message> - <location filename="../RefactoringServer.py" line="290"/> + <location filename="../RefactoringServer.py" line="303"/> <source>Move the highlighted method to another class</source> <translation>Déplace la méthode sélectionnée vers une autre classe</translation> </message> <message> - <location filename="../RefactoringServer.py" line="292"/> + <location filename="../RefactoringServer.py" line="305"/> <source><b>Move method</b><p>Move the highlighted method to another class.</p></source> <translation><b>Déplacement de méthode</b><p>Déplace la méthode sélectionnée vers une autre classe.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="300"/> + <location filename="../RefactoringServer.py" line="313"/> <source>Move current module</source> <translation>Déplacer le module</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1179"/> + <location filename="../RefactoringServer.py" line="1192"/> <source>Move Current Module</source> <translation>Déplacer le module</translation> </message> <message> - <location filename="../RefactoringServer.py" line="305"/> + <location filename="../RefactoringServer.py" line="318"/> <source>Move the current module to another package</source> <translation>Déplace le module courant vers un autre package</translation> </message> <message> - <location filename="../RefactoringServer.py" line="307"/> + <location filename="../RefactoringServer.py" line="320"/> <source><b>Move current module</b><p>Move the current module to another package.</p></source> <translation><b>Déplacement du module courant</b><p>Déplace le module courant vers un autre package.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1212"/> + <location filename="../RefactoringServer.py" line="1225"/> <source>Use Function</source> <translation type="unfinished">Utilisation de fonction</translation> </message> <message> - <location filename="../RefactoringServer.py" line="324"/> + <location filename="../RefactoringServer.py" line="337"/> <source>Use a function wherever possible.</source> <translation>Utilise une fonction quand c'est possible.</translation> </message> <message> - <location filename="../RefactoringServer.py" line="326"/> + <location filename="../RefactoringServer.py" line="339"/> <source><b>Use function</b><p>Tries to use a function wherever possible.</p></source> <translation><b>Utiliser une fonction</b><p>Essaye d'utiliser une fonction autant que possible.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1249"/> + <location filename="../RefactoringServer.py" line="1262"/> <source>Introduce Factory Method</source> <translation>Introduction d'une méthode de restructuration</translation> </message> <message> - <location filename="../RefactoringServer.py" line="338"/> + <location filename="../RefactoringServer.py" line="351"/> <source>Introduce &Factory Method</source> <translation>Introduire une méthode de &restructuration</translation> </message> <message> - <location filename="../RefactoringServer.py" line="343"/> + <location filename="../RefactoringServer.py" line="356"/> <source>Introduce a factory method or function</source> <translation>Introduit une méthode ou fonction de restructuration</translation> </message> <message> - <location filename="../RefactoringServer.py" line="345"/> + <location filename="../RefactoringServer.py" line="358"/> <source><b>Introduce Factory Method</b><p>Introduce a factory method or function.</p></source> <translation><b>Introduire une méthode de restructuration</b><p>Insère une fonction ou méthode de restructuration.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1283"/> + <location filename="../RefactoringServer.py" line="1296"/> <source>Introduce Parameter</source> <translation>Introduire un paramètre</translation> </message> <message> - <location filename="../RefactoringServer.py" line="353"/> + <location filename="../RefactoringServer.py" line="366"/> <source>Introduce &Parameter</source> <translation>Introduire un &paramètre</translation> </message> <message> - <location filename="../RefactoringServer.py" line="358"/> + <location filename="../RefactoringServer.py" line="371"/> <source>Introduce a parameter in a function</source> <translation>Introduit un paramètre dans une fonction</translation> </message> <message> - <location filename="../RefactoringServer.py" line="360"/> + <location filename="../RefactoringServer.py" line="373"/> <source><b>Introduce Parameter</b><p>Introduce a parameter in a function.</p></source> <translation><b>Introduire un paramètre</b><p>Introduit un paramètre dans une fonction.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1316"/> + <location filename="../RefactoringServer.py" line="1329"/> <source>Organize Imports</source> <translation>Organiser les imports</translation> </message> <message> - <location filename="../RefactoringServer.py" line="372"/> + <location filename="../RefactoringServer.py" line="385"/> <source>&Organize Imports</source> <translation>&Organiser les imports</translation> </message> <message> - <location filename="../RefactoringServer.py" line="377"/> + <location filename="../RefactoringServer.py" line="390"/> <source>Sort imports according to PEP-8</source> <translation>Trie les import selon la préconisation PEP-8</translation> </message> <message> - <location filename="../RefactoringServer.py" line="379"/> + <location filename="../RefactoringServer.py" line="392"/> <source><b>Organize Imports</b><p>Sort imports according to PEP-8.</p></source> <translation><b>Organiser les imports</b><p>Trie les imports selon les préconisations PEP-8</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1324"/> + <location filename="../RefactoringServer.py" line="1337"/> <source>Expand Star Imports</source> <translation>Résoudre les imports étoilés</translation> </message> <message> - <location filename="../RefactoringServer.py" line="387"/> + <location filename="../RefactoringServer.py" line="400"/> <source>E&xpand Star Imports</source> <translation>&Résoudre les imports étoilés</translation> </message> <message> - <location filename="../RefactoringServer.py" line="392"/> + <location filename="../RefactoringServer.py" line="405"/> <source>Expand imports like "from xxx import *"</source> <translation>Développe les imports comme "from xxx import *"</translation> </message> <message> - <location filename="../RefactoringServer.py" line="394"/> + <location filename="../RefactoringServer.py" line="407"/> <source><b>Expand Star Imports</b><p>Expand imports like "from xxx import *".</p><p>Select the import to act on or none to do all. Unused imports are deleted.</p></source> <translation><b>Développer les imports étoilés</b><p>Développe les instructions d'import telles que "from xxx import *".</p><p>Sélectionner un import précis, ou aucun pour appliquer la restructuration à l'ensemble. Les imports inutilisés seront supprimés.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1332"/> + <location filename="../RefactoringServer.py" line="1345"/> <source>Relative to Absolute</source> <translation>Relatifs en absolus</translation> </message> <message> - <location filename="../RefactoringServer.py" line="404"/> + <location filename="../RefactoringServer.py" line="417"/> <source>Relative to &Absolute</source> <translation>Relatifs en &absolus</translation> </message> <message> - <location filename="../RefactoringServer.py" line="409"/> + <location filename="../RefactoringServer.py" line="422"/> <source>Transform relative imports to absolute ones</source> <translation>Convertit les imports relatifs en imports absolus</translation> </message> <message> - <location filename="../RefactoringServer.py" line="411"/> + <location filename="../RefactoringServer.py" line="424"/> <source><b>Relative to Absolute</b><p>Transform relative imports to absolute ones.</p><p>Select the import to act on or none to do all. Unused imports are deleted.</p></source> <translation><b>Relatifs en absolus</b><p>Transforme les imports relatifs en imports absolus.</p><p>Sélectionner un import précis, ou aucun pour appliquer la restructuration à l'ensemble. Les imports inutilisés seront supprimés.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1340"/> + <location filename="../RefactoringServer.py" line="1353"/> <source>Froms to Imports</source> <translation>Convertir les "from" en "import"</translation> </message> <message> - <location filename="../RefactoringServer.py" line="421"/> + <location filename="../RefactoringServer.py" line="434"/> <source>Froms to &Imports</source> <translation>Convertir les "from" en "&import"</translation> </message> <message> - <location filename="../RefactoringServer.py" line="426"/> + <location filename="../RefactoringServer.py" line="439"/> <source>Transform From imports to plain imports</source> <translation>Convertit les imports de type "from" en imports standards</translation> </message> <message> - <location filename="../RefactoringServer.py" line="428"/> + <location filename="../RefactoringServer.py" line="441"/> <source><b>Froms to Imports</b><p>Transform From imports to plain imports.</p><p>Select the import to act on or none to do all. Unused imports are deleted.</p></source> <translation><b>Convertir "from" en "import"</b><p>Convertit les import de type "from" en imports standards. Sélectionner un import précis, ou aucun pour appliquer la restructuration à l'ensemble. Les imports inutilisés seront supprimés.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1348"/> + <location filename="../RefactoringServer.py" line="1361"/> <source>Handle Long Imports</source> <translation>Gérer les import trop longs</translation> </message> <message> - <location filename="../RefactoringServer.py" line="438"/> + <location filename="../RefactoringServer.py" line="451"/> <source>Handle &Long Imports</source> <translation>Gérer les import trop &longs</translation> </message> <message> - <location filename="../RefactoringServer.py" line="443"/> + <location filename="../RefactoringServer.py" line="456"/> <source>Transform long import statements to look better</source> <translation>Réécrit les instructions d'import trop longues</translation> </message> <message> - <location filename="../RefactoringServer.py" line="445"/> + <location filename="../RefactoringServer.py" line="458"/> <source><b>Handle Long Imports</b><p>Transform long import statements to look better.</p><p>Select the import to act on or none to do all. Unused imports are deleted.</p></source> <translation><b>Gérer les imports trop longs</b><p>Réécrit les instructions d'import trop longues.</p><p> Sélectionner un import précis, ou aucun pour appliquer la restructuration à l'ensemble. Les imports inutilisés seront supprimés.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1399"/> + <location filename="../RefactoringServer.py" line="1412"/> <source>Restructure</source> <translation>Restructuration</translation> </message> <message> - <location filename="../RefactoringServer.py" line="459"/> + <location filename="../RefactoringServer.py" line="472"/> <source>Res&tructure</source> <translation>Res&tructurer</translation> </message> <message> - <location filename="../RefactoringServer.py" line="464"/> + <location filename="../RefactoringServer.py" line="477"/> <source>Restructure code</source> <translation>Restructure le code</translation> </message> <message> - <location filename="../RefactoringServer.py" line="466"/> + <location filename="../RefactoringServer.py" line="479"/> <source><b>Restructure</b><p>Restructure code. See "Rope Help" for examples.</p></source> <translation><b>Restructurer...</b><p>Restructure le code. Voir l'<i>Aide Rope</i> pour des exemples.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1416"/> + <location filename="../RefactoringServer.py" line="1429"/> <source>Change Method Signature</source> <translation>Modifier la signature d'une méthode</translation> </message> <message> - <location filename="../RefactoringServer.py" line="474"/> + <location filename="../RefactoringServer.py" line="487"/> <source>&Change Method Signature</source> <translation>&Modifier la signature d'une méthode</translation> </message> <message> - <location filename="../RefactoringServer.py" line="479"/> + <location filename="../RefactoringServer.py" line="492"/> <source>Change the signature of the selected method or function</source> <translation>Modifie la signature de la méthode/fonction sélectionnée</translation> </message> <message> - <location filename="../RefactoringServer.py" line="481"/> + <location filename="../RefactoringServer.py" line="494"/> <source><b>Change Method Signature</b><p>Change the signature of the selected method or function.</p></source> <translation><b>Modifier la signature d'une méthode</b><p>Modifie la signature de la méthode/fonction sélectionnée.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1451"/> + <location filename="../RefactoringServer.py" line="1464"/> <source>Inline Argument Default</source> <translation>Insérer des valeurs de paramètres par défaut</translation> </message> <message> - <location filename="../RefactoringServer.py" line="490"/> + <location filename="../RefactoringServer.py" line="503"/> <source>Inline &Argument Default</source> <translation>Insérer des valeurs de &paramètres par défaut</translation> </message> <message> - <location filename="../RefactoringServer.py" line="495"/> + <location filename="../RefactoringServer.py" line="508"/> <source>Inline a parameters default value</source> <translation>Insère des valeurs par défaut pour les paramètres</translation> </message> <message> - <location filename="../RefactoringServer.py" line="497"/> + <location filename="../RefactoringServer.py" line="510"/> <source><b>Inline Argument Default</b><p>Inline a parameters default value.</p></source> <translation><b>Insérer des valeurs de paramètres par défaut</b><p>Insère des valeurs par défaut pour les paramètres.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1485"/> + <location filename="../RefactoringServer.py" line="1498"/> <source>Transform Module to Package</source> <translation>Transformer le module en package</translation> </message> <message> - <location filename="../RefactoringServer.py" line="510"/> + <location filename="../RefactoringServer.py" line="523"/> <source>Transform the current module to a package</source> <translation>Transforme le module courant en package</translation> </message> <message> - <location filename="../RefactoringServer.py" line="512"/> + <location filename="../RefactoringServer.py" line="525"/> <source><b>Transform Module to Package</b><p>Transform the current module to a package.</p></source> <translation><b>Transformer le module en package</b><p>Transforme le module courant en package.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1514"/> + <location filename="../RefactoringServer.py" line="1527"/> <source>Encapsulate Attribute</source> <translation>Encapsuler un attribut</translation> </message> <message> - <location filename="../RefactoringServer.py" line="520"/> + <location filename="../RefactoringServer.py" line="533"/> <source>Encap&sulate Attribute</source> <translation>Encap&suler un attribut</translation> </message> <message> - <location filename="../RefactoringServer.py" line="525"/> + <location filename="../RefactoringServer.py" line="538"/> <source>Generate a getter/setter for an attribute</source> <translation>Génère des fonction get/set pour un attribut</translation> </message> <message> - <location filename="../RefactoringServer.py" line="527"/> + <location filename="../RefactoringServer.py" line="540"/> <source><b>Encapsulate Attribute</b><p>Generate a getter/setter for an attribute and changes its occurrences to use them.</p></source> <translation><b>Encapsuler un attribut</b><p>Génère des fonctions set/get pour un atribut et modifie le code pour les utiliser</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1548"/> + <location filename="../RefactoringServer.py" line="1561"/> <source>Local Variable to Attribute</source> <translation>Convertit une variable locale en attribut</translation> </message> <message> - <location filename="../RefactoringServer.py" line="536"/> + <location filename="../RefactoringServer.py" line="549"/> <source>Local Varia&ble to Attribute</source> <translation>Convertir une varia&ble locale en attribut</translation> </message> <message> - <location filename="../RefactoringServer.py" line="541"/> + <location filename="../RefactoringServer.py" line="554"/> <source>Change a local variable to an attribute</source> <translation>Convertit une variable locale en attribut</translation> </message> <message> - <location filename="../RefactoringServer.py" line="543"/> + <location filename="../RefactoringServer.py" line="556"/> <source><b>Local Variable to Attribute</b><p>Change a local variable to an attribute.</p></source> <translation><b>Convertir une variable locale en attribut</b><p>Remplace la variable locale sélectionnée en attribut.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="551"/> + <location filename="../RefactoringServer.py" line="564"/> <source>Method To Method Object</source> <translation>Convertit une méthode en un objet "méthode"</translation> </message> <message> - <location filename="../RefactoringServer.py" line="551"/> + <location filename="../RefactoringServer.py" line="564"/> <source>Method To Method Ob&ject</source> <translation>Convertir une méthode en ob&jet</translation> </message> <message> - <location filename="../RefactoringServer.py" line="556"/> + <location filename="../RefactoringServer.py" line="569"/> <source>Transform a function or a method to a method object</source> <translation>Convertit une fonction ou méthode en un objet "méthode"</translation> </message> <message> - <location filename="../RefactoringServer.py" line="558"/> + <location filename="../RefactoringServer.py" line="571"/> <source><b>Method To Method Object</b><p>Transform a function or a method to a method object.</p></source> <translation><b>Convertir une méthode en objet</b><p>Convertit une méthode ou une fonction en un objet "méthode"</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="570"/> + <location filename="../RefactoringServer.py" line="583"/> <source>Show Project History</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="570"/> + <location filename="../RefactoringServer.py" line="583"/> <source>Show Project History...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="575"/> + <location filename="../RefactoringServer.py" line="588"/> <source>Show the refactoring history of the project</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="577"/> + <location filename="../RefactoringServer.py" line="590"/> <source><b>Show Project History</b><p>This opens a dialog to show the refactoring history of the project.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="586"/> + <location filename="../RefactoringServer.py" line="599"/> <source>Show Current File History</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="586"/> + <location filename="../RefactoringServer.py" line="599"/> <source>Show Current File History...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="591"/> + <location filename="../RefactoringServer.py" line="604"/> <source>Show the refactoring history of the current file</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="593"/> + <location filename="../RefactoringServer.py" line="606"/> <source><b>Show Current File History</b><p>This opens a dialog to show the refactoring history of the current file.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1651"/> + <location filename="../RefactoringServer.py" line="1664"/> <source>Clear History</source> <translation>Effacer l'historique</translation> </message> <message> - <location filename="../RefactoringServer.py" line="607"/> + <location filename="../RefactoringServer.py" line="620"/> <source>Clear the refactoring history</source> <translation>Efface l'historique des restructurations</translation> </message> <message> - <location filename="../RefactoringServer.py" line="609"/> + <location filename="../RefactoringServer.py" line="622"/> <source><b>Clear History</b><p>Clears the refactoring history.</p></source> <translation><b>Effacer l'historique</b><p>Efface l'historique des restructurations.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="621"/> + <location filename="../RefactoringServer.py" line="634"/> <source>Find occurrences</source> <translation>Trouver les occurences</translation> </message> <message> - <location filename="../RefactoringServer.py" line="621"/> + <location filename="../RefactoringServer.py" line="634"/> <source>Find &Occurrences</source> <translation>Trouver les &occurences</translation> </message> <message> - <location filename="../RefactoringServer.py" line="626"/> + <location filename="../RefactoringServer.py" line="639"/> <source>Find occurrences of the highlighted object</source> <translation>Trouver les occurences de l'objet sélectionné</translation> </message> <message> - <location filename="../RefactoringServer.py" line="628"/> + <location filename="../RefactoringServer.py" line="641"/> <source><b>Find occurrences</b><p>Find occurrences of the highlighted class, method, function or variable.</p></source> <translation><b>Trouver les occurences</b><p>Recherche les occurences de la classe, méthode, fonction ou variable sélectionnée.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="637"/> + <location filename="../RefactoringServer.py" line="650"/> <source>Find definition</source> <translation>Trouver la définition</translation> </message> <message> - <location filename="../RefactoringServer.py" line="637"/> + <location filename="../RefactoringServer.py" line="650"/> <source>Find &Definition</source> <translation>Trouver la &définition</translation> </message> <message> - <location filename="../RefactoringServer.py" line="642"/> + <location filename="../RefactoringServer.py" line="655"/> <source>Find definition of the highlighted item</source> <translation>Recherche la définition de l'élément sélectionné</translation> </message> <message> - <location filename="../RefactoringServer.py" line="644"/> + <location filename="../RefactoringServer.py" line="657"/> <source><b>Find definition</b><p>Find the definition of the highlighted class, method, function or variable.</p></source> <translation><b>Trouver la définition</b><p>Recherche la définition de la classe, la méthode, la function ou de la variable sélectionnée.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="653"/> + <location filename="../RefactoringServer.py" line="666"/> <source>Find implementations</source> <translation>Trouver les surcharges de méthode</translation> </message> <message> - <location filename="../RefactoringServer.py" line="653"/> + <location filename="../RefactoringServer.py" line="666"/> <source>Find &Implementations</source> <translation>&Trouver les surcharges de méthode</translation> </message> <message> - <location filename="../RefactoringServer.py" line="658"/> + <location filename="../RefactoringServer.py" line="671"/> <source>Find places where the selected method is overridden</source> <translation>Trouve les endroits où la méthode sélectionnée est redéfinie</translation> </message> <message> - <location filename="../RefactoringServer.py" line="660"/> + <location filename="../RefactoringServer.py" line="673"/> <source><b>Find implementations</b><p>Find places where the selected method is overridden.</p></source> <translation><b>Trouver les surcharges</b><p>Recherche les endroits où la méthode sélectionnée est redéfinie.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1850"/> + <location filename="../RefactoringServer.py" line="1862"/> <source>Configure Rope</source> <translation>Configure Rope</translation> </message> <message> - <location filename="../RefactoringServer.py" line="672"/> + <location filename="../RefactoringServer.py" line="685"/> <source>&Configure Rope</source> <translation>&Configurer Rope</translation> </message> <message> - <location filename="../RefactoringServer.py" line="677"/> + <location filename="../RefactoringServer.py" line="690"/> <source>Open the rope configuration file</source> <translation>Ouvre le fichier de configuration rope</translation> </message> <message> - <location filename="../RefactoringServer.py" line="679"/> + <location filename="../RefactoringServer.py" line="692"/> <source><b>Configure Rope</b><p>Opens the rope configuration file in an editor.</p></source> <translation><b>Configurer Rope</b><p>Ouvre le fichier de configuration de rope dans un éditeur.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="688"/> + <location filename="../RefactoringServer.py" line="701"/> <source>Rope Help</source> <translation>Aide Rope</translation> </message> <message> - <location filename="../RefactoringServer.py" line="688"/> + <location filename="../RefactoringServer.py" line="701"/> <source>Rope &Help</source> <translation>&Aide Rope</translation> </message> <message> - <location filename="../RefactoringServer.py" line="693"/> + <location filename="../RefactoringServer.py" line="706"/> <source>Show help about the rope refactorings</source> <translation>Affiche l'aide à propos des restructurations Rope</translation> </message> <message> - <location filename="../RefactoringServer.py" line="695"/> + <location filename="../RefactoringServer.py" line="708"/> <source><b>Rope help</b><p>Show some help text about the rope refactorings.</p></source> <translation><b>Aide Rope</b><p>Affiche de l'aide à propos de restructurations Rope.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1897"/> + <location filename="../RefactoringServer.py" line="1910"/> <source>Analyse all modules</source> <translation>Analyse tous les modules</translation> </message> <message> - <location filename="../RefactoringServer.py" line="703"/> + <location filename="../RefactoringServer.py" line="716"/> <source>&Analyse all modules</source> <translation>&Analyser tous les modules</translation> </message> <message> - <location filename="../RefactoringServer.py" line="708"/> + <location filename="../RefactoringServer.py" line="721"/> <source>Perform static object analysis on all modules</source> <translation>Execute une analyse statique des objets de tous les modules</translation> </message> <message> - <location filename="../RefactoringServer.py" line="710"/> + <location filename="../RefactoringServer.py" line="723"/> <source><b>Analyse all modules</b><p>Perform static object analysis (SOA) on all modules. This might be time consuming. Analysis of all modules should only be neccessary, if the project was created with the rope plugin disabled or if files were added.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1875"/> + <location filename="../RefactoringServer.py" line="1887"/> <source>Update Configuration</source> <translation>Mettre à jour la configuration</translation> </message> <message> - <location filename="../RefactoringServer.py" line="721"/> + <location filename="../RefactoringServer.py" line="734"/> <source>&Update Configuration</source> <translation>&Mettre à jour la configuration</translation> </message> <message> - <location filename="../RefactoringServer.py" line="726"/> + <location filename="../RefactoringServer.py" line="739"/> <source>Generates a new configuration file overwriting the current one.</source> <translation>Génère un nouveau fichier de configuration en écrasant l'ancien.</translation> </message> <message> - <location filename="../RefactoringServer.py" line="728"/> + <location filename="../RefactoringServer.py" line="741"/> <source><b>Update Configuration</b><p>Generates a new configuration file overwriting the current one.</p></source> <translation><b>Mettre à jour la configuration</b><p>Génère un nouveau fichier de configuration en écrasant l'ancien.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="761"/> + <location filename="../RefactoringServer.py" line="774"/> <source>&Refactoring</source> <translation>&Restructuration</translation> </message> <message> - <location filename="../RefactoringServer.py" line="756"/> + <location filename="../RefactoringServer.py" line="769"/> <source>&Query</source> <translation>Re&quête</translation> </message> <message> - <location filename="../RefactoringServer.py" line="792"/> + <location filename="../RefactoringServer.py" line="805"/> <source>Im&ports</source> <translation>Im&ports de modules</translation> </message> <message> - <location filename="../RefactoringServer.py" line="801"/> + <location filename="../RefactoringServer.py" line="814"/> <source>History</source> <translation>Historique</translation> </message> <message> - <location filename="../RefactoringServer.py" line="808"/> + <location filename="../RefactoringServer.py" line="821"/> <source>&Utilities</source> <translation>&Utilitaires</translation> </message> <message> - <location filename="../RefactoringServer.py" line="828"/> + <location filename="../RefactoringServer.py" line="841"/> <source>About rope</source> <translation>A propos de Rope</translation> </message> <message> - <location filename="../RefactoringServer.py" line="828"/> + <location filename="../RefactoringServer.py" line="841"/> <source>{0} Version {1} @@ -1639,212 +1629,212 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="860"/> + <location filename="../RefactoringServer.py" line="873"/> <source>Rope Error</source> <translation>Erreur Rope</translation> </message> <message> - <location filename="../RefactoringServer.py" line="877"/> + <location filename="../RefactoringServer.py" line="890"/> <source>Rope error: {0}</source> <translation>Erreur Rope: {0}</translation> </message> <message> - <location filename="../RefactoringServer.py" line="985"/> + <location filename="../RefactoringServer.py" line="998"/> <source>Highlight the declaration you want to rename and try again.</source> <translation>Sélectionner la déclaration à renommer, puis réesssayer.</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1006"/> + <location filename="../RefactoringServer.py" line="1021"/> <source>The selection must not extend beyond one line.</source> <translation>La sélection de doit pas s'étendre au-delà d'une seule ligne.</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1037"/> + <location filename="../RefactoringServer.py" line="1052"/> <source>Highlight an occurrence to be changed and try again.</source> <translation>Sélectionner une occurence à remplacer et réessayer.</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1067"/> + <location filename="../RefactoringServer.py" line="1082"/> <source>Extract Method</source> <translation>Extraction d'une méthode</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1073"/> + <location filename="../RefactoringServer.py" line="1088"/> <source>Extract Local Variable</source> <translation>Extraction d'une variable locale</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1093"/> + <location filename="../RefactoringServer.py" line="1106"/> <source>Highlight the region of code you want to extract and try again.</source> <translation>Sélectionner la zone de code à extraire, puis réessayer.</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1132"/> + <location filename="../RefactoringServer.py" line="1145"/> <source>Highlight the local variable, method or parameter you want to inline and try again.</source> <translation>Sélectionner la variable ou méthode locale à "inliner" et essayer à nouveau.</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1170"/> + <location filename="../RefactoringServer.py" line="1183"/> <source>Move Method</source> <translation>Déplacement de méthode</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1173"/> + <location filename="../RefactoringServer.py" line="1186"/> <source>Highlight the method to move and try again.</source> <translation>Sélectionner la méthode à déplacer, puis ré-essayer.</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1215"/> + <location filename="../RefactoringServer.py" line="1228"/> <source>Highlight a global function and try again.</source> <translation>Sélectionner une fonction globale et réessayer.</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1252"/> + <location filename="../RefactoringServer.py" line="1265"/> <source>Highlight the class to introduce a factory method for and try again.</source> <translation>Sélectionner la classe dans laquelle insérer la méthode et essayer à nouveau.</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1286"/> + <location filename="../RefactoringServer.py" line="1299"/> <source>Highlight the code for the new parameter and try again.</source> <translation>Sélectionner le code pour le nouveau paramètre, puis réesssayer.</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1419"/> + <location filename="../RefactoringServer.py" line="1432"/> <source>Highlight the method or function to change and try again.</source> <translation>Sélectionner la méthode ou fonction à modifier, puis réesssayer.</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1454"/> + <location filename="../RefactoringServer.py" line="1467"/> <source>Highlight the method or function to inline a parameter's default and try again.</source> <translation>Sélectionner une méthode ou fonction dans laquelle insérer des paramètres par défaut et réessayer.</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1517"/> + <location filename="../RefactoringServer.py" line="1530"/> <source>Highlight the attribute to encapsulate and try again.</source> <translation>Sélectionner un attribut à encapsuler et réessayer.</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1551"/> + <location filename="../RefactoringServer.py" line="1564"/> <source>Highlight the local variable to make an attribute and try again.</source> <translation>Sélectionner la variable locale à convertir et réessayer.</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1587"/> + <location filename="../RefactoringServer.py" line="1600"/> <source>Replace Method With Method Object</source> <translation>Conversion de méthode en objet</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1590"/> + <location filename="../RefactoringServer.py" line="1603"/> <source>Highlight the method or function to convert and try again.</source> <translation>Sélectionner la méthode ou fonction à convertir, puis réessayer.</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1651"/> + <location filename="../RefactoringServer.py" line="1664"/> <source>Do you really want to clear the refactoring history?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1693"/> + <location filename="../RefactoringServer.py" line="1706"/> <source>Find Occurrences</source> <translation>Trouver les occurences</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1727"/> + <location filename="../RefactoringServer.py" line="1740"/> <source>No occurrences found.</source> <translation>Aucune occurence trouvée.</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1740"/> + <location filename="../RefactoringServer.py" line="1753"/> <source>Find Definition</source> <translation>Trouver la définition</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1775"/> + <location filename="../RefactoringServer.py" line="1788"/> <source>No matching definition found.</source> <translation>Aucune définition n'a été trouvée.</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1788"/> + <location filename="../RefactoringServer.py" line="1801"/> <source>Find Implementations</source> <translation>Recherche les surcharges de méthode</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1822"/> + <location filename="../RefactoringServer.py" line="1835"/> <source>No implementations found.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1844"/> + <location filename="../RefactoringServer.py" line="1856"/> <source>The Rope configuration file '{0}' does not exist.</source> <translation>Le fichier de configuration Rope '{0}' n'existe pas.</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1850"/> + <location filename="../RefactoringServer.py" line="1862"/> <source>The Rope admin directory does not exist.</source> <translation>Le répertoire admin de Rope n'existe pas.</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1859"/> + <location filename="../RefactoringServer.py" line="1871"/> <source>Shall rope's current configuration be replaced by a new default configuration?</source> <translation>Voulez-vous remplacer le fichier de configuration de rope par un nouveau fichier par défaut ?</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1875"/> + <location filename="../RefactoringServer.py" line="1887"/> <source><p>The configuration could not be updated.</p><p>Reason: {0}</p></source> <translation><p>Impossible de mettre à jour le fichier de configuration.</p><p>Raison: {0}</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1889"/> + <location filename="../RefactoringServer.py" line="1900"/> <source>Help about rope refactorings</source> <translation>Aide à propos des restructurations Rope</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1898"/> + <location filename="../RefactoringServer.py" line="1911"/> <source>This action might take some time. Do you really want to perform SOA?</source> <translation>Cette action peut prendre du temps. Voulez-vous réellement effectuer l'analyse des objets ?</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1920"/> + <location filename="../RefactoringServer.py" line="1933"/> <source>Static object analysis (SOA) done. SOA database updated.</source> <translation>Analyse statique terminée. Base de donnée mise à jour.</translation> </message> <message> - <location filename="../RefactoringServer.py" line="2121"/> + <location filename="../RefactoringServer.py" line="2118"/> <source>Project language '{0}' is not supported because the configured interpreter could not be started. Refactoring is disabled.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="2130"/> + <location filename="../RefactoringServer.py" line="2127"/> <source>Project language '{0}' is not supported because no suitable interpreter is configured. Refactoring is disabled.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="2136"/> + <location filename="../RefactoringServer.py" line="2133"/> <source>Refactoring for project language '{0}' is not supported.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="2262"/> + <location filename="../RefactoringServer.py" line="2261"/> <source>Refactoring Protocol Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="2276"/> + <location filename="../RefactoringServer.py" line="2275"/> <source>Refactoring Client Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="2262"/> + <location filename="../RefactoringServer.py" line="2261"/> <source><p>The data received from the refactoring server could not be decoded. Please report this issue with the received data to the eric bugs email address.</p><p>Error: {0}</p><p>Data:<br/>{1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="2276"/> + <location filename="../RefactoringServer.py" line="2275"/> <source><p>An exception happened in the refactoring client. Please report it to the eric bugs email address.</p><p>Exception: {0}</p><p>Value: {1}</p><p>Traceback: {2}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="2115"/> + <location filename="../RefactoringServer.py" line="2112"/> <source>The project is configured for remote access. Using local interpreter instead.</source> <translation type="unfinished"></translation> </message>
--- a/RefactoringRope/i18n/rope_it.ts Sat May 02 15:05:16 2020 +0200 +++ b/RefactoringRope/i18n/rope_it.ts Mon Jun 22 18:08:10 2020 +0200 @@ -67,21 +67,11 @@ </message> <message> <location filename="../ConfigurationPage/AutoCompletionRopePage.ui" line="105"/> - <source>Press to edit the rope configuration for Python2</source> + <source>Press to edit the rope configuration for Python3</source> <translation type="unfinished"></translation> </message> <message> <location filename="../ConfigurationPage/AutoCompletionRopePage.ui" line="108"/> - <source>Edit Python 2 rope configuration</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../ConfigurationPage/AutoCompletionRopePage.ui" line="115"/> - <source>Press to edit the rope configuration for Python3</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../ConfigurationPage/AutoCompletionRopePage.ui" line="118"/> <source>Edit Python 3 rope configuration</source> <translation type="unfinished"></translation> </message> @@ -237,7 +227,7 @@ <translation>Fallo per tutti i metodi che corrispondono nella gerarc&hia della classe</translation> </message> <message> - <location filename="../ChangeSignatureDialog.py" line="58"/> + <location filename="../ChangeSignatureDialog.py" line="59"/> <source>Preview</source> <translation>Anteprima</translation> </message> @@ -258,7 +248,7 @@ <context> <name>CodeAssistServer</name> <message> - <location filename="../CodeAssistServer.py" line="595"/> + <location filename="../CodeAssistServer.py" line="589"/> <source>An exception happened in the code assist client. Please report it to the eric bugs email address. Exception: {0} Value: {1} @@ -267,29 +257,29 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../CodeAssistServer.py" line="637"/> + <location filename="../CodeAssistServer.py" line="631"/> <source>'{0}' is not supported because the configured interpreter could not be started. </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../CodeAssistServer.py" line="642"/> + <location filename="../CodeAssistServer.py" line="636"/> <source>'{0}' is not supported because no suitable interpreter is configured. </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../CodeAssistServer.py" line="234"/> + <location filename="../CodeAssistServer.py" line="227"/> <source>Configure Rope</source> <translation>Configura Rope</translation> </message> <message> - <location filename="../CodeAssistServer.py" line="234"/> + <location filename="../CodeAssistServer.py" line="227"/> <source>The Rope configuration file '{0}' does not exist.</source> <translation>Il file di configurazione di Rope '{0}' non esiste.</translation> </message> <message> - <location filename="../CodeAssistServer.py" line="839"/> + <location filename="../CodeAssistServer.py" line="780"/> <source>Rope</source> <translation type="unfinished"></translation> </message> @@ -339,37 +329,37 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../CodeAssistServer.py" line="434"/> + <location filename="../CodeAssistServer.py" line="427"/> <source>Language <b>{0}</b> is not supported.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../CodeAssistServer.py" line="437"/> + <location filename="../CodeAssistServer.py" line="431"/> <source>Language '{0}' is not supported.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../CodeAssistServer.py" line="481"/> + <location filename="../CodeAssistServer.py" line="475"/> <source>Present in <i>{0}</i> module</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../CodeAssistServer.py" line="485"/> + <location filename="../CodeAssistServer.py" line="479"/> <source>Present in '{0}' module</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../CodeAssistServer.py" line="503"/> + <location filename="../CodeAssistServer.py" line="497"/> <source>No documentation available.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../CodeAssistServer.py" line="559"/> + <location filename="../CodeAssistServer.py" line="553"/> <source>Code Assist: No definition found</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../CodeAssistServer.py" line="585"/> + <location filename="../CodeAssistServer.py" line="579"/> <source>The data received from the code assist server could not be decoded. Please report this issue with the received data to the eric bugs email address. Error: {0} Data: @@ -515,7 +505,7 @@ <context> <name>HistoryDialog</name> <message> - <location filename="../HistoryDialog.py" line="79"/> + <location filename="../HistoryDialog.py" line="80"/> <source>&Undo</source> <translation>Ann&ulla</translation> </message> @@ -525,7 +515,7 @@ <translation>Annulla cronologia</translation> </message> <message> - <location filename="../HistoryDialog.py" line="81"/> + <location filename="../HistoryDialog.py" line="82"/> <source>&Redo</source> <translation>&Rifai</translation> </message> @@ -535,22 +525,22 @@ <translation>Rifai cronologia</translation> </message> <message> - <location filename="../HistoryDialog.py" line="195"/> + <location filename="../HistoryDialog.py" line="196"/> <source>Undo refactorings</source> <translation>Annulla il refactoring</translation> </message> <message> - <location filename="../HistoryDialog.py" line="195"/> + <location filename="../HistoryDialog.py" line="196"/> <source>Shall all refactorings up to <b>{0}</b> be undone?</source> <translation>Il Refactoring fino a <b>{0}</b> deve essere annullato?</translation> </message> <message> - <location filename="../HistoryDialog.py" line="217"/> + <location filename="../HistoryDialog.py" line="218"/> <source>Redo refactorings</source> <translation>Rifai refactoring</translation> </message> <message> - <location filename="../HistoryDialog.py" line="217"/> + <location filename="../HistoryDialog.py" line="218"/> <source>Shall all refactorings up to <b>{0}</b> be redone?</source> <translation>Il Refactoring fino a <b>{0}</b> deve essere rifatto?</translation> </message> @@ -565,32 +555,32 @@ <translation>Seleziona la modifica da visualizzare sulla destra</translation> </message> <message> - <location filename="../HistoryDialog.py" line="74"/> + <location filename="../HistoryDialog.py" line="75"/> <source><b>Project History</b></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HistoryDialog.py" line="76"/> + <location filename="../HistoryDialog.py" line="77"/> <source><b>File History: {0}</b></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HistoryDialog.py" line="83"/> + <location filename="../HistoryDialog.py" line="84"/> <source>Re&fresh</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HistoryDialog.py" line="85"/> + <location filename="../HistoryDialog.py" line="86"/> <source>&Clear History</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HistoryDialog.py" line="254"/> + <location filename="../HistoryDialog.py" line="255"/> <source>Clear History</source> <translation>Pulisci cronologia</translation> </message> <message> - <location filename="../HistoryDialog.py" line="254"/> + <location filename="../HistoryDialog.py" line="255"/> <source>Do you really want to clear the refactoring history?</source> <translation type="unfinished"></translation> </message> @@ -641,7 +631,7 @@ <translation>Anteprima</translation> </message> <message> - <location filename="../InlineDialog.py" line="81"/> + <location filename="../InlineDialog.py" line="80"/> <source>Inlining occurrences of <b>{0}</b> (type '<i>{1}</i>').</source> <translation type="unfinished"></translation> </message> @@ -837,80 +827,85 @@ <translation>Anteprima</translation> </message> <message> - <location filename="../MoveDialog.py" line="92"/> + <location filename="../MoveDialog.py" line="91"/> <source>Move Method</source> <translation>Sposta Metodo</translation> </message> <message> - <location filename="../MoveDialog.py" line="97"/> + <location filename="../MoveDialog.py" line="96"/> <source>Move Global Method</source> <translation>Sposta metodo globale</translation> </message> <message> - <location filename="../MoveDialog.py" line="99"/> + <location filename="../MoveDialog.py" line="98"/> <source>Destination Module:</source> <translation>Modulo destinazione:</translation> </message> <message> - <location filename="../MoveDialog.py" line="100"/> + <location filename="../MoveDialog.py" line="99"/> <source>Enter the destination module for the method</source> <translation>Inserisci il modulo di destinazione per il metodo</translation> </message> <message> - <location filename="../MoveDialog.py" line="102"/> + <location filename="../MoveDialog.py" line="101"/> <source>Select the destination module via a file selection dialog</source> <translation>Seleziona il modulo di destinazione con un dialogo</translation> </message> <message> - <location filename="../MoveDialog.py" line="105"/> + <location filename="../MoveDialog.py" line="104"/> <source>Move Module</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MoveDialog.py" line="107"/> + <location filename="../MoveDialog.py" line="106"/> <source>Destination Package:</source> <translation>Package di destinazione:</translation> </message> <message> - <location filename="../MoveDialog.py" line="108"/> + <location filename="../MoveDialog.py" line="107"/> <source>Enter the destination package for the module</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MoveDialog.py" line="110"/> + <location filename="../MoveDialog.py" line="109"/> <source>Select the destination package via a directory selection dialog</source> <translation>Seleziona il pacchetto di destinazione con un dialogo per la scelta della directory</translation> </message> <message> - <location filename="../MoveDialog.py" line="114"/> + <location filename="../MoveDialog.py" line="113"/> <source>Move</source> <translation type="unfinished"></translation> </message> <message> <location filename="../MoveDialog.py" line="181"/> <source>Python Files (*.py *.py2 *.py3);;All Files (*)</source> - <translation>File Python (*.py *.py2 *.py3);;Tutti i File(*)</translation> + <translation type="obsolete">File Python (*.py *.py2 *.py3);;Tutti i File(*)</translation> </message> <message> - <location filename="../MoveDialog.py" line="197"/> + <location filename="../MoveDialog.py" line="196"/> <source>The selected module must be inside the project.</source> <translation>Il modulo selezionato deve essere compreso nel progetto.</translation> </message> <message> - <location filename="../MoveDialog.py" line="201"/> + <location filename="../MoveDialog.py" line="200"/> <source>The selected directory must be inside the project.</source> <translation>La directory selezionata deve essere all'interno del progetto.</translation> </message> <message> - <location filename="../MoveDialog.py" line="243"/> + <location filename="../MoveDialog.py" line="242"/> <source>The selected module <b>{0}</b> does not exist.</source> <translation>Il modulo selezionato <b>{0}</b> non esiste.</translation> </message> <message> - <location filename="../MoveDialog.py" line="252"/> + <location filename="../MoveDialog.py" line="251"/> <source>The selected directory <b>{0}</b> is not a package.</source> <translation>La directory selezionata <b>{0}</b> non è un pacchetto.</translation> </message> + <message> + <location filename="../MoveDialog.py" line="180"/> + <source>Python Files (*.py *.py3);;All Files (*)</source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>PreviewDialog</name> @@ -933,7 +928,7 @@ <context> <name>RefactoringRopePlugin</name> <message> - <location filename="../../PluginRefactoringRope.py" line="107"/> + <location filename="../../PluginRefactoringRope.py" line="123"/> <source>Rope</source> <translation type="unfinished"></translation> </message> @@ -941,697 +936,697 @@ <context> <name>RefactoringServer</name> <message> - <location filename="../RefactoringServer.py" line="951"/> + <location filename="../RefactoringServer.py" line="964"/> <source>Rename</source> <translation>Rinomina</translation> </message> <message> - <location filename="../RefactoringServer.py" line="167"/> + <location filename="../RefactoringServer.py" line="180"/> <source>&Rename</source> <translation>&Rinomina</translation> </message> <message> - <location filename="../RefactoringServer.py" line="172"/> + <location filename="../RefactoringServer.py" line="185"/> <source>Rename the highlighted object</source> <translation>Rinomina l'oggetto evidenziato</translation> </message> <message> - <location filename="../RefactoringServer.py" line="174"/> + <location filename="../RefactoringServer.py" line="187"/> <source><b>Rename</b><p>Rename the highlighted Python object.</p></source> <translation><b>Rinomina</b><p>Rinomina l'oggetto Python selezionato.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="957"/> + <location filename="../RefactoringServer.py" line="970"/> <source>Local Rename</source> <translation>Rinomina localmente</translation> </message> <message> - <location filename="../RefactoringServer.py" line="182"/> + <location filename="../RefactoringServer.py" line="195"/> <source>&Local Rename</source> <translation>Rinomina &localmente</translation> </message> <message> - <location filename="../RefactoringServer.py" line="187"/> + <location filename="../RefactoringServer.py" line="200"/> <source>Rename the highlighted object in the current module only</source> <translation>Rinomina l'oggetto selezionato nel modulo corrente</translation> </message> <message> - <location filename="../RefactoringServer.py" line="189"/> + <location filename="../RefactoringServer.py" line="202"/> <source><b>Local Rename</b><p>Rename the highlighted Python object in the current module only.</p></source> <translation><b>Rinomina localmente</b><p>Rinomina l'oggetto Python selezionato solo nel modulo corrente.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="963"/> + <location filename="../RefactoringServer.py" line="976"/> <source>Rename Current Module</source> <translation>Rinomina modulo corrente</translation> </message> <message> - <location filename="../RefactoringServer.py" line="203"/> + <location filename="../RefactoringServer.py" line="216"/> <source>Rename the current module</source> <translation>Rinomina il modulo corrente</translation> </message> <message> - <location filename="../RefactoringServer.py" line="205"/> + <location filename="../RefactoringServer.py" line="218"/> <source><b>Rename Current Module</b><p>Rename the current module.</p></source> <translation><b>Rinomina modulo corrrente</b><p>Rinomina il modulo corrente.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1034"/> + <location filename="../RefactoringServer.py" line="1049"/> <source>Change Occurrences</source> <translation>Cambia occorrenze</translation> </message> <message> - <location filename="../RefactoringServer.py" line="213"/> + <location filename="../RefactoringServer.py" line="226"/> <source>Change &Occurrences</source> <translation>Cambia &occorrenze</translation> </message> <message> - <location filename="../RefactoringServer.py" line="218"/> + <location filename="../RefactoringServer.py" line="231"/> <source>Change all occurrences in the local scope</source> <translation>Cambia tutte le occorrenze nello scope globale</translation> </message> <message> - <location filename="../RefactoringServer.py" line="220"/> + <location filename="../RefactoringServer.py" line="233"/> <source><b>Change Occurrences</b><p>Change all occurrences in the local scope.</p></source> <translation><b>Cambia occorrenze</b><p>Cambia tutte le occorrenze nello scope globale.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="232"/> + <location filename="../RefactoringServer.py" line="245"/> <source>Extract method</source> <translation>Estrai metodo</translation> </message> <message> - <location filename="../RefactoringServer.py" line="232"/> + <location filename="../RefactoringServer.py" line="245"/> <source>Extract &Method</source> <translation>Estrai &metodo</translation> </message> <message> - <location filename="../RefactoringServer.py" line="237"/> + <location filename="../RefactoringServer.py" line="250"/> <source>Extract the highlighted area as a method</source> <translation>Estrae l'area selezionata come un metodo</translation> </message> <message> - <location filename="../RefactoringServer.py" line="239"/> + <location filename="../RefactoringServer.py" line="252"/> <source><b>Extract method</b><p>Extract the highlighted area as a method or function.</p></source> <translation><b>Estrai metodo</b><b>Estrae l'area selezionata come un metodo o funzione.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="247"/> + <location filename="../RefactoringServer.py" line="260"/> <source>Extract local variable</source> <translation>Estrai variabile locale</translation> </message> <message> - <location filename="../RefactoringServer.py" line="247"/> + <location filename="../RefactoringServer.py" line="260"/> <source>&Extract Local Variable</source> <translation>&Estrai variabile locale</translation> </message> <message> - <location filename="../RefactoringServer.py" line="252"/> + <location filename="../RefactoringServer.py" line="265"/> <source>Extract the highlighted area as a local variable</source> <translation>Estrae l'area selezionata come una variabile locale</translation> </message> <message> - <location filename="../RefactoringServer.py" line="254"/> + <location filename="../RefactoringServer.py" line="267"/> <source><b>Extract local variable</b><p>Extract the highlighted area as a local variable.</p></source> <translation><b>Estrai variabile locale</b><b>Estrae l'area selezionata come una variabile locale.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1129"/> + <location filename="../RefactoringServer.py" line="1142"/> <source>Inline</source> <translation>Inline</translation> </message> <message> - <location filename="../RefactoringServer.py" line="266"/> + <location filename="../RefactoringServer.py" line="279"/> <source>&Inline</source> <translation>&Inline</translation> </message> <message> - <location filename="../RefactoringServer.py" line="271"/> + <location filename="../RefactoringServer.py" line="284"/> <source>Inlines the selected local variable or method</source> <translation>Rendi inline la variabile locale o metodo selezionato</translation> </message> <message> - <location filename="../RefactoringServer.py" line="273"/> + <location filename="../RefactoringServer.py" line="286"/> <source><b>Inline</b><p>Inlines the selected local variable or method.</p></source> <translation><b>Inline</b><p>Rendi inline la variabile locale o metodo selezionato.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="285"/> + <location filename="../RefactoringServer.py" line="298"/> <source>Move method</source> <translation>Muovi Metodo</translation> </message> <message> - <location filename="../RefactoringServer.py" line="285"/> + <location filename="../RefactoringServer.py" line="298"/> <source>Mo&ve Method</source> <translation>Muo&vi Metodo</translation> </message> <message> - <location filename="../RefactoringServer.py" line="290"/> + <location filename="../RefactoringServer.py" line="303"/> <source>Move the highlighted method to another class</source> <translation>Muovi il metodo evidenziato in un'altra classe</translation> </message> <message> - <location filename="../RefactoringServer.py" line="292"/> + <location filename="../RefactoringServer.py" line="305"/> <source><b>Move method</b><p>Move the highlighted method to another class.</p></source> <translation><b>Muovi metodo</b><p>Muovi il metodo evidenziato in un'altra classe.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="300"/> + <location filename="../RefactoringServer.py" line="313"/> <source>Move current module</source> <translation>Sposta modulo corrente</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1179"/> + <location filename="../RefactoringServer.py" line="1192"/> <source>Move Current Module</source> <translation>Sposta modulo corrente</translation> </message> <message> - <location filename="../RefactoringServer.py" line="305"/> + <location filename="../RefactoringServer.py" line="318"/> <source>Move the current module to another package</source> <translation>Muovi il metodo corrente in un'altra classe</translation> </message> <message> - <location filename="../RefactoringServer.py" line="307"/> + <location filename="../RefactoringServer.py" line="320"/> <source><b>Move current module</b><p>Move the current module to another package.</p></source> <translation><b>Muovi metodocorrente</b><p>Muovi il metodo corrente in un'altra classe.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1212"/> + <location filename="../RefactoringServer.py" line="1225"/> <source>Use Function</source> <translation>Usa Funzione</translation> </message> <message> - <location filename="../RefactoringServer.py" line="324"/> + <location filename="../RefactoringServer.py" line="337"/> <source>Use a function wherever possible.</source> <translation>Usa una funzione dove possibile.</translation> </message> <message> - <location filename="../RefactoringServer.py" line="326"/> + <location filename="../RefactoringServer.py" line="339"/> <source><b>Use function</b><p>Tries to use a function wherever possible.</p></source> <translation><b>Usa funzione</b><p>Prova ad usare una funzione dove possibile.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1249"/> + <location filename="../RefactoringServer.py" line="1262"/> <source>Introduce Factory Method</source> <translation>Introduci Factory Method</translation> </message> <message> - <location filename="../RefactoringServer.py" line="338"/> + <location filename="../RefactoringServer.py" line="351"/> <source>Introduce &Factory Method</source> <translation>Introduci &Factory Method</translation> </message> <message> - <location filename="../RefactoringServer.py" line="343"/> + <location filename="../RefactoringServer.py" line="356"/> <source>Introduce a factory method or function</source> <translation>Introduci un factory method o funzione</translation> </message> <message> - <location filename="../RefactoringServer.py" line="345"/> + <location filename="../RefactoringServer.py" line="358"/> <source><b>Introduce Factory Method</b><p>Introduce a factory method or function.</p></source> <translation><b>Introduci Factory Method</b><p>Introduci un factory method o funzione</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1283"/> + <location filename="../RefactoringServer.py" line="1296"/> <source>Introduce Parameter</source> <translation>Introduci parametro</translation> </message> <message> - <location filename="../RefactoringServer.py" line="353"/> + <location filename="../RefactoringServer.py" line="366"/> <source>Introduce &Parameter</source> <translation>Introduci &parametro</translation> </message> <message> - <location filename="../RefactoringServer.py" line="358"/> + <location filename="../RefactoringServer.py" line="371"/> <source>Introduce a parameter in a function</source> <translation>Introduci un parametro in una funzione</translation> </message> <message> - <location filename="../RefactoringServer.py" line="360"/> + <location filename="../RefactoringServer.py" line="373"/> <source><b>Introduce Parameter</b><p>Introduce a parameter in a function.</p></source> <translation><b>Introduci parametro</b><p>Introduci un parametro in una funzione.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1316"/> + <location filename="../RefactoringServer.py" line="1329"/> <source>Organize Imports</source> <translation>Organizza Import</translation> </message> <message> - <location filename="../RefactoringServer.py" line="372"/> + <location filename="../RefactoringServer.py" line="385"/> <source>&Organize Imports</source> <translation>&Organizza Import</translation> </message> <message> - <location filename="../RefactoringServer.py" line="377"/> + <location filename="../RefactoringServer.py" line="390"/> <source>Sort imports according to PEP-8</source> <translation>Ordina import come da PEP 8</translation> </message> <message> - <location filename="../RefactoringServer.py" line="379"/> + <location filename="../RefactoringServer.py" line="392"/> <source><b>Organize Imports</b><p>Sort imports according to PEP-8.</p></source> <translation><b>Organizza Import</b><p>Ordina import come da PEP 8.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1324"/> + <location filename="../RefactoringServer.py" line="1337"/> <source>Expand Star Imports</source> <translation>Espandi Import asterisco</translation> </message> <message> - <location filename="../RefactoringServer.py" line="387"/> + <location filename="../RefactoringServer.py" line="400"/> <source>E&xpand Star Imports</source> <translation>E&spandi Import asterisco</translation> </message> <message> - <location filename="../RefactoringServer.py" line="392"/> + <location filename="../RefactoringServer.py" line="405"/> <source>Expand imports like "from xxx import *"</source> <translation>Espandi import tipo "from xxx import *"</translation> </message> <message> - <location filename="../RefactoringServer.py" line="394"/> + <location filename="../RefactoringServer.py" line="407"/> <source><b>Expand Star Imports</b><p>Expand imports like "from xxx import *".</p><p>Select the import to act on or none to do all. Unused imports are deleted.</p></source> <translation><b>Espandi Import asterisco</b><p>Espandi import tipo "from xxx import *".</p><p>Seleziona su che import agire o none per tutti. Gli import non utilizzati sono cancellati.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1332"/> + <location filename="../RefactoringServer.py" line="1345"/> <source>Relative to Absolute</source> <translation>Relativo a Assoluto</translation> </message> <message> - <location filename="../RefactoringServer.py" line="404"/> + <location filename="../RefactoringServer.py" line="417"/> <source>Relative to &Absolute</source> <translation>Relativo a &Assoluto</translation> </message> <message> - <location filename="../RefactoringServer.py" line="409"/> + <location filename="../RefactoringServer.py" line="422"/> <source>Transform relative imports to absolute ones</source> <translation>Trasforma import relativi in import assoluti</translation> </message> <message> - <location filename="../RefactoringServer.py" line="411"/> + <location filename="../RefactoringServer.py" line="424"/> <source><b>Relative to Absolute</b><p>Transform relative imports to absolute ones.</p><p>Select the import to act on or none to do all. Unused imports are deleted.</p></source> <translation><b>Relativo a Assoluto</b><p>Trasforma import relativi in import assoluti.</p><p>Seleziona su che import agire o none per tutti. Gli import non utilizzati sono cancellati.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1340"/> + <location filename="../RefactoringServer.py" line="1353"/> <source>Froms to Imports</source> <translation>From a Import</translation> </message> <message> - <location filename="../RefactoringServer.py" line="421"/> + <location filename="../RefactoringServer.py" line="434"/> <source>Froms to &Imports</source> <translation>From a &Import</translation> </message> <message> - <location filename="../RefactoringServer.py" line="426"/> + <location filename="../RefactoringServer.py" line="439"/> <source>Transform From imports to plain imports</source> <translation>Trasforma import from in semplici import</translation> </message> <message> - <location filename="../RefactoringServer.py" line="428"/> + <location filename="../RefactoringServer.py" line="441"/> <source><b>Froms to Imports</b><p>Transform From imports to plain imports.</p><p>Select the import to act on or none to do all. Unused imports are deleted.</p></source> <translation><b>From a Import</b><p>Trasforma import from in semplici import.</p><p>Seleziona su che import agire o none per tutti. Gli import non utilizzati sono cancellati.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1348"/> + <location filename="../RefactoringServer.py" line="1361"/> <source>Handle Long Imports</source> <translation>Gestisci import lunghi</translation> </message> <message> - <location filename="../RefactoringServer.py" line="438"/> + <location filename="../RefactoringServer.py" line="451"/> <source>Handle &Long Imports</source> <translation>Gestisci import &lunghi</translation> </message> <message> - <location filename="../RefactoringServer.py" line="443"/> + <location filename="../RefactoringServer.py" line="456"/> <source>Transform long import statements to look better</source> <translation>Trasforma gli import lunghi in istruzioni migliori</translation> </message> <message> - <location filename="../RefactoringServer.py" line="445"/> + <location filename="../RefactoringServer.py" line="458"/> <source><b>Handle Long Imports</b><p>Transform long import statements to look better.</p><p>Select the import to act on or none to do all. Unused imports are deleted.</p></source> <translation><b>Gestisci import lunghi</b><p>Trasforma gli import lunghi in istruzioni migliori.</p><p>Seleziona su che import agire o none per tutti. Gli import non utilizzati sono cancellati.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1399"/> + <location filename="../RefactoringServer.py" line="1412"/> <source>Restructure</source> <translation>Ristruttura</translation> </message> <message> - <location filename="../RefactoringServer.py" line="459"/> + <location filename="../RefactoringServer.py" line="472"/> <source>Res&tructure</source> <translation>Ris&truttura</translation> </message> <message> - <location filename="../RefactoringServer.py" line="464"/> + <location filename="../RefactoringServer.py" line="477"/> <source>Restructure code</source> <translation>Ristruttura il codice</translation> </message> <message> - <location filename="../RefactoringServer.py" line="466"/> + <location filename="../RefactoringServer.py" line="479"/> <source><b>Restructure</b><p>Restructure code. See "Rope Help" for examples.</p></source> <translation><b>Ristruttura</b><p>Ristruttura il codice. Vedii "Help Rope" per degli esempi.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1416"/> + <location filename="../RefactoringServer.py" line="1429"/> <source>Change Method Signature</source> <translation>Cambia firma del metodo</translation> </message> <message> - <location filename="../RefactoringServer.py" line="474"/> + <location filename="../RefactoringServer.py" line="487"/> <source>&Change Method Signature</source> <translation>&Cambia firma del metodo</translation> </message> <message> - <location filename="../RefactoringServer.py" line="479"/> + <location filename="../RefactoringServer.py" line="492"/> <source>Change the signature of the selected method or function</source> <translation>Cambia la signature del metodo o della funzione selezionato</translation> </message> <message> - <location filename="../RefactoringServer.py" line="481"/> + <location filename="../RefactoringServer.py" line="494"/> <source><b>Change Method Signature</b><p>Change the signature of the selected method or function.</p></source> <translation><b>Cambia firma del metodo</b><p>Cambia la firma del metodo o della funzione selezionato.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1451"/> + <location filename="../RefactoringServer.py" line="1464"/> <source>Inline Argument Default</source> <translation>Argomento inline predefinito</translation> </message> <message> - <location filename="../RefactoringServer.py" line="490"/> + <location filename="../RefactoringServer.py" line="503"/> <source>Inline &Argument Default</source> <translation>&Argomento inline predefinito</translation> </message> <message> - <location filename="../RefactoringServer.py" line="495"/> + <location filename="../RefactoringServer.py" line="508"/> <source>Inline a parameters default value</source> <translation>Rendi inline il valore di un parametro di default</translation> </message> <message> - <location filename="../RefactoringServer.py" line="497"/> + <location filename="../RefactoringServer.py" line="510"/> <source><b>Inline Argument Default</b><p>Inline a parameters default value.</p></source> <translation><b>Argomento inline predefinito</b><p>Rendi inline il valore di un parametro di default.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1485"/> + <location filename="../RefactoringServer.py" line="1498"/> <source>Transform Module to Package</source> <translation>Trasforma un modulo in un package</translation> </message> <message> - <location filename="../RefactoringServer.py" line="510"/> + <location filename="../RefactoringServer.py" line="523"/> <source>Transform the current module to a package</source> <translation>Trasforma il modulo corrente in un package</translation> </message> <message> - <location filename="../RefactoringServer.py" line="512"/> + <location filename="../RefactoringServer.py" line="525"/> <source><b>Transform Module to Package</b><p>Transform the current module to a package.</p></source> <translation><b>Trasforma un modulo in un package</b><p>Trasforma il modulo corrente in un package.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1514"/> + <location filename="../RefactoringServer.py" line="1527"/> <source>Encapsulate Attribute</source> <translation>Incapsula attributo</translation> </message> <message> - <location filename="../RefactoringServer.py" line="520"/> + <location filename="../RefactoringServer.py" line="533"/> <source>Encap&sulate Attribute</source> <translation>Incap&sula attributo</translation> </message> <message> - <location filename="../RefactoringServer.py" line="525"/> + <location filename="../RefactoringServer.py" line="538"/> <source>Generate a getter/setter for an attribute</source> <translation>Genera un getter/setter per l'attributo</translation> </message> <message> - <location filename="../RefactoringServer.py" line="527"/> + <location filename="../RefactoringServer.py" line="540"/> <source><b>Encapsulate Attribute</b><p>Generate a getter/setter for an attribute and changes its occurrences to use them.</p></source> <translation><b>Incapsula attributo</b><p>Genera un getter/setter per l'attributo e cambia le sue occorrenze per usarla.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1548"/> + <location filename="../RefactoringServer.py" line="1561"/> <source>Local Variable to Attribute</source> <translation>Da variabile locale ad attributo</translation> </message> <message> - <location filename="../RefactoringServer.py" line="536"/> + <location filename="../RefactoringServer.py" line="549"/> <source>Local Varia&ble to Attribute</source> <translation>Da variabi&le locale ad attributo</translation> </message> <message> - <location filename="../RefactoringServer.py" line="541"/> + <location filename="../RefactoringServer.py" line="554"/> <source>Change a local variable to an attribute</source> <translation>Cambia una variabile locale in un attributo</translation> </message> <message> - <location filename="../RefactoringServer.py" line="543"/> + <location filename="../RefactoringServer.py" line="556"/> <source><b>Local Variable to Attribute</b><p>Change a local variable to an attribute.</p></source> <translation><b>Da variabile locale ad attributo</b><p>Cambia una variabile locale in un attributo.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="551"/> + <location filename="../RefactoringServer.py" line="564"/> <source>Method To Method Object</source> <translation>Da metodo a metodo di oggetto</translation> </message> <message> - <location filename="../RefactoringServer.py" line="551"/> + <location filename="../RefactoringServer.py" line="564"/> <source>Method To Method Ob&ject</source> <translation>Da metodo a metodo di o&ggetto</translation> </message> <message> - <location filename="../RefactoringServer.py" line="556"/> + <location filename="../RefactoringServer.py" line="569"/> <source>Transform a function or a method to a method object</source> <translation>Trasforma una funzione o un metodo in un metodo dell'oggetto</translation> </message> <message> - <location filename="../RefactoringServer.py" line="558"/> + <location filename="../RefactoringServer.py" line="571"/> <source><b>Method To Method Object</b><p>Transform a function or a method to a method object.</p></source> <translation><b>Da metodo a metodo di oggetto</b><p>Trasforma una funzione o un metodo in un metodo dell'oggetto.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="570"/> + <location filename="../RefactoringServer.py" line="583"/> <source>Show Project History</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="570"/> + <location filename="../RefactoringServer.py" line="583"/> <source>Show Project History...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="575"/> + <location filename="../RefactoringServer.py" line="588"/> <source>Show the refactoring history of the project</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="577"/> + <location filename="../RefactoringServer.py" line="590"/> <source><b>Show Project History</b><p>This opens a dialog to show the refactoring history of the project.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="586"/> + <location filename="../RefactoringServer.py" line="599"/> <source>Show Current File History</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="586"/> + <location filename="../RefactoringServer.py" line="599"/> <source>Show Current File History...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="591"/> + <location filename="../RefactoringServer.py" line="604"/> <source>Show the refactoring history of the current file</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="593"/> + <location filename="../RefactoringServer.py" line="606"/> <source><b>Show Current File History</b><p>This opens a dialog to show the refactoring history of the current file.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1651"/> + <location filename="../RefactoringServer.py" line="1664"/> <source>Clear History</source> <translation>Pulisci cronologia</translation> </message> <message> - <location filename="../RefactoringServer.py" line="607"/> + <location filename="../RefactoringServer.py" line="620"/> <source>Clear the refactoring history</source> <translation>Pulisci la cronologia del refactoring</translation> </message> <message> - <location filename="../RefactoringServer.py" line="609"/> + <location filename="../RefactoringServer.py" line="622"/> <source><b>Clear History</b><p>Clears the refactoring history.</p></source> <translation><b>Pulisci cronologia</b><p>Pulisci la cronologia del refactoring.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="621"/> + <location filename="../RefactoringServer.py" line="634"/> <source>Find occurrences</source> <translation>Trova occorrenze</translation> </message> <message> - <location filename="../RefactoringServer.py" line="621"/> + <location filename="../RefactoringServer.py" line="634"/> <source>Find &Occurrences</source> <translation>Trova &occorrenze</translation> </message> <message> - <location filename="../RefactoringServer.py" line="626"/> + <location filename="../RefactoringServer.py" line="639"/> <source>Find occurrences of the highlighted object</source> <translation>Trova le occorrenze dell'oggetto selezionato</translation> </message> <message> - <location filename="../RefactoringServer.py" line="628"/> + <location filename="../RefactoringServer.py" line="641"/> <source><b>Find occurrences</b><p>Find occurrences of the highlighted class, method, function or variable.</p></source> <translation><b>Trova occorrenze</b><p>Trova le occorrenze dell'oggetto selezionato.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="637"/> + <location filename="../RefactoringServer.py" line="650"/> <source>Find definition</source> <translation>Trova definizione</translation> </message> <message> - <location filename="../RefactoringServer.py" line="637"/> + <location filename="../RefactoringServer.py" line="650"/> <source>Find &Definition</source> <translation>Trova &definizione</translation> </message> <message> - <location filename="../RefactoringServer.py" line="642"/> + <location filename="../RefactoringServer.py" line="655"/> <source>Find definition of the highlighted item</source> <translation>Trova la definizione dell'elemento evidenziato</translation> </message> <message> - <location filename="../RefactoringServer.py" line="644"/> + <location filename="../RefactoringServer.py" line="657"/> <source><b>Find definition</b><p>Find the definition of the highlighted class, method, function or variable.</p></source> <translation><b>Trova definizione</b><p>Trova la definizione dell'elemento evidenziato.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="653"/> + <location filename="../RefactoringServer.py" line="666"/> <source>Find implementations</source> <translation>Trova implementazione</translation> </message> <message> - <location filename="../RefactoringServer.py" line="653"/> + <location filename="../RefactoringServer.py" line="666"/> <source>Find &Implementations</source> <translation>Trova &implementazione</translation> </message> <message> - <location filename="../RefactoringServer.py" line="658"/> + <location filename="../RefactoringServer.py" line="671"/> <source>Find places where the selected method is overridden</source> <translation>Trova i posti dove il metodo selezionato viene sovrascritto</translation> </message> <message> - <location filename="../RefactoringServer.py" line="660"/> + <location filename="../RefactoringServer.py" line="673"/> <source><b>Find implementations</b><p>Find places where the selected method is overridden.</p></source> <translation><b>Trova implementazione</b><p>Trova i posti dove il metodo selezionato viene sovrascritto.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1850"/> + <location filename="../RefactoringServer.py" line="1862"/> <source>Configure Rope</source> <translation>Configura Rope</translation> </message> <message> - <location filename="../RefactoringServer.py" line="672"/> + <location filename="../RefactoringServer.py" line="685"/> <source>&Configure Rope</source> <translation>&Configura Rope</translation> </message> <message> - <location filename="../RefactoringServer.py" line="677"/> + <location filename="../RefactoringServer.py" line="690"/> <source>Open the rope configuration file</source> <translation>Apri il file di configurazione di rope</translation> </message> <message> - <location filename="../RefactoringServer.py" line="679"/> + <location filename="../RefactoringServer.py" line="692"/> <source><b>Configure Rope</b><p>Opens the rope configuration file in an editor.</p></source> <translation><b>Configura Rope</b><p>Apri il file di configurazione di rope.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="688"/> + <location filename="../RefactoringServer.py" line="701"/> <source>Rope Help</source> <translation>Aiuto di Rope</translation> </message> <message> - <location filename="../RefactoringServer.py" line="688"/> + <location filename="../RefactoringServer.py" line="701"/> <source>Rope &Help</source> <translation>&Aiuto di Rope</translation> </message> <message> - <location filename="../RefactoringServer.py" line="693"/> + <location filename="../RefactoringServer.py" line="706"/> <source>Show help about the rope refactorings</source> <translation>Mostra l'help del refactoring rope</translation> </message> <message> - <location filename="../RefactoringServer.py" line="695"/> + <location filename="../RefactoringServer.py" line="708"/> <source><b>Rope help</b><p>Show some help text about the rope refactorings.</p></source> <translation><b>Aiuto di Rope</b><p>Mostra l'help del refactoring rope.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1897"/> + <location filename="../RefactoringServer.py" line="1910"/> <source>Analyse all modules</source> <translation>Analizza tutti i moduli</translation> </message> <message> - <location filename="../RefactoringServer.py" line="703"/> + <location filename="../RefactoringServer.py" line="716"/> <source>&Analyse all modules</source> <translation>&Analizza tutti i moduli</translation> </message> <message> - <location filename="../RefactoringServer.py" line="708"/> + <location filename="../RefactoringServer.py" line="721"/> <source>Perform static object analysis on all modules</source> <translation>Esegui un'analisi di tutti i moduli di oggetti statici</translation> </message> <message> - <location filename="../RefactoringServer.py" line="710"/> + <location filename="../RefactoringServer.py" line="723"/> <source><b>Analyse all modules</b><p>Perform static object analysis (SOA) on all modules. This might be time consuming. Analysis of all modules should only be neccessary, if the project was created with the rope plugin disabled or if files were added.</p></source> <translation><b>Analizza tutti i moduli</b><p>Esegui un'analisi di tutti i moduli di oggetti statici (SOA). Può richiedere molto tempo. L'analisi di tutti i moduli dovrebbe essere necessaria solo che il progetto è stato creato con il plugin rope disabilitato o se sono stati aggiunti file.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1875"/> + <location filename="../RefactoringServer.py" line="1887"/> <source>Update Configuration</source> <translation>Aggiorna configurazione</translation> </message> <message> - <location filename="../RefactoringServer.py" line="721"/> + <location filename="../RefactoringServer.py" line="734"/> <source>&Update Configuration</source> <translation>Aggiorna config&urazione</translation> </message> <message> - <location filename="../RefactoringServer.py" line="726"/> + <location filename="../RefactoringServer.py" line="739"/> <source>Generates a new configuration file overwriting the current one.</source> <translation>Genera un nuovo file di configurazione sovrascrivendo il corrente.</translation> </message> <message> - <location filename="../RefactoringServer.py" line="728"/> + <location filename="../RefactoringServer.py" line="741"/> <source><b>Update Configuration</b><p>Generates a new configuration file overwriting the current one.</p></source> <translation><b>Aggiorna configurazione</b><p>Genera un nuovo file di configurazione sovrascrivendo il corrente.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="761"/> + <location filename="../RefactoringServer.py" line="774"/> <source>&Refactoring</source> <translation>&Refactoring</translation> </message> <message> - <location filename="../RefactoringServer.py" line="756"/> + <location filename="../RefactoringServer.py" line="769"/> <source>&Query</source> <translation>&Query</translation> </message> <message> - <location filename="../RefactoringServer.py" line="792"/> + <location filename="../RefactoringServer.py" line="805"/> <source>Im&ports</source> <translation>Im&ports</translation> </message> <message> - <location filename="../RefactoringServer.py" line="801"/> + <location filename="../RefactoringServer.py" line="814"/> <source>History</source> <translation>Cronologia</translation> </message> <message> - <location filename="../RefactoringServer.py" line="808"/> + <location filename="../RefactoringServer.py" line="821"/> <source>&Utilities</source> <translation>&Utilities</translation> </message> <message> - <location filename="../RefactoringServer.py" line="828"/> + <location filename="../RefactoringServer.py" line="841"/> <source>About rope</source> <translation>A proposito di Rope</translation> </message> <message> - <location filename="../RefactoringServer.py" line="828"/> + <location filename="../RefactoringServer.py" line="841"/> <source>{0} Version {1} @@ -1642,212 +1637,212 @@ {2}</translation> </message> <message> - <location filename="../RefactoringServer.py" line="860"/> + <location filename="../RefactoringServer.py" line="873"/> <source>Rope Error</source> <translation>Errore di rope</translation> </message> <message> - <location filename="../RefactoringServer.py" line="877"/> + <location filename="../RefactoringServer.py" line="890"/> <source>Rope error: {0}</source> <translation>Errore di rope: {0}</translation> </message> <message> - <location filename="../RefactoringServer.py" line="985"/> + <location filename="../RefactoringServer.py" line="998"/> <source>Highlight the declaration you want to rename and try again.</source> <translation>Evidenzia la dichiarazione che vuoi rinominare e prova ancora.</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1006"/> + <location filename="../RefactoringServer.py" line="1021"/> <source>The selection must not extend beyond one line.</source> <translation>La seleziona non deve estendersi su più di una riga.</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1037"/> + <location filename="../RefactoringServer.py" line="1052"/> <source>Highlight an occurrence to be changed and try again.</source> <translation>Evidenzia l'occorrenza che vuoi cambiare e prova ancora.</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1067"/> + <location filename="../RefactoringServer.py" line="1082"/> <source>Extract Method</source> <translation>Estrai metodo</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1073"/> + <location filename="../RefactoringServer.py" line="1088"/> <source>Extract Local Variable</source> <translation>Estrai variabile locale</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1093"/> + <location filename="../RefactoringServer.py" line="1106"/> <source>Highlight the region of code you want to extract and try again.</source> <translation>Evidenzia la parte di codice che vuoi estrarre e prova ancora.</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1132"/> + <location filename="../RefactoringServer.py" line="1145"/> <source>Highlight the local variable, method or parameter you want to inline and try again.</source> <translation>Evidenzia la variabile locale, il metodo o il parametro che vuoi rendere inline e prova ancora.</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1170"/> + <location filename="../RefactoringServer.py" line="1183"/> <source>Move Method</source> <translation>Sposta Metodo</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1173"/> + <location filename="../RefactoringServer.py" line="1186"/> <source>Highlight the method to move and try again.</source> <translation>Evidenzia il metodo che vuoi spostare e prova ancora.</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1215"/> + <location filename="../RefactoringServer.py" line="1228"/> <source>Highlight a global function and try again.</source> <translation>Evidenzia una variabile globale e prova ancora.</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1252"/> + <location filename="../RefactoringServer.py" line="1265"/> <source>Highlight the class to introduce a factory method for and try again.</source> <translation>Evidenzia la classe dove introdurre un factory method e prova ancora.</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1286"/> + <location filename="../RefactoringServer.py" line="1299"/> <source>Highlight the code for the new parameter and try again.</source> <translation>Evidenzia il codice per il nuovo parametro e prova ancora.</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1419"/> + <location filename="../RefactoringServer.py" line="1432"/> <source>Highlight the method or function to change and try again.</source> <translation>Evidenzia il metodo o la funzione da cambiare e prova ancora.</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1454"/> + <location filename="../RefactoringServer.py" line="1467"/> <source>Highlight the method or function to inline a parameter's default and try again.</source> <translation>Evidenzia il metodo o la funzione a cui aggiungere un parametro inline di default e prova ancora.</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1517"/> + <location filename="../RefactoringServer.py" line="1530"/> <source>Highlight the attribute to encapsulate and try again.</source> <translation>Evidenzia l'attributo da incapsulare e prova ancora.</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1551"/> + <location filename="../RefactoringServer.py" line="1564"/> <source>Highlight the local variable to make an attribute and try again.</source> <translation>Evidenzia la variabile locale da rendere un attributo e prova ancora.</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1587"/> + <location filename="../RefactoringServer.py" line="1600"/> <source>Replace Method With Method Object</source> <translation>Sostituisci un Method con un Method Object</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1590"/> + <location filename="../RefactoringServer.py" line="1603"/> <source>Highlight the method or function to convert and try again.</source> <translation>Evidenzia il metodo o la funzione da convertire e prova ancora.</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1651"/> + <location filename="../RefactoringServer.py" line="1664"/> <source>Do you really want to clear the refactoring history?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1693"/> + <location filename="../RefactoringServer.py" line="1706"/> <source>Find Occurrences</source> <translation>Trova occorrenze</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1727"/> + <location filename="../RefactoringServer.py" line="1740"/> <source>No occurrences found.</source> <translation>Nessuna occorrenza trovata.</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1740"/> + <location filename="../RefactoringServer.py" line="1753"/> <source>Find Definition</source> <translation>Trova definizione</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1775"/> + <location filename="../RefactoringServer.py" line="1788"/> <source>No matching definition found.</source> <translation>Nessuna definizione che combaci trovata.</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1788"/> + <location filename="../RefactoringServer.py" line="1801"/> <source>Find Implementations</source> <translation>Trova implementazione</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1822"/> + <location filename="../RefactoringServer.py" line="1835"/> <source>No implementations found.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1844"/> + <location filename="../RefactoringServer.py" line="1856"/> <source>The Rope configuration file '{0}' does not exist.</source> <translation>Il file di configurazione di Rope '{0}' non esiste.</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1850"/> + <location filename="../RefactoringServer.py" line="1862"/> <source>The Rope admin directory does not exist.</source> <translation>La directory di admin di Rope non esiste.</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1859"/> + <location filename="../RefactoringServer.py" line="1871"/> <source>Shall rope's current configuration be replaced by a new default configuration?</source> <translation>La configurazione attuale di Rope deve essere sostituito da una nuova configurazione di default?</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1875"/> + <location filename="../RefactoringServer.py" line="1887"/> <source><p>The configuration could not be updated.</p><p>Reason: {0}</p></source> <translation><p>La configurazione non può essere aggiornata.</p><p>Motivo: {0}</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1889"/> + <location filename="../RefactoringServer.py" line="1900"/> <source>Help about rope refactorings</source> <translation>Aiuto sul refactory Rope</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1898"/> + <location filename="../RefactoringServer.py" line="1911"/> <source>This action might take some time. Do you really want to perform SOA?</source> <translation>Questa azione può richiedere del tempo: Vuoi veramente eseguire SOA?</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1920"/> + <location filename="../RefactoringServer.py" line="1933"/> <source>Static object analysis (SOA) done. SOA database updated.</source> <translation>Analisi degli oggetti statici (SOA) eseguita. Database SOA aggiornato.</translation> </message> <message> - <location filename="../RefactoringServer.py" line="2121"/> + <location filename="../RefactoringServer.py" line="2118"/> <source>Project language '{0}' is not supported because the configured interpreter could not be started. Refactoring is disabled.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="2130"/> + <location filename="../RefactoringServer.py" line="2127"/> <source>Project language '{0}' is not supported because no suitable interpreter is configured. Refactoring is disabled.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="2136"/> + <location filename="../RefactoringServer.py" line="2133"/> <source>Refactoring for project language '{0}' is not supported.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="2262"/> + <location filename="../RefactoringServer.py" line="2261"/> <source>Refactoring Protocol Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="2276"/> + <location filename="../RefactoringServer.py" line="2275"/> <source>Refactoring Client Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="2262"/> + <location filename="../RefactoringServer.py" line="2261"/> <source><p>The data received from the refactoring server could not be decoded. Please report this issue with the received data to the eric bugs email address.</p><p>Error: {0}</p><p>Data:<br/>{1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="2276"/> + <location filename="../RefactoringServer.py" line="2275"/> <source><p>An exception happened in the refactoring client. Please report it to the eric bugs email address.</p><p>Exception: {0}</p><p>Value: {1}</p><p>Traceback: {2}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="2115"/> + <location filename="../RefactoringServer.py" line="2112"/> <source>The project is configured for remote access. Using local interpreter instead.</source> <translation type="unfinished"></translation> </message>
--- a/RefactoringRope/i18n/rope_pt.ts Sat May 02 15:05:16 2020 +0200 +++ b/RefactoringRope/i18n/rope_pt.ts Mon Jun 22 18:08:10 2020 +0200 @@ -67,21 +67,11 @@ </message> <message> <location filename="../ConfigurationPage/AutoCompletionRopePage.ui" line="105"/> - <source>Press to edit the rope configuration for Python2</source> + <source>Press to edit the rope configuration for Python3</source> <translation type="unfinished"></translation> </message> <message> <location filename="../ConfigurationPage/AutoCompletionRopePage.ui" line="108"/> - <source>Edit Python 2 rope configuration</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../ConfigurationPage/AutoCompletionRopePage.ui" line="115"/> - <source>Press to edit the rope configuration for Python3</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../ConfigurationPage/AutoCompletionRopePage.ui" line="118"/> <source>Edit Python 3 rope configuration</source> <translation type="unfinished"></translation> </message> @@ -237,7 +227,7 @@ <translation>Fazer para todos os métodos coincidentes na &hierarquia de classe</translation> </message> <message> - <location filename="../ChangeSignatureDialog.py" line="58"/> + <location filename="../ChangeSignatureDialog.py" line="59"/> <source>Preview</source> <translation>Previsualização</translation> </message> @@ -258,7 +248,7 @@ <context> <name>CodeAssistServer</name> <message> - <location filename="../CodeAssistServer.py" line="595"/> + <location filename="../CodeAssistServer.py" line="589"/> <source>An exception happened in the code assist client. Please report it to the eric bugs email address. Exception: {0} Value: {1} @@ -267,29 +257,29 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../CodeAssistServer.py" line="637"/> + <location filename="../CodeAssistServer.py" line="631"/> <source>'{0}' is not supported because the configured interpreter could not be started. </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../CodeAssistServer.py" line="642"/> + <location filename="../CodeAssistServer.py" line="636"/> <source>'{0}' is not supported because no suitable interpreter is configured. </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../CodeAssistServer.py" line="234"/> + <location filename="../CodeAssistServer.py" line="227"/> <source>Configure Rope</source> <translation>Configurar Rope</translation> </message> <message> - <location filename="../CodeAssistServer.py" line="234"/> + <location filename="../CodeAssistServer.py" line="227"/> <source>The Rope configuration file '{0}' does not exist.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../CodeAssistServer.py" line="839"/> + <location filename="../CodeAssistServer.py" line="780"/> <source>Rope</source> <translation>Rope</translation> </message> @@ -339,37 +329,37 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../CodeAssistServer.py" line="434"/> + <location filename="../CodeAssistServer.py" line="427"/> <source>Language <b>{0}</b> is not supported.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../CodeAssistServer.py" line="437"/> + <location filename="../CodeAssistServer.py" line="431"/> <source>Language '{0}' is not supported.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../CodeAssistServer.py" line="481"/> + <location filename="../CodeAssistServer.py" line="475"/> <source>Present in <i>{0}</i> module</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../CodeAssistServer.py" line="485"/> + <location filename="../CodeAssistServer.py" line="479"/> <source>Present in '{0}' module</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../CodeAssistServer.py" line="503"/> + <location filename="../CodeAssistServer.py" line="497"/> <source>No documentation available.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../CodeAssistServer.py" line="559"/> + <location filename="../CodeAssistServer.py" line="553"/> <source>Code Assist: No definition found</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../CodeAssistServer.py" line="585"/> + <location filename="../CodeAssistServer.py" line="579"/> <source>The data received from the code assist server could not be decoded. Please report this issue with the received data to the eric bugs email address. Error: {0} Data: @@ -515,7 +505,7 @@ <context> <name>HistoryDialog</name> <message> - <location filename="../HistoryDialog.py" line="79"/> + <location filename="../HistoryDialog.py" line="80"/> <source>&Undo</source> <translation>&Desfazer</translation> </message> @@ -525,7 +515,7 @@ <translation>Histórico de Desfazer</translation> </message> <message> - <location filename="../HistoryDialog.py" line="81"/> + <location filename="../HistoryDialog.py" line="82"/> <source>&Redo</source> <translation>&Refazer</translation> </message> @@ -535,22 +525,22 @@ <translation>Histórico de Refazer</translation> </message> <message> - <location filename="../HistoryDialog.py" line="195"/> + <location filename="../HistoryDialog.py" line="196"/> <source>Undo refactorings</source> <translation>Desfazer refacturações</translation> </message> <message> - <location filename="../HistoryDialog.py" line="195"/> + <location filename="../HistoryDialog.py" line="196"/> <source>Shall all refactorings up to <b>{0}</b> be undone?</source> <translation>Devem desfazer-se todas as refacturações até <b>{0}</b>?</translation> </message> <message> - <location filename="../HistoryDialog.py" line="217"/> + <location filename="../HistoryDialog.py" line="218"/> <source>Redo refactorings</source> <translation>Refazer refacturações</translation> </message> <message> - <location filename="../HistoryDialog.py" line="217"/> + <location filename="../HistoryDialog.py" line="218"/> <source>Shall all refactorings up to <b>{0}</b> be redone?</source> <translation>Devem refazer-se todas as refacturações até <b>{0}</b>?</translation> </message> @@ -565,32 +555,32 @@ <translation>Selecionar uma alteração para previsualizar à direita</translation> </message> <message> - <location filename="../HistoryDialog.py" line="74"/> + <location filename="../HistoryDialog.py" line="75"/> <source><b>Project History</b></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HistoryDialog.py" line="76"/> + <location filename="../HistoryDialog.py" line="77"/> <source><b>File History: {0}</b></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HistoryDialog.py" line="83"/> + <location filename="../HistoryDialog.py" line="84"/> <source>Re&fresh</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HistoryDialog.py" line="85"/> + <location filename="../HistoryDialog.py" line="86"/> <source>&Clear History</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HistoryDialog.py" line="254"/> + <location filename="../HistoryDialog.py" line="255"/> <source>Clear History</source> <translation>Limpar Histórico</translation> </message> <message> - <location filename="../HistoryDialog.py" line="254"/> + <location filename="../HistoryDialog.py" line="255"/> <source>Do you really want to clear the refactoring history?</source> <translation type="unfinished"></translation> </message> @@ -641,7 +631,7 @@ <translation>Previsualização</translation> </message> <message> - <location filename="../InlineDialog.py" line="81"/> + <location filename="../InlineDialog.py" line="80"/> <source>Inlining occurrences of <b>{0}</b> (type '<i>{1}</i>').</source> <translation type="unfinished"></translation> </message> @@ -837,80 +827,85 @@ <translation>Previsualização</translation> </message> <message> - <location filename="../MoveDialog.py" line="92"/> + <location filename="../MoveDialog.py" line="91"/> <source>Move Method</source> <translation>Mover Método</translation> </message> <message> - <location filename="../MoveDialog.py" line="97"/> + <location filename="../MoveDialog.py" line="96"/> <source>Move Global Method</source> <translation>Mover Método Global</translation> </message> <message> - <location filename="../MoveDialog.py" line="99"/> + <location filename="../MoveDialog.py" line="98"/> <source>Destination Module:</source> <translation>Módulo Destino:</translation> </message> <message> - <location filename="../MoveDialog.py" line="100"/> + <location filename="../MoveDialog.py" line="99"/> <source>Enter the destination module for the method</source> <translation>Introduzir o módulo de destino para o método</translation> </message> <message> - <location filename="../MoveDialog.py" line="102"/> + <location filename="../MoveDialog.py" line="101"/> <source>Select the destination module via a file selection dialog</source> <translation>Selecionar o módulo de destino através de uma caixa de diálogo de seleção de ficheiros</translation> </message> <message> - <location filename="../MoveDialog.py" line="105"/> + <location filename="../MoveDialog.py" line="104"/> <source>Move Module</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MoveDialog.py" line="107"/> + <location filename="../MoveDialog.py" line="106"/> <source>Destination Package:</source> <translation>Pacote Destino:</translation> </message> <message> - <location filename="../MoveDialog.py" line="108"/> + <location filename="../MoveDialog.py" line="107"/> <source>Enter the destination package for the module</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MoveDialog.py" line="110"/> + <location filename="../MoveDialog.py" line="109"/> <source>Select the destination package via a directory selection dialog</source> <translation>Selecionar o pacote de destino através de uma caixa de diálogo de seleção de diretórios</translation> </message> <message> - <location filename="../MoveDialog.py" line="114"/> + <location filename="../MoveDialog.py" line="113"/> <source>Move</source> <translation type="unfinished"></translation> </message> <message> <location filename="../MoveDialog.py" line="181"/> <source>Python Files (*.py *.py2 *.py3);;All Files (*)</source> - <translation>Ficheiros Python (*.py *.py2 *.py3);;Ficheiros Todos (*)</translation> + <translation type="obsolete">Ficheiros Python (*.py *.py2 *.py3);;Ficheiros Todos (*)</translation> </message> <message> - <location filename="../MoveDialog.py" line="197"/> + <location filename="../MoveDialog.py" line="196"/> <source>The selected module must be inside the project.</source> <translation>O módulo selecionado deve estar dentro do projeto.</translation> </message> <message> - <location filename="../MoveDialog.py" line="201"/> + <location filename="../MoveDialog.py" line="200"/> <source>The selected directory must be inside the project.</source> <translation>O diretório selecionado deve estar dentro do projeto.</translation> </message> <message> - <location filename="../MoveDialog.py" line="243"/> + <location filename="../MoveDialog.py" line="242"/> <source>The selected module <b>{0}</b> does not exist.</source> <translation>O módulo <b>{0}</b> selecionado não existe.</translation> </message> <message> - <location filename="../MoveDialog.py" line="252"/> + <location filename="../MoveDialog.py" line="251"/> <source>The selected directory <b>{0}</b> is not a package.</source> <translation>O diretório <b>{0}</b> selecionado não é um pacote.</translation> </message> + <message> + <location filename="../MoveDialog.py" line="180"/> + <source>Python Files (*.py *.py3);;All Files (*)</source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>PreviewDialog</name> @@ -933,7 +928,7 @@ <context> <name>RefactoringRopePlugin</name> <message> - <location filename="../../PluginRefactoringRope.py" line="107"/> + <location filename="../../PluginRefactoringRope.py" line="123"/> <source>Rope</source> <translation>Rope</translation> </message> @@ -941,697 +936,697 @@ <context> <name>RefactoringServer</name> <message> - <location filename="../RefactoringServer.py" line="951"/> + <location filename="../RefactoringServer.py" line="964"/> <source>Rename</source> <translation>Renomear</translation> </message> <message> - <location filename="../RefactoringServer.py" line="167"/> + <location filename="../RefactoringServer.py" line="180"/> <source>&Rename</source> <translation>&Renomear</translation> </message> <message> - <location filename="../RefactoringServer.py" line="172"/> + <location filename="../RefactoringServer.py" line="185"/> <source>Rename the highlighted object</source> <translation>Renomear o objeto realçado</translation> </message> <message> - <location filename="../RefactoringServer.py" line="174"/> + <location filename="../RefactoringServer.py" line="187"/> <source><b>Rename</b><p>Rename the highlighted Python object.</p></source> <translation><b>Renomear</b><p>Renomeia o objeto Python realçado.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="957"/> + <location filename="../RefactoringServer.py" line="970"/> <source>Local Rename</source> <translation>Renomear Local</translation> </message> <message> - <location filename="../RefactoringServer.py" line="182"/> + <location filename="../RefactoringServer.py" line="195"/> <source>&Local Rename</source> <translation>&Renomear Local</translation> </message> <message> - <location filename="../RefactoringServer.py" line="187"/> + <location filename="../RefactoringServer.py" line="200"/> <source>Rename the highlighted object in the current module only</source> <translation>Renomear o objeto realçado apenas no módulo atual</translation> </message> <message> - <location filename="../RefactoringServer.py" line="189"/> + <location filename="../RefactoringServer.py" line="202"/> <source><b>Local Rename</b><p>Rename the highlighted Python object in the current module only.</p></source> <translation><b>Renomear Local</b><p>Renomear o objeto realçado apenas no módulo atual.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="963"/> + <location filename="../RefactoringServer.py" line="976"/> <source>Rename Current Module</source> <translation>Renomear Módulo Local</translation> </message> <message> - <location filename="../RefactoringServer.py" line="203"/> + <location filename="../RefactoringServer.py" line="216"/> <source>Rename the current module</source> <translation>Renomear o módulo atual</translation> </message> <message> - <location filename="../RefactoringServer.py" line="205"/> + <location filename="../RefactoringServer.py" line="218"/> <source><b>Rename Current Module</b><p>Rename the current module.</p></source> <translation><b>Renomear Módulo Local</b><p>Renomear o módulo atual.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1034"/> + <location filename="../RefactoringServer.py" line="1049"/> <source>Change Occurrences</source> <translation>Alterar Ocurrências</translation> </message> <message> - <location filename="../RefactoringServer.py" line="213"/> + <location filename="../RefactoringServer.py" line="226"/> <source>Change &Occurrences</source> <translation>Alterar &Ocurrências</translation> </message> <message> - <location filename="../RefactoringServer.py" line="218"/> + <location filename="../RefactoringServer.py" line="231"/> <source>Change all occurrences in the local scope</source> <translation>Alterar todas as ocurrências no ambito local</translation> </message> <message> - <location filename="../RefactoringServer.py" line="220"/> + <location filename="../RefactoringServer.py" line="233"/> <source><b>Change Occurrences</b><p>Change all occurrences in the local scope.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="232"/> + <location filename="../RefactoringServer.py" line="245"/> <source>Extract method</source> <translation>Extrair método</translation> </message> <message> - <location filename="../RefactoringServer.py" line="232"/> + <location filename="../RefactoringServer.py" line="245"/> <source>Extract &Method</source> <translation>Extrair &Método</translation> </message> <message> - <location filename="../RefactoringServer.py" line="237"/> + <location filename="../RefactoringServer.py" line="250"/> <source>Extract the highlighted area as a method</source> <translation>Extrai a área realçada como um método</translation> </message> <message> - <location filename="../RefactoringServer.py" line="239"/> + <location filename="../RefactoringServer.py" line="252"/> <source><b>Extract method</b><p>Extract the highlighted area as a method or function.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="247"/> + <location filename="../RefactoringServer.py" line="260"/> <source>Extract local variable</source> <translation>Extrair variável local</translation> </message> <message> - <location filename="../RefactoringServer.py" line="247"/> + <location filename="../RefactoringServer.py" line="260"/> <source>&Extract Local Variable</source> <translation>&Extrair Variável Local</translation> </message> <message> - <location filename="../RefactoringServer.py" line="252"/> + <location filename="../RefactoringServer.py" line="265"/> <source>Extract the highlighted area as a local variable</source> <translation>Extrair área realçada como uma variável local</translation> </message> <message> - <location filename="../RefactoringServer.py" line="254"/> + <location filename="../RefactoringServer.py" line="267"/> <source><b>Extract local variable</b><p>Extract the highlighted area as a local variable.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1129"/> + <location filename="../RefactoringServer.py" line="1142"/> <source>Inline</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="266"/> + <location filename="../RefactoringServer.py" line="279"/> <source>&Inline</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="271"/> + <location filename="../RefactoringServer.py" line="284"/> <source>Inlines the selected local variable or method</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="273"/> + <location filename="../RefactoringServer.py" line="286"/> <source><b>Inline</b><p>Inlines the selected local variable or method.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="285"/> + <location filename="../RefactoringServer.py" line="298"/> <source>Move method</source> <translation>Mover método</translation> </message> <message> - <location filename="../RefactoringServer.py" line="285"/> + <location filename="../RefactoringServer.py" line="298"/> <source>Mo&ve Method</source> <translation>Mo&ver Método</translation> </message> <message> - <location filename="../RefactoringServer.py" line="290"/> + <location filename="../RefactoringServer.py" line="303"/> <source>Move the highlighted method to another class</source> <translation>Move o método realçado a outra classe</translation> </message> <message> - <location filename="../RefactoringServer.py" line="292"/> + <location filename="../RefactoringServer.py" line="305"/> <source><b>Move method</b><p>Move the highlighted method to another class.</p></source> <translation><b>Mover método</b><p>Move o método realçado a outra classe.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="300"/> + <location filename="../RefactoringServer.py" line="313"/> <source>Move current module</source> <translation>Mover método atual</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1179"/> + <location filename="../RefactoringServer.py" line="1192"/> <source>Move Current Module</source> <translation>Mover Método Atual</translation> </message> <message> - <location filename="../RefactoringServer.py" line="305"/> + <location filename="../RefactoringServer.py" line="318"/> <source>Move the current module to another package</source> <translation>Mover o módulo atual a outro pacote</translation> </message> <message> - <location filename="../RefactoringServer.py" line="307"/> + <location filename="../RefactoringServer.py" line="320"/> <source><b>Move current module</b><p>Move the current module to another package.</p></source> <translation><b>Mover Método Atual</b><p>Move o módulo atual a outro pacote.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1212"/> + <location filename="../RefactoringServer.py" line="1225"/> <source>Use Function</source> <translation>Usar Função</translation> </message> <message> - <location filename="../RefactoringServer.py" line="324"/> + <location filename="../RefactoringServer.py" line="337"/> <source>Use a function wherever possible.</source> <translation>Usar uma função sempre que seja possível.</translation> </message> <message> - <location filename="../RefactoringServer.py" line="326"/> + <location filename="../RefactoringServer.py" line="339"/> <source><b>Use function</b><p>Tries to use a function wherever possible.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1249"/> + <location filename="../RefactoringServer.py" line="1262"/> <source>Introduce Factory Method</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="338"/> + <location filename="../RefactoringServer.py" line="351"/> <source>Introduce &Factory Method</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="343"/> + <location filename="../RefactoringServer.py" line="356"/> <source>Introduce a factory method or function</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="345"/> + <location filename="../RefactoringServer.py" line="358"/> <source><b>Introduce Factory Method</b><p>Introduce a factory method or function.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1283"/> + <location filename="../RefactoringServer.py" line="1296"/> <source>Introduce Parameter</source> <translation>Introduzir Parâmetro</translation> </message> <message> - <location filename="../RefactoringServer.py" line="353"/> + <location filename="../RefactoringServer.py" line="366"/> <source>Introduce &Parameter</source> <translation>Introduzir &Parâmetro</translation> </message> <message> - <location filename="../RefactoringServer.py" line="358"/> + <location filename="../RefactoringServer.py" line="371"/> <source>Introduce a parameter in a function</source> <translation>Introduzir um parâmetro numa função</translation> </message> <message> - <location filename="../RefactoringServer.py" line="360"/> + <location filename="../RefactoringServer.py" line="373"/> <source><b>Introduce Parameter</b><p>Introduce a parameter in a function.</p></source> <translation><b>Introduzir Parâmetro</b><p>Introduz um parâmetro numa função.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1316"/> + <location filename="../RefactoringServer.py" line="1329"/> <source>Organize Imports</source> <translation>Organizar Importações</translation> </message> <message> - <location filename="../RefactoringServer.py" line="372"/> + <location filename="../RefactoringServer.py" line="385"/> <source>&Organize Imports</source> <translation>&Organizar Importações</translation> </message> <message> - <location filename="../RefactoringServer.py" line="377"/> + <location filename="../RefactoringServer.py" line="390"/> <source>Sort imports according to PEP-8</source> <translation>Ordenar importações de acordo com PEP-8</translation> </message> <message> - <location filename="../RefactoringServer.py" line="379"/> + <location filename="../RefactoringServer.py" line="392"/> <source><b>Organize Imports</b><p>Sort imports according to PEP-8.</p></source> <translation><b>Organizar Importações</b><p>Ordenar importações de acordo com PEP-8.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1324"/> + <location filename="../RefactoringServer.py" line="1337"/> <source>Expand Star Imports</source> <translation>Expandir Importações Asterisco</translation> </message> <message> - <location filename="../RefactoringServer.py" line="387"/> + <location filename="../RefactoringServer.py" line="400"/> <source>E&xpand Star Imports</source> <translation>E&xpandir Importações Asterisco</translation> </message> <message> - <location filename="../RefactoringServer.py" line="392"/> + <location filename="../RefactoringServer.py" line="405"/> <source>Expand imports like "from xxx import *"</source> <translation>Expandir importações como "from xxx import *"</translation> </message> <message> - <location filename="../RefactoringServer.py" line="394"/> + <location filename="../RefactoringServer.py" line="407"/> <source><b>Expand Star Imports</b><p>Expand imports like "from xxx import *".</p><p>Select the import to act on or none to do all. Unused imports are deleted.</p></source> <translation><b>Expandir Importações Asterisco</b><p>Expande importações como "from xxx import *".</p><p>Selecione a importação onde agir ou nenhuma para atuar em todas. As importações sem usar serão apagadas.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1332"/> + <location filename="../RefactoringServer.py" line="1345"/> <source>Relative to Absolute</source> <translation>Relativa a Absoluta</translation> </message> <message> - <location filename="../RefactoringServer.py" line="404"/> + <location filename="../RefactoringServer.py" line="417"/> <source>Relative to &Absolute</source> <translation>Relativa a &Absoluta</translation> </message> <message> - <location filename="../RefactoringServer.py" line="409"/> + <location filename="../RefactoringServer.py" line="422"/> <source>Transform relative imports to absolute ones</source> <translation>Transformar importações relativas em absolutas</translation> </message> <message> - <location filename="../RefactoringServer.py" line="411"/> + <location filename="../RefactoringServer.py" line="424"/> <source><b>Relative to Absolute</b><p>Transform relative imports to absolute ones.</p><p>Select the import to act on or none to do all. Unused imports are deleted.</p></source> <translation><b>Relativa a Absoluta</b><p>Transforma importações relativas em absolutas.</p><p>Selecione a importação onde agir ou nenhuma para atuar em todas. As importações sem usar serão apagadas.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1340"/> + <location filename="../RefactoringServer.py" line="1353"/> <source>Froms to Imports</source> <translation>'From's para 'Import's</translation> </message> <message> - <location filename="../RefactoringServer.py" line="421"/> + <location filename="../RefactoringServer.py" line="434"/> <source>Froms to &Imports</source> <translation>'From's para '&Import's</translation> </message> <message> - <location filename="../RefactoringServer.py" line="426"/> + <location filename="../RefactoringServer.py" line="439"/> <source>Transform From imports to plain imports</source> <translation>Transformar importações 'from' em importações planas</translation> </message> <message> - <location filename="../RefactoringServer.py" line="428"/> + <location filename="../RefactoringServer.py" line="441"/> <source><b>Froms to Imports</b><p>Transform From imports to plain imports.</p><p>Select the import to act on or none to do all. Unused imports are deleted.</p></source> <translation><b>'From's para 'Import's</b><p>Transformar importações 'from' em importações planas.</p><p>Selecione a importação onde agir ou nenhuma para atuar em todas. As importações sem usar serão apagadas.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1348"/> + <location filename="../RefactoringServer.py" line="1361"/> <source>Handle Long Imports</source> <translation>Manejar Importações Compridas</translation> </message> <message> - <location filename="../RefactoringServer.py" line="438"/> + <location filename="../RefactoringServer.py" line="451"/> <source>Handle &Long Imports</source> <translation>Manejar Importações &Compridas</translation> </message> <message> - <location filename="../RefactoringServer.py" line="443"/> + <location filename="../RefactoringServer.py" line="456"/> <source>Transform long import statements to look better</source> <translation>Transformar instruções de importação compridas para ter melhor aspecto</translation> </message> <message> - <location filename="../RefactoringServer.py" line="445"/> + <location filename="../RefactoringServer.py" line="458"/> <source><b>Handle Long Imports</b><p>Transform long import statements to look better.</p><p>Select the import to act on or none to do all. Unused imports are deleted.</p></source> <translation><b>Manejar Importações Compridas</b><p>Transformar instruções de importação compridas para ter melhor aspecto.</p><p>Selecione a importação onde agir ou nenhuma para atuar em todas. As importações sem usar serão apagadas.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1399"/> + <location filename="../RefactoringServer.py" line="1412"/> <source>Restructure</source> <translation>Restructurar</translation> </message> <message> - <location filename="../RefactoringServer.py" line="459"/> + <location filename="../RefactoringServer.py" line="472"/> <source>Res&tructure</source> <translation>Restruc&turar</translation> </message> <message> - <location filename="../RefactoringServer.py" line="464"/> + <location filename="../RefactoringServer.py" line="477"/> <source>Restructure code</source> <translation>Restructurar código</translation> </message> <message> - <location filename="../RefactoringServer.py" line="466"/> + <location filename="../RefactoringServer.py" line="479"/> <source><b>Restructure</b><p>Restructure code. See "Rope Help" for examples.</p></source> <translation><b>Restructurar</b><p>Restructurar código. Veja exemplos em "Ajuda de Rope".</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1416"/> + <location filename="../RefactoringServer.py" line="1429"/> <source>Change Method Signature</source> <translation>Mudar Assinatura de Método</translation> </message> <message> - <location filename="../RefactoringServer.py" line="474"/> + <location filename="../RefactoringServer.py" line="487"/> <source>&Change Method Signature</source> <translation>&Mudar Assinatura de Método</translation> </message> <message> - <location filename="../RefactoringServer.py" line="479"/> + <location filename="../RefactoringServer.py" line="492"/> <source>Change the signature of the selected method or function</source> <translation>Mudar a assinatura de função ou métodos selecionado</translation> </message> <message> - <location filename="../RefactoringServer.py" line="481"/> + <location filename="../RefactoringServer.py" line="494"/> <source><b>Change Method Signature</b><p>Change the signature of the selected method or function.</p></source> <translation><b>Mudar Assinatura de Método</b><p>Muda a assinatura de função ou métodos selecionado.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1451"/> + <location filename="../RefactoringServer.py" line="1464"/> <source>Inline Argument Default</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="490"/> + <location filename="../RefactoringServer.py" line="503"/> <source>Inline &Argument Default</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="495"/> + <location filename="../RefactoringServer.py" line="508"/> <source>Inline a parameters default value</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="497"/> + <location filename="../RefactoringServer.py" line="510"/> <source><b>Inline Argument Default</b><p>Inline a parameters default value.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1485"/> + <location filename="../RefactoringServer.py" line="1498"/> <source>Transform Module to Package</source> <translation>Transformar Módulo em Pacote</translation> </message> <message> - <location filename="../RefactoringServer.py" line="510"/> + <location filename="../RefactoringServer.py" line="523"/> <source>Transform the current module to a package</source> <translation>Transformar módulo atual num pacote</translation> </message> <message> - <location filename="../RefactoringServer.py" line="512"/> + <location filename="../RefactoringServer.py" line="525"/> <source><b>Transform Module to Package</b><p>Transform the current module to a package.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1514"/> + <location filename="../RefactoringServer.py" line="1527"/> <source>Encapsulate Attribute</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="520"/> + <location filename="../RefactoringServer.py" line="533"/> <source>Encap&sulate Attribute</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="525"/> + <location filename="../RefactoringServer.py" line="538"/> <source>Generate a getter/setter for an attribute</source> <translation>Gerar getter/setter para o atributo</translation> </message> <message> - <location filename="../RefactoringServer.py" line="527"/> + <location filename="../RefactoringServer.py" line="540"/> <source><b>Encapsulate Attribute</b><p>Generate a getter/setter for an attribute and changes its occurrences to use them.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1548"/> + <location filename="../RefactoringServer.py" line="1561"/> <source>Local Variable to Attribute</source> <translation>Variável Local a Atributo</translation> </message> <message> - <location filename="../RefactoringServer.py" line="536"/> + <location filename="../RefactoringServer.py" line="549"/> <source>Local Varia&ble to Attribute</source> <translation>Variável Local a Atri&buto</translation> </message> <message> - <location filename="../RefactoringServer.py" line="541"/> + <location filename="../RefactoringServer.py" line="554"/> <source>Change a local variable to an attribute</source> <translation>Mudar uma variável local a um atributo</translation> </message> <message> - <location filename="../RefactoringServer.py" line="543"/> + <location filename="../RefactoringServer.py" line="556"/> <source><b>Local Variable to Attribute</b><p>Change a local variable to an attribute.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="551"/> + <location filename="../RefactoringServer.py" line="564"/> <source>Method To Method Object</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="551"/> + <location filename="../RefactoringServer.py" line="564"/> <source>Method To Method Ob&ject</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="556"/> + <location filename="../RefactoringServer.py" line="569"/> <source>Transform a function or a method to a method object</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="558"/> + <location filename="../RefactoringServer.py" line="571"/> <source><b>Method To Method Object</b><p>Transform a function or a method to a method object.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="570"/> + <location filename="../RefactoringServer.py" line="583"/> <source>Show Project History</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="570"/> + <location filename="../RefactoringServer.py" line="583"/> <source>Show Project History...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="575"/> + <location filename="../RefactoringServer.py" line="588"/> <source>Show the refactoring history of the project</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="577"/> + <location filename="../RefactoringServer.py" line="590"/> <source><b>Show Project History</b><p>This opens a dialog to show the refactoring history of the project.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="586"/> + <location filename="../RefactoringServer.py" line="599"/> <source>Show Current File History</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="586"/> + <location filename="../RefactoringServer.py" line="599"/> <source>Show Current File History...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="591"/> + <location filename="../RefactoringServer.py" line="604"/> <source>Show the refactoring history of the current file</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="593"/> + <location filename="../RefactoringServer.py" line="606"/> <source><b>Show Current File History</b><p>This opens a dialog to show the refactoring history of the current file.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1651"/> + <location filename="../RefactoringServer.py" line="1664"/> <source>Clear History</source> <translation>Limpar Histórico</translation> </message> <message> - <location filename="../RefactoringServer.py" line="607"/> + <location filename="../RefactoringServer.py" line="620"/> <source>Clear the refactoring history</source> <translation>Limpa históric de refacturação</translation> </message> <message> - <location filename="../RefactoringServer.py" line="609"/> + <location filename="../RefactoringServer.py" line="622"/> <source><b>Clear History</b><p>Clears the refactoring history.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="621"/> + <location filename="../RefactoringServer.py" line="634"/> <source>Find occurrences</source> <translation>Encontrar ocurrências</translation> </message> <message> - <location filename="../RefactoringServer.py" line="621"/> + <location filename="../RefactoringServer.py" line="634"/> <source>Find &Occurrences</source> <translation>Encontrar &Ocurrências</translation> </message> <message> - <location filename="../RefactoringServer.py" line="626"/> + <location filename="../RefactoringServer.py" line="639"/> <source>Find occurrences of the highlighted object</source> <translation>Encontrar ocurrências do objeto realçado</translation> </message> <message> - <location filename="../RefactoringServer.py" line="628"/> + <location filename="../RefactoringServer.py" line="641"/> <source><b>Find occurrences</b><p>Find occurrences of the highlighted class, method, function or variable.</p></source> <translation><b>Encontrar ocurrências</b><p>Encontrar ocurrências da classe, método, função ou variável com realce.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="637"/> + <location filename="../RefactoringServer.py" line="650"/> <source>Find definition</source> <translation>Encontrar defenição</translation> </message> <message> - <location filename="../RefactoringServer.py" line="637"/> + <location filename="../RefactoringServer.py" line="650"/> <source>Find &Definition</source> <translation>Encontrar &Defenição</translation> </message> <message> - <location filename="../RefactoringServer.py" line="642"/> + <location filename="../RefactoringServer.py" line="655"/> <source>Find definition of the highlighted item</source> <translation>Encontrar defenição do elemento realçado</translation> </message> <message> - <location filename="../RefactoringServer.py" line="644"/> + <location filename="../RefactoringServer.py" line="657"/> <source><b>Find definition</b><p>Find the definition of the highlighted class, method, function or variable.</p></source> <translation><b>Encontrar defenição</b><p>Encontra a defenição da classe, método, função ou variável realçada.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="653"/> + <location filename="../RefactoringServer.py" line="666"/> <source>Find implementations</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="653"/> + <location filename="../RefactoringServer.py" line="666"/> <source>Find &Implementations</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="658"/> + <location filename="../RefactoringServer.py" line="671"/> <source>Find places where the selected method is overridden</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="660"/> + <location filename="../RefactoringServer.py" line="673"/> <source><b>Find implementations</b><p>Find places where the selected method is overridden.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1850"/> + <location filename="../RefactoringServer.py" line="1862"/> <source>Configure Rope</source> <translation>Configurar Rope</translation> </message> <message> - <location filename="../RefactoringServer.py" line="672"/> + <location filename="../RefactoringServer.py" line="685"/> <source>&Configure Rope</source> <translation>&Configurar Rope</translation> </message> <message> - <location filename="../RefactoringServer.py" line="677"/> + <location filename="../RefactoringServer.py" line="690"/> <source>Open the rope configuration file</source> <translation>Abrir o ficheiro de configuração de rope</translation> </message> <message> - <location filename="../RefactoringServer.py" line="679"/> + <location filename="../RefactoringServer.py" line="692"/> <source><b>Configure Rope</b><p>Opens the rope configuration file in an editor.</p></source> <translation><b>Configurar Rope</b><p>Abre o ficheiro de configuração de rope num editor.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="688"/> + <location filename="../RefactoringServer.py" line="701"/> <source>Rope Help</source> <translation>Ajuda de Rope</translation> </message> <message> - <location filename="../RefactoringServer.py" line="688"/> + <location filename="../RefactoringServer.py" line="701"/> <source>Rope &Help</source> <translation>&Ajuda de Rope</translation> </message> <message> - <location filename="../RefactoringServer.py" line="693"/> + <location filename="../RefactoringServer.py" line="706"/> <source>Show help about the rope refactorings</source> <translation>Mostrar ajuda acerca de refacturações rope</translation> </message> <message> - <location filename="../RefactoringServer.py" line="695"/> + <location filename="../RefactoringServer.py" line="708"/> <source><b>Rope help</b><p>Show some help text about the rope refactorings.</p></source> <translation><b>Ajuda Rope</b><p>Mostra um texto de ajuda sobre as refacturações rope.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1897"/> + <location filename="../RefactoringServer.py" line="1910"/> <source>Analyse all modules</source> <translation>Analisar todos os módulos</translation> </message> <message> - <location filename="../RefactoringServer.py" line="703"/> + <location filename="../RefactoringServer.py" line="716"/> <source>&Analyse all modules</source> <translation>&Analisar módulos todos</translation> </message> <message> - <location filename="../RefactoringServer.py" line="708"/> + <location filename="../RefactoringServer.py" line="721"/> <source>Perform static object analysis on all modules</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="710"/> + <location filename="../RefactoringServer.py" line="723"/> <source><b>Analyse all modules</b><p>Perform static object analysis (SOA) on all modules. This might be time consuming. Analysis of all modules should only be neccessary, if the project was created with the rope plugin disabled or if files were added.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1875"/> + <location filename="../RefactoringServer.py" line="1887"/> <source>Update Configuration</source> <translation>Atualizar Configuração</translation> </message> <message> - <location filename="../RefactoringServer.py" line="721"/> + <location filename="../RefactoringServer.py" line="734"/> <source>&Update Configuration</source> <translation>At&ualizar Configuração</translation> </message> <message> - <location filename="../RefactoringServer.py" line="726"/> + <location filename="../RefactoringServer.py" line="739"/> <source>Generates a new configuration file overwriting the current one.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="728"/> + <location filename="../RefactoringServer.py" line="741"/> <source><b>Update Configuration</b><p>Generates a new configuration file overwriting the current one.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="761"/> + <location filename="../RefactoringServer.py" line="774"/> <source>&Refactoring</source> <translation>&Refacturação</translation> </message> <message> - <location filename="../RefactoringServer.py" line="756"/> + <location filename="../RefactoringServer.py" line="769"/> <source>&Query</source> <translation>&Consulta</translation> </message> <message> - <location filename="../RefactoringServer.py" line="792"/> + <location filename="../RefactoringServer.py" line="805"/> <source>Im&ports</source> <translation>Im&portações</translation> </message> <message> - <location filename="../RefactoringServer.py" line="801"/> + <location filename="../RefactoringServer.py" line="814"/> <source>History</source> <translation>Histórico</translation> </message> <message> - <location filename="../RefactoringServer.py" line="808"/> + <location filename="../RefactoringServer.py" line="821"/> <source>&Utilities</source> <translation>&Utilidades</translation> </message> <message> - <location filename="../RefactoringServer.py" line="828"/> + <location filename="../RefactoringServer.py" line="841"/> <source>About rope</source> <translation>Acerca de rope</translation> </message> <message> - <location filename="../RefactoringServer.py" line="828"/> + <location filename="../RefactoringServer.py" line="841"/> <source>{0} Version {1} @@ -1642,212 +1637,212 @@ {2}</translation> </message> <message> - <location filename="../RefactoringServer.py" line="860"/> + <location filename="../RefactoringServer.py" line="873"/> <source>Rope Error</source> <translation>Erro de rope</translation> </message> <message> - <location filename="../RefactoringServer.py" line="877"/> + <location filename="../RefactoringServer.py" line="890"/> <source>Rope error: {0}</source> <translation>Erro de rope :{0}</translation> </message> <message> - <location filename="../RefactoringServer.py" line="985"/> + <location filename="../RefactoringServer.py" line="998"/> <source>Highlight the declaration you want to rename and try again.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1006"/> + <location filename="../RefactoringServer.py" line="1021"/> <source>The selection must not extend beyond one line.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1037"/> + <location filename="../RefactoringServer.py" line="1052"/> <source>Highlight an occurrence to be changed and try again.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1067"/> + <location filename="../RefactoringServer.py" line="1082"/> <source>Extract Method</source> <translation>Extrair Método</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1073"/> + <location filename="../RefactoringServer.py" line="1088"/> <source>Extract Local Variable</source> <translation>Extrair Variável Local</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1093"/> + <location filename="../RefactoringServer.py" line="1106"/> <source>Highlight the region of code you want to extract and try again.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1132"/> + <location filename="../RefactoringServer.py" line="1145"/> <source>Highlight the local variable, method or parameter you want to inline and try again.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1170"/> + <location filename="../RefactoringServer.py" line="1183"/> <source>Move Method</source> <translation>Mover Método</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1173"/> + <location filename="../RefactoringServer.py" line="1186"/> <source>Highlight the method to move and try again.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1215"/> + <location filename="../RefactoringServer.py" line="1228"/> <source>Highlight a global function and try again.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1252"/> + <location filename="../RefactoringServer.py" line="1265"/> <source>Highlight the class to introduce a factory method for and try again.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1286"/> + <location filename="../RefactoringServer.py" line="1299"/> <source>Highlight the code for the new parameter and try again.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1419"/> + <location filename="../RefactoringServer.py" line="1432"/> <source>Highlight the method or function to change and try again.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1454"/> + <location filename="../RefactoringServer.py" line="1467"/> <source>Highlight the method or function to inline a parameter's default and try again.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1517"/> + <location filename="../RefactoringServer.py" line="1530"/> <source>Highlight the attribute to encapsulate and try again.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1551"/> + <location filename="../RefactoringServer.py" line="1564"/> <source>Highlight the local variable to make an attribute and try again.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1587"/> + <location filename="../RefactoringServer.py" line="1600"/> <source>Replace Method With Method Object</source> <translation>Substituir Método com Objeto Método</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1590"/> + <location filename="../RefactoringServer.py" line="1603"/> <source>Highlight the method or function to convert and try again.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1651"/> + <location filename="../RefactoringServer.py" line="1664"/> <source>Do you really want to clear the refactoring history?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1693"/> + <location filename="../RefactoringServer.py" line="1706"/> <source>Find Occurrences</source> <translation>Encontrar Ocurrências</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1727"/> + <location filename="../RefactoringServer.py" line="1740"/> <source>No occurrences found.</source> <translation>Não se encontraram ocurrências.</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1740"/> + <location filename="../RefactoringServer.py" line="1753"/> <source>Find Definition</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1775"/> + <location filename="../RefactoringServer.py" line="1788"/> <source>No matching definition found.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1788"/> + <location filename="../RefactoringServer.py" line="1801"/> <source>Find Implementations</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1822"/> + <location filename="../RefactoringServer.py" line="1835"/> <source>No implementations found.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1844"/> + <location filename="../RefactoringServer.py" line="1856"/> <source>The Rope configuration file '{0}' does not exist.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1850"/> + <location filename="../RefactoringServer.py" line="1862"/> <source>The Rope admin directory does not exist.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1859"/> + <location filename="../RefactoringServer.py" line="1871"/> <source>Shall rope's current configuration be replaced by a new default configuration?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1875"/> + <location filename="../RefactoringServer.py" line="1887"/> <source><p>The configuration could not be updated.</p><p>Reason: {0}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1889"/> + <location filename="../RefactoringServer.py" line="1900"/> <source>Help about rope refactorings</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1898"/> + <location filename="../RefactoringServer.py" line="1911"/> <source>This action might take some time. Do you really want to perform SOA?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1920"/> + <location filename="../RefactoringServer.py" line="1933"/> <source>Static object analysis (SOA) done. SOA database updated.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="2121"/> + <location filename="../RefactoringServer.py" line="2118"/> <source>Project language '{0}' is not supported because the configured interpreter could not be started. Refactoring is disabled.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="2130"/> + <location filename="../RefactoringServer.py" line="2127"/> <source>Project language '{0}' is not supported because no suitable interpreter is configured. Refactoring is disabled.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="2136"/> + <location filename="../RefactoringServer.py" line="2133"/> <source>Refactoring for project language '{0}' is not supported.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="2262"/> + <location filename="../RefactoringServer.py" line="2261"/> <source>Refactoring Protocol Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="2276"/> + <location filename="../RefactoringServer.py" line="2275"/> <source>Refactoring Client Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="2262"/> + <location filename="../RefactoringServer.py" line="2261"/> <source><p>The data received from the refactoring server could not be decoded. Please report this issue with the received data to the eric bugs email address.</p><p>Error: {0}</p><p>Data:<br/>{1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="2276"/> + <location filename="../RefactoringServer.py" line="2275"/> <source><p>An exception happened in the refactoring client. Please report it to the eric bugs email address.</p><p>Exception: {0}</p><p>Value: {1}</p><p>Traceback: {2}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../RefactoringServer.py" line="2115"/> + <location filename="../RefactoringServer.py" line="2112"/> <source>The project is configured for remote access. Using local interpreter instead.</source> <translation type="unfinished"></translation> </message>
--- a/RefactoringRope/i18n/rope_ru.ts Sat May 02 15:05:16 2020 +0200 +++ b/RefactoringRope/i18n/rope_ru.ts Mon Jun 22 18:08:10 2020 +0200 @@ -67,21 +67,11 @@ </message> <message> <location filename="../ConfigurationPage/AutoCompletionRopePage.ui" line="105"/> - <source>Press to edit the rope configuration for Python2</source> - <translation>Редактировать конфигурацию rope для Python2</translation> - </message> - <message> - <location filename="../ConfigurationPage/AutoCompletionRopePage.ui" line="108"/> - <source>Edit Python 2 rope configuration</source> - <translation>Правка конфигурации rope для Python 2</translation> - </message> - <message> - <location filename="../ConfigurationPage/AutoCompletionRopePage.ui" line="115"/> <source>Press to edit the rope configuration for Python3</source> <translation>Редактировать конфигурацию rope для Python3</translation> </message> <message> - <location filename="../ConfigurationPage/AutoCompletionRopePage.ui" line="118"/> + <location filename="../ConfigurationPage/AutoCompletionRopePage.ui" line="108"/> <source>Edit Python 3 rope configuration</source> <translation>Правка конфигурации rope для Python 3</translation> </message> @@ -258,7 +248,7 @@ <context> <name>CodeAssistServer</name> <message> - <location filename="../CodeAssistServer.py" line="598"/> + <location filename="../CodeAssistServer.py" line="589"/> <source>An exception happened in the code assist client. Please report it to the eric bugs email address. Exception: {0} Value: {1} @@ -271,31 +261,31 @@ </translation> </message> <message> - <location filename="../CodeAssistServer.py" line="640"/> + <location filename="../CodeAssistServer.py" line="631"/> <source>'{0}' is not supported because the configured interpreter could not be started. </source> <translation>'{0}' не поддерживается, потому что невозможно запустить сконфигурированный интерпретатор. </translation> </message> <message> - <location filename="../CodeAssistServer.py" line="645"/> + <location filename="../CodeAssistServer.py" line="636"/> <source>'{0}' is not supported because no suitable interpreter is configured. </source> <translation>'{0}' не поддерживается, потому что не сконфигурирован подходящий интерпретатор. </translation> </message> <message> - <location filename="../CodeAssistServer.py" line="236"/> + <location filename="../CodeAssistServer.py" line="227"/> <source>Configure Rope</source> <translation>Конфигурация Rope</translation> </message> <message> - <location filename="../CodeAssistServer.py" line="236"/> + <location filename="../CodeAssistServer.py" line="227"/> <source>The Rope configuration file '{0}' does not exist.</source> <translation>Файл конфигурации Rope '{0}' не существует.</translation> </message> <message> - <location filename="../CodeAssistServer.py" line="841"/> + <location filename="../CodeAssistServer.py" line="780"/> <source>Rope</source> <translation>Rope</translation> </message> @@ -345,37 +335,37 @@ <translation>not known</translation> </message> <message> - <location filename="../CodeAssistServer.py" line="436"/> + <location filename="../CodeAssistServer.py" line="427"/> <source>Language <b>{0}</b> is not supported.</source> <translation>Язык <b>{0}</b> не поддерживается.</translation> </message> <message> - <location filename="../CodeAssistServer.py" line="440"/> + <location filename="../CodeAssistServer.py" line="431"/> <source>Language '{0}' is not supported.</source> <translation>Язык '{0}' не поддерживается.</translation> </message> <message> - <location filename="../CodeAssistServer.py" line="484"/> + <location filename="../CodeAssistServer.py" line="475"/> <source>Present in <i>{0}</i> module</source> <translation>Представлено в модуле <i>{0}</i></translation> </message> <message> - <location filename="../CodeAssistServer.py" line="488"/> + <location filename="../CodeAssistServer.py" line="479"/> <source>Present in '{0}' module</source> <translation>Представлено в модуле '{0}'</translation> </message> <message> - <location filename="../CodeAssistServer.py" line="506"/> + <location filename="../CodeAssistServer.py" line="497"/> <source>No documentation available.</source> <translation>Документация недоступна.</translation> </message> <message> - <location filename="../CodeAssistServer.py" line="562"/> + <location filename="../CodeAssistServer.py" line="553"/> <source>Code Assist: No definition found</source> <translation>Code Assist: Определение не найдено</translation> </message> <message> - <location filename="../CodeAssistServer.py" line="588"/> + <location filename="../CodeAssistServer.py" line="579"/> <source>The data received from the code assist server could not be decoded. Please report this issue with the received data to the eric bugs email address. Error: {0} Data: @@ -899,11 +889,6 @@ <translation>Перемещение</translation> </message> <message> - <location filename="../MoveDialog.py" line="180"/> - <source>Python Files (*.py *.py2 *.py3);;All Files (*)</source> - <translation>Файлы Python (*.py *.py2 *.py3);;Все файлы (*)</translation> - </message> - <message> <location filename="../MoveDialog.py" line="196"/> <source>The selected module must be inside the project.</source> <translation>Выбранный модуль должен находиться внутри проекта.</translation> @@ -923,6 +908,11 @@ <source>The selected directory <b>{0}</b> is not a package.</source> <translation>Выбранный каталог <b>{0}</b> находится вне пакета.</translation> </message> + <message> + <location filename="../MoveDialog.py" line="180"/> + <source>Python Files (*.py *.py3);;All Files (*)</source> + <translation>Файлы Python (*.py *.py3);;Все файлы (*)</translation> + </message> </context> <context> <name>PreviewDialog</name> @@ -945,7 +935,7 @@ <context> <name>RefactoringRopePlugin</name> <message> - <location filename="../../PluginRefactoringRope.py" line="124"/> + <location filename="../../PluginRefactoringRope.py" line="123"/> <source>Rope</source> <translation>Rope</translation> </message> @@ -1068,7 +1058,7 @@ <translation><b>Выделение локальной переменной</b><p>Извлекает выбранную область как локальную переменную.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1144"/> + <location filename="../RefactoringServer.py" line="1142"/> <source>Inline</source> <translation>Встраивание</translation> </message> @@ -1113,7 +1103,7 @@ <translation>Перемещение текущего модуля</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1194"/> + <location filename="../RefactoringServer.py" line="1192"/> <source>Move Current Module</source> <translation>Перемещение текущего модуля</translation> </message> @@ -1128,7 +1118,7 @@ <translation><b>Перемещение текущего модуля</b><p>Перемещение текущего модуля в другой пакет.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1227"/> + <location filename="../RefactoringServer.py" line="1225"/> <source>Use Function</source> <translation>Применение функций (Use Function)</translation> </message> @@ -1143,7 +1133,7 @@ <translation><b>Применение функций</b><p>Пытайтесь применять функции всюду, где возможно.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1264"/> + <location filename="../RefactoringServer.py" line="1262"/> <source>Introduce Factory Method</source> <translation>Введение фабричного метода</translation> </message> @@ -1163,7 +1153,7 @@ <translation><b>Введение фабричного метода</b><p>Введение фабричного метода или функции.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1298"/> + <location filename="../RefactoringServer.py" line="1296"/> <source>Introduce Parameter</source> <translation>Введение параметра</translation> </message> @@ -1183,7 +1173,7 @@ <translation><b>Введение параметра</b><p>Введение параметра в функцию.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1331"/> + <location filename="../RefactoringServer.py" line="1329"/> <source>Organize Imports</source> <translation>Организация импорта</translation> </message> @@ -1203,7 +1193,7 @@ <translation><b>Организация импорта</b><p>Сортировка импорта в соответствии с PEP-8.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1339"/> + <location filename="../RefactoringServer.py" line="1337"/> <source>Expand Star Imports</source> <translation>Развернуть Import *</translation> </message> @@ -1223,7 +1213,7 @@ <translation><b>Развернуть Import *</b><p>Преобразование инструкций "import" к виду "from xxx import *".</p><p>Выберите инструкции для обработки, при пустом выборе будут обработаны все. Неиспользованные "import" будут удалены.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1347"/> + <location filename="../RefactoringServer.py" line="1345"/> <source>Relative to Absolute</source> <translation>Относительный в абсолютный</translation> </message> @@ -1243,7 +1233,7 @@ <translation><b>Относительный в абсолютный</b><p>Преобразование относительного импорта в абсолютный.</p><p>Выберите инструкции для обработки, при пустом выборе будут обработаны все. Неиспользованные "import" будут удалены.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1355"/> + <location filename="../RefactoringServer.py" line="1353"/> <source>Froms to Imports</source> <translation>Преобразование "from import" в просто "import"</translation> </message> @@ -1263,7 +1253,7 @@ <translation><b>От from к просто import</b><p>Преобразование инструкций "from import" в просто "import".</p><p>Выберите инструкции для обработки, при пустом выборе будут обработаны все. Неиспользованные "import" будут удалены.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1363"/> + <location filename="../RefactoringServer.py" line="1361"/> <source>Handle Long Imports</source> <translation>Обработка длинных инструкций "import"</translation> </message> @@ -1283,7 +1273,7 @@ <translation><b>Обработка длинного "import"</b><p>Преобразование длинных инструкций "import" к более читаемому виду.</p><p>Выберите инструкции для обработки, при пустом выборе будут обработаны все. Неиспользованные "import" будут удалены.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1414"/> + <location filename="../RefactoringServer.py" line="1412"/> <source>Restructure</source> <translation>Реструктуризация</translation> </message> @@ -1303,7 +1293,7 @@ <translation><b>Реструктуризация</b><p>Реструктуризация кода. Для примеров смотри "Справку Rope".</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1431"/> + <location filename="../RefactoringServer.py" line="1429"/> <source>Change Method Signature</source> <translation>Изменение сигнатуры метода</translation> </message> @@ -1323,7 +1313,7 @@ <translation><b>Изменение сигнатуры метода</b><p>Изменение сигнатуры выбранного метода или функции.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1466"/> + <location filename="../RefactoringServer.py" line="1464"/> <source>Inline Argument Default</source> <translation>Встраивание аргумента по умолчанию</translation> </message> @@ -1343,7 +1333,7 @@ <translation><b>Встраивание аргумента по умолчанию</b><p>Встраивание параметров со значением по умолчанию.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1500"/> + <location filename="../RefactoringServer.py" line="1498"/> <source>Transform Module to Package</source> <translation>Трансформирование модуля в пакет</translation> </message> @@ -1358,7 +1348,7 @@ <translation><b>Трансформирование модуля в пакет</b><p>Преобразование текущего модуля в пакет.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1529"/> + <location filename="../RefactoringServer.py" line="1527"/> <source>Encapsulate Attribute</source> <translation>Инкапсуляция атрибута</translation> </message> @@ -1378,7 +1368,7 @@ <translation><b>Инкапсуляция атрибута</b><p>Генерация получателя/установщика для атрибута и изменение его вхождений для их использования.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1563"/> + <location filename="../RefactoringServer.py" line="1561"/> <source>Local Variable to Attribute</source> <translation>Локальная переменная в атрибут</translation> </message> @@ -1458,7 +1448,7 @@ <translation><b>Показать историю текущего файла</b><p>Открытие диалога отображения истории рефакторинга текущего файла.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1666"/> + <location filename="../RefactoringServer.py" line="1664"/> <source>Clear History</source> <translation>Очистить историю</translation> </message> @@ -1533,7 +1523,7 @@ <translation><b>Поиск имплементаций</b><p>Поиск мест где выбранный метод переопределен.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1864"/> + <location filename="../RefactoringServer.py" line="1862"/> <source>Configure Rope</source> <translation>Конфигурация Rope</translation> </message> @@ -1573,7 +1563,7 @@ <translation><b>Справка Rope</b><p>Отображение справки о rope преобразованиях.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1912"/> + <location filename="../RefactoringServer.py" line="1910"/> <source>Analyse all modules</source> <translation>Анализ всех модулей</translation> </message> @@ -1593,7 +1583,7 @@ <translation><b>Анализ всех модулей</b><p>Выполнение статического анализа объектов (SOA) во всех модулях. Это может занять много времени. Анализ всех модулей необходим только если проект был создан без участия плагина rope, или если в проект были добавлены файлы.</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1889"/> + <location filename="../RefactoringServer.py" line="1887"/> <source>Update Configuration</source> <translation>Обновление конфигурации</translation> </message> @@ -1689,177 +1679,177 @@ <translation>Выделить локальную переменную</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1108"/> + <location filename="../RefactoringServer.py" line="1106"/> <source>Highlight the region of code you want to extract and try again.</source> <translation>Выделите область нужного кода и попробуйте ещё раз.</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1147"/> + <location filename="../RefactoringServer.py" line="1145"/> <source>Highlight the local variable, method or parameter you want to inline and try again.</source> <translation>Выделите локальную переменную, метод или параметр для встраивания и попробуйте еще раз.</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1185"/> + <location filename="../RefactoringServer.py" line="1183"/> <source>Move Method</source> <translation>Перемещение метода</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1188"/> + <location filename="../RefactoringServer.py" line="1186"/> <source>Highlight the method to move and try again.</source> <translation>Выделите метод для перемещения и попробуйте еще раз.</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1230"/> + <location filename="../RefactoringServer.py" line="1228"/> <source>Highlight a global function and try again.</source> <translation>Выделите глобальную функцию и попробуйте еще раз.</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1267"/> + <location filename="../RefactoringServer.py" line="1265"/> <source>Highlight the class to introduce a factory method for and try again.</source> <translation>Выделите класс для введения фабричного метода и попробуйте еще раз.</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1301"/> + <location filename="../RefactoringServer.py" line="1299"/> <source>Highlight the code for the new parameter and try again.</source> <translation>Выделите код для нового параметра и попробуйте еще раз.</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1434"/> + <location filename="../RefactoringServer.py" line="1432"/> <source>Highlight the method or function to change and try again.</source> <translation>Выделите метод или функцию для изменения и попробуйте еще раз.</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1469"/> + <location filename="../RefactoringServer.py" line="1467"/> <source>Highlight the method or function to inline a parameter's default and try again.</source> <translation>Выделите метод или функцию для встраивания параметров по умолчанию и попробуйте еще раз.</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1532"/> + <location filename="../RefactoringServer.py" line="1530"/> <source>Highlight the attribute to encapsulate and try again.</source> <translation>Выделите атрибут для инкапсуляции и попробуйте еще раз.</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1566"/> + <location filename="../RefactoringServer.py" line="1564"/> <source>Highlight the local variable to make an attribute and try again.</source> <translation>Выделите локальную переменную, заменяемую на атрибут, и попробуйте еще раз.</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1602"/> + <location filename="../RefactoringServer.py" line="1600"/> <source>Replace Method With Method Object</source> <translation>Замена метода объектом метода</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1605"/> + <location filename="../RefactoringServer.py" line="1603"/> <source>Highlight the method or function to convert and try again.</source> <translation>Выделите метод или функцию для конвертирования и попробуйте еще раз.</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1666"/> + <location filename="../RefactoringServer.py" line="1664"/> <source>Do you really want to clear the refactoring history?</source> <translation>Вы действительно хотите очистить историю преобразований?</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1708"/> + <location filename="../RefactoringServer.py" line="1706"/> <source>Find Occurrences</source> <translation>Поиск вхождений</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1742"/> + <location filename="../RefactoringServer.py" line="1740"/> <source>No occurrences found.</source> <translation>Нет вхождений.</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1755"/> + <location filename="../RefactoringServer.py" line="1753"/> <source>Find Definition</source> <translation>Поиск определений</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1790"/> + <location filename="../RefactoringServer.py" line="1788"/> <source>No matching definition found.</source> <translation>Нет совпадающих определений.</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1803"/> + <location filename="../RefactoringServer.py" line="1801"/> <source>Find Implementations</source> <translation>Поиск имплементаций</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1837"/> + <location filename="../RefactoringServer.py" line="1835"/> <source>No implementations found.</source> <translation>Имплементации не найдены.</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1858"/> + <location filename="../RefactoringServer.py" line="1856"/> <source>The Rope configuration file '{0}' does not exist.</source> <translation>Файл конфигурации Rope '{0}' не существует.</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1864"/> + <location filename="../RefactoringServer.py" line="1862"/> <source>The Rope admin directory does not exist.</source> <translation>Служебный каталог Rope не существует.</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1873"/> + <location filename="../RefactoringServer.py" line="1871"/> <source>Shall rope's current configuration be replaced by a new default configuration?</source> <translation>Вы действительно хотите заменить текущую конфигурацию rope's на новую конфигурацию по умолчанию?</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1889"/> + <location filename="../RefactoringServer.py" line="1887"/> <source><p>The configuration could not be updated.</p><p>Reason: {0}</p></source> <translation><p>Невозможно обновить текущую конфигурацию.</p><p>Причина: {0}</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="1902"/> + <location filename="../RefactoringServer.py" line="1900"/> <source>Help about rope refactorings</source> <translation>Справка о преобразованиях</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1913"/> + <location filename="../RefactoringServer.py" line="1911"/> <source>This action might take some time. Do you really want to perform SOA?</source> <translation>Это действие может занять некоторое время. Вы действительно хотите выполнить SOA?</translation> </message> <message> - <location filename="../RefactoringServer.py" line="1935"/> + <location filename="../RefactoringServer.py" line="1933"/> <source>Static object analysis (SOA) done. SOA database updated.</source> <translation>Статический анализ объектов (SOA) выполнен. Базы данных SOA обновлены.</translation> </message> <message> - <location filename="../RefactoringServer.py" line="2134"/> + <location filename="../RefactoringServer.py" line="2118"/> <source>Project language '{0}' is not supported because the configured interpreter could not be started. Refactoring is disabled.</source> <translation>Язык проекта '{0}' не поддерживается, потому что сконфигурированный интерпретатор не может быть запущен. Рефакторинг отключен.</translation> </message> <message> - <location filename="../RefactoringServer.py" line="2143"/> + <location filename="../RefactoringServer.py" line="2127"/> <source>Project language '{0}' is not supported because no suitable interpreter is configured. Refactoring is disabled.</source> <translation>Язык проекта '{0}' не поддерживается, потому что подходящий интерпретатор не настроен. Рефакторинг отключен.</translation> </message> <message> - <location filename="../RefactoringServer.py" line="2149"/> + <location filename="../RefactoringServer.py" line="2133"/> <source>Refactoring for project language '{0}' is not supported.</source> <translation>Рефакторинг проекта для языка '{0}' не поддерживается.</translation> </message> <message> - <location filename="../RefactoringServer.py" line="2277"/> + <location filename="../RefactoringServer.py" line="2261"/> <source>Refactoring Protocol Error</source> <translation>Протокол ошибок рефакторинга</translation> </message> <message> - <location filename="../RefactoringServer.py" line="2291"/> + <location filename="../RefactoringServer.py" line="2275"/> <source>Refactoring Client Error</source> <translation>Ошибка клиента рефакторинга</translation> </message> <message> - <location filename="../RefactoringServer.py" line="2277"/> + <location filename="../RefactoringServer.py" line="2261"/> <source><p>The data received from the refactoring server could not be decoded. Please report this issue with the received data to the eric bugs email address.</p><p>Error: {0}</p><p>Data:<br/>{1}</p></source> <translation><p> Данные, полученные с сервера рефакторинга, не могут быть декодированы. Пожалуйста отправьте отчет с данными об ошибке в адрес eric bugs email.</p><p>Error: {0}</p><p>Data:<br/>{1}</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="2291"/> + <location filename="../RefactoringServer.py" line="2275"/> <source><p>An exception happened in the refactoring client. Please report it to the eric bugs email address.</p><p>Exception: {0}</p><p>Value: {1}</p><p>Traceback: {2}</p></source> <translation><p>Произошло исключение в клиенте рефакторинга. Пожалуйста отправьте отчет в адрес eric bugs email.</p><p>Exception: {0}</p><p>Value: {1}</p><p>Traceback: {2}</p></translation> </message> <message> - <location filename="../RefactoringServer.py" line="2128"/> + <location filename="../RefactoringServer.py" line="2112"/> <source>The project is configured for remote access. Using local interpreter instead.</source> <translation>Проект настроен для удаленного доступа. Вместо этого используется локальный интерпретатор.</translation> </message>