Wed, 16 Oct 2024 17:39:40 +0200
Merged changes done on Linux and Windows.
--- a/src/eric7/APIs/Python3/eric7.api Wed Oct 16 17:38:35 2024 +0200 +++ b/src/eric7/APIs/Python3/eric7.api Wed Oct 16 17:39:40 2024 +0200 @@ -7450,6 +7450,8 @@ eric7.Preferences.ConfigurationPages.DebuggerGeneralPage.DebuggerGeneralPage.on_deleteAllowedHostButton_clicked?4() eric7.Preferences.ConfigurationPages.DebuggerGeneralPage.DebuggerGeneralPage.on_editAllowedHostButton_clicked?4() eric7.Preferences.ConfigurationPages.DebuggerGeneralPage.DebuggerGeneralPage.on_interfaceSelectorComboBox_currentIndexChanged?4(index) +eric7.Preferences.ConfigurationPages.DebuggerGeneralPage.DebuggerGeneralPage.on_passiveDbgGroup_toggled?4(checked) +eric7.Preferences.ConfigurationPages.DebuggerGeneralPage.DebuggerGeneralPage.on_remoteDebuggerGroup_toggled?4(checked) eric7.Preferences.ConfigurationPages.DebuggerGeneralPage.DebuggerGeneralPage.save?4() eric7.Preferences.ConfigurationPages.DebuggerGeneralPage.DebuggerGeneralPage?1() eric7.Preferences.ConfigurationPages.DebuggerGeneralPage.PreviewModel.columnCount?4(parent=QModelIndex())
--- a/src/eric7/DebugClients/Python/DebugBase.py Wed Oct 16 17:38:35 2024 +0200 +++ b/src/eric7/DebugClients/Python/DebugBase.py Wed Oct 16 17:39:40 2024 +0200 @@ -630,6 +630,7 @@ self.returnframe = None for debugThread in self._dbgClient.threads.values(): debugThread.quitting = True + self.quitting = True def fix_frame_filename(self, frame): """
--- a/src/eric7/Debugger/DebugServer.py Wed Oct 16 17:38:35 2024 +0200 +++ b/src/eric7/Debugger/DebugServer.py Wed Oct 16 17:39:40 2024 +0200 @@ -2106,13 +2106,31 @@ @param debuggerId ID of the debugger backend @type str """ - self.appendStdout.emit(self.tr("Passive debug connection received\n")) - self.passiveClientExited = False - self.debugging = True - self.running = True - self.__restoreBreakpoints(debuggerId) - self.__restoreWatchpoints(debuggerId) - self.passiveDebugStarted.emit(fn, reportAllExceptions) + if self.passive: + self.appendStdout.emit(self.tr("Passive debug connection received\n")) + self.passiveClientExited = False + self.debugging = True + self.running = True + self.__restoreBreakpoints(debuggerId) + self.__restoreWatchpoints(debuggerId) + self.passiveDebugStarted.emit(fn, reportAllExceptions) + else: + self.appendStdout.emit( + self.tr( + "Passive debug connection received while not in passive mode.\n" + ) + ) + EricMessageBox.critical( + None, + self.tr("Debug Client Connection"), + self.tr( + "Passive debug client connection received while not in passive" + " mode. Enable this mode on the 'Debugger General' configuration" + " page. The connection will be rejected." + ), + ) + self.shutdownServer() + self.startClient(False, forProject=self.__forProject) def __passiveShutDown(self): """
--- a/src/eric7/Documentation/Help/source.qhp Wed Oct 16 17:38:35 2024 +0200 +++ b/src/eric7/Documentation/Help/source.qhp Wed Oct 16 17:39:40 2024 +0200 @@ -4206,6 +4206,8 @@ <keyword name="DebuggerGeneralPage.on_deleteAllowedHostButton_clicked" id="DebuggerGeneralPage.on_deleteAllowedHostButton_clicked" ref="eric7.Preferences.ConfigurationPages.DebuggerGeneralPage.html#DebuggerGeneralPage.on_deleteAllowedHostButton_clicked" /> <keyword name="DebuggerGeneralPage.on_editAllowedHostButton_clicked" id="DebuggerGeneralPage.on_editAllowedHostButton_clicked" ref="eric7.Preferences.ConfigurationPages.DebuggerGeneralPage.html#DebuggerGeneralPage.on_editAllowedHostButton_clicked" /> <keyword name="DebuggerGeneralPage.on_interfaceSelectorComboBox_currentIndexChanged" id="DebuggerGeneralPage.on_interfaceSelectorComboBox_currentIndexChanged" ref="eric7.Preferences.ConfigurationPages.DebuggerGeneralPage.html#DebuggerGeneralPage.on_interfaceSelectorComboBox_currentIndexChanged" /> + <keyword name="DebuggerGeneralPage.on_passiveDbgGroup_toggled" id="DebuggerGeneralPage.on_passiveDbgGroup_toggled" ref="eric7.Preferences.ConfigurationPages.DebuggerGeneralPage.html#DebuggerGeneralPage.on_passiveDbgGroup_toggled" /> + <keyword name="DebuggerGeneralPage.on_remoteDebuggerGroup_toggled" id="DebuggerGeneralPage.on_remoteDebuggerGroup_toggled" ref="eric7.Preferences.ConfigurationPages.DebuggerGeneralPage.html#DebuggerGeneralPage.on_remoteDebuggerGroup_toggled" /> <keyword name="DebuggerGeneralPage.save" id="DebuggerGeneralPage.save" ref="eric7.Preferences.ConfigurationPages.DebuggerGeneralPage.html#DebuggerGeneralPage.save" /> <keyword name="DebuggerInterfaceNone" id="DebuggerInterfaceNone" ref="eric7.Debugger.DebuggerInterfaceNone.html#DebuggerInterfaceNone" /> <keyword name="DebuggerInterfaceNone (Constructor)" id="DebuggerInterfaceNone (Constructor)" ref="eric7.Debugger.DebuggerInterfaceNone.html#DebuggerInterfaceNone.__init__" />
--- a/src/eric7/Documentation/Source/eric7.Preferences.ConfigurationPages.DebuggerGeneralPage.html Wed Oct 16 17:38:35 2024 +0200 +++ b/src/eric7/Documentation/Source/eric7.Preferences.ConfigurationPages.DebuggerGeneralPage.html Wed Oct 16 17:39:40 2024 +0200 @@ -83,6 +83,14 @@ <td>Private slot to handle the selection of a network interface type.</td> </tr> <tr> +<td><a href="#DebuggerGeneralPage.on_passiveDbgGroup_toggled">on_passiveDbgGroup_toggled</a></td> +<td>Private slot to handle a change of the checked state of the passive debugging option.</td> +</tr> +<tr> +<td><a href="#DebuggerGeneralPage.on_remoteDebuggerGroup_toggled">on_remoteDebuggerGroup_toggled</a></td> +<td>Private slot to handle a change of the checked state of the remote debugging option.</td> +</tr> +<tr> <td><a href="#DebuggerGeneralPage.save">save</a></td> <td>Public slot to save the Debugger General (1) configuration.</td> </tr> @@ -154,6 +162,36 @@ index of the selected entry </dd> </dl> +<a NAME="DebuggerGeneralPage.on_passiveDbgGroup_toggled" ID="DebuggerGeneralPage.on_passiveDbgGroup_toggled"></a> +<h4>DebuggerGeneralPage.on_passiveDbgGroup_toggled</h4> +<b>on_passiveDbgGroup_toggled</b>(<i>checked</i>) +<p> + Private slot to handle a change of the checked state of the passive debugging + option. +</p> + +<dl> + +<dt><i>checked</i> (bool)</dt> +<dd> +checked state +</dd> +</dl> +<a NAME="DebuggerGeneralPage.on_remoteDebuggerGroup_toggled" ID="DebuggerGeneralPage.on_remoteDebuggerGroup_toggled"></a> +<h4>DebuggerGeneralPage.on_remoteDebuggerGroup_toggled</h4> +<b>on_remoteDebuggerGroup_toggled</b>(<i>checked</i>) +<p> + Private slot to handle a change of the checked state of the remote debugging + option. +</p> + +<dl> + +<dt><i>checked</i> (bool)</dt> +<dd> +checked state +</dd> +</dl> <a NAME="DebuggerGeneralPage.save" ID="DebuggerGeneralPage.save"></a> <h4>DebuggerGeneralPage.save</h4> <b>save</b>(<i></i>)
--- a/src/eric7/Preferences/ConfigurationPages/DebuggerGeneralPage.py Wed Oct 16 17:38:35 2024 +0200 +++ b/src/eric7/Preferences/ConfigurationPages/DebuggerGeneralPage.py Wed Oct 16 17:39:40 2024 +0200 @@ -367,6 +367,34 @@ ).format(allowedHost), ) + @pyqtSlot(bool) + def on_passiveDbgGroup_toggled(self, checked): + """ + Private slot to handle a change of the checked state of the passive debugging + option. + + @param checked checked state + @type bool + """ + if checked: + # Only one of passive debugging or remote debugging or none must be + # selected. + self.remoteDebuggerGroup.setChecked(False) + + @pyqtSlot(bool) + def on_remoteDebuggerGroup_toggled(self, checked): + """ + Private slot to handle a change of the checked state of the remote debugging + option. + + @param checked checked state + @type bool + """ + if checked: + # Only one of passive debugging or remote debugging or none must be + # selected. + self.passiveDbgGroup.setChecked(False) + class PreviewModel(QAbstractItemModel): """
--- a/src/eric7/Preferences/ConfigurationPages/DebuggerGeneralPage.ui Wed Oct 16 17:38:35 2024 +0200 +++ b/src/eric7/Preferences/ConfigurationPages/DebuggerGeneralPage.ui Wed Oct 16 17:39:40 2024 +0200 @@ -217,49 +217,36 @@ <property name="checkable"> <bool>true</bool> </property> - <property name="checked"> - <bool>false</bool> - </property> <layout class="QGridLayout" name="gridLayout"> - <item row="0" column="0" colspan="4"> - <widget class="QLabel" name="TextLabel1_2_2"> + <item row="2" column="0"> + <widget class="QLabel" name="label"> <property name="text"> - <string><font color="#FF0000"><b>Note:</b> These settings are activated at the next startup of the application.</font></string> - </property> - <property name="wordWrap"> - <bool>true</bool> + <string>Debugger Type:</string> </property> </widget> </item> - <item row="1" column="0" colspan="4"> - <widget class="QCheckBox" name="passiveDbgCheckBox"> - <property name="toolTip"> - <string>Enables the passive debug mode</string> + <item row="1" column="2" colspan="2"> + <spacer name="horizontalSpacer_2"> + <property name="orientation"> + <enum>Qt::Horizontal</enum> </property> - <property name="whatsThis"> - <string><b>Passive Debugger Enabled</b> -<p>This enables the passive debugging mode. In this mode the debug client (the script) connects to the debug server (the IDE). The script is started outside the IDE. This way mod_python or Zope scripts can be debugged.</p></string> + <property name="sizeHint" stdset="0"> + <size> + <width>91</width> + <height>20</height> + </size> </property> - <property name="text"> - <string>Passive Debugger Enabled</string> + </spacer> + </item> + <item row="2" column="1" colspan="2"> + <widget class="QComboBox" name="passiveDbgBackendCombo"> + <property name="toolTip"> + <string>Select the debugger type of the backend</string> </property> </widget> </item> - <item row="2" column="0"> - <widget class="QLabel" name="passiveDbgPortLabel"> - <property name="enabled"> - <bool>false</bool> - </property> - <property name="text"> - <string>Debug Server Port:</string> - </property> - </widget> - </item> - <item row="2" column="1"> + <item row="1" column="1"> <widget class="QSpinBox" name="passiveDbgPortSpinBox"> - <property name="enabled"> - <bool>false</bool> - </property> <property name="toolTip"> <string>Enter the port the debugger should listen on</string> </property> @@ -278,8 +265,18 @@ </property> </widget> </item> - <item row="2" column="2" colspan="2"> - <spacer name="horizontalSpacer_2"> + <item row="0" column="0" colspan="4"> + <widget class="QLabel" name="TextLabel1_2_2"> + <property name="text"> + <string><font color="#FF0000"><b>Note:</b> These settings are activated at the next startup of the application.</font></string> + </property> + <property name="wordWrap"> + <bool>true</bool> + </property> + </widget> + </item> + <item row="2" column="3"> + <spacer name="horizontalSpacer"> <property name="orientation"> <enum>Qt::Horizontal</enum> </property> @@ -291,39 +288,13 @@ </property> </spacer> </item> - <item row="3" column="0"> - <widget class="QLabel" name="label"> - <property name="enabled"> - <bool>false</bool> - </property> + <item row="1" column="0"> + <widget class="QLabel" name="passiveDbgPortLabel"> <property name="text"> - <string>Debugger Type:</string> + <string>Debug Server Port:</string> </property> </widget> </item> - <item row="3" column="1" colspan="2"> - <widget class="QComboBox" name="passiveDbgBackendCombo"> - <property name="enabled"> - <bool>false</bool> - </property> - <property name="toolTip"> - <string>Select the debugger type of the backend</string> - </property> - </widget> - </item> - <item row="3" column="3"> - <spacer name="horizontalSpacer"> - <property name="orientation"> - <enum>Qt::Horizontal</enum> - </property> - <property name="sizeHint" stdset="0"> - <size> - <width>91</width> - <height>20</height> - </size> - </property> - </spacer> - </item> </layout> </widget> </item> @@ -338,9 +309,6 @@ <property name="checkable"> <bool>true</bool> </property> - <property name="checked"> - <bool>false</bool> - </property> <layout class="QGridLayout" name="gridLayout_2"> <item row="0" column="0"> <widget class="QLabel" name="hostLabel"> @@ -415,9 +383,6 @@ <property name="checkable"> <bool>true</bool> </property> - <property name="checked"> - <bool>false</bool> - </property> <layout class="QGridLayout" name="_2"> <item row="1" column="0"> <widget class="QLabel" name="textLabel2_9"> @@ -904,7 +869,6 @@ <tabstop>editAllowedHostButton</tabstop> <tabstop>deleteAllowedHostButton</tabstop> <tabstop>passiveDbgGroup</tabstop> - <tabstop>passiveDbgCheckBox</tabstop> <tabstop>passiveDbgPortSpinBox</tabstop> <tabstop>passiveDbgBackendCombo</tabstop> <tabstop>remoteDebuggerGroup</tabstop> @@ -933,70 +897,5 @@ <tabstop>autoViewSourcecodeCheckBox</tabstop> </tabstops> <resources/> - <connections> - <connection> - <sender>passiveDbgCheckBox</sender> - <signal>toggled(bool)</signal> - <receiver>passiveDbgPortLabel</receiver> - <slot>setEnabled(bool)</slot> - <hints> - <hint type="sourcelabel"> - <x>154</x> - <y>730</y> - </hint> - <hint type="destinationlabel"> - <x>140</x> - <y>763</y> - </hint> - </hints> - </connection> - <connection> - <sender>passiveDbgCheckBox</sender> - <signal>toggled(bool)</signal> - <receiver>passiveDbgPortSpinBox</receiver> - <slot>setEnabled(bool)</slot> - <hints> - <hint type="sourcelabel"> - <x>252</x> - <y>730</y> - </hint> - <hint type="destinationlabel"> - <x>218</x> - <y>763</y> - </hint> - </hints> - </connection> - <connection> - <sender>passiveDbgCheckBox</sender> - <signal>toggled(bool)</signal> - <receiver>label</receiver> - <slot>setEnabled(bool)</slot> - <hints> - <hint type="sourcelabel"> - <x>111</x> - <y>730</y> - </hint> - <hint type="destinationlabel"> - <x>148</x> - <y>795</y> - </hint> - </hints> - </connection> - <connection> - <sender>passiveDbgCheckBox</sender> - <signal>toggled(bool)</signal> - <receiver>passiveDbgBackendCombo</receiver> - <slot>setEnabled(bool)</slot> - <hints> - <hint type="sourcelabel"> - <x>290</x> - <y>730</y> - </hint> - <hint type="destinationlabel"> - <x>233</x> - <y>795</y> - </hint> - </hints> - </connection> - </connections> + <connections/> </ui>
--- a/src/eric7/Preferences/ConfigurationPages/Ui_DebuggerGeneralPage.py Wed Oct 16 17:38:35 2024 +0200 +++ b/src/eric7/Preferences/ConfigurationPages/Ui_DebuggerGeneralPage.py Wed Oct 16 17:39:40 2024 +0200 @@ -98,44 +98,35 @@ self.verticalLayout_2.addWidget(self.label_3) self.passiveDbgGroup = QtWidgets.QGroupBox(parent=self.groupBox_12) self.passiveDbgGroup.setCheckable(True) - self.passiveDbgGroup.setChecked(False) self.passiveDbgGroup.setObjectName("passiveDbgGroup") self.gridLayout = QtWidgets.QGridLayout(self.passiveDbgGroup) self.gridLayout.setObjectName("gridLayout") + self.label = QtWidgets.QLabel(parent=self.passiveDbgGroup) + self.label.setObjectName("label") + self.gridLayout.addWidget(self.label, 2, 0, 1, 1) + spacerItem2 = QtWidgets.QSpacerItem(91, 20, QtWidgets.QSizePolicy.Policy.Expanding, QtWidgets.QSizePolicy.Policy.Minimum) + self.gridLayout.addItem(spacerItem2, 1, 2, 1, 2) + self.passiveDbgBackendCombo = QtWidgets.QComboBox(parent=self.passiveDbgGroup) + self.passiveDbgBackendCombo.setObjectName("passiveDbgBackendCombo") + self.gridLayout.addWidget(self.passiveDbgBackendCombo, 2, 1, 1, 2) + self.passiveDbgPortSpinBox = QtWidgets.QSpinBox(parent=self.passiveDbgGroup) + self.passiveDbgPortSpinBox.setMinimum(1024) + self.passiveDbgPortSpinBox.setMaximum(65535) + self.passiveDbgPortSpinBox.setProperty("value", 42424) + self.passiveDbgPortSpinBox.setObjectName("passiveDbgPortSpinBox") + self.gridLayout.addWidget(self.passiveDbgPortSpinBox, 1, 1, 1, 1) self.TextLabel1_2_2 = QtWidgets.QLabel(parent=self.passiveDbgGroup) self.TextLabel1_2_2.setWordWrap(True) self.TextLabel1_2_2.setObjectName("TextLabel1_2_2") self.gridLayout.addWidget(self.TextLabel1_2_2, 0, 0, 1, 4) - self.passiveDbgCheckBox = QtWidgets.QCheckBox(parent=self.passiveDbgGroup) - self.passiveDbgCheckBox.setObjectName("passiveDbgCheckBox") - self.gridLayout.addWidget(self.passiveDbgCheckBox, 1, 0, 1, 4) + spacerItem3 = QtWidgets.QSpacerItem(91, 20, QtWidgets.QSizePolicy.Policy.Expanding, QtWidgets.QSizePolicy.Policy.Minimum) + self.gridLayout.addItem(spacerItem3, 2, 3, 1, 1) self.passiveDbgPortLabel = QtWidgets.QLabel(parent=self.passiveDbgGroup) - self.passiveDbgPortLabel.setEnabled(False) self.passiveDbgPortLabel.setObjectName("passiveDbgPortLabel") - self.gridLayout.addWidget(self.passiveDbgPortLabel, 2, 0, 1, 1) - self.passiveDbgPortSpinBox = QtWidgets.QSpinBox(parent=self.passiveDbgGroup) - self.passiveDbgPortSpinBox.setEnabled(False) - self.passiveDbgPortSpinBox.setMinimum(1024) - self.passiveDbgPortSpinBox.setMaximum(65535) - self.passiveDbgPortSpinBox.setProperty("value", 42424) - self.passiveDbgPortSpinBox.setObjectName("passiveDbgPortSpinBox") - self.gridLayout.addWidget(self.passiveDbgPortSpinBox, 2, 1, 1, 1) - spacerItem2 = QtWidgets.QSpacerItem(91, 20, QtWidgets.QSizePolicy.Policy.Expanding, QtWidgets.QSizePolicy.Policy.Minimum) - self.gridLayout.addItem(spacerItem2, 2, 2, 1, 2) - self.label = QtWidgets.QLabel(parent=self.passiveDbgGroup) - self.label.setEnabled(False) - self.label.setObjectName("label") - self.gridLayout.addWidget(self.label, 3, 0, 1, 1) - self.passiveDbgBackendCombo = QtWidgets.QComboBox(parent=self.passiveDbgGroup) - self.passiveDbgBackendCombo.setEnabled(False) - self.passiveDbgBackendCombo.setObjectName("passiveDbgBackendCombo") - self.gridLayout.addWidget(self.passiveDbgBackendCombo, 3, 1, 1, 2) - spacerItem3 = QtWidgets.QSpacerItem(91, 20, QtWidgets.QSizePolicy.Policy.Expanding, QtWidgets.QSizePolicy.Policy.Minimum) - self.gridLayout.addItem(spacerItem3, 3, 3, 1, 1) + self.gridLayout.addWidget(self.passiveDbgPortLabel, 1, 0, 1, 1) self.verticalLayout_2.addWidget(self.passiveDbgGroup) self.remoteDebuggerGroup = QtWidgets.QGroupBox(parent=self.groupBox_12) self.remoteDebuggerGroup.setCheckable(True) - self.remoteDebuggerGroup.setChecked(False) self.remoteDebuggerGroup.setObjectName("remoteDebuggerGroup") self.gridLayout_2 = QtWidgets.QGridLayout(self.remoteDebuggerGroup) self.gridLayout_2.setObjectName("gridLayout_2") @@ -161,7 +152,6 @@ self.verticalLayout_2.addWidget(self.remoteDebuggerGroup) self.dbgPathTranslationGroup = QtWidgets.QGroupBox(parent=self.groupBox_12) self.dbgPathTranslationGroup.setCheckable(True) - self.dbgPathTranslationGroup.setChecked(False) self.dbgPathTranslationGroup.setObjectName("dbgPathTranslationGroup") self._2 = QtWidgets.QGridLayout(self.dbgPathTranslationGroup) self._2.setObjectName("_2") @@ -346,10 +336,6 @@ self.execLabel.setBuddy(self.execLineEdit) self.retranslateUi(DebuggerGeneralPage) - self.passiveDbgCheckBox.toggled['bool'].connect(self.passiveDbgPortLabel.setEnabled) # type: ignore - self.passiveDbgCheckBox.toggled['bool'].connect(self.passiveDbgPortSpinBox.setEnabled) # type: ignore - self.passiveDbgCheckBox.toggled['bool'].connect(self.label.setEnabled) # type: ignore - self.passiveDbgCheckBox.toggled['bool'].connect(self.passiveDbgBackendCombo.setEnabled) # type: ignore QtCore.QMetaObject.connectSlotsByName(DebuggerGeneralPage) DebuggerGeneralPage.setTabOrder(self.interfaceSelectorComboBox, self.interfacesCombo) DebuggerGeneralPage.setTabOrder(self.interfacesCombo, self.serverPortStaticGroup) @@ -360,8 +346,7 @@ DebuggerGeneralPage.setTabOrder(self.addAllowedHostButton, self.editAllowedHostButton) DebuggerGeneralPage.setTabOrder(self.editAllowedHostButton, self.deleteAllowedHostButton) DebuggerGeneralPage.setTabOrder(self.deleteAllowedHostButton, self.passiveDbgGroup) - DebuggerGeneralPage.setTabOrder(self.passiveDbgGroup, self.passiveDbgCheckBox) - DebuggerGeneralPage.setTabOrder(self.passiveDbgCheckBox, self.passiveDbgPortSpinBox) + DebuggerGeneralPage.setTabOrder(self.passiveDbgGroup, self.passiveDbgPortSpinBox) DebuggerGeneralPage.setTabOrder(self.passiveDbgPortSpinBox, self.passiveDbgBackendCombo) DebuggerGeneralPage.setTabOrder(self.passiveDbgBackendCombo, self.remoteDebuggerGroup) DebuggerGeneralPage.setTabOrder(self.remoteDebuggerGroup, self.hostLineEdit) @@ -408,17 +393,13 @@ self.groupBox_12.setTitle(_translate("DebuggerGeneralPage", "Remote Debugging")) self.label_3.setText(_translate("DebuggerGeneralPage", "<font color=\"#FF0000\"><b>Note:</b> Only one or none of \'Passive\' or \'Remote Debugger must be activated.</font>")) self.passiveDbgGroup.setTitle(_translate("DebuggerGeneralPage", "Passive Debugger")) - self.TextLabel1_2_2.setText(_translate("DebuggerGeneralPage", "<font color=\"#FF0000\"><b>Note:</b> These settings are activated at the next startup of the application.</font>")) - self.passiveDbgCheckBox.setToolTip(_translate("DebuggerGeneralPage", "Enables the passive debug mode")) - self.passiveDbgCheckBox.setWhatsThis(_translate("DebuggerGeneralPage", "<b>Passive Debugger Enabled</b>\n" -"<p>This enables the passive debugging mode. In this mode the debug client (the script) connects to the debug server (the IDE). The script is started outside the IDE. This way mod_python or Zope scripts can be debugged.</p>")) - self.passiveDbgCheckBox.setText(_translate("DebuggerGeneralPage", "Passive Debugger Enabled")) - self.passiveDbgPortLabel.setText(_translate("DebuggerGeneralPage", "Debug Server Port:")) + self.label.setText(_translate("DebuggerGeneralPage", "Debugger Type:")) + self.passiveDbgBackendCombo.setToolTip(_translate("DebuggerGeneralPage", "Select the debugger type of the backend")) self.passiveDbgPortSpinBox.setToolTip(_translate("DebuggerGeneralPage", "Enter the port the debugger should listen on")) self.passiveDbgPortSpinBox.setWhatsThis(_translate("DebuggerGeneralPage", "<b>Debug Server Port</b>\n" "<p>Enter the port the debugger should listen on.</p>")) - self.label.setText(_translate("DebuggerGeneralPage", "Debugger Type:")) - self.passiveDbgBackendCombo.setToolTip(_translate("DebuggerGeneralPage", "Select the debugger type of the backend")) + self.TextLabel1_2_2.setText(_translate("DebuggerGeneralPage", "<font color=\"#FF0000\"><b>Note:</b> These settings are activated at the next startup of the application.</font>")) + self.passiveDbgPortLabel.setText(_translate("DebuggerGeneralPage", "Debug Server Port:")) self.remoteDebuggerGroup.setToolTip(_translate("DebuggerGeneralPage", "Select, if the debugger should be run remotely")) self.remoteDebuggerGroup.setTitle(_translate("DebuggerGeneralPage", "Remote Debugger")) self.hostLabel.setText(_translate("DebuggerGeneralPage", "Remote Host:"))
--- a/src/eric7/i18n/eric7_cs.ts Wed Oct 16 17:38:35 2024 +0200 +++ b/src/eric7/i18n/eric7_cs.ts Wed Oct 16 17:39:40 2024 +0200 @@ -1634,27 +1634,27 @@ <context> <name>AssistantJedi</name> <message> - <location filename="../JediInterface/AssistantJedi.py" line="230" /> + <location filename="../JediInterface/AssistantJedi.py" line="236" /> <source>Refactoring</source> <translation type="unfinished" /> </message> <message> - <location filename="../JediInterface/AssistantJedi.py" line="232" /> - <source>Rename Variable</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../JediInterface/AssistantJedi.py" line="235" /> - <source>Extract Variable</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../JediInterface/AssistantJedi.py" line="238" /> + <source>Rename Variable</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../JediInterface/AssistantJedi.py" line="241" /> + <source>Extract Variable</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../JediInterface/AssistantJedi.py" line="244" /> <source>Inline Variable</source> <translation type="unfinished" /> </message> <message> - <location filename="../JediInterface/AssistantJedi.py" line="242" /> + <location filename="../JediInterface/AssistantJedi.py" line="248" /> <source>Extract Function</source> <translation type="unfinished" /> </message> @@ -9248,19 +9248,35 @@ </translation> </message> <message> - <location filename="../Debugger/DebugServer.py" line="2109" /> + <location filename="../Debugger/DebugServer.py" line="2110" /> <source>Passive debug connection received </source> <translation type="unfinished" /> </message> <message> - <location filename="../Debugger/DebugServer.py" line="2123" /> + <location filename="../Debugger/DebugServer.py" line="2119" /> + <source>Passive debug connection received while not in passive mode. +</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Debugger/DebugServer.py" line="2125" /> + <source>Debug Client Connection</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Debugger/DebugServer.py" line="2126" /> + <source>Passive debug client connection received while not in passive mode. Enable this mode on the 'Debugger General' configuration page. The connection will be rejected.</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Debugger/DebugServer.py" line="2141" /> <source>Passive debug connection closed </source> <translation type="unfinished" /> </message> <message> - <location filename="../Debugger/DebugServer.py" line="2254" /> + <location filename="../Debugger/DebugServer.py" line="2272" /> <source><project></source> <translation type="unfinished" /> </message> @@ -10211,25 +10227,13 @@ </message> <message> <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" /> - <source>Enables the passive debug mode</source> - <translation>Aktivace pasivního debug módu</translation> + <source>Debugger Type:</source> + <translation>Typ debuggeru:</translation> </message> <message> <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" /> - <source><b>Passive Debugger Enabled</b> -<p>This enables the passive debugging mode. In this mode the debug client (the script) connects to the debug server (the IDE). The script is started outside the IDE. This way mod_python or Zope scripts can be debugged.</p></source> - <translation><b>Pasivní debugger aktivován</b> -<p>Aktivuje se pasivní debugovací mód. V tomto módu se debugovaný klient (skript) připojí k debug serveru (IDE). Skript je spuštěn mimo IDE. Tím je umožněno debugovat skripty jako mod_python nebo Zope.</p></translation> - </message> - <message> - <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" /> - <source>Passive Debugger Enabled</source> - <translation>Pasivní debugger aktivován</translation> - </message> - <message> - <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" /> - <source>Debug Server Port:</source> - <translation>Port debug serveru:</translation> + <source>Select the debugger type of the backend</source> + <translation>Vybrat typ debuggeru pro backend</translation> </message> <message> <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" /> @@ -10244,13 +10248,8 @@ </message> <message> <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" /> - <source>Debugger Type:</source> - <translation>Typ debuggeru:</translation> - </message> - <message> - <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" /> - <source>Select the debugger type of the backend</source> - <translation>Vybrat typ debuggeru pro backend</translation> + <source>Debug Server Port:</source> + <translation>Port debug serveru:</translation> </message> <message> <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" /> @@ -10579,50 +10578,64 @@ <source>Automatically view source code</source> <translation type="unfinished" /> </message> + <message> + <source>Enables the passive debug mode</source> + <translation type="vanished">Aktivace pasivního debug módu</translation> + </message> + <message> + <source><b>Passive Debugger Enabled</b> +<p>This enables the passive debugging mode. In this mode the debug client (the script) connects to the debug server (the IDE). The script is started outside the IDE. This way mod_python or Zope scripts can be debugged.</p></source> + <translation type="vanished"><b>Pasivní debugger aktivován</b> +<p>Aktivuje se pasivní debugovací mód. V tomto módu se debugovaný klient (skript) připojí k debug serveru (IDE). Skript je spuštěn mimo IDE. Tím je umožněno debugovat skripty jako mod_python nebo Zope.</p></translation> + </message> + <message> + <source>Passive Debugger Enabled</source> + <translation type="vanished">Pasivní debugger aktivován</translation> + </message> </context> <context> <name>DebuggerInterfacePython</name> <message> - <location filename="../Debugger/DebuggerInterfacePython.py" line="727" /> - <location filename="../Debugger/DebuggerInterfacePython.py" line="704" /> - <location filename="../Debugger/DebuggerInterfacePython.py" line="611" /> - <location filename="../Debugger/DebuggerInterfacePython.py" line="565" /> - <location filename="../Debugger/DebuggerInterfacePython.py" line="446" /> - <location filename="../Debugger/DebuggerInterfacePython.py" line="423" /> - <location filename="../Debugger/DebuggerInterfacePython.py" line="346" /> - <location filename="../Debugger/DebuggerInterfacePython.py" line="322" /> - <location filename="../Debugger/DebuggerInterfacePython.py" line="259" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="728" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="705" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="609" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="563" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="445" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="422" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="345" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="321" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="258" /> <source>Start Debugger</source> <translation type="unfinished">Spustit debuger</translation> </message> <message> - <location filename="../Debugger/DebuggerInterfacePython.py" line="566" /> - <location filename="../Debugger/DebuggerInterfacePython.py" line="260" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="564" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="259" /> <source><p>No suitable Python3 environment configured.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Debugger/DebuggerInterfacePython.py" line="728" /> - <location filename="../Debugger/DebuggerInterfacePython.py" line="705" /> - <location filename="../Debugger/DebuggerInterfacePython.py" line="612" /> - <location filename="../Debugger/DebuggerInterfacePython.py" line="447" /> - <location filename="../Debugger/DebuggerInterfacePython.py" line="424" /> - <location filename="../Debugger/DebuggerInterfacePython.py" line="323" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="729" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="706" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="610" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="446" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="423" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="322" /> <source><p>The debugger backend could not be started.</p></source> <translation type="unfinished"><p>Debugovací backend nelze spustit.</p></translation> </message> <message> - <location filename="../Debugger/DebuggerInterfacePython.py" line="347" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="346" /> <source><p>Remote debugging is configured but no command for remote login was given.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Debugger/DebuggerInterfacePython.py" line="1659" /> - <source>Debug Protocol Error</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Debugger/DebuggerInterfacePython.py" line="1660" /> + <source>Debug Protocol Error</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Debugger/DebuggerInterfacePython.py" line="1661" /> <source><p>The response received from the debugger backend 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" /> </message> @@ -62051,7 +62064,7 @@ <context> <name>PreviewModel</name> <message> - <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="478" /> + <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="506" /> <source>Variable Name</source> <translation type="unfinished" /> </message> @@ -62933,8 +62946,8 @@ <translation>Přejmenovat soubor</translation> </message> <message> - <location filename="../Project/Project.py" line="8058" /> - <location filename="../Project/Project.py" line="3901" /> + <location filename="../Project/Project.py" line="8055" /> + <location filename="../Project/Project.py" line="3898" /> <location filename="../Project/Project.py" line="2398" /> <source><p>The file <b>{0}</b> already exists. Overwrite it?</p></source> <translation><p>Soubor <b>{0}</b> již existuje.</p><p>Má se přepsat?</p></translation> @@ -63068,40 +63081,40 @@ <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="8044" /> - <location filename="../Project/Project.py" line="8038" /> - <location filename="../Project/Project.py" line="8028" /> - <location filename="../Project/Project.py" line="3886" /> - <location filename="../Project/Project.py" line="3876" /> + <location filename="../Project/Project.py" line="8041" /> + <location filename="../Project/Project.py" line="8035" /> + <location filename="../Project/Project.py" line="8025" /> + <location filename="../Project/Project.py" line="3883" /> + <location filename="../Project/Project.py" line="3873" /> <location filename="../Project/Project.py" line="3652" /> <source>Project Files (*.epj)</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="3900" /> - <location filename="../Project/Project.py" line="3884" /> + <location filename="../Project/Project.py" line="3897" /> + <location filename="../Project/Project.py" line="3881" /> <source>Save Project</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="3939" /> + <location filename="../Project/Project.py" line="3936" /> <source>Close Project</source> <translation>Zavřít projekt</translation> </message> <message> - <location filename="../Project/Project.py" line="3940" /> + <location filename="../Project/Project.py" line="3937" /> <source>The current project has unsaved changes.</source> <translation>Aktuální projekt obsahuje neuložené změny.</translation> </message> <message> - <location filename="../Project/Project.py" line="4140" /> - <location filename="../Project/Project.py" line="4104" /> + <location filename="../Project/Project.py" line="4137" /> + <location filename="../Project/Project.py" line="4101" /> <source>Syntax Errors Detected</source> <translation type="unfinished" /> </message> <message numerus="yes"> - <location filename="../Project/Project.py" line="4141" /> - <location filename="../Project/Project.py" line="4105" /> + <location filename="../Project/Project.py" line="4138" /> + <location filename="../Project/Project.py" line="4102" /> <source>The project contains %n file(s) with syntax errors.</source> <translation> <numerusform>Projekt obsahuje %n soubor se syntaktickými chybami.</numerusform> @@ -63110,1268 +63123,1268 @@ </translation> </message> <message> - <location filename="../Project/Project.py" line="4799" /> + <location filename="../Project/Project.py" line="4796" /> <source>New project</source> <translation>Nový projekt</translation> </message> <message> - <location filename="../Project/Project.py" line="4801" /> + <location filename="../Project/Project.py" line="4798" /> <source>&New...</source> <translation>&Nový...</translation> </message> <message> - <location filename="../Project/Project.py" line="4807" /> + <location filename="../Project/Project.py" line="4804" /> <source>Generate a new project</source> <translation>Vygenerovat nový projekt</translation> </message> <message> - <location filename="../Project/Project.py" line="4809" /> + <location filename="../Project/Project.py" line="4806" /> <source><b>New...</b><p>This opens a dialog for entering the info for a new project.</p></source> <translation><b>Nový...</b><p>Otevře se dialogové okno pro zadání informací o novém projektu.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4819" /> + <location filename="../Project/Project.py" line="4816" /> <source>Open project</source> <translation>Otevřít projekt</translation> </message> <message> - <location filename="../Project/Project.py" line="4821" /> + <location filename="../Project/Project.py" line="4818" /> <source>&Open...</source> <translation>&Otevřít...</translation> </message> <message> - <location filename="../Project/Project.py" line="4827" /> + <location filename="../Project/Project.py" line="4824" /> <source>Open an existing project</source> <translation>Otevřít existující projekt</translation> </message> <message> - <location filename="../Project/Project.py" line="4829" /> + <location filename="../Project/Project.py" line="4826" /> <source><b>Open...</b><p>This opens an existing project.</p></source> <translation><b>Otevřít....</b><p>Otevře existující projekt.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4835" /> + <location filename="../Project/Project.py" line="4832" /> <source>Open remote project</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="4837" /> + <location filename="../Project/Project.py" line="4834" /> <source>Open (Remote)...</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="4843" /> + <location filename="../Project/Project.py" line="4840" /> <source>Open an existing remote project</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="4845" /> + <location filename="../Project/Project.py" line="4842" /> <source><b>Open (Remote)...</b><p>This opens an existing remote project.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="4854" /> + <location filename="../Project/Project.py" line="4851" /> <source>Reload project</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="4856" /> + <location filename="../Project/Project.py" line="4853" /> <source>Re&load</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="4862" /> + <location filename="../Project/Project.py" line="4859" /> <source>Reload the current project</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="4864" /> + <location filename="../Project/Project.py" line="4861" /> <source><b>Reload</b><p>This reloads the current project.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="4870" /> + <location filename="../Project/Project.py" line="4867" /> <source>Close project</source> <translation>Zavřít projekt</translation> </message> <message> - <location filename="../Project/Project.py" line="4872" /> + <location filename="../Project/Project.py" line="4869" /> <source>&Close</source> <translation>&Zavřít</translation> </message> <message> - <location filename="../Project/Project.py" line="4878" /> + <location filename="../Project/Project.py" line="4875" /> <source>Close the current project</source> <translation>Uzavře aktuální projekt</translation> </message> <message> - <location filename="../Project/Project.py" line="4880" /> + <location filename="../Project/Project.py" line="4877" /> <source><b>Close</b><p>This closes the current project.</p></source> <translation><b>Zavřít</b><p>Aktuální projekt se uzavře.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4886" /> + <location filename="../Project/Project.py" line="4883" /> <source>Save project</source> <translation>Uložit projekt</translation> </message> <message> - <location filename="../Project/Project.py" line="5183" /> - <location filename="../Project/Project.py" line="4888" /> + <location filename="../Project/Project.py" line="5180" /> + <location filename="../Project/Project.py" line="4885" /> <source>&Save</source> <translation>&Uložit</translation> </message> <message> - <location filename="../Project/Project.py" line="4894" /> + <location filename="../Project/Project.py" line="4891" /> <source>Save the current project</source> <translation>Uložit aktuální projekt</translation> </message> <message> - <location filename="../Project/Project.py" line="4896" /> + <location filename="../Project/Project.py" line="4893" /> <source><b>Save</b><p>This saves the current project.</p></source> <translation><b>Uložit</b><p>Aktuální projekt se uloží.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4902" /> + <location filename="../Project/Project.py" line="4899" /> <source>Save project as</source> <translation>Uložit projekt jako</translation> </message> <message> - <location filename="../Project/Project.py" line="4904" /> + <location filename="../Project/Project.py" line="4901" /> <source>Save &as...</source> <translation>Uložit j&ako...</translation> </message> <message> - <location filename="../Project/Project.py" line="4910" /> + <location filename="../Project/Project.py" line="4907" /> <source>Save the current project to a new file</source> <translation>Uloží aktuální projekt do nového souboru</translation> </message> <message> - <location filename="../Project/Project.py" line="4912" /> + <location filename="../Project/Project.py" line="4909" /> <source><b>Save as</b><p>This saves the current project to a new file.</p></source> <translation><b>Uložit jako</b><p>Uloží aktuální projekt do nového souboru.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4921" /> + <location filename="../Project/Project.py" line="4918" /> <source>Save project as (Remote)</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="4923" /> + <location filename="../Project/Project.py" line="4920" /> <source>Save as (Remote)...</source> <translation type="unfinished" /> </message> <message> + <location filename="../Project/Project.py" line="4927" /> + <source>Save the current project to a new remote file</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../Project/Project.py" line="4930" /> - <source>Save the current project to a new remote file</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="4933" /> <source><b>Save as (Remote)</b><p>This saves the current project to a new remote file.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="4949" /> + <location filename="../Project/Project.py" line="4946" /> <source>Add files to project</source> <translation>Přidat soubory do projektu</translation> </message> <message> - <location filename="../Project/Project.py" line="4951" /> + <location filename="../Project/Project.py" line="4948" /> <source>Add &files...</source> <translation>&Přidat soubory...</translation> </message> <message> - <location filename="../Project/Project.py" line="4957" /> + <location filename="../Project/Project.py" line="4954" /> <source>Add files to the current project</source> <translation>Přidat soubory do aktuálního projektu</translation> </message> <message> - <location filename="../Project/Project.py" line="4959" /> + <location filename="../Project/Project.py" line="4956" /> <source><b>Add files...</b><p>This opens a dialog for adding files to the current project. The place to add is determined by the file extension.</p></source> <translation><b>Přidat soubory...</b><p>Otevře dialog pri přidání souborů do aktuálního projektu. Místo pro přidání je definováno extenzí souborů.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4970" /> + <location filename="../Project/Project.py" line="4967" /> <source>Add directory to project</source> <translation>Přidat adresář do projektu</translation> </message> <message> - <location filename="../Project/Project.py" line="4972" /> + <location filename="../Project/Project.py" line="4969" /> <source>Add directory...</source> <translation>Přidat adresář...</translation> </message> <message> + <location filename="../Project/Project.py" line="4976" /> + <source>Add a directory to the current project</source> + <translation>Přidat adresář do aktuálního projektu</translation> + </message> + <message> <location filename="../Project/Project.py" line="4979" /> - <source>Add a directory to the current project</source> - <translation>Přidat adresář do aktuálního projektu</translation> - </message> - <message> - <location filename="../Project/Project.py" line="4982" /> <source><b>Add directory...</b><p>This opens a dialog for adding a directory to the current project.</p></source> <translation><b>Přidat adresář...</b><p>Otevře dialog pro přičtení adresáře do aktuálního projektu.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4992" /> + <location filename="../Project/Project.py" line="4989" /> <source>Add translation to project</source> <translation>Přidat překlad do projektu</translation> </message> <message> - <location filename="../Project/Project.py" line="4994" /> + <location filename="../Project/Project.py" line="4991" /> <source>Add &translation...</source> <translation>Přida&t překlad...</translation> </message> <message> + <location filename="../Project/Project.py" line="4998" /> + <source>Add a translation to the current project</source> + <translation>Přidat překlad do aktuálního projektu</translation> + </message> + <message> <location filename="../Project/Project.py" line="5001" /> - <source>Add a translation to the current project</source> - <translation>Přidat překlad do aktuálního projektu</translation> - </message> - <message> - <location filename="../Project/Project.py" line="5004" /> <source><b>Add translation...</b><p>This opens a dialog for add a translation to the current project.</p></source> <translation><b>Přidat překlad</b><p>Otevře dialog pro přidání překladu do aktuálního projektu.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5014" /> + <location filename="../Project/Project.py" line="5011" /> <source>Search new files</source> <translation>Hledat nové soubory</translation> </message> <message> - <location filename="../Project/Project.py" line="5015" /> + <location filename="../Project/Project.py" line="5012" /> <source>Searc&h new files...</source> <translation>&Hledat nové soubory...</translation> </message> <message> - <location filename="../Project/Project.py" line="5021" /> + <location filename="../Project/Project.py" line="5018" /> <source>Search new files in the project directory.</source> <translation>Hledat nové soubory v adresáři projektu.</translation> </message> <message> - <location filename="../Project/Project.py" line="5023" /> + <location filename="../Project/Project.py" line="5020" /> <source><b>Search new files...</b><p>This searches for new files (sources, forms, ...) in the project directory and registered subdirectories.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5033" /> + <location filename="../Project/Project.py" line="5030" /> <source>Search Project File</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5034" /> + <location filename="../Project/Project.py" line="5031" /> <source>Search Project File...</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5035" /> + <location filename="../Project/Project.py" line="5032" /> <source>Alt+Ctrl+P</source> <comment>Project|Search Project File</comment> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5040" /> + <location filename="../Project/Project.py" line="5037" /> <source>Search for a file in the project list of files.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5042" /> + <location filename="../Project/Project.py" line="5039" /> <source><b>Search Project File</b><p>This searches for a file in the project list of files.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5051" /> + <location filename="../Project/Project.py" line="5048" /> <source>Project properties</source> <translation>Nastavení projektu</translation> </message> <message> - <location filename="../Project/Project.py" line="5053" /> + <location filename="../Project/Project.py" line="5050" /> <source>&Properties...</source> <translation>&Natavení...</translation> </message> <message> - <location filename="../Project/Project.py" line="5059" /> + <location filename="../Project/Project.py" line="5056" /> <source>Show the project properties</source> <translation>Zobrazit nastavení projektu</translation> </message> <message> - <location filename="../Project/Project.py" line="5061" /> + <location filename="../Project/Project.py" line="5058" /> <source><b>Properties...</b><p>This shows a dialog to edit the project properties.</p></source> <translation><b>Nastavení...</b><p>Zobrazí dialog s editací nastavení projektu.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5070" /> + <location filename="../Project/Project.py" line="5067" /> <source>User project properties</source> <translation>Uživatelská nastavení projektu</translation> </message> <message> - <location filename="../Project/Project.py" line="5072" /> + <location filename="../Project/Project.py" line="5069" /> <source>&User Properties...</source> <translation>Uživat&elská nastavení...</translation> </message> <message> + <location filename="../Project/Project.py" line="5076" /> + <source>Show the user specific project properties</source> + <translation>Zobrazit uživatelem definovaná nastavení projektu</translation> + </message> + <message> <location filename="../Project/Project.py" line="5079" /> - <source>Show the user specific project properties</source> - <translation>Zobrazit uživatelem definovaná nastavení projektu</translation> - </message> - <message> - <location filename="../Project/Project.py" line="5082" /> <source><b>User Properties...</b><p>This shows a dialog to edit the user specific project properties.</p></source> <translation><b>Uživatelská nastavení...</b><p>Zobrazí dialog s editací uživatelských nastavení projektu.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5092" /> + <location filename="../Project/Project.py" line="5089" /> <source>Filetype Associations</source> <translation>Asociace typů souborů</translation> </message> <message> - <location filename="../Project/Project.py" line="5093" /> + <location filename="../Project/Project.py" line="5090" /> <source>Filetype Associations...</source> <translation>Asociace typů souborů...</translation> </message> <message> + <location filename="../Project/Project.py" line="5097" /> + <source>Show the project file type associations</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../Project/Project.py" line="5100" /> - <source>Show the project file type associations</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="5103" /> <source><b>Filetype Associations...</b><p>This shows a dialog to edit the file type associations of the project. These associations determine the type (source, form, interface, protocol or others) with a filename pattern. They are used when adding a file to the project and when performing a search for new files.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5116" /> + <location filename="../Project/Project.py" line="5113" /> <source>Lexer Associations</source> <translation>Spojení lexeru</translation> </message> <message> - <location filename="../Project/Project.py" line="5117" /> + <location filename="../Project/Project.py" line="5114" /> <source>Lexer Associations...</source> <translation>Spojení lexeru...</translation> </message> <message> + <location filename="../Project/Project.py" line="5121" /> + <source>Show the project lexer associations (overriding defaults)</source> + <translation>Zobrazit spojení lexeru projektu (přepíše výchozí)</translation> + </message> + <message> <location filename="../Project/Project.py" line="5124" /> - <source>Show the project lexer associations (overriding defaults)</source> - <translation>Zobrazit spojení lexeru projektu (přepíše výchozí)</translation> - </message> - <message> - <location filename="../Project/Project.py" line="5127" /> <source><b>Lexer Associations...</b><p>This shows a dialog to edit the lexer associations of the project. These associations override the global lexer associations. Lexers are used to highlight the editor text.</p></source> <translation><b>Spojení lexeru...</b><p>Zobrazuje dialog s editací spojení lexeru projektu. Tato spojení přepisují globální lexer spojení. Lexer je použit pro zvýraznění textu v editoru.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5145" /> + <location filename="../Project/Project.py" line="5142" /> <source>Debugger Properties</source> <translation>Nastavení debugeru</translation> </message> <message> - <location filename="../Project/Project.py" line="5146" /> + <location filename="../Project/Project.py" line="5143" /> <source>Debugger &Properties...</source> <translation>Nastavení &debuggeru...</translation> </message> <message> - <location filename="../Project/Project.py" line="5152" /> + <location filename="../Project/Project.py" line="5149" /> <source>Show the debugger properties</source> <translation>Zobrazit nastavení debugeru</translation> </message> <message> - <location filename="../Project/Project.py" line="5154" /> + <location filename="../Project/Project.py" line="5151" /> <source><b>Debugger Properties...</b><p>This shows a dialog to edit project specific debugger settings.</p></source> <translation><b>Nastavení debugeru...</b><p>Zobrazí dialog s editací nastavení debugeru.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5164" /> + <location filename="../Project/Project.py" line="5161" /> <source>Load</source> <translation>Načíst</translation> </message> <message> - <location filename="../Project/Project.py" line="5165" /> + <location filename="../Project/Project.py" line="5162" /> <source>&Load</source> <translation>&Načíst</translation> </message> <message> - <location filename="../Project/Project.py" line="5171" /> + <location filename="../Project/Project.py" line="5168" /> <source>Load the debugger properties</source> <translation>Načíst nastavení debugeru</translation> </message> <message> - <location filename="../Project/Project.py" line="5173" /> + <location filename="../Project/Project.py" line="5170" /> <source><b>Load Debugger Properties</b><p>This loads the project specific debugger settings.</p></source> <translation><b>Načíst nastavení debugeru</b><p>Načtou se nastavení debugeru do projektu.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5182" /> + <location filename="../Project/Project.py" line="5179" /> <source>Save</source> <translation>Uložit</translation> </message> <message> - <location filename="../Project/Project.py" line="5189" /> + <location filename="../Project/Project.py" line="5186" /> <source>Save the debugger properties</source> <translation>Uložit nastavení debugeru</translation> </message> <message> - <location filename="../Project/Project.py" line="5191" /> + <location filename="../Project/Project.py" line="5188" /> <source><b>Save Debugger Properties</b><p>This saves the project specific debugger settings.</p></source> <translation><b>Uložit nastavení debugeru</b><p>Uloží nastavení debugeru definovaná v projektu..</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5200" /> + <location filename="../Project/Project.py" line="5197" /> <source>Delete</source> <translation>Smazat</translation> </message> <message> - <location filename="../Project/Project.py" line="5201" /> + <location filename="../Project/Project.py" line="5198" /> <source>&Delete</source> <translation>Sma&zat</translation> </message> <message> - <location filename="../Project/Project.py" line="5207" /> + <location filename="../Project/Project.py" line="5204" /> <source>Delete the debugger properties</source> <translation>Smazat nastavení debugeru</translation> </message> <message> - <location filename="../Project/Project.py" line="5209" /> + <location filename="../Project/Project.py" line="5206" /> <source><b>Delete Debugger Properties</b><p>This deletes the file containing the project specific debugger settings.</p></source> <translation><b>Smazat nastavení debugeru</b><p>Smaže se soubor obsahující nastavení debugeru v daném projektu.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5219" /> + <location filename="../Project/Project.py" line="5216" /> <source>Reset</source> <translation /> </message> <message> - <location filename="../Project/Project.py" line="5220" /> + <location filename="../Project/Project.py" line="5217" /> <source>&Reset</source> <translation>&Reset</translation> </message> <message> - <location filename="../Project/Project.py" line="5226" /> + <location filename="../Project/Project.py" line="5223" /> <source>Reset the debugger properties</source> <translation>Reset nastavení debugeru</translation> </message> <message> - <location filename="../Project/Project.py" line="5228" /> + <location filename="../Project/Project.py" line="5225" /> <source><b>Reset Debugger Properties</b><p>This resets the project specific debugger settings.</p></source> <translation><b>Reset nastavení debugeru</b><p>Zresetuje nastavení debugeru v projektu.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5244" /> - <location filename="../Project/Project.py" line="5243" /> + <location filename="../Project/Project.py" line="5241" /> + <location filename="../Project/Project.py" line="5240" /> <source>Load session</source> <translation>Načíst relaci</translation> </message> <message> - <location filename="../Project/Project.py" line="5250" /> + <location filename="../Project/Project.py" line="5247" /> <source>Load the projects session file.</source> <translation>Načíst soubor s relací projektu.</translation> </message> <message> - <location filename="../Project/Project.py" line="5252" /> + <location filename="../Project/Project.py" line="5249" /> <source><b>Load session</b><p>This loads the projects session file. The session consists of the following data.<br>- all open source files<br>- all breakpoint<br>- the commandline arguments<br>- the working directory<br>- the exception reporting flag</p></source> <translation><b>Načíst relaci</b><p>Načte soubor s relací projektu. Relace obsahuje následující údaje:<br>- všechny otevřené zdrojové soubory<br>- všechny breakpointy<br>- argumenty příkazové řádky <br>- pracovní adresář<br>- příznak výjimky</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5268" /> - <location filename="../Project/Project.py" line="5267" /> + <location filename="../Project/Project.py" line="5265" /> + <location filename="../Project/Project.py" line="5264" /> <source>Save session</source> <translation>Uložit relaci</translation> </message> <message> - <location filename="../Project/Project.py" line="5274" /> + <location filename="../Project/Project.py" line="5271" /> <source>Save the projects session file.</source> <translation>Uložit soubor s relací projektu.</translation> </message> <message> - <location filename="../Project/Project.py" line="5276" /> + <location filename="../Project/Project.py" line="5273" /> <source><b>Save session</b><p>This saves the projects session file. The session consists of the following data.<br>- all open source files<br>- all breakpoint<br>- the commandline arguments<br>- the working directory<br>- the exception reporting flag</p></source> <translation><b>Uložit relaci</b><p>Uloží soubor s relací projektu. Relace obsahuje následující údaje:<br>- všechny otevřené zdrojové soubory<br>- všechny breakpointy<br>- argumenty příkazové řádky <br>- pracovní adresář<br>- příznak výjimky</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5292" /> - <location filename="../Project/Project.py" line="5291" /> + <location filename="../Project/Project.py" line="5289" /> + <location filename="../Project/Project.py" line="5288" /> <source>Delete session</source> <translation>Smazat relaci</translation> </message> <message> - <location filename="../Project/Project.py" line="5298" /> + <location filename="../Project/Project.py" line="5295" /> <source>Delete the projects session file.</source> <translation>Smaže soubor s relací projektu.</translation> </message> <message> - <location filename="../Project/Project.py" line="5300" /> + <location filename="../Project/Project.py" line="5297" /> <source><b>Delete session</b><p>This deletes the projects session file</p></source> <translation><b>Smazat relaci</b><p>Smaže soubor s relací projektu.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5315" /> + <location filename="../Project/Project.py" line="5312" /> <source>Code Metrics</source> <translation>Metriky kódu</translation> </message> <message> - <location filename="../Project/Project.py" line="5316" /> + <location filename="../Project/Project.py" line="5313" /> <source>&Code Metrics...</source> <translation>Metriky &kódu...</translation> </message> <message> + <location filename="../Project/Project.py" line="5320" /> + <source>Show some code metrics for the project.</source> + <translation>Zobrazit metriky kódu projektu.</translation> + </message> + <message> <location filename="../Project/Project.py" line="5323" /> - <source>Show some code metrics for the project.</source> - <translation>Zobrazit metriky kódu projektu.</translation> - </message> - <message> - <location filename="../Project/Project.py" line="5326" /> <source><b>Code Metrics...</b><p>This shows some code metrics for all Python files in the project.</p></source> <translation><b>Metriky kódu...</b><p>Zobrazí se metriky kódu všech python souborů v projektu.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5336" /> + <location filename="../Project/Project.py" line="5333" /> <source>Python Code Coverage</source> <translation>Pokrytí python kódu</translation> </message> <message> - <location filename="../Project/Project.py" line="5337" /> + <location filename="../Project/Project.py" line="5334" /> <source>Code Co&verage...</source> <translation>Pokr&ytí kódu...</translation> </message> <message> + <location filename="../Project/Project.py" line="5341" /> + <source>Show code coverage information for the project.</source> + <translation>Zobrazit informace pokrytí kódu projektu.</translation> + </message> + <message> <location filename="../Project/Project.py" line="5344" /> - <source>Show code coverage information for the project.</source> - <translation>Zobrazit informace pokrytí kódu projektu.</translation> - </message> - <message> - <location filename="../Project/Project.py" line="5347" /> <source><b>Code Coverage...</b><p>This shows the code coverage information for all Python files in the project.</p></source> <translation><b>Pokrytí kódu...</b><p>Zobrazí informace o pokrytí kódu ve všech python souborech projektu.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="6781" /> - <location filename="../Project/Project.py" line="6768" /> - <location filename="../Project/Project.py" line="5357" /> + <location filename="../Project/Project.py" line="6778" /> + <location filename="../Project/Project.py" line="6765" /> + <location filename="../Project/Project.py" line="5354" /> <source>Profile Data</source> <translation>Profilovat data</translation> </message> <message> - <location filename="../Project/Project.py" line="5358" /> + <location filename="../Project/Project.py" line="5355" /> <source>&Profile Data...</source> <translation>&Profilovat data...</translation> </message> <message> + <location filename="../Project/Project.py" line="5362" /> + <source>Show profiling data for the project.</source> + <translation>Zobrazit profilování dat projektu.</translation> + </message> + <message> <location filename="../Project/Project.py" line="5365" /> - <source>Show profiling data for the project.</source> - <translation>Zobrazit profilování dat projektu.</translation> - </message> - <message> - <location filename="../Project/Project.py" line="5368" /> <source><b>Profile Data...</b><p>This shows the profiling data for the project.</p></source> <translation><b>Profilovat data</b><p>Zobrazí se profilování dat projektu.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="6833" /> - <location filename="../Project/Project.py" line="5383" /> + <location filename="../Project/Project.py" line="6830" /> + <location filename="../Project/Project.py" line="5380" /> <source>Application Diagram</source> <translation>Diagram aplikace</translation> </message> <message> - <location filename="../Project/Project.py" line="5384" /> + <location filename="../Project/Project.py" line="5381" /> <source>&Application Diagram...</source> <translation>Diagram &aplikace...</translation> </message> <message> + <location filename="../Project/Project.py" line="5388" /> + <source>Show a diagram of the project.</source> + <translation>Zobrazit diagram projektu.</translation> + </message> + <message> <location filename="../Project/Project.py" line="5391" /> - <source>Show a diagram of the project.</source> - <translation>Zobrazit diagram projektu.</translation> - </message> - <message> - <location filename="../Project/Project.py" line="5394" /> <source><b>Application Diagram...</b><p>This shows a diagram of the project.</p></source> <translation><b>Diagram aplikace...</b><p>Zobrazí diagram projektu.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5403" /> + <location filename="../Project/Project.py" line="5400" /> <source>Load Diagram</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5404" /> + <location filename="../Project/Project.py" line="5401" /> <source>&Load Diagram...</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5410" /> + <location filename="../Project/Project.py" line="5407" /> <source>Load a diagram from file.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5412" /> + <location filename="../Project/Project.py" line="5409" /> <source><b>Load Diagram...</b><p>This loads a diagram from file.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="7001" /> - <location filename="../Project/Project.py" line="6946" /> - <location filename="../Project/Project.py" line="5427" /> + <location filename="../Project/Project.py" line="6998" /> + <location filename="../Project/Project.py" line="6943" /> + <location filename="../Project/Project.py" line="5424" /> <source>Create Package List</source> <translation>Vytvořit seznam balíčků</translation> </message> <message> - <location filename="../Project/Project.py" line="5429" /> + <location filename="../Project/Project.py" line="5426" /> <source>Create &Package List</source> <translation type="unfinished">Vytvořit Plugin &archiv</translation> </message> <message> + <location filename="../Project/Project.py" line="5433" /> + <source>Create an initial PKGLIST file for an eric plugin.</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../Project/Project.py" line="5436" /> - <source>Create an initial PKGLIST file for an eric plugin.</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="5439" /> <source><b>Create Package List</b><p>This creates an initial list of files to include in an eric plugin archive. The list is created from the project file.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="7071" /> - <location filename="../Project/Project.py" line="5450" /> + <location filename="../Project/Project.py" line="7068" /> + <location filename="../Project/Project.py" line="5447" /> <source>Create Plugin Archives</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5452" /> + <location filename="../Project/Project.py" line="5449" /> <source>Create Plugin &Archives</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5458" /> + <location filename="../Project/Project.py" line="5455" /> <source>Create eric plugin archive files.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5460" /> + <location filename="../Project/Project.py" line="5457" /> <source><b>Create Plugin Archives</b><p>This creates eric plugin archive files using the list of files given in a PKGLIST* file. The archive name is built from the main script name if not designated in the package list file.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5472" /> + <location filename="../Project/Project.py" line="5469" /> <source>Create Plugin Archives (Snapshot)</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5474" /> + <location filename="../Project/Project.py" line="5471" /> <source>Create Plugin Archives (&Snapshot)</source> <translation type="unfinished" /> </message> <message> + <location filename="../Project/Project.py" line="5478" /> + <source>Create eric plugin archive files (snapshot releases).</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../Project/Project.py" line="5481" /> - <source>Create eric plugin archive files (snapshot releases).</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="5484" /> <source><b>Create Plugin Archives (Snapshot)</b><p>This creates eric plugin archive files using the list of files given in the PKGLIST* file. The archive name is built from the main script name if not designated in the package list file. The version entry of the main script is modified to reflect a snapshot release.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="7513" /> - <location filename="../Project/Project.py" line="7484" /> - <location filename="../Project/Project.py" line="7438" /> - <location filename="../Project/Project.py" line="7390" /> - <location filename="../Project/Project.py" line="5503" /> + <location filename="../Project/Project.py" line="7510" /> + <location filename="../Project/Project.py" line="7481" /> + <location filename="../Project/Project.py" line="7435" /> + <location filename="../Project/Project.py" line="7387" /> + <location filename="../Project/Project.py" line="5500" /> <source>Execute Make</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5504" /> + <location filename="../Project/Project.py" line="5501" /> <source>&Execute Make</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5510" /> + <location filename="../Project/Project.py" line="5507" /> <source>Perform a 'make' run.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5512" /> + <location filename="../Project/Project.py" line="5509" /> <source><b>Execute Make</b><p>This performs a 'make' run to rebuild the configured target.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="7490" /> - <location filename="../Project/Project.py" line="5522" /> + <location filename="../Project/Project.py" line="7487" /> + <location filename="../Project/Project.py" line="5519" /> <source>Test for Changes</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5523" /> + <location filename="../Project/Project.py" line="5520" /> <source>&Test for Changes</source> <translation type="unfinished" /> </message> <message> + <location filename="../Project/Project.py" line="5527" /> + <source>Question 'make', if a rebuild is needed.</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../Project/Project.py" line="5530" /> - <source>Question 'make', if a rebuild is needed.</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="5533" /> <source><b>Test for Changes</b><p>This questions 'make', if a rebuild of the configured target is necessary.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5551" /> + <location filename="../Project/Project.py" line="5548" /> <source>Create SBOM File</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5552" /> + <location filename="../Project/Project.py" line="5549" /> <source>Create &SBOM File</source> <translation type="unfinished" /> </message> <message> + <location filename="../Project/Project.py" line="5556" /> + <source>Create a SBOM file of the project dependencies.</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../Project/Project.py" line="5559" /> - <source>Create a SBOM file of the project dependencies.</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="5562" /> <source><b>Create SBOM File</b><p>This allows the creation of a SBOM file of the project dependencies. This may be based on various input sources and will be saved as a CycloneDX SBOM file.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5573" /> + <location filename="../Project/Project.py" line="5570" /> <source>Clear Byte Code Caches</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5574" /> + <location filename="../Project/Project.py" line="5571" /> <source>Clear Byte Code &Caches</source> <translation type="unfinished" /> </message> <message> + <location filename="../Project/Project.py" line="5578" /> + <source>Clear the byte code caches of the project.</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../Project/Project.py" line="5581" /> - <source>Clear the byte code caches of the project.</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="5584" /> <source><b>Clear Byte Code Caches</b><p>This deletes all directories containing byte code cache files.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5600" /> + <location filename="../Project/Project.py" line="5597" /> <source>About Black</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5601" /> + <location filename="../Project/Project.py" line="5598" /> <source>&Black</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5607" /> + <location filename="../Project/Project.py" line="5604" /> <source>Show some information about 'Black'.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5609" /> + <location filename="../Project/Project.py" line="5606" /> <source><b>Black</b><p>This shows some information about the installed 'Black' tool.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5621" /> + <location filename="../Project/Project.py" line="5618" /> <source>Format Code</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5622" /> + <location filename="../Project/Project.py" line="5619" /> <source>&Format Code</source> <translation type="unfinished" /> </message> <message> + <location filename="../Project/Project.py" line="5626" /> + <source>Format the project sources with 'Black'.</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../Project/Project.py" line="5629" /> - <source>Format the project sources with 'Black'.</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="5632" /> <source><b>Format Code</b><p>This shows a dialog to enter parameters for the formatting run and reformats the project sources using 'Black'.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5644" /> + <location filename="../Project/Project.py" line="5641" /> <source>Check Code Formatting</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5645" /> + <location filename="../Project/Project.py" line="5642" /> <source>&Check Code Formatting</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5652" /> + <location filename="../Project/Project.py" line="5649" /> <source>Check, if the project sources need to be reformatted with 'Black'.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5657" /> + <location filename="../Project/Project.py" line="5654" /> <source><b>Check Code Formatting</b><p>This shows a dialog to enter parameters for the format check run and performs a check, if the project sources need to be reformatted using 'Black'.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5670" /> + <location filename="../Project/Project.py" line="5667" /> <source>Code Formatting Diff</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5671" /> + <location filename="../Project/Project.py" line="5668" /> <source>Code Formatting &Diff</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5678" /> + <location filename="../Project/Project.py" line="5675" /> <source>Generate a unified diff of potential project source reformatting with 'Black'.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5684" /> + <location filename="../Project/Project.py" line="5681" /> <source><b>Diff Code Formatting</b><p>This shows a dialog to enter parameters for the format diff run and generates a unified diff of potential project source reformatting using 'Black'.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5849" /> - <location filename="../Project/Project.py" line="5799" /> - <location filename="../Project/Project.py" line="5798" /> - <location filename="../Project/Project.py" line="5698" /> - <location filename="../Project/Project.py" line="5697" /> + <location filename="../Project/Project.py" line="5846" /> + <location filename="../Project/Project.py" line="5796" /> + <location filename="../Project/Project.py" line="5795" /> + <location filename="../Project/Project.py" line="5695" /> + <location filename="../Project/Project.py" line="5694" /> <source>Configure</source> <translation type="unfinished">Konfigurovat</translation> </message> <message> - <location filename="../Project/Project.py" line="5705" /> + <location filename="../Project/Project.py" line="5702" /> <source>Enter the parameters for formatting the project sources with 'Black'.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5710" /> + <location filename="../Project/Project.py" line="5707" /> <source><b>Configure</b><p>This shows a dialog to enter the parameters for formatting the project sources with 'Black'.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5726" /> + <location filename="../Project/Project.py" line="5723" /> <source>About isort</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5727" /> + <location filename="../Project/Project.py" line="5724" /> <source>&isort</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5733" /> + <location filename="../Project/Project.py" line="5730" /> <source>Show some information about 'isort'.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5735" /> + <location filename="../Project/Project.py" line="5732" /> <source><b>isort</b><p>This shows some information about the installed 'isort' tool.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5748" /> - <location filename="../Project/Project.py" line="5747" /> + <location filename="../Project/Project.py" line="5745" /> + <location filename="../Project/Project.py" line="5744" /> <source>Sort Imports</source> <translation type="unfinished" /> </message> <message> + <location filename="../Project/Project.py" line="5752" /> + <source>Sort the import statements of the project sources with 'isort'.</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../Project/Project.py" line="5755" /> - <source>Sort the import statements of the project sources with 'isort'.</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="5758" /> <source><b>Sort Imports</b><p>This shows a dialog to enter parameters for the imports sorting run and sorts the import statements of the project sources using 'isort'.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5772" /> - <location filename="../Project/Project.py" line="5771" /> + <location filename="../Project/Project.py" line="5769" /> + <location filename="../Project/Project.py" line="5768" /> <source>Imports Sorting Diff</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5779" /> + <location filename="../Project/Project.py" line="5776" /> <source>Generate a unified diff of potential project source imports resorting with 'isort'.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5785" /> + <location filename="../Project/Project.py" line="5782" /> <source><b>Imports Sorting Diff</b><p>This shows a dialog to enter parameters for the imports sorting diff run and generates a unified diff of potential project source changes using 'isort'.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5806" /> + <location filename="../Project/Project.py" line="5803" /> <source>Enter the parameters for resorting the project sources import statements with 'isort'.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5812" /> + <location filename="../Project/Project.py" line="5809" /> <source><b>Configure</b><p>This shows a dialog to enter the parameters for resorting the import statements of the project sources with 'isort'.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5828" /> + <location filename="../Project/Project.py" line="5825" /> <source>Install Project</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5829" /> + <location filename="../Project/Project.py" line="5826" /> <source>&Install Project</source> <translation type="unfinished" /> </message> <message> + <location filename="../Project/Project.py" line="5833" /> + <source>Install the project into the embedded environment.</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../Project/Project.py" line="5836" /> - <source>Install the project into the embedded environment.</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="5839" /> <source><b>Install Project</b><p>This installs the project into the embedded virtual environment in editable mode (i.e. development mode).</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5850" /> + <location filename="../Project/Project.py" line="5847" /> <source>&Configure</source> <translation type="unfinished" /> </message> <message> + <location filename="../Project/Project.py" line="5854" /> + <source>Configure the embedded environment.</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../Project/Project.py" line="5857" /> - <source>Configure the embedded environment.</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="5860" /> <source><b>Configure</b><p>This opens a dialog to configure the embedded virtual environment of the project.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5870" /> + <location filename="../Project/Project.py" line="5867" /> <source>Upgrade</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5871" /> + <location filename="../Project/Project.py" line="5868" /> <source>&Upgrade</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5877" /> + <location filename="../Project/Project.py" line="5874" /> <source>Upgrade the embedded environment.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5879" /> + <location filename="../Project/Project.py" line="5876" /> <source><b>Upgrade</b><p>This opens a dialog to enter the parameters to upgrade the embedded virtual environment of the project.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5891" /> + <location filename="../Project/Project.py" line="5888" /> <source>Recreate</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5892" /> + <location filename="../Project/Project.py" line="5889" /> <source>&Recreate</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5898" /> + <location filename="../Project/Project.py" line="5895" /> <source>Recreate the embedded environment.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5900" /> + <location filename="../Project/Project.py" line="5897" /> <source><b>Recreate</b><p>This opens a dialog to enter the parameters to recreate the embedded virtual environment of the project. The existing environment is cleared first.</p></source> <translation type="unfinished" /> </message> <message> + <location filename="../Project/Project.py" line="5929" /> + <source>&Project</source> + <translation>&Projekt</translation> + </message> + <message> + <location filename="../Project/Project.py" line="5930" /> + <source>Open &Recent Projects</source> + <translation>Otevřít poslední p&rojekty</translation> + </message> + <message> <location filename="../Project/Project.py" line="5932" /> - <source>&Project</source> - <translation>&Projekt</translation> + <source>Session</source> + <translation>Relace</translation> </message> <message> <location filename="../Project/Project.py" line="5933" /> - <source>Open &Recent Projects</source> - <translation>Otevřít poslední p&rojekty</translation> - </message> - <message> - <location filename="../Project/Project.py" line="5935" /> - <source>Session</source> - <translation>Relace</translation> + <source>Debugger</source> + <translation /> + </message> + <message> + <location filename="../Project/Project.py" line="5934" /> + <source>Embedded Environment</source> + <translation type="unfinished" /> </message> <message> <location filename="../Project/Project.py" line="5936" /> - <source>Debugger</source> - <translation /> + <source>Project-T&ools</source> + <translation type="unfinished" /> </message> <message> <location filename="../Project/Project.py" line="5937" /> - <source>Embedded Environment</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="5939" /> - <source>Project-T&ools</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="5940" /> <source>&Version Control</source> <translation>Kontrola &verzí</translation> </message> <message> - <location filename="../Project/Project.py" line="5944" /> + <location filename="../Project/Project.py" line="5941" /> <source>Chec&k</source> <translation>Zkontro&lovat</translation> </message> <message> + <location filename="../Project/Project.py" line="5943" /> + <source>Code &Formatting</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Project/Project.py" line="5945" /> + <source>Sho&w</source> + <translation>Zo&brazit</translation> + </message> + <message> <location filename="../Project/Project.py" line="5946" /> - <source>Code &Formatting</source> - <translation type="unfinished" /> + <source>&Diagrams</source> + <translation>&Diagramy</translation> + </message> + <message> + <location filename="../Project/Project.py" line="5947" /> + <source>Pac&kagers</source> + <translation>Balíč&ky</translation> </message> <message> <location filename="../Project/Project.py" line="5948" /> - <source>Sho&w</source> - <translation>Zo&brazit</translation> - </message> - <message> - <location filename="../Project/Project.py" line="5949" /> - <source>&Diagrams</source> - <translation>&Diagramy</translation> + <source>Source &Documentation</source> + <translation>Zd&rojová dokumentace</translation> </message> <message> <location filename="../Project/Project.py" line="5950" /> - <source>Pac&kagers</source> - <translation>Balíč&ky</translation> + <source>Make</source> + <translation type="unfinished" /> </message> <message> <location filename="../Project/Project.py" line="5951" /> - <source>Source &Documentation</source> - <translation>Zd&rojová dokumentace</translation> - </message> - <message> - <location filename="../Project/Project.py" line="5953" /> - <source>Make</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="5954" /> <source>Other Tools</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6116" /> - <location filename="../Project/Project.py" line="6114" /> + <location filename="../Project/Project.py" line="6113" /> + <location filename="../Project/Project.py" line="6111" /> <source>Project</source> <translation>Projekt</translation> </message> <message> - <location filename="../Project/Project.py" line="6198" /> + <location filename="../Project/Project.py" line="6195" /> <source>&Clear</source> <translation>&Vyčistit</translation> </message> <message> - <location filename="../Project/Project.py" line="6395" /> + <location filename="../Project/Project.py" line="6392" /> <source>Search New Files</source> <translation>Hledat nové soubory</translation> </message> <message> - <location filename="../Project/Project.py" line="6396" /> + <location filename="../Project/Project.py" line="6393" /> <source>There were no new files found to be added.</source> <translation>Nebyly nalezeny žádné soubory, které je možné přidat.</translation> </message> <message> - <location filename="../Project/Project.py" line="6557" /> - <location filename="../Project/Project.py" line="6544" /> + <location filename="../Project/Project.py" line="6554" /> + <location filename="../Project/Project.py" line="6541" /> <source>Version Control System</source> <translation>Version Control System</translation> </message> <message> - <location filename="../Project/Project.py" line="6545" /> + <location filename="../Project/Project.py" line="6542" /> <source><p>The selected VCS <b>{0}</b> could not be found. <br/>Reverting override.</p><p>{1}</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6558" /> + <location filename="../Project/Project.py" line="6555" /> <source><p>The selected VCS <b>{0}</b> could not be found.<br/>Disabling version control.</p><p>{1}</p></source> <translation><p>Vybrané VCS <b>{0}</b> nebylo nalezeno.<br/>Kontrola verzí vypnuta.</p><p>{1}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="6715" /> + <location filename="../Project/Project.py" line="6712" /> <source>Coverage Data</source> <translation>Datové pokrytí</translation> </message> <message> - <location filename="../Project/Project.py" line="6769" /> - <location filename="../Project/Project.py" line="6716" /> + <location filename="../Project/Project.py" line="6766" /> + <location filename="../Project/Project.py" line="6713" /> <source>There is no main script defined for the current project. Aborting</source> <translation>V aktuálním projektu nebyl určen hlavní skript. Zrušeno</translation> </message> <message> - <location filename="../Project/Project.py" line="6728" /> + <location filename="../Project/Project.py" line="6725" /> <source>Code Coverage</source> <translation>Pokrytí kódu</translation> </message> <message> - <location filename="../Project/Project.py" line="6729" /> + <location filename="../Project/Project.py" line="6726" /> <source>Please select a coverage file</source> <translation>Prosím, vyberte soubor pokrytí</translation> </message> <message> - <location filename="../Project/Project.py" line="6782" /> + <location filename="../Project/Project.py" line="6779" /> <source>Please select a profile file</source> <translation>Prosím, vyberte soubor s profilem</translation> </message> <message> - <location filename="../Project/Project.py" line="6834" /> + <location filename="../Project/Project.py" line="6831" /> <source>Include module names?</source> <translation>Včetně jmen modulů?</translation> </message> <message> - <location filename="../Project/Project.py" line="6947" /> + <location filename="../Project/Project.py" line="6944" /> <source><p>The file <b>PKGLIST</b> already exists.</p><p>Overwrite it?</p></source> <translation><p>Soubor <b>PKGLIST</b> již existuje.</p><p>Přepsat jej?</p></translation> </message> <message> - <location filename="../Project/Project.py" line="7002" /> + <location filename="../Project/Project.py" line="6999" /> <source><p>The file <b>PKGLIST</b> could not be created.</p><p>Reason: {0}</p></source> <translation><p>Soubor <b>PKGLIST</b> nelze vytvořit.</p><p>Důvod: {0}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="7298" /> - <location filename="../Project/Project.py" line="7254" /> - <location filename="../Project/Project.py" line="7204" /> - <location filename="../Project/Project.py" line="7193" /> - <location filename="../Project/Project.py" line="7175" /> - <location filename="../Project/Project.py" line="7142" /> - <location filename="../Project/Project.py" line="7112" /> - <location filename="../Project/Project.py" line="7084" /> - <location filename="../Project/Project.py" line="7054" /> - <location filename="../Project/Project.py" line="7040" /> - <location filename="../Project/Project.py" line="7023" /> + <location filename="../Project/Project.py" line="7295" /> + <location filename="../Project/Project.py" line="7251" /> + <location filename="../Project/Project.py" line="7201" /> + <location filename="../Project/Project.py" line="7190" /> + <location filename="../Project/Project.py" line="7172" /> + <location filename="../Project/Project.py" line="7139" /> + <location filename="../Project/Project.py" line="7109" /> + <location filename="../Project/Project.py" line="7081" /> + <location filename="../Project/Project.py" line="7051" /> + <location filename="../Project/Project.py" line="7037" /> + <location filename="../Project/Project.py" line="7020" /> <source>Create Plugin Archive</source> <translation>Vytvořit Plugin archiv</translation> </message> <message> - <location filename="../Project/Project.py" line="7024" /> + <location filename="../Project/Project.py" line="7021" /> <source>The project does not have a main script defined. Aborting...</source> <translation>Projekt nemá definován hlavní skript. Zrušeno...</translation> </message> <message> - <location filename="../Project/Project.py" line="7041" /> + <location filename="../Project/Project.py" line="7038" /> <source>Select package lists:</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="7055" /> + <location filename="../Project/Project.py" line="7052" /> <source><p>No package list files (PKGLIST*) available or selected. Aborting...</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="7063" /> + <location filename="../Project/Project.py" line="7060" /> <source>Creating plugin archives...</source> <translation type="unfinished" /> </message> <message> + <location filename="../Project/Project.py" line="7061" /> + <source>Abort</source> + <translation type="unfinished">Přerušit</translation> + </message> + <message> <location filename="../Project/Project.py" line="7064" /> - <source>Abort</source> - <translation type="unfinished">Přerušit</translation> - </message> - <message> - <location filename="../Project/Project.py" line="7067" /> <source>%v/%m Archives</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="7085" /> + <location filename="../Project/Project.py" line="7082" /> <source><p>The file <b>{0}</b> could not be read.</p><p>Reason: {1}</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="7113" /> + <location filename="../Project/Project.py" line="7110" /> <source><p>The file <b>{0}</b> is not ready yet.</p><p>Please rework it and delete the'; initial_list' line of the header.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="7143" /> + <location filename="../Project/Project.py" line="7140" /> <source><p>The eric plugin archive file <b>{0}</b> could not be created.</p><p>Reason: {1}</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="7176" /> + <location filename="../Project/Project.py" line="7173" /> <source><p>The file <b>{0}</b> could not be stored in the archive. Ignoring it.</p><p>Reason: {1}</p></source> <translation><p>Soubor <b>{0}</b> nelze uložit do archivu. Ingorováno.</p><p>Důvod: {1}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="7194" /> + <location filename="../Project/Project.py" line="7191" /> <source><p>The eric plugin archive files were created with some errors.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="7205" /> + <location filename="../Project/Project.py" line="7202" /> <source><p>The eric plugin archive files were created successfully.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="7255" /> + <location filename="../Project/Project.py" line="7252" /> <source><p>The plugin file <b>{0}</b> could not be read.</p><p>Reason: {1}</p></source> <translation><p>Plugin soubor <b>{0}</b> nelze přečíst.</p><p>Důvod: {1}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="7299" /> + <location filename="../Project/Project.py" line="7296" /> <source><p>The plugin file <b>{0}</b> could not be read.</p> <p>Reason: {1}</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="7391" /> + <location filename="../Project/Project.py" line="7388" /> <source>'Make' is not supported for remote projects. Aborting...</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="7439" /> + <location filename="../Project/Project.py" line="7436" /> <source>The make process did not start.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="7485" /> + <location filename="../Project/Project.py" line="7482" /> <source>The make process crashed.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="7493" /> + <location filename="../Project/Project.py" line="7490" /> <source><p>There are changes that require the configured make target <b>{0}</b> to be rebuilt.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="7498" /> + <location filename="../Project/Project.py" line="7495" /> <source><p>There are changes that require the default make target to be rebuilt.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="7514" /> + <location filename="../Project/Project.py" line="7511" /> <source>The makefile contains errors.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="7944" /> + <location filename="../Project/Project.py" line="7941" /> <source>Interpreter Missing</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="7945" /> + <location filename="../Project/Project.py" line="7942" /> <source>The configured interpreter of the embedded environment does not exist anymore. Shall the environment be upgraded?</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="8026" /> + <location filename="../Project/Project.py" line="8023" /> <source>Open Remote Project</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="8057" /> - <location filename="../Project/Project.py" line="8042" /> + <location filename="../Project/Project.py" line="8054" /> + <location filename="../Project/Project.py" line="8039" /> <source>Save Remote Project</source> <translation type="unfinished" /> </message> @@ -64498,8 +64511,8 @@ <translation>VCS Status</translation> </message> <message> - <location filename="../Project/ProjectBrowserModel.py" line="922" /> - <location filename="../Project/ProjectBrowserModel.py" line="900" /> + <location filename="../Project/ProjectBrowserModel.py" line="926" /> + <location filename="../Project/ProjectBrowserModel.py" line="904" /> <location filename="../Project/ProjectBrowserModel.py" line="548" /> <location filename="../Project/ProjectBrowserModel.py" line="418" /> <source>local</source> @@ -68986,7 +68999,7 @@ <context> <name>PythonDisViewer</name> <message> - <location filename="../UI/PythonDisViewer.py" line="61" /> + <location filename="../UI/PythonDisViewer.py" line="62" /> <location filename="../UI/PythonDisViewer.ui" line="0" /> <source>Disassembly</source> <translation type="unfinished" /> @@ -69002,160 +69015,160 @@ <translation type="unfinished" /> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="73" /> + <location filename="../UI/PythonDisViewer.py" line="74" /> <source>Line</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="74" /> - <source>Offset</source> - <translation type="unfinished">Ofset</translation> - </message> - <message> <location filename="../UI/PythonDisViewer.py" line="75" /> - <source>Operation</source> - <translation type="unfinished" /> + <source>Offset</source> + <translation type="unfinished">Ofset</translation> </message> <message> <location filename="../UI/PythonDisViewer.py" line="76" /> - <source>Parameters</source> + <source>Operation</source> <translation type="unfinished" /> </message> <message> <location filename="../UI/PythonDisViewer.py" line="77" /> + <source>Parameters</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/PythonDisViewer.py" line="78" /> <source>Interpreted Parameters</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="80" /> + <location filename="../UI/PythonDisViewer.py" line="81" /> <source>Key</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="80" /> + <location filename="../UI/PythonDisViewer.py" line="81" /> <source>Value</source> <translation type="unfinished">Hodnota</translation> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="85" /> + <location filename="../UI/PythonDisViewer.py" line="86" /> <source>Show Code Info</source> <translation type="unfinished" /> </message> <message> + <location filename="../UI/PythonDisViewer.py" line="97" /> + <location filename="../UI/PythonDisViewer.py" line="89" /> + <source>Expand All</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/PythonDisViewer.py" line="99" /> + <location filename="../UI/PythonDisViewer.py" line="90" /> + <source>Collapse All</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/PythonDisViewer.py" line="102" /> + <location filename="../UI/PythonDisViewer.py" line="92" /> + <source>Configure...</source> + <translation type="unfinished">Konfigurovat...</translation> + </message> + <message> <location filename="../UI/PythonDisViewer.py" line="96" /> - <location filename="../UI/PythonDisViewer.py" line="88" /> - <source>Expand All</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/PythonDisViewer.py" line="98" /> - <location filename="../UI/PythonDisViewer.py" line="89" /> - <source>Collapse All</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/PythonDisViewer.py" line="101" /> - <location filename="../UI/PythonDisViewer.py" line="91" /> - <source>Configure...</source> - <translation type="unfinished">Konfigurovat...</translation> - </message> - <message> - <location filename="../UI/PythonDisViewer.py" line="95" /> <source>Hide</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="448" /> + <location filename="../UI/PythonDisViewer.py" line="455" /> <source>No editor has been opened.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="459" /> + <location filename="../UI/PythonDisViewer.py" line="466" /> <source>The current editor does not contain any source code.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="465" /> + <location filename="../UI/PythonDisViewer.py" line="472" /> <source>The current editor does not contain Python source code.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="509" /> + <location filename="../UI/PythonDisViewer.py" line="516" /> <source>Disassembly of last traceback</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="672" /> + <location filename="../UI/PythonDisViewer.py" line="694" /> <source>Code Object '{0}'</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="784" /> + <location filename="../UI/PythonDisViewer.py" line="806" /> <source>Name</source> <translation type="unfinished">Jméno</translation> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="786" /> + <location filename="../UI/PythonDisViewer.py" line="808" /> <source>Filename</source> <translation type="unfinished">Jméno souboru</translation> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="790" /> - <source>First Line</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/PythonDisViewer.py" line="794" /> - <source>Argument Count</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/PythonDisViewer.py" line="799" /> - <source>Positional-only Arguments</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/PythonDisViewer.py" line="805" /> - <source>Keyword-only Arguments</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/PythonDisViewer.py" line="809" /> - <source>Number of Locals</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../UI/PythonDisViewer.py" line="812" /> - <source>Stack Size</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/PythonDisViewer.py" line="814" /> - <source>Flags</source> + <source>First Line</source> <translation type="unfinished" /> </message> <message> <location filename="../UI/PythonDisViewer.py" line="816" /> + <source>Argument Count</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/PythonDisViewer.py" line="821" /> + <source>Positional-only Arguments</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/PythonDisViewer.py" line="827" /> + <source>Keyword-only Arguments</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/PythonDisViewer.py" line="831" /> + <source>Number of Locals</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/PythonDisViewer.py" line="834" /> + <source>Stack Size</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/PythonDisViewer.py" line="836" /> + <source>Flags</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/PythonDisViewer.py" line="838" /> <source>Constants</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="818" /> + <location filename="../UI/PythonDisViewer.py" line="840" /> <source>Names</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="820" /> + <location filename="../UI/PythonDisViewer.py" line="842" /> <source>Variable Names</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="822" /> + <location filename="../UI/PythonDisViewer.py" line="844" /> <source>Free Variables</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="824" /> + <location filename="../UI/PythonDisViewer.py" line="846" /> <source>Cell Variables</source> <translation type="unfinished" /> </message> @@ -74295,32 +74308,32 @@ <context> <name>SessionFile</name> <message> - <location filename="../Sessions/SessionFile.py" line="247" /> + <location filename="../Sessions/SessionFile.py" line="249" /> <source>Save Remote Session</source> <translation type="unfinished" /> </message> <message> - <location filename="../Sessions/SessionFile.py" line="250" /> + <location filename="../Sessions/SessionFile.py" line="252" /> <source>Save Session</source> <translation type="unfinished" /> </message> <message> - <location filename="../Sessions/SessionFile.py" line="258" /> + <location filename="../Sessions/SessionFile.py" line="260" /> <source><p>The session file <b>{0}</b> could not be written.</p><p>Reason: {1}</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Sessions/SessionFile.py" line="282" /> + <location filename="../Sessions/SessionFile.py" line="284" /> <source>Read Remote Session</source> <translation type="unfinished" /> </message> <message> - <location filename="../Sessions/SessionFile.py" line="285" /> + <location filename="../Sessions/SessionFile.py" line="287" /> <source>Read Session</source> <translation type="unfinished" /> </message> <message> - <location filename="../Sessions/SessionFile.py" line="293" /> + <location filename="../Sessions/SessionFile.py" line="295" /> <source><p>The session file <b>{0}</b> could not be read.</p><p>Reason: {1}</p></source> <translation type="unfinished" /> </message> @@ -94477,547 +94490,547 @@ <context> <name>ViewManager</name> <message> - <location filename="../ViewManager/ViewManager.py" line="615" /> + <location filename="../ViewManager/ViewManager.py" line="625" /> <source>New</source> <translation>Nový</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="617" /> + <location filename="../ViewManager/ViewManager.py" line="627" /> <source>&New</source> <translation>&Nový</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="619" /> - <source>Ctrl+N</source> - <comment>File|New</comment> - <translation /> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="626" /> - <source>Open an empty editor window</source> - <translation>Otevřít prázdné editační okno</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="629" /> + <source>Ctrl+N</source> + <comment>File|New</comment> + <translation /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="636" /> + <source>Open an empty editor window</source> + <translation>Otevřít prázdné editační okno</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="639" /> <source><b>New</b><p>An empty editor window will be created.</p></source> <translation><b>Nový</b> <p>Bude otevřeno prázdné editační okno.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="638" /> + <location filename="../ViewManager/ViewManager.py" line="648" /> <source>Open</source> <translation>Otevřít</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="640" /> + <location filename="../ViewManager/ViewManager.py" line="650" /> <source>&Open...</source> <translation>&Otevřít...</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="642" /> - <source>Ctrl+O</source> - <comment>File|Open</comment> - <translation /> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="649" /> - <source>Open a file</source> - <translation>Otevřít soubor</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="652" /> + <source>Ctrl+O</source> + <comment>File|Open</comment> + <translation /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="659" /> + <source>Open a file</source> + <translation>Otevřít soubor</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="662" /> <source><b>Open a file</b><p>You will be asked for the name of a file to be opened in an editor window.</p></source> <translation><b>Otevřít soubor</b> <p>Budete dotázáni na jméno souboru, který se má otevřít do editačního okna.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="663" /> + <location filename="../ViewManager/ViewManager.py" line="673" /> <source>Open (Remote)</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="665" /> - <source>Open (Remote)...</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="672" /> - <source>Open a remote file</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="675" /> + <source>Open (Remote)...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="682" /> + <source>Open a remote file</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="685" /> <source><b>Open a remote file</b><p>You will be asked for the name of a remote file to be opened in an editor window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="689" /> - <location filename="../ViewManager/ViewManager.py" line="687" /> - <source>Reload</source> - <translation type="unfinished">Obnovit</translation> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="696" /> - <source>Reload the current file</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="699" /> + <location filename="../ViewManager/ViewManager.py" line="697" /> + <source>Reload</source> + <translation type="unfinished">Obnovit</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="706" /> + <source>Reload the current file</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="709" /> <source><b>Reload</b><p>Reload the contents of current editor window. If the editor contents was modified, a warning will be issued.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="712" /> + <location filename="../ViewManager/ViewManager.py" line="722" /> <source>Close</source> <translation>Zavřít</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="714" /> + <location filename="../ViewManager/ViewManager.py" line="724" /> <source>&Close</source> <translation>&Zavřít</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="716" /> - <source>Ctrl+W</source> - <comment>File|Close</comment> - <translation /> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="723" /> - <source>Close the current window</source> - <translation>Zavřít aktuální okno</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="726" /> + <source>Ctrl+W</source> + <comment>File|Close</comment> + <translation /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="733" /> + <source>Close the current window</source> + <translation>Zavřít aktuální okno</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="736" /> <source><b>Close Window</b><p>Close the current window.</p></source> <translation><b>Zavřít okno</b> <p>Zavřít aktuální okno.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="735" /> + <location filename="../ViewManager/ViewManager.py" line="745" /> <source>Close All</source> <translation>Zavřít vše</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="736" /> - <source>Clos&e All</source> - <translation>Zavřít vš&e</translation> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="743" /> - <source>Close all editor windows</source> - <translation>Zavřít všechny editační okna</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="746" /> + <source>Clos&e All</source> + <translation>Zavřít vš&e</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="753" /> + <source>Close all editor windows</source> + <translation>Zavřít všechny editační okna</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="756" /> <source><b>Close All Windows</b><p>Close all editor windows.</p></source> <translation><b>Zavřít všechna okna</b> <p>Zavřít všechna editační okna.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="759" /> + <location filename="../ViewManager/ViewManager.py" line="769" /> <source>Save</source> <translation>Uložit</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="761" /> + <location filename="../ViewManager/ViewManager.py" line="771" /> <source>&Save</source> <translation>&Uložit</translation> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="316" /> - <location filename="../ViewManager/ViewManager.py" line="763" /> + <location filename="../ViewManager/ViewManager.py" line="773" /> <source>Ctrl+S</source> <comment>File|Save</comment> <translation /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="770" /> + <location filename="../ViewManager/ViewManager.py" line="780" /> <source>Save the current file</source> <translation>Uložit aktuální soubor</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="773" /> - <source><b>Save File</b><p>Save the contents of current editor window.</p></source> - <translation><b>Uložit soubor</b> -<p>Uložit obsah aktuálního editačního okna.</p></translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="783" /> + <source><b>Save File</b><p>Save the contents of current editor window.</p></source> + <translation><b>Uložit soubor</b> +<p>Uložit obsah aktuálního editačního okna.</p></translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="793" /> <source>Save as</source> <translation>Uložit jako</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="785" /> + <location filename="../ViewManager/ViewManager.py" line="795" /> <source>Save &as...</source> <translation>U&ložit jako...</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="787" /> + <location filename="../ViewManager/ViewManager.py" line="797" /> <source>Shift+Ctrl+S</source> <comment>File|Save As</comment> <translation /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="796" /> + <location filename="../ViewManager/ViewManager.py" line="806" /> <source>Save the current file to a new one</source> <translation>Uložit aktuální soubor do nového</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="801" /> + <location filename="../ViewManager/ViewManager.py" line="811" /> <source><b>Save File as</b><p>Save the contents of the current editor window to a new file. The file can be entered in a file selection dialog.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="812" /> + <location filename="../ViewManager/ViewManager.py" line="822" /> <source>Save as (Remote)</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="814" /> + <location filename="../ViewManager/ViewManager.py" line="824" /> <source>Save as (Remote)...</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="821" /> + <location filename="../ViewManager/ViewManager.py" line="831" /> <source>Save the current file to a new one on an eric-ide server</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="827" /> + <location filename="../ViewManager/ViewManager.py" line="837" /> <source><b>Save File as (Remote)</b><p>Save the contents of the current editor window to a new file on the connected eric-ide server. The file can be entered in a file selection dialog.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="839" /> + <location filename="../ViewManager/ViewManager.py" line="849" /> <source>Save Copy</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="841" /> - <source>Save &Copy...</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="848" /> - <source>Save a copy of the current file</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="851" /> + <source>Save &Copy...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="858" /> + <source>Save a copy of the current file</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="861" /> <source><b>Save Copy</b><p>Save a copy of the contents of current editor window. The file can be entered in a file selection dialog.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="862" /> + <location filename="../ViewManager/ViewManager.py" line="872" /> <source>Save all</source> <translation>Uložit vše</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="864" /> - <source>Save a&ll</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="871" /> - <source>Save all files</source> - <translation>Uložit všechny soubory</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="874" /> + <source>Save a&ll</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="881" /> + <source>Save all files</source> + <translation>Uložit všechny soubory</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="884" /> <source><b>Save All Files</b><p>Save the contents of all editor windows.</p></source> <translation><b>Uložit všechny soubory</b> <p>Uložit obsah všech editačních oken.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="886" /> + <location filename="../ViewManager/ViewManager.py" line="896" /> <source>Print</source> <translation>Tisk</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="888" /> + <location filename="../ViewManager/ViewManager.py" line="898" /> <source>&Print</source> <translation>&Tisk</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="890" /> - <source>Ctrl+P</source> - <comment>File|Print</comment> - <translation /> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="897" /> - <source>Print the current file</source> - <translation>Tisk aktuálního souboru</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="900" /> + <source>Ctrl+P</source> + <comment>File|Print</comment> + <translation /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="907" /> + <source>Print the current file</source> + <translation>Tisk aktuálního souboru</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="910" /> <source><b>Print File</b><p>Print the contents of current editor window.</p></source> <translation><b>Tisk souboru</b> <p>Tisk obsahu aktuálního editačního okna.</p></translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="780" /> - <location filename="../ViewManager/ViewManager.py" line="913" /> - <location filename="../ViewManager/ViewManager.py" line="911" /> + <location filename="../ViewManager/ViewManager.py" line="923" /> + <location filename="../ViewManager/ViewManager.py" line="921" /> <source>Print Preview</source> <translation>Náhled tisku</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="920" /> + <location filename="../ViewManager/ViewManager.py" line="930" /> <source>Print preview of the current file</source> <translation>Náhled tisku aktuálního souboru</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="925" /> + <location filename="../ViewManager/ViewManager.py" line="935" /> <source><b>Print Preview</b><p>Print preview of the current editor window.</p></source> <translation><b>Náhled tisku</b><p>Náhled tisku aktuálního editačního okna.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="936" /> + <location filename="../ViewManager/ViewManager.py" line="946" /> <source>Find File</source> <translation type="unfinished">Hledat soubor</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="938" /> + <location filename="../ViewManager/ViewManager.py" line="948" /> <source>Find &File...</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="940" /> + <location filename="../ViewManager/ViewManager.py" line="950" /> <source>Alt+Ctrl+F</source> <comment>File|Find File</comment> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="949" /> + <location filename="../ViewManager/ViewManager.py" line="959" /> <source>Search for a file by entering a search pattern</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="954" /> + <location filename="../ViewManager/ViewManager.py" line="964" /> <source><b>Find File</b><p>This searches for a file by entering a search pattern.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="970" /> + <location filename="../ViewManager/ViewManager.py" line="980" /> <source>&File</source> <translation>S&oubor</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="972" /> + <location filename="../ViewManager/ViewManager.py" line="982" /> <source>Open &Recent Files</source> <translation>Otevřít poslední soubo&ry</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="976" /> + <location filename="../ViewManager/ViewManager.py" line="986" /> <source>Open &Bookmarked Files</source> <translation>Otevřít sou&bory ze záložek</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1024" /> - <location filename="../ViewManager/ViewManager.py" line="1022" /> + <location filename="../ViewManager/ViewManager.py" line="1034" /> + <location filename="../ViewManager/ViewManager.py" line="1032" /> <source>File</source> <translation>Soubor</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1051" /> + <location filename="../ViewManager/ViewManager.py" line="1061" /> <source>Export as</source> <translation>Exportovat jako</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1074" /> + <location filename="../ViewManager/ViewManager.py" line="1084" /> <source>Undo</source> <translation>Undo</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1076" /> + <location filename="../ViewManager/ViewManager.py" line="1086" /> <source>&Undo</source> <translation>&Vrátit</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1078" /> + <location filename="../ViewManager/ViewManager.py" line="1088" /> <source>Ctrl+Z</source> <comment>Edit|Undo</comment> <translation /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1081" /> + <location filename="../ViewManager/ViewManager.py" line="1091" /> <source>Alt+Backspace</source> <comment>Edit|Undo</comment> <translation /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1087" /> + <location filename="../ViewManager/ViewManager.py" line="1097" /> <source>Undo the last change</source> <translation>Vrátit poslední změnu</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1090" /> + <location filename="../ViewManager/ViewManager.py" line="1100" /> <source><b>Undo</b><p>Undo the last change done in the current editor.</p></source> <translation><b>Undo</b> <p>Vrátit poslední změnu v aktuálním editačním okně.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1100" /> + <location filename="../ViewManager/ViewManager.py" line="1110" /> <source>Redo</source> <translation>Redo</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1102" /> + <location filename="../ViewManager/ViewManager.py" line="1112" /> <source>&Redo</source> <translation>&Znovu použít</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1104" /> - <source>Ctrl+Shift+Z</source> - <comment>Edit|Redo</comment> - <translation /> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="1111" /> - <source>Redo the last change</source> - <translation>Znovu použít poslední změnu</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="1114" /> + <source>Ctrl+Shift+Z</source> + <comment>Edit|Redo</comment> + <translation /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="1121" /> + <source>Redo the last change</source> + <translation>Znovu použít poslední změnu</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="1124" /> <source><b>Redo</b><p>Redo the last change done in the current editor.</p></source> <translation><b>Redo</b> <p>Znovu použít poslení změnu, která byla provedena v aktuálním editačním okně.</p></translation> </message> <message> + <location filename="../ViewManager/ViewManager.py" line="1144" /> <location filename="../ViewManager/ViewManager.py" line="1134" /> - <location filename="../ViewManager/ViewManager.py" line="1124" /> <source>Revert to last saved state</source> <translation>Vrátit se k poslednímu uloženému stavu</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1125" /> + <location filename="../ViewManager/ViewManager.py" line="1135" /> <source>Re&vert to last saved state</source> <translation>Vrátit se k &poslednímu uloženému stavu</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1127" /> - <source>Ctrl+Y</source> - <comment>Edit|Revert</comment> - <translation /> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="1137" /> + <source>Ctrl+Y</source> + <comment>Edit|Revert</comment> + <translation /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="1147" /> <source><b>Revert to last saved state</b><p>Undo all changes up to the last saved state of the current editor.</p></source> <translation><b>Vrátit poslwední uložený stav</b> <p>Zruší všechny změny, které byly provedeny od posledního uložení.</p></translation> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="343" /> - <location filename="../ViewManager/ViewManager.py" line="1150" /> + <location filename="../ViewManager/ViewManager.py" line="1160" /> <source>Cut</source> <translation>Vyjmout</translation> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="345" /> - <location filename="../ViewManager/ViewManager.py" line="1152" /> + <location filename="../ViewManager/ViewManager.py" line="1162" /> <source>Cu&t</source> <translation>Vyjmou&t</translation> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="347" /> - <location filename="../ViewManager/ViewManager.py" line="1154" /> + <location filename="../ViewManager/ViewManager.py" line="1164" /> <source>Ctrl+X</source> <comment>Edit|Cut</comment> <translation /> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="350" /> - <location filename="../ViewManager/ViewManager.py" line="1157" /> + <location filename="../ViewManager/ViewManager.py" line="1167" /> <source>Shift+Del</source> <comment>Edit|Cut</comment> <translation /> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="356" /> - <location filename="../ViewManager/ViewManager.py" line="1163" /> + <location filename="../ViewManager/ViewManager.py" line="1173" /> <source>Cut the selection</source> <translation>Vyjmout výběr</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1166" /> + <location filename="../ViewManager/ViewManager.py" line="1176" /> <source><b>Cut</b><p>Cut the selected text of the current editor to the clipboard.</p></source> <translation><b>Vyjmout</b> <p>Vyjme vybraný text z aktuálního editačního okna a vloží jej do schránky.</p></translation> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="365" /> - <location filename="../ViewManager/ViewManager.py" line="1177" /> + <location filename="../ViewManager/ViewManager.py" line="1187" /> <source>Copy</source> <translation>Kopírovat</translation> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="367" /> - <location filename="../ViewManager/ViewManager.py" line="1179" /> + <location filename="../ViewManager/ViewManager.py" line="1189" /> <source>&Copy</source> <translation>&Kopírovat</translation> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="369" /> - <location filename="../ViewManager/ViewManager.py" line="1181" /> + <location filename="../ViewManager/ViewManager.py" line="1191" /> <source>Ctrl+C</source> <comment>Edit|Copy</comment> <translation /> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="372" /> - <location filename="../ViewManager/ViewManager.py" line="1184" /> + <location filename="../ViewManager/ViewManager.py" line="1194" /> <source>Ctrl+Ins</source> <comment>Edit|Copy</comment> <translation /> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="378" /> - <location filename="../ViewManager/ViewManager.py" line="1190" /> + <location filename="../ViewManager/ViewManager.py" line="1200" /> <source>Copy the selection</source> <translation>Kopírovat výběr</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1193" /> + <location filename="../ViewManager/ViewManager.py" line="1203" /> <source><b>Copy</b><p>Copy the selected text of the current editor to the clipboard.</p></source> <translation><b>Kopírovat</b> <p>Zkopíruje vybraný text v aktuálním editačním okně a uloží jej do schránky.</p></translation> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="387" /> - <location filename="../ViewManager/ViewManager.py" line="1204" /> + <location filename="../ViewManager/ViewManager.py" line="1214" /> <source>Paste</source> <translation>Vložit</translation> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="389" /> - <location filename="../ViewManager/ViewManager.py" line="1206" /> + <location filename="../ViewManager/ViewManager.py" line="1216" /> <source>&Paste</source> <translation>V&ložit</translation> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="391" /> - <location filename="../ViewManager/ViewManager.py" line="1208" /> + <location filename="../ViewManager/ViewManager.py" line="1218" /> <source>Ctrl+V</source> <comment>Edit|Paste</comment> <translation /> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="394" /> - <location filename="../ViewManager/ViewManager.py" line="1211" /> + <location filename="../ViewManager/ViewManager.py" line="1221" /> <source>Shift+Ins</source> <comment>Edit|Paste</comment> <translation /> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="400" /> - <location filename="../ViewManager/ViewManager.py" line="1217" /> + <location filename="../ViewManager/ViewManager.py" line="1227" /> <source>Paste the last cut/copied text</source> <translation>Vložit text ze schránky</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1220" /> + <location filename="../ViewManager/ViewManager.py" line="1230" /> <source><b>Paste</b><p>Paste the last cut/copied text from the clipboard to the current editor.</p></source> <translation><b>Vložit</b> <p>Vloží text, který byl uložen do schránky při předchozím kroku Vyjmout nebo Kopírovat.</p></translation> @@ -95025,527 +95038,527 @@ <message> <location filename="../QScintilla/ShellWindow.py" line="414" /> <location filename="../QScintilla/ShellWindow.py" line="412" /> - <location filename="../ViewManager/ViewManager.py" line="1233" /> - <location filename="../ViewManager/ViewManager.py" line="1231" /> + <location filename="../ViewManager/ViewManager.py" line="1243" /> + <location filename="../ViewManager/ViewManager.py" line="1241" /> <source>Clear</source> <translation>Vyčistit</translation> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="416" /> - <location filename="../ViewManager/ViewManager.py" line="1235" /> + <location filename="../ViewManager/ViewManager.py" line="1245" /> <source>Alt+Shift+C</source> <comment>Edit|Clear</comment> <translation /> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="423" /> - <location filename="../ViewManager/ViewManager.py" line="1242" /> + <location filename="../ViewManager/ViewManager.py" line="1252" /> <source>Clear all text</source> <translation>Vyčistit všechen text</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1245" /> + <location filename="../ViewManager/ViewManager.py" line="1255" /> <source><b>Clear</b><p>Delete all text of the current editor.</p></source> <translation><b>Vyčistit</b> <p>Smazat všechnen text v aktuálním editoru.</p></translation> </message> <message> + <location filename="../ViewManager/ViewManager.py" line="1274" /> + <location filename="../ViewManager/ViewManager.py" line="1265" /> <location filename="../ViewManager/ViewManager.py" line="1264" /> - <location filename="../ViewManager/ViewManager.py" line="1255" /> - <location filename="../ViewManager/ViewManager.py" line="1254" /> <source>Join Lines</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1257" /> - <source>Ctrl+J</source> - <comment>Edit|Join Lines</comment> - <translation type="unfinished" /> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="1267" /> - <source><b>Join Lines</b><p>Join the current and the next lines.</p></source> + <source>Ctrl+J</source> + <comment>Edit|Join Lines</comment> <translation type="unfinished" /> </message> <message> <location filename="../ViewManager/ViewManager.py" line="1277" /> + <source><b>Join Lines</b><p>Join the current and the next lines.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="1287" /> <source>Indent</source> <translation>Odsadit</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1279" /> + <location filename="../ViewManager/ViewManager.py" line="1289" /> <source>&Indent</source> <translation>Odsad&it</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1281" /> - <source>Ctrl+I</source> - <comment>Edit|Indent</comment> - <translation /> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="1288" /> - <source>Indent line</source> - <translation>Odsadit řádek</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="1291" /> + <source>Ctrl+I</source> + <comment>Edit|Indent</comment> + <translation /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="1298" /> + <source>Indent line</source> + <translation>Odsadit řádek</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="1301" /> <source><b>Indent</b><p>Indents the current line or the lines of the selection by one level.</p></source> <translation><b>Odsadit</b> <p>Odsadí aktuální řádek nebo vybrané řádky o jednu úroveň.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1302" /> + <location filename="../ViewManager/ViewManager.py" line="1312" /> <source>Unindent</source> <translation>Zrušit odsazení</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1304" /> + <location filename="../ViewManager/ViewManager.py" line="1314" /> <source>U&nindent</source> <translation>Zrušit odsaze&ní</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1306" /> + <location filename="../ViewManager/ViewManager.py" line="1316" /> <source>Ctrl+Shift+I</source> <comment>Edit|Unindent</comment> <translation /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1315" /> + <location filename="../ViewManager/ViewManager.py" line="1325" /> <source>Unindent line</source> <translation>Zrušit odsazení řádku</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1318" /> + <location filename="../ViewManager/ViewManager.py" line="1328" /> <source><b>Unindent</b><p>Unindents the current line or the lines of the selection by one level.</p></source> <translation><b>Zrušit odsazení</b> <p>Zruší odsazení akruálního řádku nebo vybraných řádků o jednu úroveň.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1331" /> - <location filename="../ViewManager/ViewManager.py" line="1329" /> + <location filename="../ViewManager/ViewManager.py" line="1341" /> + <location filename="../ViewManager/ViewManager.py" line="1339" /> <source>Smart indent</source> <translation>Chytré odsazení</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1338" /> + <location filename="../ViewManager/ViewManager.py" line="1348" /> <source>Smart indent Line or Selection</source> <translation>Chytré odsazení řádku nebo výběru</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1341" /> + <location filename="../ViewManager/ViewManager.py" line="1351" /> <source><b>Smart indent</b><p>Indents the current line or the lines of the current selection smartly.</p></source> <translation><b>Chytré odsazení</b> <p>Odsadí aktuální řádek nebo výběr podle významu předchozího kódu.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1352" /> + <location filename="../ViewManager/ViewManager.py" line="1362" /> <source>Comment</source> <translation>Vytvořit Komentář</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1354" /> + <location filename="../ViewManager/ViewManager.py" line="1364" /> <source>C&omment</source> <translation>Vytvořit K&omentář</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1356" /> - <source>Ctrl+M</source> - <comment>Edit|Comment</comment> - <translation /> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="1363" /> - <source>Comment Line or Selection</source> - <translation>Vytvořit z řádky nebo výběru komentář</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="1366" /> + <source>Ctrl+M</source> + <comment>Edit|Comment</comment> + <translation /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="1373" /> + <source>Comment Line or Selection</source> + <translation>Vytvořit z řádky nebo výběru komentář</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="1376" /> <source><b>Comment</b><p>Comments the current line or the lines of the current selection.</p></source> <translation><b>Komentář</b> <p>Z aktuální řádky nebo vybraných řádků vytvoří komentář.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1377" /> + <location filename="../ViewManager/ViewManager.py" line="1387" /> <source>Uncomment</source> <translation>Zrušit komentář</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1379" /> + <location filename="../ViewManager/ViewManager.py" line="1389" /> <source>Unco&mment</source> <translation>Zrušit ko&mentář</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1381" /> + <location filename="../ViewManager/ViewManager.py" line="1391" /> <source>Ctrl+Shift+M</source> <comment>Edit|Uncomment</comment> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1390" /> + <location filename="../ViewManager/ViewManager.py" line="1400" /> <source>Uncomment Line or Selection</source> <translation>Zrušit komentář na řádce nebo výběru</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1393" /> + <location filename="../ViewManager/ViewManager.py" line="1403" /> <source><b>Uncomment</b><p>Uncomments the current line or the lines of the current selection.</p></source> <translation><b>Zrušit komentář</b> <p>Zruší komentář na aktuálním řádku nebo výběru.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1406" /> - <location filename="../ViewManager/ViewManager.py" line="1404" /> + <location filename="../ViewManager/ViewManager.py" line="1416" /> + <location filename="../ViewManager/ViewManager.py" line="1414" /> <source>Toggle Comment</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1408" /> + <location filename="../ViewManager/ViewManager.py" line="1418" /> <source>Ctrl+#</source> <comment>Edit|Toggle Comment</comment> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1417" /> + <location filename="../ViewManager/ViewManager.py" line="1427" /> <source>Toggle the comment of the current line, selection or comment block</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1423" /> + <location filename="../ViewManager/ViewManager.py" line="1433" /> <source><b>Toggle Comment</b><p>If the current line does not start with a block comment, the current line or selection is commented. If it is already commented, this comment block is uncommented. </p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1436" /> - <location filename="../ViewManager/ViewManager.py" line="1435" /> + <location filename="../ViewManager/ViewManager.py" line="1446" /> + <location filename="../ViewManager/ViewManager.py" line="1445" /> <source>Stream Comment</source> <translation>Stream komentář</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1443" /> + <location filename="../ViewManager/ViewManager.py" line="1453" /> <source>Stream Comment Line or Selection</source> <translation>Steram komentář řádky nebo výběru</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1448" /> + <location filename="../ViewManager/ViewManager.py" line="1458" /> <source><b>Stream Comment</b><p>Stream comments the current line or the current selection.</p></source> <translation><b>Stream komentář</b> <p>Stream zakomentuje aktuální řádku nebo výběr.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1460" /> - <location filename="../ViewManager/ViewManager.py" line="1459" /> + <location filename="../ViewManager/ViewManager.py" line="1470" /> + <location filename="../ViewManager/ViewManager.py" line="1469" /> <source>Box Comment</source> <translation>Box komentář</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1467" /> + <location filename="../ViewManager/ViewManager.py" line="1477" /> <source>Box Comment Line or Selection</source> <translation>Box komentář řádku nebo výběru</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1470" /> + <location filename="../ViewManager/ViewManager.py" line="1480" /> <source><b>Box Comment</b><p>Box comments the current line or the lines of the current selection.</p></source> <translation><b>Box komentář</b> <p>Bok komentář vytvoří komnetář z aktuálního řádku nebo výběru.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1481" /> + <location filename="../ViewManager/ViewManager.py" line="1491" /> <source>Select to brace</source> <translation>Vybrat obsah závorek</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1482" /> + <location filename="../ViewManager/ViewManager.py" line="1492" /> <source>Select to &brace</source> <translation>Vy&brat obsah závorek</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1484" /> + <location filename="../ViewManager/ViewManager.py" line="1494" /> <source>Ctrl+E</source> <comment>Edit|Select to brace</comment> <translation /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1493" /> + <location filename="../ViewManager/ViewManager.py" line="1503" /> <source>Select text to the matching brace</source> <translation>Výběr textu, který je mezi závorkami</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1498" /> + <location filename="../ViewManager/ViewManager.py" line="1508" /> <source><b>Select to brace</b><p>Select text of the current editor to the matching brace.</p></source> <translation><b>Vybrat obsah závorek</b><p>Vybere se text, který se nachází mezi závorkami.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1509" /> + <location filename="../ViewManager/ViewManager.py" line="1519" /> <source>Select all</source> <translation>Vybrat vše</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1511" /> + <location filename="../ViewManager/ViewManager.py" line="1521" /> <source>&Select all</source> <translation>Vybrat vš&e</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1513" /> - <source>Ctrl+A</source> - <comment>Edit|Select all</comment> - <translation /> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="1520" /> - <source>Select all text</source> - <translation>Vybrat všechen text</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="1523" /> - <source><b>Select All</b><p>Select all text of the current editor.</p></source> - <translation><b>Vybrat vše</b><p>Vybere se všechen text v aktuálním editoru.</p></translation> + <source>Ctrl+A</source> + <comment>Edit|Select all</comment> + <translation /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="1530" /> + <source>Select all text</source> + <translation>Vybrat všechen text</translation> </message> <message> <location filename="../ViewManager/ViewManager.py" line="1533" /> + <source><b>Select All</b><p>Select all text of the current editor.</p></source> + <translation><b>Vybrat vše</b><p>Vybere se všechen text v aktuálním editoru.</p></translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="1543" /> <source>Deselect all</source> <translation>Zrušit celý výběr</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1534" /> + <location filename="../ViewManager/ViewManager.py" line="1544" /> <source>&Deselect all</source> <translation>Z&rušit celý výběr</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1536" /> + <location filename="../ViewManager/ViewManager.py" line="1546" /> <source>Alt+Ctrl+A</source> <comment>Edit|Deselect all</comment> <translation /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1545" /> + <location filename="../ViewManager/ViewManager.py" line="1555" /> <source>Deselect all text</source> <translation>Zrušit výběr</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1548" /> + <location filename="../ViewManager/ViewManager.py" line="1558" /> <source><b>Deselect All</b><p>Deselect all text of the current editor.</p></source> <translation><b>Zrušit výběr</b><p>Zruší výběr textu v aktuálním editoru.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1566" /> - <location filename="../ViewManager/ViewManager.py" line="1559" /> - <location filename="../ViewManager/ViewManager.py" line="1558" /> + <location filename="../ViewManager/ViewManager.py" line="1576" /> + <location filename="../ViewManager/ViewManager.py" line="1569" /> + <location filename="../ViewManager/ViewManager.py" line="1568" /> <source>Convert Line End Characters</source> <translation>Konvertovat znaky konce řádků</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1569" /> + <location filename="../ViewManager/ViewManager.py" line="1579" /> <source><b>Convert Line End Characters</b><p>Convert the line end characters to the currently set type.</p></source> <translation><b>Konvertovet znaky konce řádků</b> <p>Konvertuje znaky konců řádků na aktuální nastavený typ.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1588" /> - <location filename="../ViewManager/ViewManager.py" line="1581" /> - <location filename="../ViewManager/ViewManager.py" line="1580" /> - <source>Convert Tabs to Spaces</source> - <translation type="unfinished" /> - </message> - <message> + <location filename="../ViewManager/ViewManager.py" line="1598" /> <location filename="../ViewManager/ViewManager.py" line="1591" /> + <location filename="../ViewManager/ViewManager.py" line="1590" /> + <source>Convert Tabs to Spaces</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="1601" /> <source><b>Convert Tabs to Spaces</b><p>Convert tabulators to the configured amount of space characters.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1610" /> - <location filename="../ViewManager/ViewManager.py" line="1603" /> - <location filename="../ViewManager/ViewManager.py" line="1602" /> + <location filename="../ViewManager/ViewManager.py" line="1620" /> + <location filename="../ViewManager/ViewManager.py" line="1613" /> + <location filename="../ViewManager/ViewManager.py" line="1612" /> <source>Shorten empty lines</source> <translation>Zkrátit prázdné řádky</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1613" /> + <location filename="../ViewManager/ViewManager.py" line="1623" /> <source><b>Shorten empty lines</b><p>Shorten lines consisting solely of whitespace characters.</p></source> <translation><b>Zkrátit prázné řádky</b> <p>Zkrátí řádky, které obsabují jen prázdné znaky.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3497" /> - <location filename="../ViewManager/ViewManager.py" line="1624" /> + <location filename="../ViewManager/ViewManager.py" line="3507" /> + <location filename="../ViewManager/ViewManager.py" line="1634" /> <source>Complete</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1625" /> + <location filename="../ViewManager/ViewManager.py" line="1635" /> <source>&Complete</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1627" /> - <source>Ctrl+Space</source> - <comment>Edit|Complete</comment> - <translation type="unfinished" /> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="1634" /> - <source>Complete current word</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="1637" /> + <source>Ctrl+Space</source> + <comment>Edit|Complete</comment> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="1644" /> + <source>Complete current word</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="1647" /> <source><b>Complete</b><p>Performs a completion of the word containing the cursor.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1649" /> - <location filename="../ViewManager/ViewManager.py" line="1648" /> + <location filename="../ViewManager/ViewManager.py" line="1659" /> + <location filename="../ViewManager/ViewManager.py" line="1658" /> <source>Complete from Document</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1651" /> + <location filename="../ViewManager/ViewManager.py" line="1661" /> <source>Ctrl+Shift+Space</source> <comment>Edit|Complete from Document</comment> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1660" /> + <location filename="../ViewManager/ViewManager.py" line="1670" /> <source>Complete current word from Document</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1665" /> + <location filename="../ViewManager/ViewManager.py" line="1675" /> <source><b>Complete from Document</b><p>Performs a completion from document of the word containing the cursor.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1677" /> - <location filename="../ViewManager/ViewManager.py" line="1676" /> + <location filename="../ViewManager/ViewManager.py" line="1687" /> + <location filename="../ViewManager/ViewManager.py" line="1686" /> <source>Complete from APIs</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1679" /> + <location filename="../ViewManager/ViewManager.py" line="1689" /> <source>Ctrl+Alt+Space</source> <comment>Edit|Complete from APIs</comment> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1688" /> + <location filename="../ViewManager/ViewManager.py" line="1698" /> <source>Complete current word from APIs</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1691" /> + <location filename="../ViewManager/ViewManager.py" line="1701" /> <source><b>Complete from APIs</b><p>Performs a completion from APIs of the word containing the cursor.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1705" /> - <location filename="../ViewManager/ViewManager.py" line="1702" /> + <location filename="../ViewManager/ViewManager.py" line="1715" /> + <location filename="../ViewManager/ViewManager.py" line="1712" /> <source>Complete from Document and APIs</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1709" /> + <location filename="../ViewManager/ViewManager.py" line="1719" /> <source>Alt+Shift+Space</source> <comment>Edit|Complete from Document and APIs</comment> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1720" /> + <location filename="../ViewManager/ViewManager.py" line="1730" /> <source>Complete current word from Document and APIs</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1725" /> + <location filename="../ViewManager/ViewManager.py" line="1735" /> <source><b>Complete from Document and APIs</b><p>Performs a completion from document and APIs of the word containing the cursor.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1736" /> + <location filename="../ViewManager/ViewManager.py" line="1746" /> <source>Calltip</source> <translation>Rychlé tipy</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1737" /> + <location filename="../ViewManager/ViewManager.py" line="1747" /> <source>&Calltip</source> <translation>&Rychlé tipy</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1739" /> + <location filename="../ViewManager/ViewManager.py" line="1749" /> <source>Meta+Alt+Space</source> <comment>Edit|Calltip</comment> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1748" /> + <location filename="../ViewManager/ViewManager.py" line="1758" /> <source>Show Calltips</source> <translation>Zobrazit Rychlé tipy</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1751" /> + <location filename="../ViewManager/ViewManager.py" line="1761" /> <source><b>Calltip</b><p>Show calltips based on the characters immediately to the left of the cursor.</p></source> <translation><b>Rychlé tipy</b><p>Zobrazit Rychlé typy založené na znacích hned vlevo vedle kurzoru.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1764" /> - <location filename="../ViewManager/ViewManager.py" line="1762" /> + <location filename="../ViewManager/ViewManager.py" line="1774" /> + <location filename="../ViewManager/ViewManager.py" line="1772" /> <source>Code Info</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1766" /> + <location filename="../ViewManager/ViewManager.py" line="1776" /> <source>Ctrl+Alt+I</source> <comment>Edit|Code Info</comment> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1775" /> + <location filename="../ViewManager/ViewManager.py" line="1785" /> <source>Show Code Info</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1778" /> + <location filename="../ViewManager/ViewManager.py" line="1788" /> <source><b>Code Info</b><p>Show code information based on the cursor position.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1789" /> - <location filename="../ViewManager/ViewManager.py" line="1788" /> + <location filename="../ViewManager/ViewManager.py" line="1799" /> + <location filename="../ViewManager/ViewManager.py" line="1798" /> <source>Sort</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1791" /> + <location filename="../ViewManager/ViewManager.py" line="1801" /> <source>Ctrl+Alt+S</source> <comment>Edit|Sort</comment> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1798" /> + <location filename="../ViewManager/ViewManager.py" line="1808" /> <source>Sort the lines containing the rectangular selection</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1803" /> + <location filename="../ViewManager/ViewManager.py" line="1813" /> <source><b>Sort</b><p>Sort the lines spanned by a rectangular selection based on the selection ignoring leading and trailing whitespace.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1815" /> - <location filename="../ViewManager/ViewManager.py" line="1814" /> + <location filename="../ViewManager/ViewManager.py" line="1825" /> + <location filename="../ViewManager/ViewManager.py" line="1824" /> <source>Generate Docstring</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1817" /> + <location filename="../ViewManager/ViewManager.py" line="1827" /> <source>Ctrl+Alt+D</source> <comment>Edit|Generate Docstring</comment> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1826" /> + <location filename="../ViewManager/ViewManager.py" line="1836" /> <source>Generate a docstring for the current function/method</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1831" /> + <location filename="../ViewManager/ViewManager.py" line="1841" /> <source><b>Generate Docstring</b><p>Generate a docstring for the current function/method if the cursor is placed on the line starting the function definition or on the line thereafter. The docstring is inserted at the appropriate position and the cursor is placed at the end of the description line.</p></source> <translation type="unfinished" /> </message> @@ -95554,22 +95567,22 @@ <location filename="../QScintilla/MiniEditor.py" line="929" /> <location filename="../QScintilla/ShellWindow.py" line="579" /> <location filename="../QScintilla/ShellWindow.py" line="578" /> - <location filename="../ViewManager/ViewManager.py" line="1858" /> - <location filename="../ViewManager/ViewManager.py" line="1857" /> + <location filename="../ViewManager/ViewManager.py" line="1868" /> + <location filename="../ViewManager/ViewManager.py" line="1867" /> <source>Move left one character</source> <translation>Posun o jeden znak doleva</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="931" /> <location filename="../QScintilla/ShellWindow.py" line="580" /> - <location filename="../ViewManager/ViewManager.py" line="1859" /> + <location filename="../ViewManager/ViewManager.py" line="1869" /> <source>Left</source> <translation /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="939" /> <location filename="../QScintilla/ShellWindow.py" line="588" /> - <location filename="../ViewManager/ViewManager.py" line="1867" /> + <location filename="../ViewManager/ViewManager.py" line="1877" /> <source>Meta+B</source> <translation type="unfinished" /> </message> @@ -95578,22 +95591,22 @@ <location filename="../QScintilla/MiniEditor.py" line="945" /> <location filename="../QScintilla/ShellWindow.py" line="595" /> <location filename="../QScintilla/ShellWindow.py" line="594" /> - <location filename="../ViewManager/ViewManager.py" line="1874" /> - <location filename="../ViewManager/ViewManager.py" line="1873" /> + <location filename="../ViewManager/ViewManager.py" line="1884" /> + <location filename="../ViewManager/ViewManager.py" line="1883" /> <source>Move right one character</source> <translation>Posun o jeden znak doprava</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="947" /> <location filename="../QScintilla/ShellWindow.py" line="596" /> - <location filename="../ViewManager/ViewManager.py" line="1875" /> + <location filename="../ViewManager/ViewManager.py" line="1885" /> <source>Right</source> <translation /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="954" /> <location filename="../QScintilla/ShellWindow.py" line="603" /> - <location filename="../ViewManager/ViewManager.py" line="1882" /> + <location filename="../ViewManager/ViewManager.py" line="1892" /> <source>Meta+F</source> <translation type="unfinished" /> </message> @@ -95602,22 +95615,22 @@ <location filename="../QScintilla/MiniEditor.py" line="961" /> <location filename="../QScintilla/ShellWindow.py" line="687" /> <location filename="../QScintilla/ShellWindow.py" line="686" /> - <location filename="../ViewManager/ViewManager.py" line="1890" /> - <location filename="../ViewManager/ViewManager.py" line="1889" /> + <location filename="../ViewManager/ViewManager.py" line="1900" /> + <location filename="../ViewManager/ViewManager.py" line="1899" /> <source>Move up one line</source> <translation>Posun o jeden řádek nahoru</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="963" /> <location filename="../QScintilla/ShellWindow.py" line="688" /> - <location filename="../ViewManager/ViewManager.py" line="1891" /> + <location filename="../ViewManager/ViewManager.py" line="1901" /> <source>Up</source> <translation /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="970" /> <location filename="../QScintilla/ShellWindow.py" line="695" /> - <location filename="../ViewManager/ViewManager.py" line="1898" /> + <location filename="../ViewManager/ViewManager.py" line="1908" /> <source>Meta+P</source> <translation type="unfinished" /> </message> @@ -95626,30 +95639,30 @@ <location filename="../QScintilla/MiniEditor.py" line="977" /> <location filename="../QScintilla/ShellWindow.py" line="703" /> <location filename="../QScintilla/ShellWindow.py" line="702" /> - <location filename="../ViewManager/ViewManager.py" line="1906" /> - <location filename="../ViewManager/ViewManager.py" line="1905" /> + <location filename="../ViewManager/ViewManager.py" line="1916" /> + <location filename="../ViewManager/ViewManager.py" line="1915" /> <source>Move down one line</source> <translation>Posun o jeden řádek dolu</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="979" /> <location filename="../QScintilla/ShellWindow.py" line="704" /> - <location filename="../ViewManager/ViewManager.py" line="1907" /> + <location filename="../ViewManager/ViewManager.py" line="1917" /> <source>Down</source> <translation /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="986" /> <location filename="../QScintilla/ShellWindow.py" line="711" /> - <location filename="../ViewManager/ViewManager.py" line="1914" /> + <location filename="../ViewManager/ViewManager.py" line="1924" /> <source>Meta+N</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="994" /> <location filename="../QScintilla/MiniEditor.py" line="993" /> - <location filename="../ViewManager/ViewManager.py" line="1922" /> - <location filename="../ViewManager/ViewManager.py" line="1921" /> + <location filename="../ViewManager/ViewManager.py" line="1932" /> + <location filename="../ViewManager/ViewManager.py" line="1931" /> <source>Move left one word part</source> <translation>Posun o jednu část slova doleva</translation> </message> @@ -95657,16 +95670,16 @@ <location filename="../QScintilla/MiniEditor.py" line="1034" /> <location filename="../QScintilla/MiniEditor.py" line="1002" /> <location filename="../QScintilla/ShellWindow.py" line="619" /> - <location filename="../ViewManager/ViewManager.py" line="1962" /> - <location filename="../ViewManager/ViewManager.py" line="1930" /> + <location filename="../ViewManager/ViewManager.py" line="1972" /> + <location filename="../ViewManager/ViewManager.py" line="1940" /> <source>Alt+Left</source> <translation /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1010" /> <location filename="../QScintilla/MiniEditor.py" line="1009" /> - <location filename="../ViewManager/ViewManager.py" line="1938" /> - <location filename="../ViewManager/ViewManager.py" line="1937" /> + <location filename="../ViewManager/ViewManager.py" line="1948" /> + <location filename="../ViewManager/ViewManager.py" line="1947" /> <source>Move right one word part</source> <translation>Posun o jednu část slova doprava</translation> </message> @@ -95674,8 +95687,8 @@ <location filename="../QScintilla/MiniEditor.py" line="2164" /> <location filename="../QScintilla/MiniEditor.py" line="1054" /> <location filename="../QScintilla/MiniEditor.py" line="1018" /> - <location filename="../ViewManager/ViewManager.py" line="3071" /> - <location filename="../ViewManager/ViewManager.py" line="1946" /> + <location filename="../ViewManager/ViewManager.py" line="3081" /> + <location filename="../ViewManager/ViewManager.py" line="1956" /> <source>Alt+Right</source> <translation /> </message> @@ -95684,8 +95697,8 @@ <location filename="../QScintilla/MiniEditor.py" line="1025" /> <location filename="../QScintilla/ShellWindow.py" line="611" /> <location filename="../QScintilla/ShellWindow.py" line="610" /> - <location filename="../ViewManager/ViewManager.py" line="1954" /> - <location filename="../ViewManager/ViewManager.py" line="1953" /> + <location filename="../ViewManager/ViewManager.py" line="1964" /> + <location filename="../ViewManager/ViewManager.py" line="1963" /> <source>Move left one word</source> <translation>Posun o jedno slovo doleva</translation> </message> @@ -95693,8 +95706,8 @@ <location filename="../QScintilla/MiniEditor.py" line="1094" /> <location filename="../QScintilla/MiniEditor.py" line="1038" /> <location filename="../QScintilla/ShellWindow.py" line="623" /> - <location filename="../ViewManager/ViewManager.py" line="2018" /> - <location filename="../ViewManager/ViewManager.py" line="1966" /> + <location filename="../ViewManager/ViewManager.py" line="2028" /> + <location filename="../ViewManager/ViewManager.py" line="1976" /> <source>Ctrl+Left</source> <translation /> </message> @@ -95703,8 +95716,8 @@ <location filename="../QScintilla/MiniEditor.py" line="1045" /> <location filename="../QScintilla/ShellWindow.py" line="631" /> <location filename="../QScintilla/ShellWindow.py" line="630" /> - <location filename="../ViewManager/ViewManager.py" line="1974" /> - <location filename="../ViewManager/ViewManager.py" line="1973" /> + <location filename="../ViewManager/ViewManager.py" line="1984" /> + <location filename="../ViewManager/ViewManager.py" line="1983" /> <source>Move right one word</source> <translation>Posun o jedno slovo doprava</translation> </message> @@ -95712,8 +95725,8 @@ <location filename="../QScintilla/MiniEditor.py" line="1848" /> <location filename="../QScintilla/MiniEditor.py" line="1058" /> <location filename="../QScintilla/ShellWindow.py" line="639" /> - <location filename="../ViewManager/ViewManager.py" line="2755" /> - <location filename="../ViewManager/ViewManager.py" line="1982" /> + <location filename="../ViewManager/ViewManager.py" line="2765" /> + <location filename="../ViewManager/ViewManager.py" line="1992" /> <source>Ctrl+Right</source> <translation /> </message> @@ -95722,8 +95735,8 @@ <location filename="../QScintilla/MiniEditor.py" line="1065" /> <location filename="../QScintilla/ShellWindow.py" line="649" /> <location filename="../QScintilla/ShellWindow.py" line="646" /> - <location filename="../ViewManager/ViewManager.py" line="1992" /> - <location filename="../ViewManager/ViewManager.py" line="1989" /> + <location filename="../ViewManager/ViewManager.py" line="2002" /> + <location filename="../ViewManager/ViewManager.py" line="1999" /> <source>Move to first visible character in document line</source> <translation type="unfinished" /> </message> @@ -95731,22 +95744,22 @@ <location filename="../QScintilla/MiniEditor.py" line="2109" /> <location filename="../QScintilla/MiniEditor.py" line="1078" /> <location filename="../QScintilla/ShellWindow.py" line="659" /> - <location filename="../ViewManager/ViewManager.py" line="3016" /> - <location filename="../ViewManager/ViewManager.py" line="2002" /> + <location filename="../ViewManager/ViewManager.py" line="3026" /> + <location filename="../ViewManager/ViewManager.py" line="2012" /> <source>Home</source> <translation /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1086" /> <location filename="../QScintilla/MiniEditor.py" line="1085" /> - <location filename="../ViewManager/ViewManager.py" line="2010" /> - <location filename="../ViewManager/ViewManager.py" line="2009" /> + <location filename="../ViewManager/ViewManager.py" line="2020" /> + <location filename="../ViewManager/ViewManager.py" line="2019" /> <source>Move to start of display line</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1098" /> - <location filename="../ViewManager/ViewManager.py" line="2022" /> + <location filename="../ViewManager/ViewManager.py" line="2032" /> <source>Alt+Home</source> <translation /> </message> @@ -95755,15 +95768,15 @@ <location filename="../QScintilla/MiniEditor.py" line="1105" /> <location filename="../QScintilla/ShellWindow.py" line="667" /> <location filename="../QScintilla/ShellWindow.py" line="666" /> - <location filename="../ViewManager/ViewManager.py" line="2030" /> - <location filename="../ViewManager/ViewManager.py" line="2029" /> + <location filename="../ViewManager/ViewManager.py" line="2040" /> + <location filename="../ViewManager/ViewManager.py" line="2039" /> <source>Move to end of document line</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1114" /> <location filename="../QScintilla/ShellWindow.py" line="675" /> - <location filename="../ViewManager/ViewManager.py" line="2038" /> + <location filename="../ViewManager/ViewManager.py" line="2048" /> <source>Meta+E</source> <translation type="unfinished" /> </message> @@ -95771,16 +95784,16 @@ <location filename="../QScintilla/MiniEditor.py" line="2126" /> <location filename="../QScintilla/MiniEditor.py" line="1118" /> <location filename="../QScintilla/ShellWindow.py" line="679" /> - <location filename="../ViewManager/ViewManager.py" line="3033" /> - <location filename="../ViewManager/ViewManager.py" line="2042" /> + <location filename="../ViewManager/ViewManager.py" line="3043" /> + <location filename="../ViewManager/ViewManager.py" line="2052" /> <source>End</source> <translation /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1126" /> <location filename="../QScintilla/MiniEditor.py" line="1125" /> - <location filename="../ViewManager/ViewManager.py" line="2050" /> - <location filename="../ViewManager/ViewManager.py" line="2049" /> + <location filename="../ViewManager/ViewManager.py" line="2060" /> + <location filename="../ViewManager/ViewManager.py" line="2059" /> <source>Scroll view down one line</source> <translation>Posun pohledu jeden řádek dolů</translation> </message> @@ -95788,16 +95801,16 @@ <location filename="../QScintilla/MiniEditor.py" line="1230" /> <location filename="../QScintilla/MiniEditor.py" line="1127" /> <location filename="../QScintilla/ShellWindow.py" line="720" /> - <location filename="../ViewManager/ViewManager.py" line="2154" /> - <location filename="../ViewManager/ViewManager.py" line="2051" /> + <location filename="../ViewManager/ViewManager.py" line="2164" /> + <location filename="../ViewManager/ViewManager.py" line="2061" /> <source>Ctrl+Down</source> <translation /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1138" /> <location filename="../QScintilla/MiniEditor.py" line="1137" /> - <location filename="../ViewManager/ViewManager.py" line="2062" /> - <location filename="../ViewManager/ViewManager.py" line="2061" /> + <location filename="../ViewManager/ViewManager.py" line="2072" /> + <location filename="../ViewManager/ViewManager.py" line="2071" /> <source>Scroll view up one line</source> <translation>Posun pohledu o jeden řádek nahoru</translation> </message> @@ -95805,36 +95818,36 @@ <location filename="../QScintilla/MiniEditor.py" line="1210" /> <location filename="../QScintilla/MiniEditor.py" line="1139" /> <location filename="../QScintilla/ShellWindow.py" line="732" /> - <location filename="../ViewManager/ViewManager.py" line="2134" /> - <location filename="../ViewManager/ViewManager.py" line="2063" /> + <location filename="../ViewManager/ViewManager.py" line="2144" /> + <location filename="../ViewManager/ViewManager.py" line="2073" /> <source>Ctrl+Up</source> <translation /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1150" /> <location filename="../QScintilla/MiniEditor.py" line="1149" /> - <location filename="../ViewManager/ViewManager.py" line="2074" /> - <location filename="../ViewManager/ViewManager.py" line="2073" /> + <location filename="../ViewManager/ViewManager.py" line="2084" /> + <location filename="../ViewManager/ViewManager.py" line="2083" /> <source>Move up one paragraph</source> <translation>Posun na předchozí odstavec</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1151" /> - <location filename="../ViewManager/ViewManager.py" line="2075" /> + <location filename="../ViewManager/ViewManager.py" line="2085" /> <source>Alt+Up</source> <translation /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1162" /> <location filename="../QScintilla/MiniEditor.py" line="1161" /> - <location filename="../ViewManager/ViewManager.py" line="2086" /> - <location filename="../ViewManager/ViewManager.py" line="2085" /> + <location filename="../ViewManager/ViewManager.py" line="2096" /> + <location filename="../ViewManager/ViewManager.py" line="2095" /> <source>Move down one paragraph</source> <translation>Posun na následující odstavec</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1163" /> - <location filename="../ViewManager/ViewManager.py" line="2087" /> + <location filename="../ViewManager/ViewManager.py" line="2097" /> <source>Alt+Down</source> <translation /> </message> @@ -95843,15 +95856,15 @@ <location filename="../QScintilla/MiniEditor.py" line="1173" /> <location filename="../QScintilla/ShellWindow.py" line="743" /> <location filename="../QScintilla/ShellWindow.py" line="742" /> - <location filename="../ViewManager/ViewManager.py" line="2098" /> - <location filename="../ViewManager/ViewManager.py" line="2097" /> + <location filename="../ViewManager/ViewManager.py" line="2108" /> + <location filename="../ViewManager/ViewManager.py" line="2107" /> <source>Move up one page</source> <translation>Posun na předchozí stranu</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1175" /> <location filename="../QScintilla/ShellWindow.py" line="744" /> - <location filename="../ViewManager/ViewManager.py" line="2099" /> + <location filename="../ViewManager/ViewManager.py" line="2109" /> <source>PgUp</source> <translation /> </message> @@ -95860,50 +95873,50 @@ <location filename="../QScintilla/MiniEditor.py" line="1185" /> <location filename="../QScintilla/ShellWindow.py" line="755" /> <location filename="../QScintilla/ShellWindow.py" line="754" /> - <location filename="../ViewManager/ViewManager.py" line="2110" /> - <location filename="../ViewManager/ViewManager.py" line="2109" /> + <location filename="../ViewManager/ViewManager.py" line="2120" /> + <location filename="../ViewManager/ViewManager.py" line="2119" /> <source>Move down one page</source> <translation>Posun na následující stranu</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1187" /> <location filename="../QScintilla/ShellWindow.py" line="756" /> - <location filename="../ViewManager/ViewManager.py" line="2111" /> + <location filename="../ViewManager/ViewManager.py" line="2121" /> <source>PgDown</source> <translation /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1194" /> <location filename="../QScintilla/ShellWindow.py" line="763" /> - <location filename="../ViewManager/ViewManager.py" line="2118" /> + <location filename="../ViewManager/ViewManager.py" line="2128" /> <source>Meta+V</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1202" /> <location filename="../QScintilla/MiniEditor.py" line="1201" /> - <location filename="../ViewManager/ViewManager.py" line="2126" /> - <location filename="../ViewManager/ViewManager.py" line="2125" /> + <location filename="../ViewManager/ViewManager.py" line="2136" /> + <location filename="../ViewManager/ViewManager.py" line="2135" /> <source>Move to start of document</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1214" /> - <location filename="../ViewManager/ViewManager.py" line="2138" /> + <location filename="../ViewManager/ViewManager.py" line="2148" /> <source>Ctrl+Home</source> <translation /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1222" /> <location filename="../QScintilla/MiniEditor.py" line="1221" /> - <location filename="../ViewManager/ViewManager.py" line="2146" /> - <location filename="../ViewManager/ViewManager.py" line="2145" /> + <location filename="../ViewManager/ViewManager.py" line="2156" /> + <location filename="../ViewManager/ViewManager.py" line="2155" /> <source>Move to end of document</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1234" /> - <location filename="../ViewManager/ViewManager.py" line="2158" /> + <location filename="../ViewManager/ViewManager.py" line="2168" /> <source>Ctrl+End</source> <translation /> </message> @@ -95912,29 +95925,29 @@ <location filename="../QScintilla/MiniEditor.py" line="1241" /> <location filename="../QScintilla/ShellWindow.py" line="457" /> <location filename="../QScintilla/ShellWindow.py" line="456" /> - <location filename="../ViewManager/ViewManager.py" line="2166" /> - <location filename="../ViewManager/ViewManager.py" line="2165" /> + <location filename="../ViewManager/ViewManager.py" line="2176" /> + <location filename="../ViewManager/ViewManager.py" line="2175" /> <source>Indent one level</source> <translation>Odsadit o jednu úroveň</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1243" /> <location filename="../QScintilla/ShellWindow.py" line="458" /> - <location filename="../ViewManager/ViewManager.py" line="2167" /> + <location filename="../ViewManager/ViewManager.py" line="2177" /> <source>Tab</source> <translation /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1254" /> <location filename="../QScintilla/MiniEditor.py" line="1253" /> - <location filename="../ViewManager/ViewManager.py" line="2178" /> - <location filename="../ViewManager/ViewManager.py" line="2177" /> + <location filename="../ViewManager/ViewManager.py" line="2188" /> + <location filename="../ViewManager/ViewManager.py" line="2187" /> <source>Unindent one level</source> <translation>Zrušit odsazení o jednu úroveň</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1255" /> - <location filename="../ViewManager/ViewManager.py" line="2179" /> + <location filename="../ViewManager/ViewManager.py" line="2189" /> <source>Shift+Tab</source> <translation /> </message> @@ -95943,22 +95956,22 @@ <location filename="../QScintilla/MiniEditor.py" line="1265" /> <location filename="../QScintilla/ShellWindow.py" line="785" /> <location filename="../QScintilla/ShellWindow.py" line="782" /> - <location filename="../ViewManager/ViewManager.py" line="2192" /> - <location filename="../ViewManager/ViewManager.py" line="2189" /> + <location filename="../ViewManager/ViewManager.py" line="2202" /> + <location filename="../ViewManager/ViewManager.py" line="2199" /> <source>Extend selection left one character</source> <translation>Rozšířit výběr o jeden znak vlevo</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1271" /> <location filename="../QScintilla/ShellWindow.py" line="788" /> - <location filename="../ViewManager/ViewManager.py" line="2195" /> + <location filename="../ViewManager/ViewManager.py" line="2205" /> <source>Shift+Left</source> <translation /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1278" /> <location filename="../QScintilla/ShellWindow.py" line="795" /> - <location filename="../ViewManager/ViewManager.py" line="2202" /> + <location filename="../ViewManager/ViewManager.py" line="2212" /> <source>Meta+Shift+B</source> <translation type="unfinished" /> </message> @@ -95967,70 +95980,70 @@ <location filename="../QScintilla/MiniEditor.py" line="1285" /> <location filename="../QScintilla/ShellWindow.py" line="805" /> <location filename="../QScintilla/ShellWindow.py" line="802" /> - <location filename="../ViewManager/ViewManager.py" line="2212" /> - <location filename="../ViewManager/ViewManager.py" line="2209" /> + <location filename="../ViewManager/ViewManager.py" line="2222" /> + <location filename="../ViewManager/ViewManager.py" line="2219" /> <source>Extend selection right one character</source> <translation>Rozšířit výběr o jeden znak vpravo</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1291" /> <location filename="../QScintilla/ShellWindow.py" line="808" /> - <location filename="../ViewManager/ViewManager.py" line="2215" /> + <location filename="../ViewManager/ViewManager.py" line="2225" /> <source>Shift+Right</source> <translation /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1298" /> <location filename="../QScintilla/ShellWindow.py" line="815" /> - <location filename="../ViewManager/ViewManager.py" line="2222" /> + <location filename="../ViewManager/ViewManager.py" line="2232" /> <source>Meta+Shift+F</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1306" /> <location filename="../QScintilla/MiniEditor.py" line="1305" /> - <location filename="../ViewManager/ViewManager.py" line="2230" /> - <location filename="../ViewManager/ViewManager.py" line="2229" /> + <location filename="../ViewManager/ViewManager.py" line="2240" /> + <location filename="../ViewManager/ViewManager.py" line="2239" /> <source>Extend selection up one line</source> <translation>Rozšířit výběr o řádku nahoru</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1307" /> - <location filename="../ViewManager/ViewManager.py" line="2231" /> + <location filename="../ViewManager/ViewManager.py" line="2241" /> <source>Shift+Up</source> <translation /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1314" /> - <location filename="../ViewManager/ViewManager.py" line="2238" /> + <location filename="../ViewManager/ViewManager.py" line="2248" /> <source>Meta+Shift+P</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1322" /> <location filename="../QScintilla/MiniEditor.py" line="1321" /> - <location filename="../ViewManager/ViewManager.py" line="2246" /> - <location filename="../ViewManager/ViewManager.py" line="2245" /> + <location filename="../ViewManager/ViewManager.py" line="2256" /> + <location filename="../ViewManager/ViewManager.py" line="2255" /> <source>Extend selection down one line</source> <translation>Rozšířit výběr o jednu řádku dolů</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1323" /> - <location filename="../ViewManager/ViewManager.py" line="2247" /> + <location filename="../ViewManager/ViewManager.py" line="2257" /> <source>Shift+Down</source> <translation /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1330" /> - <location filename="../ViewManager/ViewManager.py" line="2254" /> + <location filename="../ViewManager/ViewManager.py" line="2264" /> <source>Meta+Shift+N</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1340" /> <location filename="../QScintilla/MiniEditor.py" line="1337" /> - <location filename="../ViewManager/ViewManager.py" line="2264" /> - <location filename="../ViewManager/ViewManager.py" line="2261" /> + <location filename="../ViewManager/ViewManager.py" line="2274" /> + <location filename="../ViewManager/ViewManager.py" line="2271" /> <source>Extend selection left one word part</source> <translation>Rozšířit výběr o jednu část slova vlevo</translation> </message> @@ -96038,16 +96051,16 @@ <location filename="../QScintilla/MiniEditor.py" line="1391" /> <location filename="../QScintilla/MiniEditor.py" line="1351" /> <location filename="../QScintilla/ShellWindow.py" line="832" /> - <location filename="../ViewManager/ViewManager.py" line="2315" /> - <location filename="../ViewManager/ViewManager.py" line="2275" /> + <location filename="../ViewManager/ViewManager.py" line="2325" /> + <location filename="../ViewManager/ViewManager.py" line="2285" /> <source>Alt+Shift+Left</source> <translation /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1362" /> <location filename="../QScintilla/MiniEditor.py" line="1359" /> - <location filename="../ViewManager/ViewManager.py" line="2286" /> - <location filename="../ViewManager/ViewManager.py" line="2283" /> + <location filename="../ViewManager/ViewManager.py" line="2296" /> + <location filename="../ViewManager/ViewManager.py" line="2293" /> <source>Extend selection right one word part</source> <translation>Rozšířit výběr o jednu část slova vpravo</translation> </message> @@ -96056,9 +96069,9 @@ <location filename="../QScintilla/MiniEditor.py" line="1419" /> <location filename="../QScintilla/MiniEditor.py" line="1373" /> <location filename="../QScintilla/ShellWindow.py" line="860" /> - <location filename="../ViewManager/ViewManager.py" line="3093" /> - <location filename="../ViewManager/ViewManager.py" line="2343" /> - <location filename="../ViewManager/ViewManager.py" line="2297" /> + <location filename="../ViewManager/ViewManager.py" line="3103" /> + <location filename="../ViewManager/ViewManager.py" line="2353" /> + <location filename="../ViewManager/ViewManager.py" line="2307" /> <source>Alt+Shift+Right</source> <translation /> </message> @@ -96067,8 +96080,8 @@ <location filename="../QScintilla/MiniEditor.py" line="1381" /> <location filename="../QScintilla/ShellWindow.py" line="823" /> <location filename="../QScintilla/ShellWindow.py" line="822" /> - <location filename="../ViewManager/ViewManager.py" line="2306" /> - <location filename="../ViewManager/ViewManager.py" line="2305" /> + <location filename="../ViewManager/ViewManager.py" line="2316" /> + <location filename="../ViewManager/ViewManager.py" line="2315" /> <source>Extend selection left one word</source> <translation>Rozšířit výběr o jedno slovo vlevo</translation> </message> @@ -96076,8 +96089,8 @@ <location filename="../QScintilla/MiniEditor.py" line="2312" /> <location filename="../QScintilla/MiniEditor.py" line="1397" /> <location filename="../QScintilla/ShellWindow.py" line="838" /> - <location filename="../ViewManager/ViewManager.py" line="3219" /> - <location filename="../ViewManager/ViewManager.py" line="2321" /> + <location filename="../ViewManager/ViewManager.py" line="3229" /> + <location filename="../ViewManager/ViewManager.py" line="2331" /> <source>Ctrl+Shift+Left</source> <translation /> </message> @@ -96086,8 +96099,8 @@ <location filename="../QScintilla/MiniEditor.py" line="1405" /> <location filename="../QScintilla/ShellWindow.py" line="849" /> <location filename="../QScintilla/ShellWindow.py" line="846" /> - <location filename="../ViewManager/ViewManager.py" line="2332" /> - <location filename="../ViewManager/ViewManager.py" line="2329" /> + <location filename="../ViewManager/ViewManager.py" line="2342" /> + <location filename="../ViewManager/ViewManager.py" line="2339" /> <source>Extend selection right one word</source> <translation>Rozšířit výběr o jedno slovo vpravo</translation> </message> @@ -96095,8 +96108,8 @@ <location filename="../QScintilla/MiniEditor.py" line="1873" /> <location filename="../QScintilla/MiniEditor.py" line="1425" /> <location filename="../QScintilla/ShellWindow.py" line="866" /> - <location filename="../ViewManager/ViewManager.py" line="2780" /> - <location filename="../ViewManager/ViewManager.py" line="2349" /> + <location filename="../ViewManager/ViewManager.py" line="2790" /> + <location filename="../ViewManager/ViewManager.py" line="2359" /> <source>Ctrl+Shift+Right</source> <translation /> </message> @@ -96105,15 +96118,15 @@ <location filename="../QScintilla/MiniEditor.py" line="1433" /> <location filename="../QScintilla/ShellWindow.py" line="878" /> <location filename="../QScintilla/ShellWindow.py" line="874" /> - <location filename="../ViewManager/ViewManager.py" line="2361" /> - <location filename="../ViewManager/ViewManager.py" line="2357" /> + <location filename="../ViewManager/ViewManager.py" line="2371" /> + <location filename="../ViewManager/ViewManager.py" line="2367" /> <source>Extend selection to first visible character in document line</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1448" /> <location filename="../QScintilla/ShellWindow.py" line="889" /> - <location filename="../ViewManager/ViewManager.py" line="2372" /> + <location filename="../ViewManager/ViewManager.py" line="2382" /> <source>Shift+Home</source> <translation /> </message> @@ -96122,124 +96135,124 @@ <location filename="../QScintilla/MiniEditor.py" line="1455" /> <location filename="../QScintilla/ShellWindow.py" line="899" /> <location filename="../QScintilla/ShellWindow.py" line="896" /> - <location filename="../ViewManager/ViewManager.py" line="2382" /> - <location filename="../ViewManager/ViewManager.py" line="2379" /> + <location filename="../ViewManager/ViewManager.py" line="2392" /> + <location filename="../ViewManager/ViewManager.py" line="2389" /> <source>Extend selection to end of document line</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1468" /> <location filename="../QScintilla/ShellWindow.py" line="909" /> - <location filename="../ViewManager/ViewManager.py" line="2392" /> + <location filename="../ViewManager/ViewManager.py" line="2402" /> <source>Meta+Shift+E</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1472" /> <location filename="../QScintilla/ShellWindow.py" line="913" /> - <location filename="../ViewManager/ViewManager.py" line="2396" /> + <location filename="../ViewManager/ViewManager.py" line="2406" /> <source>Shift+End</source> <translation /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1482" /> <location filename="../QScintilla/MiniEditor.py" line="1479" /> - <location filename="../ViewManager/ViewManager.py" line="2406" /> - <location filename="../ViewManager/ViewManager.py" line="2403" /> + <location filename="../ViewManager/ViewManager.py" line="2416" /> + <location filename="../ViewManager/ViewManager.py" line="2413" /> <source>Extend selection up one paragraph</source> <translation>Rozšířit výběr o předchozí odstavec</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1485" /> - <location filename="../ViewManager/ViewManager.py" line="2409" /> + <location filename="../ViewManager/ViewManager.py" line="2419" /> <source>Alt+Shift+Up</source> <translation /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1498" /> <location filename="../QScintilla/MiniEditor.py" line="1495" /> - <location filename="../ViewManager/ViewManager.py" line="2422" /> - <location filename="../ViewManager/ViewManager.py" line="2419" /> + <location filename="../ViewManager/ViewManager.py" line="2432" /> + <location filename="../ViewManager/ViewManager.py" line="2429" /> <source>Extend selection down one paragraph</source> <translation>Rozšířit výběr o následující odstavec</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1501" /> - <location filename="../ViewManager/ViewManager.py" line="2425" /> + <location filename="../ViewManager/ViewManager.py" line="2435" /> <source>Alt+Shift+Down</source> <translation /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1512" /> <location filename="../QScintilla/MiniEditor.py" line="1511" /> - <location filename="../ViewManager/ViewManager.py" line="2436" /> - <location filename="../ViewManager/ViewManager.py" line="2435" /> + <location filename="../ViewManager/ViewManager.py" line="2446" /> + <location filename="../ViewManager/ViewManager.py" line="2445" /> <source>Extend selection up one page</source> <translation>Rozšířit výběr na předchozí stranu</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1513" /> - <location filename="../ViewManager/ViewManager.py" line="2437" /> + <location filename="../ViewManager/ViewManager.py" line="2447" /> <source>Shift+PgUp</source> <translation /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1524" /> <location filename="../QScintilla/MiniEditor.py" line="1523" /> - <location filename="../ViewManager/ViewManager.py" line="2448" /> - <location filename="../ViewManager/ViewManager.py" line="2447" /> + <location filename="../ViewManager/ViewManager.py" line="2458" /> + <location filename="../ViewManager/ViewManager.py" line="2457" /> <source>Extend selection down one page</source> <translation>Rozšířit výběr na následující stranu</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1525" /> - <location filename="../ViewManager/ViewManager.py" line="2449" /> + <location filename="../ViewManager/ViewManager.py" line="2459" /> <source>Shift+PgDown</source> <translation /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1532" /> - <location filename="../ViewManager/ViewManager.py" line="2456" /> + <location filename="../ViewManager/ViewManager.py" line="2466" /> <source>Meta+Shift+V</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1542" /> <location filename="../QScintilla/MiniEditor.py" line="1539" /> - <location filename="../ViewManager/ViewManager.py" line="2466" /> - <location filename="../ViewManager/ViewManager.py" line="2463" /> + <location filename="../ViewManager/ViewManager.py" line="2476" /> + <location filename="../ViewManager/ViewManager.py" line="2473" /> <source>Extend selection to start of document</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1552" /> - <location filename="../ViewManager/ViewManager.py" line="2476" /> + <location filename="../ViewManager/ViewManager.py" line="2486" /> <source>Ctrl+Shift+Up</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1557" /> - <location filename="../ViewManager/ViewManager.py" line="2481" /> + <location filename="../ViewManager/ViewManager.py" line="2491" /> <source>Ctrl+Shift+Home</source> <translation /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1568" /> <location filename="../QScintilla/MiniEditor.py" line="1565" /> - <location filename="../ViewManager/ViewManager.py" line="2492" /> - <location filename="../ViewManager/ViewManager.py" line="2489" /> + <location filename="../ViewManager/ViewManager.py" line="2502" /> + <location filename="../ViewManager/ViewManager.py" line="2499" /> <source>Extend selection to end of document</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1579" /> - <location filename="../ViewManager/ViewManager.py" line="2503" /> + <location filename="../ViewManager/ViewManager.py" line="2513" /> <source>Ctrl+Shift+Down</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1585" /> - <location filename="../ViewManager/ViewManager.py" line="2509" /> + <location filename="../ViewManager/ViewManager.py" line="2519" /> <source>Ctrl+Shift+End</source> <translation /> </message> @@ -96248,37 +96261,37 @@ <location filename="../QScintilla/MiniEditor.py" line="1593" /> <location filename="../QScintilla/ShellWindow.py" line="481" /> <location filename="../QScintilla/ShellWindow.py" line="480" /> - <location filename="../ViewManager/ViewManager.py" line="2518" /> - <location filename="../ViewManager/ViewManager.py" line="2517" /> + <location filename="../ViewManager/ViewManager.py" line="2528" /> + <location filename="../ViewManager/ViewManager.py" line="2527" /> <source>Delete previous character</source> <translation>Smazat předchozí znak</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1595" /> <location filename="../QScintilla/ShellWindow.py" line="482" /> - <location filename="../ViewManager/ViewManager.py" line="2519" /> + <location filename="../ViewManager/ViewManager.py" line="2529" /> <source>Backspace</source> <translation /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1602" /> <location filename="../QScintilla/ShellWindow.py" line="489" /> - <location filename="../ViewManager/ViewManager.py" line="2526" /> + <location filename="../ViewManager/ViewManager.py" line="2536" /> <source>Meta+H</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1607" /> <location filename="../QScintilla/ShellWindow.py" line="494" /> - <location filename="../ViewManager/ViewManager.py" line="2531" /> + <location filename="../ViewManager/ViewManager.py" line="2541" /> <source>Shift+Backspace</source> <translation /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1618" /> <location filename="../QScintilla/MiniEditor.py" line="1615" /> - <location filename="../ViewManager/ViewManager.py" line="2542" /> - <location filename="../ViewManager/ViewManager.py" line="2539" /> + <location filename="../ViewManager/ViewManager.py" line="2552" /> + <location filename="../ViewManager/ViewManager.py" line="2549" /> <source>Delete previous character if not at start of line</source> <translation type="unfinished" /> </message> @@ -96287,22 +96300,22 @@ <location filename="../QScintilla/MiniEditor.py" line="1631" /> <location filename="../QScintilla/ShellWindow.py" line="503" /> <location filename="../QScintilla/ShellWindow.py" line="502" /> - <location filename="../ViewManager/ViewManager.py" line="2556" /> - <location filename="../ViewManager/ViewManager.py" line="2555" /> + <location filename="../ViewManager/ViewManager.py" line="2566" /> + <location filename="../ViewManager/ViewManager.py" line="2565" /> <source>Delete current character</source> <translation>Smazat aktuální znak</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1633" /> <location filename="../QScintilla/ShellWindow.py" line="504" /> - <location filename="../ViewManager/ViewManager.py" line="2557" /> + <location filename="../ViewManager/ViewManager.py" line="2567" /> <source>Del</source> <translation /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1640" /> <location filename="../QScintilla/ShellWindow.py" line="511" /> - <location filename="../ViewManager/ViewManager.py" line="2564" /> + <location filename="../ViewManager/ViewManager.py" line="2574" /> <source>Meta+D</source> <translation type="unfinished" /> </message> @@ -96311,15 +96324,15 @@ <location filename="../QScintilla/MiniEditor.py" line="1647" /> <location filename="../QScintilla/ShellWindow.py" line="519" /> <location filename="../QScintilla/ShellWindow.py" line="518" /> - <location filename="../ViewManager/ViewManager.py" line="2572" /> - <location filename="../ViewManager/ViewManager.py" line="2571" /> + <location filename="../ViewManager/ViewManager.py" line="2582" /> + <location filename="../ViewManager/ViewManager.py" line="2581" /> <source>Delete word to left</source> <translation>Smazat slovo doleva</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1649" /> <location filename="../QScintilla/ShellWindow.py" line="520" /> - <location filename="../ViewManager/ViewManager.py" line="2573" /> + <location filename="../ViewManager/ViewManager.py" line="2583" /> <source>Ctrl+Backspace</source> <translation /> </message> @@ -96328,15 +96341,15 @@ <location filename="../QScintilla/MiniEditor.py" line="1659" /> <location filename="../QScintilla/ShellWindow.py" line="531" /> <location filename="../QScintilla/ShellWindow.py" line="530" /> - <location filename="../ViewManager/ViewManager.py" line="2584" /> - <location filename="../ViewManager/ViewManager.py" line="2583" /> + <location filename="../ViewManager/ViewManager.py" line="2594" /> + <location filename="../ViewManager/ViewManager.py" line="2593" /> <source>Delete word to right</source> <translation>Smazat slovo doprava</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1661" /> <location filename="../QScintilla/ShellWindow.py" line="532" /> - <location filename="../ViewManager/ViewManager.py" line="2585" /> + <location filename="../ViewManager/ViewManager.py" line="2595" /> <source>Ctrl+Del</source> <translation /> </message> @@ -96345,15 +96358,15 @@ <location filename="../QScintilla/MiniEditor.py" line="1671" /> <location filename="../QScintilla/ShellWindow.py" line="543" /> <location filename="../QScintilla/ShellWindow.py" line="542" /> - <location filename="../ViewManager/ViewManager.py" line="2596" /> - <location filename="../ViewManager/ViewManager.py" line="2595" /> + <location filename="../ViewManager/ViewManager.py" line="2606" /> + <location filename="../ViewManager/ViewManager.py" line="2605" /> <source>Delete line to left</source> <translation>Smazat řádku doleva</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1674" /> <location filename="../QScintilla/ShellWindow.py" line="545" /> - <location filename="../ViewManager/ViewManager.py" line="2598" /> + <location filename="../ViewManager/ViewManager.py" line="2608" /> <source>Ctrl+Shift+Backspace</source> <translation /> </message> @@ -96362,22 +96375,22 @@ <location filename="../QScintilla/MiniEditor.py" line="1685" /> <location filename="../QScintilla/ShellWindow.py" line="557" /> <location filename="../QScintilla/ShellWindow.py" line="556" /> - <location filename="../ViewManager/ViewManager.py" line="2610" /> - <location filename="../ViewManager/ViewManager.py" line="2609" /> + <location filename="../ViewManager/ViewManager.py" line="2620" /> + <location filename="../ViewManager/ViewManager.py" line="2619" /> <source>Delete line to right</source> <translation>Smazat řádku doprava</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1694" /> <location filename="../QScintilla/ShellWindow.py" line="565" /> - <location filename="../ViewManager/ViewManager.py" line="2618" /> + <location filename="../ViewManager/ViewManager.py" line="2628" /> <source>Meta+K</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1699" /> <location filename="../QScintilla/ShellWindow.py" line="570" /> - <location filename="../ViewManager/ViewManager.py" line="2623" /> + <location filename="../ViewManager/ViewManager.py" line="2633" /> <source>Ctrl+Shift+Del</source> <translation /> </message> @@ -96386,38 +96399,38 @@ <location filename="../QScintilla/MiniEditor.py" line="1707" /> <location filename="../QScintilla/ShellWindow.py" line="469" /> <location filename="../QScintilla/ShellWindow.py" line="468" /> - <location filename="../ViewManager/ViewManager.py" line="2632" /> - <location filename="../ViewManager/ViewManager.py" line="2631" /> + <location filename="../ViewManager/ViewManager.py" line="2642" /> + <location filename="../ViewManager/ViewManager.py" line="2641" /> <source>Insert new line</source> <translation>Vložit nový řádek</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1709" /> <location filename="../QScintilla/ShellWindow.py" line="470" /> - <location filename="../ViewManager/ViewManager.py" line="2633" /> + <location filename="../ViewManager/ViewManager.py" line="2643" /> <source>Return</source> <translation /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1710" /> <location filename="../QScintilla/ShellWindow.py" line="471" /> - <location filename="../ViewManager/ViewManager.py" line="2634" /> + <location filename="../ViewManager/ViewManager.py" line="2644" /> <source>Enter</source> <translation>Enter</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="2646" /> - <location filename="../ViewManager/ViewManager.py" line="2643" /> + <location filename="../ViewManager/ViewManager.py" line="2656" /> + <location filename="../ViewManager/ViewManager.py" line="2653" /> <source>Insert new line below current line</source> <translation>Vložit nový řádek pod aktuální</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="2649" /> + <location filename="../ViewManager/ViewManager.py" line="2659" /> <source>Shift+Return</source> <translation>Shift+Return</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="2650" /> + <location filename="../ViewManager/ViewManager.py" line="2660" /> <source>Shift+Enter</source> <translation>Shift+Enter</translation> </message> @@ -96426,129 +96439,129 @@ <location filename="../QScintilla/MiniEditor.py" line="1719" /> <location filename="../QScintilla/ShellWindow.py" line="445" /> <location filename="../QScintilla/ShellWindow.py" line="444" /> - <location filename="../ViewManager/ViewManager.py" line="2659" /> - <location filename="../ViewManager/ViewManager.py" line="2658" /> + <location filename="../ViewManager/ViewManager.py" line="2669" /> + <location filename="../ViewManager/ViewManager.py" line="2668" /> <source>Delete current line</source> <translation>Smazat aktuální řádek</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1721" /> <location filename="../QScintilla/ShellWindow.py" line="446" /> - <location filename="../ViewManager/ViewManager.py" line="2660" /> + <location filename="../ViewManager/ViewManager.py" line="2670" /> <source>Ctrl+Shift+L</source> <translation /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1732" /> <location filename="../QScintilla/MiniEditor.py" line="1731" /> - <location filename="../ViewManager/ViewManager.py" line="2671" /> - <location filename="../ViewManager/ViewManager.py" line="2670" /> + <location filename="../ViewManager/ViewManager.py" line="2681" /> + <location filename="../ViewManager/ViewManager.py" line="2680" /> <source>Duplicate current line</source> <translation>Duplikovat aktuální řádek</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1733" /> - <location filename="../ViewManager/ViewManager.py" line="2672" /> + <location filename="../ViewManager/ViewManager.py" line="2682" /> <source>Ctrl+D</source> <translation /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1746" /> <location filename="../QScintilla/MiniEditor.py" line="1743" /> - <location filename="../ViewManager/ViewManager.py" line="2685" /> - <location filename="../ViewManager/ViewManager.py" line="2682" /> + <location filename="../ViewManager/ViewManager.py" line="2695" /> + <location filename="../ViewManager/ViewManager.py" line="2692" /> <source>Swap current and previous lines</source> <translation>Prohodit aktuální řádek s předchozím</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1749" /> - <location filename="../ViewManager/ViewManager.py" line="2688" /> + <location filename="../ViewManager/ViewManager.py" line="2698" /> <source>Ctrl+T</source> <translation /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1760" /> <location filename="../QScintilla/MiniEditor.py" line="1759" /> - <location filename="../ViewManager/ViewManager.py" line="2699" /> - <location filename="../ViewManager/ViewManager.py" line="2698" /> + <location filename="../ViewManager/ViewManager.py" line="2709" /> + <location filename="../ViewManager/ViewManager.py" line="2708" /> <source>Reverse selected lines</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1761" /> - <location filename="../ViewManager/ViewManager.py" line="2700" /> + <location filename="../ViewManager/ViewManager.py" line="2710" /> <source>Meta+Alt+R</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1772" /> <location filename="../QScintilla/MiniEditor.py" line="1771" /> - <location filename="../ViewManager/ViewManager.py" line="2711" /> - <location filename="../ViewManager/ViewManager.py" line="2710" /> + <location filename="../ViewManager/ViewManager.py" line="2721" /> + <location filename="../ViewManager/ViewManager.py" line="2720" /> <source>Cut current line</source> <translation>Vyjmout aktuální řádek</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1773" /> - <location filename="../ViewManager/ViewManager.py" line="2712" /> + <location filename="../ViewManager/ViewManager.py" line="2722" /> <source>Alt+Shift+L</source> <translation /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1784" /> <location filename="../QScintilla/MiniEditor.py" line="1783" /> - <location filename="../ViewManager/ViewManager.py" line="2723" /> - <location filename="../ViewManager/ViewManager.py" line="2722" /> + <location filename="../ViewManager/ViewManager.py" line="2733" /> + <location filename="../ViewManager/ViewManager.py" line="2732" /> <source>Copy current line</source> <translation>Kopírovat aktuální řádek</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1785" /> - <location filename="../ViewManager/ViewManager.py" line="2724" /> + <location filename="../ViewManager/ViewManager.py" line="2734" /> <source>Ctrl+Shift+T</source> <translation /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1796" /> <location filename="../QScintilla/MiniEditor.py" line="1795" /> - <location filename="../ViewManager/ViewManager.py" line="2735" /> - <location filename="../ViewManager/ViewManager.py" line="2734" /> + <location filename="../ViewManager/ViewManager.py" line="2745" /> + <location filename="../ViewManager/ViewManager.py" line="2744" /> <source>Toggle insert/overtype</source> <translation>Přepnout vkládání/přepisování</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1797" /> - <location filename="../ViewManager/ViewManager.py" line="2736" /> + <location filename="../ViewManager/ViewManager.py" line="2746" /> <source>Ins</source> <translation /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1840" /> <location filename="../QScintilla/MiniEditor.py" line="1839" /> - <location filename="../ViewManager/ViewManager.py" line="2747" /> - <location filename="../ViewManager/ViewManager.py" line="2746" /> + <location filename="../ViewManager/ViewManager.py" line="2757" /> + <location filename="../ViewManager/ViewManager.py" line="2756" /> <source>Move to end of display line</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1852" /> - <location filename="../ViewManager/ViewManager.py" line="2759" /> + <location filename="../ViewManager/ViewManager.py" line="2769" /> <source>Alt+End</source> <translation /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1862" /> <location filename="../QScintilla/MiniEditor.py" line="1859" /> - <location filename="../ViewManager/ViewManager.py" line="2769" /> - <location filename="../ViewManager/ViewManager.py" line="2766" /> + <location filename="../ViewManager/ViewManager.py" line="2779" /> + <location filename="../ViewManager/ViewManager.py" line="2776" /> <source>Extend selection to end of display line</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1882" /> <location filename="../QScintilla/MiniEditor.py" line="1881" /> - <location filename="../ViewManager/ViewManager.py" line="2789" /> - <location filename="../ViewManager/ViewManager.py" line="2788" /> + <location filename="../ViewManager/ViewManager.py" line="2799" /> + <location filename="../ViewManager/ViewManager.py" line="2798" /> <source>Formfeed</source> <translation /> </message> @@ -96557,163 +96570,163 @@ <location filename="../QScintilla/MiniEditor.py" line="1893" /> <location filename="../QScintilla/ShellWindow.py" line="771" /> <location filename="../QScintilla/ShellWindow.py" line="770" /> - <location filename="../ViewManager/ViewManager.py" line="2801" /> - <location filename="../ViewManager/ViewManager.py" line="2800" /> + <location filename="../ViewManager/ViewManager.py" line="2811" /> + <location filename="../ViewManager/ViewManager.py" line="2810" /> <source>Escape</source> <translation /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1895" /> <location filename="../QScintilla/ShellWindow.py" line="772" /> - <location filename="../ViewManager/ViewManager.py" line="2802" /> + <location filename="../ViewManager/ViewManager.py" line="2812" /> <source>Esc</source> <translation /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1908" /> <location filename="../QScintilla/MiniEditor.py" line="1905" /> - <location filename="../ViewManager/ViewManager.py" line="2815" /> - <location filename="../ViewManager/ViewManager.py" line="2812" /> + <location filename="../ViewManager/ViewManager.py" line="2825" /> + <location filename="../ViewManager/ViewManager.py" line="2822" /> <source>Extend rectangular selection down one line</source> <translation>Rozšířit obdélníkový výběr o řádek dolů</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1911" /> - <location filename="../ViewManager/ViewManager.py" line="2818" /> + <location filename="../ViewManager/ViewManager.py" line="2828" /> <source>Alt+Ctrl+Down</source> <translation /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1919" /> - <location filename="../ViewManager/ViewManager.py" line="2826" /> + <location filename="../ViewManager/ViewManager.py" line="2836" /> <source>Meta+Alt+Shift+N</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1930" /> <location filename="../QScintilla/MiniEditor.py" line="1927" /> - <location filename="../ViewManager/ViewManager.py" line="2837" /> - <location filename="../ViewManager/ViewManager.py" line="2834" /> + <location filename="../ViewManager/ViewManager.py" line="2847" /> + <location filename="../ViewManager/ViewManager.py" line="2844" /> <source>Extend rectangular selection up one line</source> <translation>Rozšířit obdélníkový výběr o řádek nahoru</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1933" /> - <location filename="../ViewManager/ViewManager.py" line="2840" /> + <location filename="../ViewManager/ViewManager.py" line="2850" /> <source>Alt+Ctrl+Up</source> <translation /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1941" /> - <location filename="../ViewManager/ViewManager.py" line="2848" /> + <location filename="../ViewManager/ViewManager.py" line="2858" /> <source>Meta+Alt+Shift+P</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1952" /> <location filename="../QScintilla/MiniEditor.py" line="1949" /> - <location filename="../ViewManager/ViewManager.py" line="2859" /> - <location filename="../ViewManager/ViewManager.py" line="2856" /> + <location filename="../ViewManager/ViewManager.py" line="2869" /> + <location filename="../ViewManager/ViewManager.py" line="2866" /> <source>Extend rectangular selection left one character</source> <translation>Rozšířit obdélníkový výběr o jeden znak vlevo</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1955" /> - <location filename="../ViewManager/ViewManager.py" line="2862" /> + <location filename="../ViewManager/ViewManager.py" line="2872" /> <source>Alt+Ctrl+Left</source> <translation /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1963" /> - <location filename="../ViewManager/ViewManager.py" line="2870" /> + <location filename="../ViewManager/ViewManager.py" line="2880" /> <source>Meta+Alt+Shift+B</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1974" /> <location filename="../QScintilla/MiniEditor.py" line="1971" /> - <location filename="../ViewManager/ViewManager.py" line="2881" /> - <location filename="../ViewManager/ViewManager.py" line="2878" /> + <location filename="../ViewManager/ViewManager.py" line="2891" /> + <location filename="../ViewManager/ViewManager.py" line="2888" /> <source>Extend rectangular selection right one character</source> <translation>Rozšířit obdélníkový výběr o jeden znak vpravo</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1977" /> - <location filename="../ViewManager/ViewManager.py" line="2884" /> + <location filename="../ViewManager/ViewManager.py" line="2894" /> <source>Alt+Ctrl+Right</source> <translation /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1985" /> - <location filename="../ViewManager/ViewManager.py" line="2892" /> + <location filename="../ViewManager/ViewManager.py" line="2902" /> <source>Meta+Alt+Shift+F</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1998" /> <location filename="../QScintilla/MiniEditor.py" line="1993" /> - <location filename="../ViewManager/ViewManager.py" line="2905" /> - <location filename="../ViewManager/ViewManager.py" line="2900" /> + <location filename="../ViewManager/ViewManager.py" line="2915" /> + <location filename="../ViewManager/ViewManager.py" line="2910" /> <source>Extend rectangular selection to first visible character in document line</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2011" /> - <location filename="../ViewManager/ViewManager.py" line="2918" /> + <location filename="../ViewManager/ViewManager.py" line="2928" /> <source>Alt+Shift+Home</source> <translation /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2022" /> <location filename="../QScintilla/MiniEditor.py" line="2019" /> - <location filename="../ViewManager/ViewManager.py" line="2929" /> - <location filename="../ViewManager/ViewManager.py" line="2926" /> + <location filename="../ViewManager/ViewManager.py" line="2939" /> + <location filename="../ViewManager/ViewManager.py" line="2936" /> <source>Extend rectangular selection to end of document line</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2033" /> - <location filename="../ViewManager/ViewManager.py" line="2940" /> + <location filename="../ViewManager/ViewManager.py" line="2950" /> <source>Meta+Alt+Shift+E</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2038" /> - <location filename="../ViewManager/ViewManager.py" line="2945" /> + <location filename="../ViewManager/ViewManager.py" line="2955" /> <source>Alt+Shift+End</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2048" /> <location filename="../QScintilla/MiniEditor.py" line="2045" /> - <location filename="../ViewManager/ViewManager.py" line="2955" /> - <location filename="../ViewManager/ViewManager.py" line="2952" /> + <location filename="../ViewManager/ViewManager.py" line="2965" /> + <location filename="../ViewManager/ViewManager.py" line="2962" /> <source>Extend rectangular selection up one page</source> <translation>Rozšířit obdélníkový výběr o předchozí stranu</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2051" /> - <location filename="../ViewManager/ViewManager.py" line="2958" /> + <location filename="../ViewManager/ViewManager.py" line="2968" /> <source>Alt+Shift+PgUp</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2064" /> <location filename="../QScintilla/MiniEditor.py" line="2061" /> - <location filename="../ViewManager/ViewManager.py" line="2971" /> - <location filename="../ViewManager/ViewManager.py" line="2968" /> + <location filename="../ViewManager/ViewManager.py" line="2981" /> + <location filename="../ViewManager/ViewManager.py" line="2978" /> <source>Extend rectangular selection down one page</source> <translation>Rozšířit obdélníkový výběr o následující stranu</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2067" /> - <location filename="../ViewManager/ViewManager.py" line="2974" /> + <location filename="../ViewManager/ViewManager.py" line="2984" /> <source>Alt+Shift+PgDown</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2075" /> - <location filename="../ViewManager/ViewManager.py" line="2982" /> + <location filename="../ViewManager/ViewManager.py" line="2992" /> <source>Meta+Alt+Shift+V</source> <translation type="unfinished" /> </message> @@ -96722,299 +96735,299 @@ <location filename="../QScintilla/MiniEditor.py" line="2549" /> <location filename="../QScintilla/MiniEditor.py" line="2084" /> <location filename="../QScintilla/MiniEditor.py" line="2083" /> - <location filename="../ViewManager/ViewManager.py" line="2991" /> - <location filename="../ViewManager/ViewManager.py" line="2990" /> + <location filename="../ViewManager/ViewManager.py" line="3001" /> + <location filename="../ViewManager/ViewManager.py" line="3000" /> <source>Duplicate current selection</source> <translation>Duplikovat aktuální výběr</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2551" /> <location filename="../QScintilla/MiniEditor.py" line="2085" /> - <location filename="../ViewManager/ViewManager.py" line="2992" /> + <location filename="../ViewManager/ViewManager.py" line="3002" /> <source>Ctrl+Shift+D</source> <translation /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2099" /> <location filename="../QScintilla/MiniEditor.py" line="2096" /> - <location filename="../ViewManager/ViewManager.py" line="3006" /> - <location filename="../ViewManager/ViewManager.py" line="3003" /> + <location filename="../ViewManager/ViewManager.py" line="3016" /> + <location filename="../ViewManager/ViewManager.py" line="3013" /> <source>Scroll to start of document</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2118" /> <location filename="../QScintilla/MiniEditor.py" line="2117" /> - <location filename="../ViewManager/ViewManager.py" line="3025" /> - <location filename="../ViewManager/ViewManager.py" line="3024" /> + <location filename="../ViewManager/ViewManager.py" line="3035" /> + <location filename="../ViewManager/ViewManager.py" line="3034" /> <source>Scroll to end of document</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2137" /> <location filename="../QScintilla/MiniEditor.py" line="2134" /> - <location filename="../ViewManager/ViewManager.py" line="3044" /> - <location filename="../ViewManager/ViewManager.py" line="3041" /> + <location filename="../ViewManager/ViewManager.py" line="3054" /> + <location filename="../ViewManager/ViewManager.py" line="3051" /> <source>Scroll vertically to center current line</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2147" /> - <location filename="../ViewManager/ViewManager.py" line="3054" /> + <location filename="../ViewManager/ViewManager.py" line="3064" /> <source>Meta+L</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2156" /> <location filename="../QScintilla/MiniEditor.py" line="2155" /> - <location filename="../ViewManager/ViewManager.py" line="3063" /> - <location filename="../ViewManager/ViewManager.py" line="3062" /> + <location filename="../ViewManager/ViewManager.py" line="3073" /> + <location filename="../ViewManager/ViewManager.py" line="3072" /> <source>Move to end of next word</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2175" /> <location filename="../QScintilla/MiniEditor.py" line="2172" /> - <location filename="../ViewManager/ViewManager.py" line="3082" /> - <location filename="../ViewManager/ViewManager.py" line="3079" /> + <location filename="../ViewManager/ViewManager.py" line="3092" /> + <location filename="../ViewManager/ViewManager.py" line="3089" /> <source>Extend selection to end of next word</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2198" /> <location filename="../QScintilla/MiniEditor.py" line="2195" /> - <location filename="../ViewManager/ViewManager.py" line="3105" /> - <location filename="../ViewManager/ViewManager.py" line="3102" /> + <location filename="../ViewManager/ViewManager.py" line="3115" /> + <location filename="../ViewManager/ViewManager.py" line="3112" /> <source>Move to end of previous word</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2215" /> <location filename="../QScintilla/MiniEditor.py" line="2212" /> - <location filename="../ViewManager/ViewManager.py" line="3122" /> - <location filename="../ViewManager/ViewManager.py" line="3119" /> + <location filename="../ViewManager/ViewManager.py" line="3132" /> + <location filename="../ViewManager/ViewManager.py" line="3129" /> <source>Extend selection to end of previous word</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2232" /> <location filename="../QScintilla/MiniEditor.py" line="2229" /> - <location filename="../ViewManager/ViewManager.py" line="3139" /> - <location filename="../ViewManager/ViewManager.py" line="3136" /> + <location filename="../ViewManager/ViewManager.py" line="3149" /> + <location filename="../ViewManager/ViewManager.py" line="3146" /> <source>Move to start of document line</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2242" /> - <location filename="../ViewManager/ViewManager.py" line="3149" /> + <location filename="../ViewManager/ViewManager.py" line="3159" /> <source>Meta+A</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2253" /> <location filename="../QScintilla/MiniEditor.py" line="2250" /> - <location filename="../ViewManager/ViewManager.py" line="3160" /> - <location filename="../ViewManager/ViewManager.py" line="3157" /> + <location filename="../ViewManager/ViewManager.py" line="3170" /> + <location filename="../ViewManager/ViewManager.py" line="3167" /> <source>Extend selection to start of document line</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2264" /> - <location filename="../ViewManager/ViewManager.py" line="3171" /> + <location filename="../ViewManager/ViewManager.py" line="3181" /> <source>Meta+Shift+A</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2277" /> <location filename="../QScintilla/MiniEditor.py" line="2273" /> - <location filename="../ViewManager/ViewManager.py" line="3184" /> - <location filename="../ViewManager/ViewManager.py" line="3180" /> + <location filename="../ViewManager/ViewManager.py" line="3194" /> + <location filename="../ViewManager/ViewManager.py" line="3190" /> <source>Extend rectangular selection to start of document line</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2289" /> - <location filename="../ViewManager/ViewManager.py" line="3196" /> + <location filename="../ViewManager/ViewManager.py" line="3206" /> <source>Meta+Alt+Shift+A</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2301" /> <location filename="../QScintilla/MiniEditor.py" line="2298" /> - <location filename="../ViewManager/ViewManager.py" line="3208" /> - <location filename="../ViewManager/ViewManager.py" line="3205" /> + <location filename="../ViewManager/ViewManager.py" line="3218" /> + <location filename="../ViewManager/ViewManager.py" line="3215" /> <source>Extend selection to start of display line</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2324" /> <location filename="../QScintilla/MiniEditor.py" line="2321" /> - <location filename="../ViewManager/ViewManager.py" line="3231" /> - <location filename="../ViewManager/ViewManager.py" line="3228" /> + <location filename="../ViewManager/ViewManager.py" line="3241" /> + <location filename="../ViewManager/ViewManager.py" line="3238" /> <source>Move to start of display or document line</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2342" /> <location filename="../QScintilla/MiniEditor.py" line="2338" /> - <location filename="../ViewManager/ViewManager.py" line="3249" /> - <location filename="../ViewManager/ViewManager.py" line="3245" /> + <location filename="../ViewManager/ViewManager.py" line="3259" /> + <location filename="../ViewManager/ViewManager.py" line="3255" /> <source>Extend selection to start of display or document line</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2361" /> <location filename="../QScintilla/MiniEditor.py" line="2357" /> - <location filename="../ViewManager/ViewManager.py" line="3268" /> - <location filename="../ViewManager/ViewManager.py" line="3264" /> + <location filename="../ViewManager/ViewManager.py" line="3278" /> + <location filename="../ViewManager/ViewManager.py" line="3274" /> <source>Move to first visible character in display or document line</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2381" /> <location filename="../QScintilla/MiniEditor.py" line="2376" /> - <location filename="../ViewManager/ViewManager.py" line="3288" /> - <location filename="../ViewManager/ViewManager.py" line="3283" /> + <location filename="../ViewManager/ViewManager.py" line="3298" /> + <location filename="../ViewManager/ViewManager.py" line="3293" /> <source>Extend selection to first visible character in display or document line</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2400" /> <location filename="../QScintilla/MiniEditor.py" line="2397" /> - <location filename="../ViewManager/ViewManager.py" line="3307" /> - <location filename="../ViewManager/ViewManager.py" line="3304" /> + <location filename="../ViewManager/ViewManager.py" line="3317" /> + <location filename="../ViewManager/ViewManager.py" line="3314" /> <source>Move to end of display or document line</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2417" /> <location filename="../QScintilla/MiniEditor.py" line="2414" /> - <location filename="../ViewManager/ViewManager.py" line="3324" /> - <location filename="../ViewManager/ViewManager.py" line="3321" /> + <location filename="../ViewManager/ViewManager.py" line="3334" /> + <location filename="../ViewManager/ViewManager.py" line="3331" /> <source>Extend selection to end of display or document line</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2432" /> <location filename="../QScintilla/MiniEditor.py" line="2431" /> - <location filename="../ViewManager/ViewManager.py" line="3339" /> - <location filename="../ViewManager/ViewManager.py" line="3338" /> + <location filename="../ViewManager/ViewManager.py" line="3349" /> + <location filename="../ViewManager/ViewManager.py" line="3348" /> <source>Stuttered move up one page</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2447" /> <location filename="../QScintilla/MiniEditor.py" line="2444" /> - <location filename="../ViewManager/ViewManager.py" line="3354" /> - <location filename="../ViewManager/ViewManager.py" line="3351" /> + <location filename="../ViewManager/ViewManager.py" line="3364" /> + <location filename="../ViewManager/ViewManager.py" line="3361" /> <source>Stuttered extend selection up one page</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2464" /> <location filename="../QScintilla/MiniEditor.py" line="2461" /> - <location filename="../ViewManager/ViewManager.py" line="3371" /> - <location filename="../ViewManager/ViewManager.py" line="3368" /> + <location filename="../ViewManager/ViewManager.py" line="3381" /> + <location filename="../ViewManager/ViewManager.py" line="3378" /> <source>Stuttered move down one page</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2481" /> <location filename="../QScintilla/MiniEditor.py" line="2478" /> - <location filename="../ViewManager/ViewManager.py" line="3388" /> - <location filename="../ViewManager/ViewManager.py" line="3385" /> + <location filename="../ViewManager/ViewManager.py" line="3398" /> + <location filename="../ViewManager/ViewManager.py" line="3395" /> <source>Stuttered extend selection down one page</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2498" /> <location filename="../QScintilla/MiniEditor.py" line="2495" /> - <location filename="../ViewManager/ViewManager.py" line="3405" /> - <location filename="../ViewManager/ViewManager.py" line="3402" /> + <location filename="../ViewManager/ViewManager.py" line="3415" /> + <location filename="../ViewManager/ViewManager.py" line="3412" /> <source>Delete right to end of next word</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2508" /> - <location filename="../ViewManager/ViewManager.py" line="3415" /> + <location filename="../ViewManager/ViewManager.py" line="3425" /> <source>Alt+Del</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2519" /> <location filename="../QScintilla/MiniEditor.py" line="2516" /> - <location filename="../ViewManager/ViewManager.py" line="3426" /> - <location filename="../ViewManager/ViewManager.py" line="3423" /> + <location filename="../ViewManager/ViewManager.py" line="3436" /> + <location filename="../ViewManager/ViewManager.py" line="3433" /> <source>Move selected lines up one line</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2536" /> <location filename="../QScintilla/MiniEditor.py" line="2533" /> - <location filename="../ViewManager/ViewManager.py" line="3443" /> - <location filename="../ViewManager/ViewManager.py" line="3440" /> + <location filename="../ViewManager/ViewManager.py" line="3453" /> + <location filename="../ViewManager/ViewManager.py" line="3450" /> <source>Move selected lines down one line</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1810" /> <location filename="../QScintilla/MiniEditor.py" line="1807" /> - <location filename="../ViewManager/ViewManager.py" line="3461" /> - <location filename="../ViewManager/ViewManager.py" line="3458" /> + <location filename="../ViewManager/ViewManager.py" line="3471" /> + <location filename="../ViewManager/ViewManager.py" line="3468" /> <source>Convert selection to lower case</source> <translation>Převést výběr na minusky</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1813" /> - <location filename="../ViewManager/ViewManager.py" line="3464" /> + <location filename="../ViewManager/ViewManager.py" line="3474" /> <source>Alt+Shift+U</source> <translation /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1826" /> <location filename="../QScintilla/MiniEditor.py" line="1823" /> - <location filename="../ViewManager/ViewManager.py" line="3477" /> - <location filename="../ViewManager/ViewManager.py" line="3474" /> + <location filename="../ViewManager/ViewManager.py" line="3487" /> + <location filename="../ViewManager/ViewManager.py" line="3484" /> <source>Convert selection to upper case</source> <translation>Převést výběr na verzálky</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1829" /> - <location filename="../ViewManager/ViewManager.py" line="3480" /> + <location filename="../ViewManager/ViewManager.py" line="3490" /> <source>Ctrl+Shift+U</source> <translation /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3506" /> + <location filename="../ViewManager/ViewManager.py" line="3516" /> <source>&Edit</source> <translation>&Edit</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3564" /> - <location filename="../ViewManager/ViewManager.py" line="3562" /> + <location filename="../ViewManager/ViewManager.py" line="3574" /> + <location filename="../ViewManager/ViewManager.py" line="3572" /> <source>Edit</source> <translation /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2568" /> <location filename="../QScintilla/ShellWindow.py" line="927" /> - <location filename="../ViewManager/ViewManager.py" line="4167" /> - <location filename="../ViewManager/ViewManager.py" line="4165" /> - <location filename="../ViewManager/ViewManager.py" line="3598" /> + <location filename="../ViewManager/ViewManager.py" line="4177" /> + <location filename="../ViewManager/ViewManager.py" line="4175" /> + <location filename="../ViewManager/ViewManager.py" line="3608" /> <source>Search</source> <translation>Vyhledat</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2570" /> <location filename="../QScintilla/ShellWindow.py" line="929" /> - <location filename="../ViewManager/ViewManager.py" line="3600" /> + <location filename="../ViewManager/ViewManager.py" line="3610" /> <source>&Search...</source> <translation>V&yhledat...</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2572" /> <location filename="../QScintilla/ShellWindow.py" line="931" /> - <location filename="../ViewManager/ViewManager.py" line="3602" /> + <location filename="../ViewManager/ViewManager.py" line="3612" /> <source>Ctrl+F</source> <comment>Search|Search</comment> <translation /> @@ -97022,13 +97035,13 @@ <message> <location filename="../QScintilla/MiniEditor.py" line="2579" /> <location filename="../QScintilla/ShellWindow.py" line="938" /> - <location filename="../ViewManager/ViewManager.py" line="3609" /> + <location filename="../ViewManager/ViewManager.py" line="3619" /> <source>Search for a text</source> <translation>Hledat text</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2582" /> - <location filename="../ViewManager/ViewManager.py" line="3612" /> + <location filename="../ViewManager/ViewManager.py" line="3622" /> <source><b>Search</b><p>Search for some text in the current editor. A dialog is shown to enter the searchtext and options for the search.</p></source> <translation><b>Hledat</b> <p>Hledat text v aktuálním editoru. Zobrazí se dialogové okno, do kterého se zadá hledaný text a další nastavení.<p></translation> @@ -97036,21 +97049,21 @@ <message> <location filename="../QScintilla/MiniEditor.py" line="2594" /> <location filename="../QScintilla/ShellWindow.py" line="953" /> - <location filename="../ViewManager/ViewManager.py" line="3624" /> + <location filename="../ViewManager/ViewManager.py" line="3634" /> <source>Search next</source> <translation>Hledat text</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2596" /> <location filename="../QScintilla/ShellWindow.py" line="955" /> - <location filename="../ViewManager/ViewManager.py" line="3626" /> + <location filename="../ViewManager/ViewManager.py" line="3636" /> <source>Search &next</source> <translation>Hledat &další</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2598" /> <location filename="../QScintilla/ShellWindow.py" line="957" /> - <location filename="../ViewManager/ViewManager.py" line="3628" /> + <location filename="../ViewManager/ViewManager.py" line="3638" /> <source>F3</source> <comment>Search|Search next</comment> <translation /> @@ -97058,34 +97071,34 @@ <message> <location filename="../QScintilla/MiniEditor.py" line="2605" /> <location filename="../QScintilla/ShellWindow.py" line="964" /> - <location filename="../ViewManager/ViewManager.py" line="3635" /> + <location filename="../ViewManager/ViewManager.py" line="3645" /> <source>Search next occurrence of text</source> <translation>Hledat další výskyt textu</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2608" /> - <location filename="../ViewManager/ViewManager.py" line="3638" /> + <location filename="../ViewManager/ViewManager.py" line="3648" /> <source><b>Search next</b><p>Search the next occurrence of some text in the current editor. The previously entered searchtext and options are reused.</p></source> <translation><b>Hledat další</b><p>Hledá se další výskyt hledaného textu v aktuálním editoru. Stále platí nastavení, která byla nastavena při zadání hledaného textu.<p></translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2620" /> <location filename="../QScintilla/ShellWindow.py" line="981" /> - <location filename="../ViewManager/ViewManager.py" line="3650" /> + <location filename="../ViewManager/ViewManager.py" line="3660" /> <source>Search previous</source> <translation>Hledat předchozí</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2622" /> <location filename="../QScintilla/ShellWindow.py" line="983" /> - <location filename="../ViewManager/ViewManager.py" line="3652" /> + <location filename="../ViewManager/ViewManager.py" line="3662" /> <source>Search &previous</source> <translation>Hledat &předchozí</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2624" /> <location filename="../QScintilla/ShellWindow.py" line="985" /> - <location filename="../ViewManager/ViewManager.py" line="3654" /> + <location filename="../ViewManager/ViewManager.py" line="3664" /> <source>Shift+F3</source> <comment>Search|Search previous</comment> <translation /> @@ -97093,115 +97106,115 @@ <message> <location filename="../QScintilla/MiniEditor.py" line="2633" /> <location filename="../QScintilla/ShellWindow.py" line="994" /> - <location filename="../ViewManager/ViewManager.py" line="3663" /> + <location filename="../ViewManager/ViewManager.py" line="3673" /> <source>Search previous occurrence of text</source> <translation>Hledat předchozí výskyt textu</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2638" /> - <location filename="../ViewManager/ViewManager.py" line="3668" /> + <location filename="../ViewManager/ViewManager.py" line="3678" /> <source><b>Search previous</b><p>Search the previous occurrence of some text in the current editor. The previously entered searchtext and options are reused.</p></source> <translation><b>Hledat předchozí</b><p>Hledá se předchozí výskyt hledaného textu v aktuálním editoru. Stále platí nastavení, která byla nastavena při zadání hledaného textu.<p></translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2652" /> <location filename="../QScintilla/MiniEditor.py" line="2650" /> - <location filename="../ViewManager/ViewManager.py" line="3682" /> - <location filename="../ViewManager/ViewManager.py" line="3680" /> + <location filename="../ViewManager/ViewManager.py" line="3692" /> + <location filename="../ViewManager/ViewManager.py" line="3690" /> <source>Clear search markers</source> <translation>Vyčistit značky hledání</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2654" /> - <location filename="../ViewManager/ViewManager.py" line="3684" /> + <location filename="../ViewManager/ViewManager.py" line="3694" /> <source>Ctrl+3</source> <comment>Search|Clear search markers</comment> <translation /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2663" /> - <location filename="../ViewManager/ViewManager.py" line="3693" /> + <location filename="../ViewManager/ViewManager.py" line="3703" /> <source>Clear all displayed search markers</source> <translation>Vyčistit všechny zobrazené začky hledání</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2668" /> - <location filename="../ViewManager/ViewManager.py" line="3698" /> + <location filename="../ViewManager/ViewManager.py" line="3708" /> <source><b>Clear search markers</b><p>Clear all displayed search markers.</p></source> <translation><b>Vyčistit značky hledání</b><p>Smažou všechny zabrazené značky hledání.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3710" /> - <location filename="../ViewManager/ViewManager.py" line="3708" /> + <location filename="../ViewManager/ViewManager.py" line="3720" /> + <location filename="../ViewManager/ViewManager.py" line="3718" /> <source>Search current word forward</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3712" /> + <location filename="../ViewManager/ViewManager.py" line="3722" /> <source>Ctrl+.</source> <comment>Search|Search current word forward</comment> <translation type="unfinished">Ctrl+.</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3721" /> + <location filename="../ViewManager/ViewManager.py" line="3731" /> <source>Search next occurrence of the current word</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3726" /> + <location filename="../ViewManager/ViewManager.py" line="3736" /> <source><b>Search current word forward</b><p>Search the next occurrence of the current word of the current editor.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3739" /> - <location filename="../ViewManager/ViewManager.py" line="3737" /> + <location filename="../ViewManager/ViewManager.py" line="3749" /> + <location filename="../ViewManager/ViewManager.py" line="3747" /> <source>Search current word backward</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3741" /> + <location filename="../ViewManager/ViewManager.py" line="3751" /> <source>Ctrl+,</source> <comment>Search|Search current word backward</comment> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3750" /> + <location filename="../ViewManager/ViewManager.py" line="3760" /> <source>Search previous occurrence of the current word</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3755" /> + <location filename="../ViewManager/ViewManager.py" line="3765" /> <source><b>Search current word backward</b><p>Search the previous occurrence of the current word of the current editor.</p></source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2678" /> - <location filename="../ViewManager/ViewManager.py" line="3766" /> + <location filename="../ViewManager/ViewManager.py" line="3776" /> <source>Replace</source> <translation>Nahradit</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2679" /> - <location filename="../ViewManager/ViewManager.py" line="3767" /> + <location filename="../ViewManager/ViewManager.py" line="3777" /> <source>&Replace...</source> <translation>Nah&radit...</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2681" /> - <location filename="../ViewManager/ViewManager.py" line="3769" /> + <location filename="../ViewManager/ViewManager.py" line="3779" /> <source>Ctrl+R</source> <comment>Search|Replace</comment> <translation /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2688" /> - <location filename="../ViewManager/ViewManager.py" line="3776" /> + <location filename="../ViewManager/ViewManager.py" line="3786" /> <source>Replace some text</source> <translation>Hledat nějaký text</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2691" /> - <location filename="../ViewManager/ViewManager.py" line="3779" /> + <location filename="../ViewManager/ViewManager.py" line="3789" /> <source><b>Replace</b><p>Search for some text in the current editor and replace it. A dialog is shown to enter the searchtext, the replacement text and options for the search and replace.</p></source> <translation><b>Nahradit</b> <p>Vyhledá va ktuálním editoru text a nahradí jej. Je zobrazeno dialogové okno, kde se zadá text, který se má nahradit, nový text a nastavení pro vyhledávání a nahrazení.<p></translation> @@ -97209,323 +97222,323 @@ <message> <location filename="../QScintilla/MiniEditor.py" line="2705" /> <location filename="../QScintilla/MiniEditor.py" line="2703" /> - <location filename="../ViewManager/ViewManager.py" line="3793" /> - <location filename="../ViewManager/ViewManager.py" line="3791" /> + <location filename="../ViewManager/ViewManager.py" line="3803" /> + <location filename="../ViewManager/ViewManager.py" line="3801" /> <source>Replace and Search</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2707" /> - <location filename="../ViewManager/ViewManager.py" line="3795" /> + <location filename="../ViewManager/ViewManager.py" line="3805" /> <source>Meta+R</source> <comment>Search|Replace and Search</comment> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2716" /> - <location filename="../ViewManager/ViewManager.py" line="3804" /> + <location filename="../ViewManager/ViewManager.py" line="3814" /> <source>Replace the found text and search the next occurrence</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2721" /> - <location filename="../ViewManager/ViewManager.py" line="3809" /> + <location filename="../ViewManager/ViewManager.py" line="3819" /> <source><b>Replace and Search</b><p>Replace the found occurrence of text in the current editor and search for the next one. The previously entered search text and options are reused.</p></source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2737" /> <location filename="../QScintilla/MiniEditor.py" line="2735" /> - <location filename="../ViewManager/ViewManager.py" line="3825" /> - <location filename="../ViewManager/ViewManager.py" line="3823" /> + <location filename="../ViewManager/ViewManager.py" line="3835" /> + <location filename="../ViewManager/ViewManager.py" line="3833" /> <source>Replace Occurrence</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2739" /> - <location filename="../ViewManager/ViewManager.py" line="3827" /> + <location filename="../ViewManager/ViewManager.py" line="3837" /> <source>Ctrl+Meta+R</source> <comment>Search|Replace Occurrence</comment> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2748" /> - <location filename="../ViewManager/ViewManager.py" line="3836" /> + <location filename="../ViewManager/ViewManager.py" line="3846" /> <source>Replace the found text</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2751" /> - <location filename="../ViewManager/ViewManager.py" line="3839" /> + <location filename="../ViewManager/ViewManager.py" line="3849" /> <source><b>Replace Occurrence</b><p>Replace the found occurrence of the search text in the current editor.</p></source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2764" /> <location filename="../QScintilla/MiniEditor.py" line="2762" /> - <location filename="../ViewManager/ViewManager.py" line="3852" /> - <location filename="../ViewManager/ViewManager.py" line="3850" /> + <location filename="../ViewManager/ViewManager.py" line="3862" /> + <location filename="../ViewManager/ViewManager.py" line="3860" /> <source>Replace All</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2766" /> - <location filename="../ViewManager/ViewManager.py" line="3854" /> + <location filename="../ViewManager/ViewManager.py" line="3864" /> <source>Shift+Meta+R</source> <comment>Search|Replace All</comment> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2775" /> - <location filename="../ViewManager/ViewManager.py" line="3863" /> + <location filename="../ViewManager/ViewManager.py" line="3873" /> <source>Replace search text occurrences</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2778" /> - <location filename="../ViewManager/ViewManager.py" line="3866" /> + <location filename="../ViewManager/ViewManager.py" line="3876" /> <source><b>Replace All</b><p>Replace all occurrences of the search text in the current editor.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3888" /> - <location filename="../ViewManager/ViewManager.py" line="3877" /> + <location filename="../ViewManager/ViewManager.py" line="3898" /> + <location filename="../ViewManager/ViewManager.py" line="3887" /> <source>Goto Line</source> <translation>Jít na řádek</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3879" /> + <location filename="../ViewManager/ViewManager.py" line="3889" /> <source>&Goto Line...</source> <translation>&Jít na řádek...</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3881" /> - <source>Ctrl+G</source> - <comment>Search|Goto Line</comment> - <translation /> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="3891" /> + <source>Ctrl+G</source> + <comment>Search|Goto Line</comment> + <translation /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="3901" /> <source><b>Goto Line</b><p>Go to a specific line of text in the current editor. A dialog is shown to enter the linenumber.</p></source> <translation><b>Jít na řádek</b> <p>Jít na určený řádek. Zobrazí se dialogové okno, kde se zadá číslo požadovaného řádku.<p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3913" /> - <location filename="../ViewManager/ViewManager.py" line="3902" /> + <location filename="../ViewManager/ViewManager.py" line="3923" /> + <location filename="../ViewManager/ViewManager.py" line="3912" /> <source>Goto Brace</source> <translation>Jít na závorku</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3904" /> + <location filename="../ViewManager/ViewManager.py" line="3914" /> <source>Goto &Brace</source> <translation>Jít na závork&u</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3906" /> - <source>Ctrl+L</source> - <comment>Search|Goto Brace</comment> - <translation /> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="3916" /> + <source>Ctrl+L</source> + <comment>Search|Goto Brace</comment> + <translation /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="3926" /> <source><b>Goto Brace</b><p>Go to the matching brace in the current editor.</p></source> <translation><b>Jít na závorku</b> <p>Jíta na závoku, která patří do páru s tou, na které se nachází kurzor.<p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3939" /> - <location filename="../ViewManager/ViewManager.py" line="3926" /> + <location filename="../ViewManager/ViewManager.py" line="3949" /> + <location filename="../ViewManager/ViewManager.py" line="3936" /> <source>Goto Last Edit Location</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3928" /> + <location filename="../ViewManager/ViewManager.py" line="3938" /> <source>Goto Last &Edit Location</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3930" /> + <location filename="../ViewManager/ViewManager.py" line="3940" /> <source>Ctrl+Shift+G</source> <comment>Search|Goto Last Edit Location</comment> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3942" /> + <location filename="../ViewManager/ViewManager.py" line="3952" /> <source><b>Goto Last Edit Location</b><p>Go to the location of the last edit in the current editor.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3954" /> - <location filename="../ViewManager/ViewManager.py" line="3953" /> + <location filename="../ViewManager/ViewManager.py" line="3964" /> + <location filename="../ViewManager/ViewManager.py" line="3963" /> <source>Goto Previous Method or Class</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3956" /> + <location filename="../ViewManager/ViewManager.py" line="3966" /> <source>Ctrl+Shift+Up</source> <comment>Search|Goto Previous Method or Class</comment> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3967" /> + <location filename="../ViewManager/ViewManager.py" line="3977" /> <source>Go to the previous method or class definition</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3972" /> + <location filename="../ViewManager/ViewManager.py" line="3982" /> <source><b>Goto Previous Method or Class</b><p>Goes to the line of the previous method or class definition and highlights the name.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3984" /> - <location filename="../ViewManager/ViewManager.py" line="3983" /> + <location filename="../ViewManager/ViewManager.py" line="3994" /> + <location filename="../ViewManager/ViewManager.py" line="3993" /> <source>Goto Next Method or Class</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3986" /> + <location filename="../ViewManager/ViewManager.py" line="3996" /> <source>Ctrl+Shift+Down</source> <comment>Search|Goto Next Method or Class</comment> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3995" /> + <location filename="../ViewManager/ViewManager.py" line="4005" /> <source>Go to the next method or class definition</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4000" /> + <location filename="../ViewManager/ViewManager.py" line="4010" /> <source><b>Goto Next Method or Class</b><p>Goes to the line of the next method or class definition and highlights the name.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4013" /> + <location filename="../ViewManager/ViewManager.py" line="4023" /> <source>Search in Files</source> <translation>Hledat v souborech</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4015" /> + <location filename="../ViewManager/ViewManager.py" line="4025" /> <source>Search in &Files...</source> <translation>&Hledat v souborech...</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4017" /> + <location filename="../ViewManager/ViewManager.py" line="4027" /> <source>Shift+Ctrl+F</source> <comment>Search|Search Files</comment> <translation /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4026" /> + <location filename="../ViewManager/ViewManager.py" line="4036" /> <source>Search for a text in files</source> <translation>Hledat text v souborech</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4029" /> + <location filename="../ViewManager/ViewManager.py" line="4039" /> <source><b>Search in Files</b><p>Search for some text in the files of a directory tree or the project. A window is shown to enter the searchtext and options for the search and to display the result.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4041" /> + <location filename="../ViewManager/ViewManager.py" line="4051" /> <source>Replace in Files</source> <translation>Nahradit v souborech</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4042" /> + <location filename="../ViewManager/ViewManager.py" line="4052" /> <source>Replace in F&iles...</source> <translation>Nahrad&it v souborech...</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4044" /> + <location filename="../ViewManager/ViewManager.py" line="4054" /> <source>Shift+Ctrl+R</source> <comment>Search|Replace in Files</comment> <translation /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4053" /> + <location filename="../ViewManager/ViewManager.py" line="4063" /> <source>Search for a text in files and replace it</source> <translation>Hledat text v souborech a nahradit jej</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4058" /> + <location filename="../ViewManager/ViewManager.py" line="4068" /> <source><b>Replace in Files</b><p>Search for some text in the files of a directory tree or the project and replace it. A window is shown to enter the searchtext, the replacement text and options for the search and to display the result.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4071" /> + <location filename="../ViewManager/ViewManager.py" line="4081" /> <source>Search in Open Files</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4073" /> + <location filename="../ViewManager/ViewManager.py" line="4083" /> <source>Search in Open Files...</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4075" /> + <location filename="../ViewManager/ViewManager.py" line="4085" /> <source>Meta+Ctrl+Alt+F</source> <comment>Search|Search Open Files</comment> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4084" /> + <location filename="../ViewManager/ViewManager.py" line="4094" /> <source>Search for a text in open files</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4087" /> + <location filename="../ViewManager/ViewManager.py" line="4097" /> <source><b>Search in Open Files</b><p>Search for some text in the currently opened files. A window is shown to enter the search text and options for the search and to display the result.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4099" /> + <location filename="../ViewManager/ViewManager.py" line="4109" /> <source>Replace in Open Files</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4100" /> + <location filename="../ViewManager/ViewManager.py" line="4110" /> <source>Replace in Open Files...</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4102" /> + <location filename="../ViewManager/ViewManager.py" line="4112" /> <source>Meta+Ctrl+Alt+R</source> <comment>Search|Replace in Open Files</comment> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4111" /> + <location filename="../ViewManager/ViewManager.py" line="4121" /> <source>Search for a text in open files and replace it</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4116" /> + <location filename="../ViewManager/ViewManager.py" line="4126" /> <source><b>Replace in Open Files</b><p>Search for some text in the currently opened files and replace it. A window is shown to enter the search text, the replacement text and options for the search and to display the result.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4137" /> + <location filename="../ViewManager/ViewManager.py" line="4147" /> <source>&Search</source> <translation>V&yhledat</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2793" /> <location filename="../QScintilla/ShellWindow.py" line="1020" /> - <location filename="../ViewManager/ViewManager.py" line="4208" /> + <location filename="../ViewManager/ViewManager.py" line="4218" /> <source>Zoom in</source> <translation>Přiblížit</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2795" /> <location filename="../QScintilla/ShellWindow.py" line="1022" /> - <location filename="../ViewManager/ViewManager.py" line="4210" /> + <location filename="../ViewManager/ViewManager.py" line="4220" /> <source>Zoom &in</source> <translation>Př&iblížit</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2797" /> <location filename="../QScintilla/ShellWindow.py" line="1024" /> - <location filename="../ViewManager/ViewManager.py" line="4212" /> + <location filename="../ViewManager/ViewManager.py" line="4222" /> <source>Ctrl++</source> <comment>View|Zoom in</comment> <translation /> @@ -97533,7 +97546,7 @@ <message> <location filename="../QScintilla/MiniEditor.py" line="2800" /> <location filename="../QScintilla/ShellWindow.py" line="1027" /> - <location filename="../ViewManager/ViewManager.py" line="4215" /> + <location filename="../ViewManager/ViewManager.py" line="4225" /> <source>Zoom In</source> <comment>View|Zoom in</comment> <translation type="unfinished" /> @@ -97541,35 +97554,35 @@ <message> <location filename="../QScintilla/MiniEditor.py" line="2806" /> <location filename="../QScintilla/ShellWindow.py" line="1033" /> - <location filename="../ViewManager/ViewManager.py" line="4221" /> + <location filename="../ViewManager/ViewManager.py" line="4231" /> <source>Zoom in on the text</source> <translation>Zvětšovací lupa</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2809" /> <location filename="../QScintilla/ShellWindow.py" line="1036" /> - <location filename="../ViewManager/ViewManager.py" line="4224" /> + <location filename="../ViewManager/ViewManager.py" line="4234" /> <source><b>Zoom in</b><p>Zoom in on the text. This makes the text bigger.</p></source> <translation><b>Přiblížit</b><p>Přiblížit text. Text bude větší.</p></translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2819" /> <location filename="../QScintilla/ShellWindow.py" line="1046" /> - <location filename="../ViewManager/ViewManager.py" line="4234" /> + <location filename="../ViewManager/ViewManager.py" line="4244" /> <source>Zoom out</source> <translation>Oddálit</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2821" /> <location filename="../QScintilla/ShellWindow.py" line="1048" /> - <location filename="../ViewManager/ViewManager.py" line="4236" /> + <location filename="../ViewManager/ViewManager.py" line="4246" /> <source>Zoom &out</source> <translation>&Oddálit</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2823" /> <location filename="../QScintilla/ShellWindow.py" line="1050" /> - <location filename="../ViewManager/ViewManager.py" line="4238" /> + <location filename="../ViewManager/ViewManager.py" line="4248" /> <source>Ctrl+-</source> <comment>View|Zoom out</comment> <translation /> @@ -97577,7 +97590,7 @@ <message> <location filename="../QScintilla/MiniEditor.py" line="2826" /> <location filename="../QScintilla/ShellWindow.py" line="1053" /> - <location filename="../ViewManager/ViewManager.py" line="4241" /> + <location filename="../ViewManager/ViewManager.py" line="4251" /> <source>Zoom Out</source> <comment>View|Zoom out</comment> <translation type="unfinished" /> @@ -97585,35 +97598,35 @@ <message> <location filename="../QScintilla/MiniEditor.py" line="2832" /> <location filename="../QScintilla/ShellWindow.py" line="1059" /> - <location filename="../ViewManager/ViewManager.py" line="4247" /> + <location filename="../ViewManager/ViewManager.py" line="4257" /> <source>Zoom out on the text</source> <translation>Zmenšovací lupa</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2835" /> <location filename="../QScintilla/ShellWindow.py" line="1062" /> - <location filename="../ViewManager/ViewManager.py" line="4250" /> + <location filename="../ViewManager/ViewManager.py" line="4260" /> <source><b>Zoom out</b><p>Zoom out on the text. This makes the text smaller.</p></source> <translation><b>Oddálit</b><p>Lupa na oddálení textu. Text bude menší.</p></translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2845" /> <location filename="../QScintilla/ShellWindow.py" line="1072" /> - <location filename="../ViewManager/ViewManager.py" line="4260" /> + <location filename="../ViewManager/ViewManager.py" line="4270" /> <source>Zoom reset</source> <translation type="unfinished">Resetovat lupu</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2847" /> <location filename="../QScintilla/ShellWindow.py" line="1074" /> - <location filename="../ViewManager/ViewManager.py" line="4262" /> + <location filename="../ViewManager/ViewManager.py" line="4272" /> <source>Zoom &reset</source> <translation type="unfinished">&Resetovat lupu</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2849" /> <location filename="../QScintilla/ShellWindow.py" line="1076" /> - <location filename="../ViewManager/ViewManager.py" line="4264" /> + <location filename="../ViewManager/ViewManager.py" line="4274" /> <source>Ctrl+0</source> <comment>View|Zoom reset</comment> <translation type="unfinished" /> @@ -97621,894 +97634,894 @@ <message> <location filename="../QScintilla/MiniEditor.py" line="2856" /> <location filename="../QScintilla/ShellWindow.py" line="1083" /> - <location filename="../ViewManager/ViewManager.py" line="4271" /> + <location filename="../ViewManager/ViewManager.py" line="4281" /> <source>Reset the zoom of the text</source> <translation type="unfinished">Resetovat lupu textu</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2859" /> <location filename="../QScintilla/ShellWindow.py" line="1086" /> - <location filename="../ViewManager/ViewManager.py" line="4274" /> + <location filename="../ViewManager/ViewManager.py" line="4284" /> <source><b>Zoom reset</b><p>Reset the zoom of the text. This sets the zoom factor to 100%.</p></source> <translation type="unfinished"><b>Reset lupy</b><p>Reset lupy pro text. Nastaví se lupa na hodnotu 100%.</p></translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2870" /> <location filename="../QScintilla/ShellWindow.py" line="1097" /> - <location filename="../ViewManager/ViewManager.py" line="4285" /> + <location filename="../ViewManager/ViewManager.py" line="4295" /> <source>Zoom</source> <translation>Lupa</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2872" /> <location filename="../QScintilla/ShellWindow.py" line="1099" /> - <location filename="../ViewManager/ViewManager.py" line="4287" /> + <location filename="../ViewManager/ViewManager.py" line="4297" /> <source>&Zoom</source> <translation>&Lupa</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2879" /> <location filename="../QScintilla/ShellWindow.py" line="1106" /> - <location filename="../ViewManager/ViewManager.py" line="4294" /> + <location filename="../ViewManager/ViewManager.py" line="4304" /> <source>Zoom the text</source> <translation>Lupa na text</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2882" /> <location filename="../QScintilla/ShellWindow.py" line="1109" /> - <location filename="../ViewManager/ViewManager.py" line="4297" /> + <location filename="../ViewManager/ViewManager.py" line="4307" /> <source><b>Zoom</b><p>Zoom the text. This opens a dialog where the desired size can be entered.</p></source> <translation><b>Lupa</b><p>Lupa na text. Otevře se dialogové okno kde se zadá požadovaná hodnota zvětšení/zmenšení.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4316" /> - <location filename="../ViewManager/ViewManager.py" line="4308" /> + <location filename="../ViewManager/ViewManager.py" line="4326" /> + <location filename="../ViewManager/ViewManager.py" line="4318" /> <source>Toggle all folds</source> <translation>Složit/rozložit všechna skládání</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4309" /> - <source>&Toggle all folds</source> - <translation type="unfinished">Složit/rozložit všechn&a skládání</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="4319" /> + <source>&Toggle all folds</source> + <translation type="unfinished">Složit/rozložit všechn&a skládání</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4329" /> <source><b>Toggle all folds</b><p>Toggle all folds of the current editor.</p></source> <translation><b>Složit/rozložit všechna skládání</b><p>Složí/rozloží všechna skládání v aktuálním editoru.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4341" /> - <location filename="../ViewManager/ViewManager.py" line="4329" /> + <location filename="../ViewManager/ViewManager.py" line="4351" /> + <location filename="../ViewManager/ViewManager.py" line="4339" /> <source>Toggle all folds (including children)</source> <translation>Složit/rozložit všechna skládání (i s podsložkami)</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4332" /> + <location filename="../ViewManager/ViewManager.py" line="4342" /> <source>Toggle all &folds (including children)</source> <translation>Složit/rozložit všechna &skládání (i s podsložkami)</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4346" /> + <location filename="../ViewManager/ViewManager.py" line="4356" /> <source><b>Toggle all folds (including children)</b><p>Toggle all folds of the current editor including all children.</p></source> <translation><b>Složit/rozložit všechna skládání (i s podsložkami)</b><p>Složí nebo rozloží všechna skládání i s podsložkami.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4365" /> - <location filename="../ViewManager/ViewManager.py" line="4357" /> + <location filename="../ViewManager/ViewManager.py" line="4375" /> + <location filename="../ViewManager/ViewManager.py" line="4367" /> <source>Toggle current fold</source> <translation>Složit/rozložit aktuální složený blok</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4358" /> - <source>Toggle &current fold</source> - <translation>Složit/rozložit aktuální složený &blok</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="4368" /> + <source>Toggle &current fold</source> + <translation>Složit/rozložit aktuální složený &blok</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4378" /> <source><b>Toggle current fold</b><p>Toggle the folds of the current line of the current editor.</p></source> <translation><b>Složit/rozložit aktuální složený blok</b><p>Složí nebo rozloží aktuální složený blok v aktuálním editoru.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4387" /> - <location filename="../ViewManager/ViewManager.py" line="4379" /> + <location filename="../ViewManager/ViewManager.py" line="4397" /> + <location filename="../ViewManager/ViewManager.py" line="4389" /> <source>Clear all folds</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4380" /> - <source>Clear &all folds</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="4390" /> + <source>Clear &all folds</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4400" /> <source><b>Clear all folds</b><p>Clear all folds of the current editor, i.e. ensure that all lines are displayed unfolded.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4410" /> - <location filename="../ViewManager/ViewManager.py" line="4403" /> - <location filename="../ViewManager/ViewManager.py" line="4401" /> + <location filename="../ViewManager/ViewManager.py" line="4420" /> + <location filename="../ViewManager/ViewManager.py" line="4413" /> + <location filename="../ViewManager/ViewManager.py" line="4411" /> <source>Remove all highlights</source> <translation>Odebrat všechna zvýraznění</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4413" /> - <source><b>Remove all highlights</b><p>Remove the highlights of all editors.</p></source> - <translation><b>Odebrat všechna zvýraznění</b><p>Odebrat zvýraznění ve všech editorech.</p></translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="4423" /> + <source><b>Remove all highlights</b><p>Remove the highlights of all editors.</p></source> + <translation><b>Odebrat všechna zvýraznění</b><p>Odebrat zvýraznění ve všech editorech.</p></translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4433" /> <source>New Document View</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4425" /> + <location filename="../ViewManager/ViewManager.py" line="4435" /> <source>New &Document View</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4432" /> + <location filename="../ViewManager/ViewManager.py" line="4442" /> <source>Open a new view of the current document</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4437" /> + <location filename="../ViewManager/ViewManager.py" line="4447" /> <source><b>New Document View</b><p>Opens a new view of the current document. Both views show the same document. However, the cursors may be positioned independently.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4453" /> - <location filename="../ViewManager/ViewManager.py" line="4449" /> + <location filename="../ViewManager/ViewManager.py" line="4463" /> + <location filename="../ViewManager/ViewManager.py" line="4459" /> <source>New Document View (with new split)</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4462" /> + <location filename="../ViewManager/ViewManager.py" line="4472" /> <source>Open a new view of the current document in a new split</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4467" /> + <location filename="../ViewManager/ViewManager.py" line="4477" /> <source><b>New Document View</b><p>Opens a new view of the current document in a new split. Both views show the same document. However, the cursors may be positioned independently.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4479" /> + <location filename="../ViewManager/ViewManager.py" line="4489" /> <source>Split view</source> <translation>Rozdělit pohled</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4481" /> - <source>&Split view</source> - <translation>&Rozdělit pohled</translation> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="4488" /> - <source>Add a split to the view</source> - <translation>Přidat další rozdělení pohledu</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="4491" /> - <source><b>Split view</b><p>Add a split to the view.</p></source> - <translation><b>Rozdělit pohled</b><p>Přidá další okno na aktuální pohled.</p></translation> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="4500" /> - <source>Arrange horizontally</source> - <translation>Uspořádat horizontálně</translation> + <source>&Split view</source> + <translation>&Rozdělit pohled</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4498" /> + <source>Add a split to the view</source> + <translation>Přidat další rozdělení pohledu</translation> </message> <message> <location filename="../ViewManager/ViewManager.py" line="4501" /> + <source><b>Split view</b><p>Add a split to the view.</p></source> + <translation><b>Rozdělit pohled</b><p>Přidá další okno na aktuální pohled.</p></translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4510" /> + <source>Arrange horizontally</source> + <translation>Uspořádat horizontálně</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4511" /> <source>Arrange &horizontally</source> <translation>Uspořádat &horizontálně</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4509" /> + <location filename="../ViewManager/ViewManager.py" line="4519" /> <source>Arrange the splitted views horizontally</source> <translation>Uspořádat rozdělené pohledy horizontálně</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4514" /> + <location filename="../ViewManager/ViewManager.py" line="4524" /> <source><b>Arrange horizontally</b><p>Arrange the splitted views horizontally.</p></source> <translation><b>Uspořádat horizontálně</b><p>Uspořádat rozdělené pohledy horizontálně.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4525" /> + <location filename="../ViewManager/ViewManager.py" line="4535" /> <source>Remove split</source> <translation>Odebrat rozdělený pohled</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4527" /> - <source>&Remove split</source> - <translation>Odebra&t rozdělený pohled</translation> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="4534" /> - <source>Remove the current split</source> - <translation>Odebrat aktuální rozdělení pohledu</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="4537" /> - <source><b>Remove split</b><p>Remove the current split.</p></source> - <translation><b>Odebrat rozdělený pohled</b><p>Odebrat aktuální rozdělený pohled.</p></translation> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="4546" /> - <source>Next split</source> - <translation>Další rozdělený pohled</translation> + <source>&Remove split</source> + <translation>Odebra&t rozdělený pohled</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4544" /> + <source>Remove the current split</source> + <translation>Odebrat aktuální rozdělení pohledu</translation> </message> <message> <location filename="../ViewManager/ViewManager.py" line="4547" /> + <source><b>Remove split</b><p>Remove the current split.</p></source> + <translation><b>Odebrat rozdělený pohled</b><p>Odebrat aktuální rozdělený pohled.</p></translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4556" /> + <source>Next split</source> + <translation>Další rozdělený pohled</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4557" /> <source>&Next split</source> <translation>Další rozděle&ný pohled</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4549" /> + <location filename="../ViewManager/ViewManager.py" line="4559" /> <source>Ctrl+Alt+N</source> <comment>View|Next split</comment> <translation /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4558" /> + <location filename="../ViewManager/ViewManager.py" line="4568" /> <source>Move to the next split</source> <translation>Posun na další rozdělený pohled</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4561" /> - <source><b>Next split</b><p>Move to the next split.</p></source> - <translation><b>Další rozdělený pohled</b><p>Posun na další rozdělený pohled.</p></translation> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="4570" /> - <source>Previous split</source> - <translation>Předchozí rozdělený pohled</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="4571" /> + <source><b>Next split</b><p>Move to the next split.</p></source> + <translation><b>Další rozdělený pohled</b><p>Posun na další rozdělený pohled.</p></translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4580" /> + <source>Previous split</source> + <translation>Předchozí rozdělený pohled</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4581" /> <source>&Previous split</source> <translation>&Předchozí rozdělený pohled</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4573" /> + <location filename="../ViewManager/ViewManager.py" line="4583" /> <source>Ctrl+Alt+P</source> <comment>View|Previous split</comment> <translation /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4582" /> + <location filename="../ViewManager/ViewManager.py" line="4592" /> <source>Move to the previous split</source> <translation>Posun na předchozí rozdělený pohled</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4585" /> + <location filename="../ViewManager/ViewManager.py" line="4595" /> <source><b>Previous split</b><p>Move to the previous split.</p></source> <translation><b>Předchozí rozdělený pohled</b><p>Posun na předchozí rozdělený pohled.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4596" /> - <location filename="../ViewManager/ViewManager.py" line="4594" /> + <location filename="../ViewManager/ViewManager.py" line="4606" /> + <location filename="../ViewManager/ViewManager.py" line="4604" /> <source>Preview</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4604" /> + <location filename="../ViewManager/ViewManager.py" line="4614" /> <source>Preview the current file in the web browser</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4609" /> + <location filename="../ViewManager/ViewManager.py" line="4619" /> <source><b>Preview</b><p>This opens the web browser with a preview of the current file.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4623" /> - <location filename="../ViewManager/ViewManager.py" line="4621" /> + <location filename="../ViewManager/ViewManager.py" line="4633" /> + <location filename="../ViewManager/ViewManager.py" line="4631" /> <source>Python AST Viewer</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4631" /> + <location filename="../ViewManager/ViewManager.py" line="4641" /> <source>Show the AST for the current Python file</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4636" /> + <location filename="../ViewManager/ViewManager.py" line="4646" /> <source><b>Python AST Viewer</b><p>This opens the a tree view of the AST of the current Python source file.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4650" /> - <location filename="../ViewManager/ViewManager.py" line="4648" /> + <location filename="../ViewManager/ViewManager.py" line="4660" /> + <location filename="../ViewManager/ViewManager.py" line="4658" /> <source>Python Disassembly Viewer</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4658" /> + <location filename="../ViewManager/ViewManager.py" line="4668" /> <source>Show the Disassembly for the current Python file</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4663" /> + <location filename="../ViewManager/ViewManager.py" line="4673" /> <source><b>Python Disassembly Viewer</b><p>This opens the a tree view of the Disassembly of the current Python source file.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4699" /> + <location filename="../ViewManager/ViewManager.py" line="4709" /> <source>&View</source> <translation>Poh&led</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4734" /> - <location filename="../ViewManager/ViewManager.py" line="4732" /> + <location filename="../ViewManager/ViewManager.py" line="4744" /> + <location filename="../ViewManager/ViewManager.py" line="4742" /> <source>View</source> <translation>Pohled</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4773" /> - <location filename="../ViewManager/ViewManager.py" line="4765" /> + <location filename="../ViewManager/ViewManager.py" line="4783" /> + <location filename="../ViewManager/ViewManager.py" line="4775" /> <source>Start Macro Recording</source> <translation>Spustit záznam makra</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4766" /> - <source>S&tart Macro Recording</source> - <translation>Spus&tit záznam makra</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="4776" /> + <source>S&tart Macro Recording</source> + <translation>Spus&tit záznam makra</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4786" /> <source><b>Start Macro Recording</b><p>Start recording editor commands into a new macro.</p></source> <translation><b>Spustit záznam makra</b><p>Spustí se záznam příkazů do nového makra.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4794" /> - <location filename="../ViewManager/ViewManager.py" line="4786" /> + <location filename="../ViewManager/ViewManager.py" line="4804" /> + <location filename="../ViewManager/ViewManager.py" line="4796" /> <source>Stop Macro Recording</source> <translation>Zastavit záznam makra</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4787" /> - <source>Sto&p Macro Recording</source> - <translation>Sto&p záznamu makra</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="4797" /> + <source>Sto&p Macro Recording</source> + <translation>Sto&p záznamu makra</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4807" /> <source><b>Stop Macro Recording</b><p>Stop recording editor commands into a new macro.</p></source> <translation><b>Stop záznamu makra</b><p>Zastaví se nahrávání příkazů do makra.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4815" /> - <location filename="../ViewManager/ViewManager.py" line="4807" /> + <location filename="../ViewManager/ViewManager.py" line="4825" /> + <location filename="../ViewManager/ViewManager.py" line="4817" /> <source>Run Macro</source> <translation>Spustit makro</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4808" /> - <source>&Run Macro</source> - <translation>Spustit mak&ro</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="4818" /> + <source>&Run Macro</source> + <translation>Spustit mak&ro</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4828" /> <source><b>Run Macro</b><p>Run a previously recorded editor macro.</p></source> <translation><b>Spustit makro</b><p>Spustit nahrané makro.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4836" /> - <location filename="../ViewManager/ViewManager.py" line="4828" /> + <location filename="../ViewManager/ViewManager.py" line="4846" /> + <location filename="../ViewManager/ViewManager.py" line="4838" /> <source>Delete Macro</source> <translation>Smazat makro</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4829" /> - <source>&Delete Macro</source> - <translation>Smazat makr&o</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="4839" /> + <source>&Delete Macro</source> + <translation>Smazat makr&o</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4849" /> <source><b>Delete Macro</b><p>Delete a previously recorded editor macro.</p></source> <translation><b>Smazat makro</b><p>Smaže se nahrané makro.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4857" /> - <location filename="../ViewManager/ViewManager.py" line="4849" /> + <location filename="../ViewManager/ViewManager.py" line="4867" /> + <location filename="../ViewManager/ViewManager.py" line="4859" /> <source>Load Macro</source> <translation>Načíst makro</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4850" /> - <source>&Load Macro</source> - <translation>&Načíst makro</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="4860" /> - <source><b>Load Macro</b><p>Load an editor macro from a file.</p></source> - <translation><b>Načíst makro</b><p>Načte se makro ze souboru.</p></translation> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="4877" /> - <location filename="../ViewManager/ViewManager.py" line="4869" /> - <source>Save Macro</source> - <translation>Uložit makro</translation> + <source>&Load Macro</source> + <translation>&Načíst makro</translation> </message> <message> <location filename="../ViewManager/ViewManager.py" line="4870" /> - <source>&Save Macro</source> - <translation>&Uložit makro</translation> + <source><b>Load Macro</b><p>Load an editor macro from a file.</p></source> + <translation><b>Načíst makro</b><p>Načte se makro ze souboru.</p></translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4887" /> + <location filename="../ViewManager/ViewManager.py" line="4879" /> + <source>Save Macro</source> + <translation>Uložit makro</translation> </message> <message> <location filename="../ViewManager/ViewManager.py" line="4880" /> + <source>&Save Macro</source> + <translation>&Uložit makro</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4890" /> <source><b>Save Macro</b><p>Save a previously recorded editor macro to a file.</p></source> <translation><b>Uložit makro</b><p>Nahrané makro se uloží do souboru.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4898" /> + <location filename="../ViewManager/ViewManager.py" line="4908" /> <source>&Macros</source> <translation>&Makra</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4929" /> - <location filename="../ViewManager/ViewManager.py" line="4916" /> + <location filename="../ViewManager/ViewManager.py" line="4939" /> + <location filename="../ViewManager/ViewManager.py" line="4926" /> <source>Toggle Bookmark</source> <translation>Přepnout záložku</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4918" /> + <location filename="../ViewManager/ViewManager.py" line="4928" /> <source>&Toggle Bookmark</source> <translation>Přepnou&t záložku</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4920" /> + <location filename="../ViewManager/ViewManager.py" line="4930" /> <source>Alt+Ctrl+T</source> <comment>Bookmark|Toggle</comment> <translation /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4932" /> + <location filename="../ViewManager/ViewManager.py" line="4942" /> <source><b>Toggle Bookmark</b><p>Toggle a bookmark at the current line of the current editor.</p></source> <translation><b>Přepnout záložku</b><p>Vytvoří/zruší záložku na aktuálním řádku v aktuálním editoru.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4956" /> - <location filename="../ViewManager/ViewManager.py" line="4943" /> + <location filename="../ViewManager/ViewManager.py" line="4966" /> + <location filename="../ViewManager/ViewManager.py" line="4953" /> <source>Next Bookmark</source> <translation>Následující záložka</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4945" /> + <location filename="../ViewManager/ViewManager.py" line="4955" /> <source>&Next Bookmark</source> <translation>&Následující záložka</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4947" /> + <location filename="../ViewManager/ViewManager.py" line="4957" /> <source>Ctrl+PgDown</source> <comment>Bookmark|Next</comment> <translation /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4959" /> + <location filename="../ViewManager/ViewManager.py" line="4969" /> <source><b>Next Bookmark</b><p>Go to next bookmark of the current editor.</p></source> <translation><b>Následující záložka</b><p>Přesun na následující záložku v aktuálním editoru.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4982" /> - <location filename="../ViewManager/ViewManager.py" line="4969" /> + <location filename="../ViewManager/ViewManager.py" line="4992" /> + <location filename="../ViewManager/ViewManager.py" line="4979" /> <source>Previous Bookmark</source> <translation>Předchozí záložka</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4971" /> + <location filename="../ViewManager/ViewManager.py" line="4981" /> <source>&Previous Bookmark</source> <translation>&Předchozí záložka</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4973" /> + <location filename="../ViewManager/ViewManager.py" line="4983" /> <source>Ctrl+PgUp</source> <comment>Bookmark|Previous</comment> <translation /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4985" /> + <location filename="../ViewManager/ViewManager.py" line="4995" /> <source><b>Previous Bookmark</b><p>Go to previous bookmark of the current editor.</p></source> <translation><b>Předchozí záložka</b><p>Přesun na předchozí záložku.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5007" /> - <location filename="../ViewManager/ViewManager.py" line="4995" /> + <location filename="../ViewManager/ViewManager.py" line="5017" /> + <location filename="../ViewManager/ViewManager.py" line="5005" /> <source>Clear Bookmarks</source> <translation>Vyčistit záložky</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4996" /> + <location filename="../ViewManager/ViewManager.py" line="5006" /> <source>&Clear Bookmarks</source> <translation>Vyčistit (zr&ušit) záložky</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4998" /> + <location filename="../ViewManager/ViewManager.py" line="5008" /> <source>Alt+Ctrl+C</source> <comment>Bookmark|Clear</comment> <translation /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5010" /> + <location filename="../ViewManager/ViewManager.py" line="5020" /> <source><b>Clear Bookmarks</b><p>Clear bookmarks of all editors.</p></source> <translation><b>Vyčistit (zrušit) záložky</b><p>Zruší se všechny záložky ve všech editorech.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5029" /> - <location filename="../ViewManager/ViewManager.py" line="5020" /> + <location filename="../ViewManager/ViewManager.py" line="5039" /> + <location filename="../ViewManager/ViewManager.py" line="5030" /> <source>Goto Syntax Error</source> <translation>Jít na Syntaktickou chybu</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5022" /> - <source>&Goto Syntax Error</source> - <translation>&Jít na Syntaktickou chybu</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="5032" /> + <source>&Goto Syntax Error</source> + <translation>&Jít na Syntaktickou chybu</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="5042" /> <source><b>Goto Syntax Error</b><p>Go to next syntax error of the current editor.</p></source> <translation><b>Jít na Syntax error</b><p>Přesun na syntaktickou chybu v aktuálním editoru.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5050" /> - <location filename="../ViewManager/ViewManager.py" line="5042" /> + <location filename="../ViewManager/ViewManager.py" line="5060" /> + <location filename="../ViewManager/ViewManager.py" line="5052" /> <source>Clear Syntax Errors</source> <translation>Vyčistit Syntaktické chyby</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5043" /> - <source>Clear &Syntax Errors</source> - <translation>V&yčistit Syntaktické chyby</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="5053" /> + <source>Clear &Syntax Errors</source> + <translation>V&yčistit Syntaktické chyby</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="5063" /> <source><b>Clear Syntax Errors</b><p>Clear syntax errors of all editors.</p></source> <translation><b>Vyčistit syntaktické chyby</b><p>Smažou se záznamy o syntaktických chybách ve všech editorech.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5072" /> - <location filename="../ViewManager/ViewManager.py" line="5063" /> + <location filename="../ViewManager/ViewManager.py" line="5082" /> + <location filename="../ViewManager/ViewManager.py" line="5073" /> <source>Next warning message</source> <translation>Další varování</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5065" /> - <source>&Next warning message</source> - <translation>Další varová&ní</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="5075" /> + <source>&Next warning message</source> + <translation>Další varová&ní</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="5085" /> <source><b>Next warning message</b><p>Go to next line of the current editor having a pyflakes warning.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5095" /> - <location filename="../ViewManager/ViewManager.py" line="5086" /> + <location filename="../ViewManager/ViewManager.py" line="5105" /> + <location filename="../ViewManager/ViewManager.py" line="5096" /> <source>Previous warning message</source> <translation>Předchozí varování</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5088" /> - <source>&Previous warning message</source> - <translation>&Předchozí varování</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="5098" /> + <source>&Previous warning message</source> + <translation>&Předchozí varování</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="5108" /> <source><b>Previous warning message</b><p>Go to previous line of the current editor having a pyflakes warning.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5117" /> - <location filename="../ViewManager/ViewManager.py" line="5109" /> + <location filename="../ViewManager/ViewManager.py" line="5127" /> + <location filename="../ViewManager/ViewManager.py" line="5119" /> <source>Clear Warning Messages</source> <translation>Vyčistit varovná hlášení</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5110" /> - <source>Clear &Warning Messages</source> - <translation>&Vyčistit varovná hlášení</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="5120" /> + <source>Clear &Warning Messages</source> + <translation>&Vyčistit varovná hlášení</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="5130" /> <source><b>Clear Warning Messages</b><p>Clear pyflakes warning messages of all editors.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5139" /> - <location filename="../ViewManager/ViewManager.py" line="5130" /> + <location filename="../ViewManager/ViewManager.py" line="5149" /> + <location filename="../ViewManager/ViewManager.py" line="5140" /> <source>Next uncovered line</source> <translation>Následují problémová řádka</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5132" /> - <source>&Next uncovered line</source> - <translation>Nás&ledující problémová řádka</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="5142" /> + <source>&Next uncovered line</source> + <translation>Nás&ledující problémová řádka</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="5152" /> <source><b>Next uncovered line</b><p>Go to next line of the current editor marked as not covered.</p></source> <translation><b>Následující problémová řádka</b><p>Jít na řádku v aktuálním editoru, která byla nalezena jako problémová.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5162" /> - <location filename="../ViewManager/ViewManager.py" line="5153" /> + <location filename="../ViewManager/ViewManager.py" line="5172" /> + <location filename="../ViewManager/ViewManager.py" line="5163" /> <source>Previous uncovered line</source> <translation>Předchozí problémová řádka</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5155" /> - <source>&Previous uncovered line</source> - <translation>Př&edchozí problémová řádka</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="5165" /> + <source>&Previous uncovered line</source> + <translation>Př&edchozí problémová řádka</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="5175" /> <source><b>Previous uncovered line</b><p>Go to previous line of the current editor marked as not covered.</p></source> <translation><b>Předchozí problémová řádka</b><p>Jít na předchozí řádku v aktuálním editoru, která byla nalezena jako problémová.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5185" /> - <location filename="../ViewManager/ViewManager.py" line="5176" /> + <location filename="../ViewManager/ViewManager.py" line="5195" /> + <location filename="../ViewManager/ViewManager.py" line="5186" /> <source>Next Task</source> <translation>Následující úloha</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5178" /> - <source>&Next Task</source> - <translation>Následující úlo&ha</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="5188" /> + <source>&Next Task</source> + <translation>Následující úlo&ha</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="5198" /> <source><b>Next Task</b><p>Go to next line of the current editor having a task.</p></source> <translation><b>Následující úloha</b><p>Jít na řádek v aktuálním editoru, na kterém je následující úloha.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5207" /> - <location filename="../ViewManager/ViewManager.py" line="5198" /> + <location filename="../ViewManager/ViewManager.py" line="5217" /> + <location filename="../ViewManager/ViewManager.py" line="5208" /> <source>Previous Task</source> <translation>Předchozí úloha</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5200" /> - <source>&Previous Task</source> - <translation>Předchozí úl&oha</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="5210" /> + <source>&Previous Task</source> + <translation>Předchozí úl&oha</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="5220" /> <source><b>Previous Task</b><p>Go to previous line of the current editor having a task.</p></source> <translation><b>Předchozí úloha</b><p>Jít na řádek, na kterém se nachází předchozí úloha.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5230" /> - <location filename="../ViewManager/ViewManager.py" line="5221" /> + <location filename="../ViewManager/ViewManager.py" line="5240" /> + <location filename="../ViewManager/ViewManager.py" line="5231" /> <source>Next Change</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5223" /> - <source>&Next Change</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="5233" /> + <source>&Next Change</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="5243" /> <source><b>Next Change</b><p>Go to next line of the current editor having a change marker.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5253" /> - <location filename="../ViewManager/ViewManager.py" line="5244" /> + <location filename="../ViewManager/ViewManager.py" line="5263" /> + <location filename="../ViewManager/ViewManager.py" line="5254" /> <source>Previous Change</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5246" /> - <source>&Previous Change</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="5256" /> + <source>&Previous Change</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="5266" /> <source><b>Previous Change</b><p>Go to previous line of the current editor having a change marker.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5277" /> - <location filename="../ViewManager/ViewManager.py" line="5275" /> + <location filename="../ViewManager/ViewManager.py" line="5287" /> + <location filename="../ViewManager/ViewManager.py" line="5285" /> <source>&Bookmarks</source> <translation>&Záložky</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5321" /> - <location filename="../ViewManager/ViewManager.py" line="5319" /> + <location filename="../ViewManager/ViewManager.py" line="5331" /> + <location filename="../ViewManager/ViewManager.py" line="5329" /> <source>Bookmarks</source> <translation>Záložky</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5355" /> + <location filename="../ViewManager/ViewManager.py" line="5365" /> <source>Check spelling</source> <translation type="unfinished">Kontrola pravopisu</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5357" /> + <location filename="../ViewManager/ViewManager.py" line="5367" /> <source>Check &spelling...</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5359" /> + <location filename="../ViewManager/ViewManager.py" line="5369" /> <source>Shift+F7</source> <comment>Spelling|Spell Check</comment> <translation /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5368" /> + <location filename="../ViewManager/ViewManager.py" line="5378" /> <source>Perform spell check of current editor</source> <translation>Spustit kontrolu pravopisu v aktuálním editoru</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5373" /> - <source><b>Check spelling</b><p>Perform a spell check of the current editor.</p></source> - <translation type="unfinished" /> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="5383" /> - <source>Automatic spell checking</source> - <translation>Automatická kontrola pravopisu</translation> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="5385" /> - <source>&Automatic spell checking</source> - <translation>&Automatická kontrola pravopisu</translation> + <source><b>Check spelling</b><p>Perform a spell check of the current editor.</p></source> + <translation type="unfinished" /> </message> <message> <location filename="../ViewManager/ViewManager.py" line="5393" /> + <source>Automatic spell checking</source> + <translation>Automatická kontrola pravopisu</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="5395" /> + <source>&Automatic spell checking</source> + <translation>&Automatická kontrola pravopisu</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="5403" /> <source>(De-)Activate automatic spell checking</source> <translation>(De-)aktivovat akutomatickou kontrolu</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5398" /> + <location filename="../ViewManager/ViewManager.py" line="5408" /> <source><b>Automatic spell checking</b><p>Activate or deactivate the automatic spell checking function of all editors.</p></source> <translation><b>Automatická kontrola pravopisu</b><p>Zapnout neobo vypnout automatickou kontrolu pravopisu ve všech editorech.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5432" /> + <location filename="../ViewManager/ViewManager.py" line="5442" /> <source>Edit Dictionary</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5435" /> + <location filename="../ViewManager/ViewManager.py" line="5445" /> <source>Project Word List</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5439" /> + <location filename="../ViewManager/ViewManager.py" line="5449" /> <source>Project Exception List</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5444" /> + <location filename="../ViewManager/ViewManager.py" line="5454" /> <source>User Word List</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5448" /> + <location filename="../ViewManager/ViewManager.py" line="5458" /> <source>User Exception List</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5469" /> - <location filename="../ViewManager/ViewManager.py" line="5467" /> + <location filename="../ViewManager/ViewManager.py" line="5479" /> + <location filename="../ViewManager/ViewManager.py" line="5477" /> <source>Spelling</source> <translation>Pravopis</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5492" /> + <location filename="../ViewManager/ViewManager.py" line="5502" /> <source>Open Files</source> <translation type="unfinished">Otevřít soubory</translation> </message> <message> + <location filename="../ViewManager/ViewManager.py" line="5531" /> <location filename="../ViewManager/ViewManager.py" line="5521" /> - <location filename="../ViewManager/ViewManager.py" line="5511" /> <source>Open Remote Files</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5578" /> + <location filename="../ViewManager/ViewManager.py" line="5588" /> <source>File Modified</source> <translation>Soubor změněn</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5579" /> + <location filename="../ViewManager/ViewManager.py" line="5589" /> <source><p>The file <b>{0}</b> has unsaved changes.</p></source> <translation><p>Soubor <b>{0}</b> obsahuje neuložené změny.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6078" /> + <location filename="../ViewManager/ViewManager.py" line="6090" /> <source>Line: {0:5}</source> <translation>Řádek: {0:5}</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6084" /> + <location filename="../ViewManager/ViewManager.py" line="6096" /> <source>Pos: {0:5}</source> <translation>Poz: {0:5}</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6104" /> + <location filename="../ViewManager/ViewManager.py" line="6116" /> <source>Language: {0}</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6113" /> + <location filename="../ViewManager/ViewManager.py" line="6125" /> <source>EOL Mode: {0}</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6641" /> - <location filename="../ViewManager/ViewManager.py" line="6598" /> + <location filename="../ViewManager/ViewManager.py" line="6668" /> + <location filename="../ViewManager/ViewManager.py" line="6625" /> <source>&Clear</source> <translation>&Vyčistit</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6635" /> + <location filename="../ViewManager/ViewManager.py" line="6662" /> <source>&Add</source> <translation>Přid&at</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6638" /> + <location filename="../ViewManager/ViewManager.py" line="6665" /> <source>&Edit...</source> <translation>&Edit...</translation> </message> <message> + <location filename="../ViewManager/ViewManager.py" line="7735" /> + <location filename="../ViewManager/ViewManager.py" line="7721" /> + <location filename="../ViewManager/ViewManager.py" line="7689" /> + <source>Edit Spelling Dictionary</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="7692" /> + <source><p>The spelling dictionary file <b>{0}</b> could not be read.</p><p>Reason: {1}</p></source> + <translation type="unfinished" /> + </message> + <message> <location filename="../ViewManager/ViewManager.py" line="7708" /> - <location filename="../ViewManager/ViewManager.py" line="7694" /> - <location filename="../ViewManager/ViewManager.py" line="7662" /> - <source>Edit Spelling Dictionary</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="7665" /> - <source><p>The spelling dictionary file <b>{0}</b> could not be read.</p><p>Reason: {1}</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="7681" /> <source>Editing {0}</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="7697" /> + <location filename="../ViewManager/ViewManager.py" line="7724" /> <source><p>The spelling dictionary file <b>{0}</b> could not be written.</p><p>Reason: {1}</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="7711" /> + <location filename="../ViewManager/ViewManager.py" line="7738" /> <source>The spelling dictionary was saved successfully.</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5522" /> + <location filename="../ViewManager/ViewManager.py" line="5532" /> <source>You must be connected to a remote eric-ide server. Aborting...</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6820" /> + <location filename="../ViewManager/ViewManager.py" line="6847" /> <source>Clear Editor</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6821" /> + <location filename="../ViewManager/ViewManager.py" line="6848" /> <source>Do you really want to delete all text of the current editor?</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="8241" /> - <location filename="../ViewManager/ViewManager.py" line="8224" /> + <location filename="../ViewManager/ViewManager.py" line="8268" /> + <location filename="../ViewManager/ViewManager.py" line="8251" /> <source>File System Watcher Error</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="8225" /> + <location filename="../ViewManager/ViewManager.py" line="8252" /> <source><p>The operating system resources for file system watches are exhausted. This limit should be increased. On a Linux system you should <ul><li>sudo nano /etc/sysctl.conf</li><li>add to the bottom "fs.inotify.max_user_instances = 1024"</li><li>save and close the editor</li><li>sudo sysctl -p</li></ul></p><p>Error Message: {0}</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="8242" /> + <location filename="../ViewManager/ViewManager.py" line="8269" /> <source>The file system watcher reported an error with code <b>{0}</b>.</p><p>Error Message: {1}</p></source> <translation type="unfinished" /> </message> @@ -99359,54 +99372,54 @@ <context> <name>VirtualenvManager</name> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="317" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="319" /> <source>Add Virtual Environment</source> <translation type="unfinished" /> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="318" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="320" /> <source>A virtual environment named <b>{0}</b> exists already. Shall it be replaced?</source> <translation type="unfinished" /> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="355" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="357" /> <source>Change Virtual Environment</source> <translation type="unfinished" /> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="388" /> - <location filename="../VirtualEnv/VirtualenvManager.py" line="356" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="390" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="358" /> <source>A virtual environment named <b>{0}</b> does not exist. Aborting!</source> <translation type="unfinished" /> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="387" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="389" /> <source>Rename Virtual Environment</source> <translation type="unfinished" /> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="479" /> - <location filename="../VirtualEnv/VirtualenvManager.py" line="412" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="481" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="414" /> <source>{0} - {1}</source> <translation type="unfinished">{0} - {1}</translation> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="419" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="421" /> <source>Delete Virtual Environments</source> <translation type="unfinished" /> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="420" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="422" /> <source>Do you really want to delete these virtual environments?</source> <translation type="unfinished" /> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="486" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="488" /> <source>Remove Virtual Environments</source> <translation type="unfinished" /> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="487" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="489" /> <source>Do you really want to remove these virtual environments?</source> <translation type="unfinished" /> </message> @@ -99414,7 +99427,7 @@ <context> <name>VirtualenvManagerDialog</name> <message> - <location filename="../VirtualEnv/VirtualenvManagerWidgets.py" line="442" /> + <location filename="../VirtualEnv/VirtualenvManagerWidgets.py" line="448" /> <source>Manage Virtual Environments</source> <translation type="unfinished" /> </message> @@ -99537,7 +99550,7 @@ <context> <name>VirtualenvManagerWindow</name> <message> - <location filename="../VirtualEnv/VirtualenvManagerWidgets.py" line="482" /> + <location filename="../VirtualEnv/VirtualenvManagerWidgets.py" line="488" /> <source>Manage Virtual Environments</source> <translation type="unfinished" /> </message>
--- a/src/eric7/i18n/eric7_de.ts Wed Oct 16 17:38:35 2024 +0200 +++ b/src/eric7/i18n/eric7_de.ts Wed Oct 16 17:39:40 2024 +0200 @@ -1645,27 +1645,27 @@ <context> <name>AssistantJedi</name> <message> - <location filename="../JediInterface/AssistantJedi.py" line="230" /> + <location filename="../JediInterface/AssistantJedi.py" line="236" /> <source>Refactoring</source> <translation>Refaktorierung</translation> </message> <message> - <location filename="../JediInterface/AssistantJedi.py" line="232" /> - <source>Rename Variable</source> - <translation>Variable umbenennen</translation> - </message> - <message> - <location filename="../JediInterface/AssistantJedi.py" line="235" /> - <source>Extract Variable</source> - <translation>Variable extrahieren</translation> - </message> - <message> <location filename="../JediInterface/AssistantJedi.py" line="238" /> + <source>Rename Variable</source> + <translation>Variable umbenennen</translation> + </message> + <message> + <location filename="../JediInterface/AssistantJedi.py" line="241" /> + <source>Extract Variable</source> + <translation>Variable extrahieren</translation> + </message> + <message> + <location filename="../JediInterface/AssistantJedi.py" line="244" /> <source>Inline Variable</source> <translation>Varaible einbinden</translation> </message> <message> - <location filename="../JediInterface/AssistantJedi.py" line="242" /> + <location filename="../JediInterface/AssistantJedi.py" line="248" /> <source>Extract Function</source> <translation>Funktion extrahieren</translation> </message> @@ -9233,21 +9233,38 @@ </translation> </message> <message> - <location filename="../Debugger/DebugServer.py" line="2109" /> + <location filename="../Debugger/DebugServer.py" line="2110" /> <source>Passive debug connection received </source> <translation>Verbindung für passives Debuggen empfangen </translation> </message> <message> - <location filename="../Debugger/DebugServer.py" line="2123" /> + <location filename="../Debugger/DebugServer.py" line="2119" /> + <source>Passive debug connection received while not in passive mode. +</source> + <translation>Verbindung für passives Debuggen empfangen während Passivmodus inaktiv ist. +</translation> + </message> + <message> + <location filename="../Debugger/DebugServer.py" line="2125" /> + <source>Debug Client Connection</source> + <translation>Debug-Client Verbindung</translation> + </message> + <message> + <location filename="../Debugger/DebugServer.py" line="2126" /> + <source>Passive debug client connection received while not in passive mode. Enable this mode on the 'Debugger General' configuration page. The connection will be rejected.</source> + <translation>Verbindung für passives Debuggen empfangen während Passivmodus inaktiv ist. Aktiviere diesen Modus auf der Konfigurationsseite 'Debugger Allgemein'. Die Verbind wird abgelehnt.</translation> + </message> + <message> + <location filename="../Debugger/DebugServer.py" line="2141" /> <source>Passive debug connection closed </source> <translation>Verbindung für passives Debuggen geschlossen </translation> </message> <message> - <location filename="../Debugger/DebugServer.py" line="2254" /> + <location filename="../Debugger/DebugServer.py" line="2272" /> <source><project></source> <translation><Projekt></translation> </message> @@ -10198,25 +10215,13 @@ </message> <message> <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" /> - <source>Enables the passive debug mode</source> - <translation>Schaltet den passiven Debugmodus an</translation> + <source>Debugger Type:</source> + <translation>Debuggertyp:</translation> </message> <message> <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" /> - <source><b>Passive Debugger Enabled</b> -<p>This enables the passive debugging mode. In this mode the debug client (the script) connects to the debug server (the IDE). The script is started outside the IDE. This way mod_python or Zope scripts can be debugged.</p></source> - <translation><b>Passiver Debugger aktiv</b> -<p>Dies schaltet den passiven Debugmodus an. In diesem Modus verbindet sich der Debug-Client (das Skript) mit dem Debugserver (die IDE). Das Skript wird auf der Klientseite auserhalb der IDE gestartet. Somit können mod_python oder Zope Skripte debuggt werden.</p></translation> - </message> - <message> - <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" /> - <source>Passive Debugger Enabled</source> - <translation>Passiver Debugger aktiv</translation> - </message> - <message> - <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" /> - <source>Debug Server Port:</source> - <translation>Debugserver-Port:</translation> + <source>Select the debugger type of the backend</source> + <translation>Wähle den Typ des verwendeten Debuggers</translation> </message> <message> <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" /> @@ -10232,13 +10237,8 @@ </message> <message> <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" /> - <source>Debugger Type:</source> - <translation>Debuggertyp:</translation> - </message> - <message> - <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" /> - <source>Select the debugger type of the backend</source> - <translation>Wähle den Typ des verwendeten Debuggers</translation> + <source>Debug Server Port:</source> + <translation>Debugserver-Port:</translation> </message> <message> <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" /> @@ -10575,46 +10575,46 @@ <context> <name>DebuggerInterfacePython</name> <message> - <location filename="../Debugger/DebuggerInterfacePython.py" line="727" /> - <location filename="../Debugger/DebuggerInterfacePython.py" line="704" /> - <location filename="../Debugger/DebuggerInterfacePython.py" line="611" /> - <location filename="../Debugger/DebuggerInterfacePython.py" line="565" /> - <location filename="../Debugger/DebuggerInterfacePython.py" line="446" /> - <location filename="../Debugger/DebuggerInterfacePython.py" line="423" /> - <location filename="../Debugger/DebuggerInterfacePython.py" line="346" /> - <location filename="../Debugger/DebuggerInterfacePython.py" line="322" /> - <location filename="../Debugger/DebuggerInterfacePython.py" line="259" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="728" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="705" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="609" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="563" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="445" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="422" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="345" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="321" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="258" /> <source>Start Debugger</source> <translation>Debugger starten</translation> </message> <message> - <location filename="../Debugger/DebuggerInterfacePython.py" line="566" /> - <location filename="../Debugger/DebuggerInterfacePython.py" line="260" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="564" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="259" /> <source><p>No suitable Python3 environment configured.</p></source> <translation><p>Keine geeignete Python3 Umgebung konfiguriert.</p></translation> </message> <message> - <location filename="../Debugger/DebuggerInterfacePython.py" line="728" /> - <location filename="../Debugger/DebuggerInterfacePython.py" line="705" /> - <location filename="../Debugger/DebuggerInterfacePython.py" line="612" /> - <location filename="../Debugger/DebuggerInterfacePython.py" line="447" /> - <location filename="../Debugger/DebuggerInterfacePython.py" line="424" /> - <location filename="../Debugger/DebuggerInterfacePython.py" line="323" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="729" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="706" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="610" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="446" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="423" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="322" /> <source><p>The debugger backend could not be started.</p></source> <translation><p>Der Debugger konnte nicht gestartet werden.</p></translation> </message> <message> - <location filename="../Debugger/DebuggerInterfacePython.py" line="347" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="346" /> <source><p>Remote debugging is configured but no command for remote login was given.</p></source> <translation><p>Remote Debugging is aktiviert aber es wurde kein Befehl zum Anmelden angegeben.</p></translation> </message> <message> - <location filename="../Debugger/DebuggerInterfacePython.py" line="1659" /> - <source>Debug Protocol Error</source> - <translation>Fehler im Debugprotokoll</translation> - </message> - <message> <location filename="../Debugger/DebuggerInterfacePython.py" line="1660" /> + <source>Debug Protocol Error</source> + <translation>Fehler im Debugprotokoll</translation> + </message> + <message> + <location filename="../Debugger/DebuggerInterfacePython.py" line="1661" /> <source><p>The response received from the debugger backend 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 Debugger empfangene Antwort konnte nicht dekodiert werden. Bitte berichten sie diesen Fehler zusammen mit den empfangenen Daten an die eric Bugs Emailadresse.</p><p>Fehler: {0}</p><p>Daten:<br/>{1}</p></translation> </message> @@ -62130,7 +62130,7 @@ <context> <name>PreviewModel</name> <message> - <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="478" /> + <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="506" /> <source>Variable Name</source> <translation>Variablenname</translation> </message> @@ -63012,8 +63012,8 @@ <translation>Datei umbenennen</translation> </message> <message> - <location filename="../Project/Project.py" line="8058" /> - <location filename="../Project/Project.py" line="3901" /> + <location filename="../Project/Project.py" line="8055" /> + <location filename="../Project/Project.py" line="3898" /> <location filename="../Project/Project.py" line="2398" /> <source><p>The file <b>{0}</b> already exists. Overwrite it?</p></source> <translation><p>Die Datei <b>{0}</b> existiert bereits. Überschreiben?</p></translation> @@ -63147,40 +63147,40 @@ <translation>Projekt öffnen</translation> </message> <message> - <location filename="../Project/Project.py" line="8044" /> - <location filename="../Project/Project.py" line="8038" /> - <location filename="../Project/Project.py" line="8028" /> - <location filename="../Project/Project.py" line="3886" /> - <location filename="../Project/Project.py" line="3876" /> + <location filename="../Project/Project.py" line="8041" /> + <location filename="../Project/Project.py" line="8035" /> + <location filename="../Project/Project.py" line="8025" /> + <location filename="../Project/Project.py" line="3883" /> + <location filename="../Project/Project.py" line="3873" /> <location filename="../Project/Project.py" line="3652" /> <source>Project Files (*.epj)</source> <translation>Projektdateien (*.epj)</translation> </message> <message> - <location filename="../Project/Project.py" line="3900" /> - <location filename="../Project/Project.py" line="3884" /> + <location filename="../Project/Project.py" line="3897" /> + <location filename="../Project/Project.py" line="3881" /> <source>Save Project</source> <translation>Projekt speichern</translation> </message> <message> - <location filename="../Project/Project.py" line="3939" /> + <location filename="../Project/Project.py" line="3936" /> <source>Close Project</source> <translation>Projekt schließen</translation> </message> <message> - <location filename="../Project/Project.py" line="3940" /> + <location filename="../Project/Project.py" line="3937" /> <source>The current project has unsaved changes.</source> <translation>Das aktuelle Projekt hat ungesicherte Änderungen.</translation> </message> <message> - <location filename="../Project/Project.py" line="4140" /> - <location filename="../Project/Project.py" line="4104" /> + <location filename="../Project/Project.py" line="4137" /> + <location filename="../Project/Project.py" line="4101" /> <source>Syntax Errors Detected</source> <translation>Syntaxfehler gefunden</translation> </message> <message numerus="yes"> - <location filename="../Project/Project.py" line="4141" /> - <location filename="../Project/Project.py" line="4105" /> + <location filename="../Project/Project.py" line="4138" /> + <location filename="../Project/Project.py" line="4102" /> <source>The project contains %n file(s) with syntax errors.</source> <translation> <numerusform>Das Projekt beinhaltet eine Datei mit Syntaxfehlern.</numerusform> @@ -63188,1268 +63188,1268 @@ </translation> </message> <message> - <location filename="../Project/Project.py" line="4799" /> + <location filename="../Project/Project.py" line="4796" /> <source>New project</source> <translation>Neues Projekt</translation> </message> <message> - <location filename="../Project/Project.py" line="4801" /> + <location filename="../Project/Project.py" line="4798" /> <source>&New...</source> <translation>&Neu...</translation> </message> <message> - <location filename="../Project/Project.py" line="4807" /> + <location filename="../Project/Project.py" line="4804" /> <source>Generate a new project</source> <translation>Erstelle ein neues Projekt</translation> </message> <message> - <location filename="../Project/Project.py" line="4809" /> + <location filename="../Project/Project.py" line="4806" /> <source><b>New...</b><p>This opens a dialog for entering the info for a new project.</p></source> <translation><b>Neu...</b><p>Dies öffnet einen Dialog zur Eingabe der Informationen des neuen Projektes.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4819" /> + <location filename="../Project/Project.py" line="4816" /> <source>Open project</source> <translation>Projekt öffnen</translation> </message> <message> - <location filename="../Project/Project.py" line="4821" /> + <location filename="../Project/Project.py" line="4818" /> <source>&Open...</source> <translation>&Öffnen...</translation> </message> <message> - <location filename="../Project/Project.py" line="4827" /> + <location filename="../Project/Project.py" line="4824" /> <source>Open an existing project</source> <translation>Öffnet ein bestehendes Projekt</translation> </message> <message> - <location filename="../Project/Project.py" line="4829" /> + <location filename="../Project/Project.py" line="4826" /> <source><b>Open...</b><p>This opens an existing project.</p></source> <translation><b>Öffnen...</b><p>Dies öffnet ein bestehendes Projekt.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4835" /> + <location filename="../Project/Project.py" line="4832" /> <source>Open remote project</source> <translation>Entferntes Projekt öffnen</translation> </message> <message> - <location filename="../Project/Project.py" line="4837" /> + <location filename="../Project/Project.py" line="4834" /> <source>Open (Remote)...</source> <translation>Öffnen (entfernt)...</translation> </message> <message> - <location filename="../Project/Project.py" line="4843" /> + <location filename="../Project/Project.py" line="4840" /> <source>Open an existing remote project</source> <translation>Öffne ein bestehendes entferntes Projekt</translation> </message> <message> - <location filename="../Project/Project.py" line="4845" /> + <location filename="../Project/Project.py" line="4842" /> <source><b>Open (Remote)...</b><p>This opens an existing remote project.</p></source> <translation><b>Öffnen (entfernt)...</b><p>Dies öffnet ein bestehendes entferntes Projekt.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4854" /> + <location filename="../Project/Project.py" line="4851" /> <source>Reload project</source> <translation>Projekt erneut laden</translation> </message> <message> - <location filename="../Project/Project.py" line="4856" /> + <location filename="../Project/Project.py" line="4853" /> <source>Re&load</source> <translation>Erneut &laden</translation> </message> <message> - <location filename="../Project/Project.py" line="4862" /> + <location filename="../Project/Project.py" line="4859" /> <source>Reload the current project</source> <translation>Das aktuelle Projekt erneut laden</translation> </message> <message> - <location filename="../Project/Project.py" line="4864" /> + <location filename="../Project/Project.py" line="4861" /> <source><b>Reload</b><p>This reloads the current project.</p></source> <translation><b>Erneut laden</b><p>Dies lädt das Projekt erneut.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4870" /> + <location filename="../Project/Project.py" line="4867" /> <source>Close project</source> <translation>Projekt schließen</translation> </message> <message> - <location filename="../Project/Project.py" line="4872" /> + <location filename="../Project/Project.py" line="4869" /> <source>&Close</source> <translation>Schl&ießen</translation> </message> <message> - <location filename="../Project/Project.py" line="4878" /> + <location filename="../Project/Project.py" line="4875" /> <source>Close the current project</source> <translation>Schließt das aktuelle Projekt</translation> </message> <message> - <location filename="../Project/Project.py" line="4880" /> + <location filename="../Project/Project.py" line="4877" /> <source><b>Close</b><p>This closes the current project.</p></source> <translation><b>Schließen</b><p>Dies schließt das aktuelle Projekt.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4886" /> + <location filename="../Project/Project.py" line="4883" /> <source>Save project</source> <translation>Projekt speichern</translation> </message> <message> - <location filename="../Project/Project.py" line="5183" /> - <location filename="../Project/Project.py" line="4888" /> + <location filename="../Project/Project.py" line="5180" /> + <location filename="../Project/Project.py" line="4885" /> <source>&Save</source> <translation>&Speichern</translation> </message> <message> - <location filename="../Project/Project.py" line="4894" /> + <location filename="../Project/Project.py" line="4891" /> <source>Save the current project</source> <translation>Speichert das aktuelle Projekt</translation> </message> <message> - <location filename="../Project/Project.py" line="4896" /> + <location filename="../Project/Project.py" line="4893" /> <source><b>Save</b><p>This saves the current project.</p></source> <translation><b>Speichern</b><p>Dies speichert das aktuelle Projekt.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4902" /> + <location filename="../Project/Project.py" line="4899" /> <source>Save project as</source> <translation>Projekt speichern unter</translation> </message> <message> - <location filename="../Project/Project.py" line="4904" /> + <location filename="../Project/Project.py" line="4901" /> <source>Save &as...</source> <translation>Speichern &unter...</translation> </message> <message> - <location filename="../Project/Project.py" line="4910" /> + <location filename="../Project/Project.py" line="4907" /> <source>Save the current project to a new file</source> <translation>Speichert das aktuelle Projekt in eine neue Datei</translation> </message> <message> - <location filename="../Project/Project.py" line="4912" /> + <location filename="../Project/Project.py" line="4909" /> <source><b>Save as</b><p>This saves the current project to a new file.</p></source> <translation><b>Speichern unter</b><p>Dies speichert das aktuelle Projekt in eine neue Datei.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4921" /> + <location filename="../Project/Project.py" line="4918" /> <source>Save project as (Remote)</source> <translation>Projekt speichern unter (entfernt)</translation> </message> <message> - <location filename="../Project/Project.py" line="4923" /> + <location filename="../Project/Project.py" line="4920" /> <source>Save as (Remote)...</source> <translation>Speichern unter (entfernt)...</translation> </message> <message> + <location filename="../Project/Project.py" line="4927" /> + <source>Save the current project to a new remote file</source> + <translation>Speichert das aktuelle Projekt in eine neue entfernte Datei</translation> + </message> + <message> <location filename="../Project/Project.py" line="4930" /> - <source>Save the current project to a new remote file</source> - <translation>Speichert das aktuelle Projekt in eine neue entfernte Datei</translation> - </message> - <message> - <location filename="../Project/Project.py" line="4933" /> <source><b>Save as (Remote)</b><p>This saves the current project to a new remote file.</p></source> <translation><b>Speichern unter (entfernt)</b><p>Dies speichert das aktuelle Projekt in eine neue entfernte Datei.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4949" /> + <location filename="../Project/Project.py" line="4946" /> <source>Add files to project</source> <translation>Dateien zum Projekt hinzufügen</translation> </message> <message> - <location filename="../Project/Project.py" line="4951" /> + <location filename="../Project/Project.py" line="4948" /> <source>Add &files...</source> <translation>&Dateien hinzufügen...</translation> </message> <message> - <location filename="../Project/Project.py" line="4957" /> + <location filename="../Project/Project.py" line="4954" /> <source>Add files to the current project</source> <translation>Fügt Dateien zum aktuellen Projekt hinzu</translation> </message> <message> - <location filename="../Project/Project.py" line="4959" /> + <location filename="../Project/Project.py" line="4956" /> <source><b>Add files...</b><p>This opens a dialog for adding files to the current project. The place to add is determined by the file extension.</p></source> <translation><b>Dateien hinzufügen...</b><p>Dies öffnet einen Dialog, mit dem Dateien zum aktuellen Projekt hinzugefügt werden kann. Der Ort, an dem sie eingefügt werden, wird durch die Dateinamenerweiterung bestimmt.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4970" /> + <location filename="../Project/Project.py" line="4967" /> <source>Add directory to project</source> <translation>Verzeichnis zum Projekt hinzufügen</translation> </message> <message> - <location filename="../Project/Project.py" line="4972" /> + <location filename="../Project/Project.py" line="4969" /> <source>Add directory...</source> <translation>Verzeichnis hinzufügen...</translation> </message> <message> + <location filename="../Project/Project.py" line="4976" /> + <source>Add a directory to the current project</source> + <translation>Füge den Inhalt eines Verzeichnisses zum Projekt hinzu</translation> + </message> + <message> <location filename="../Project/Project.py" line="4979" /> - <source>Add a directory to the current project</source> - <translation>Füge den Inhalt eines Verzeichnisses zum Projekt hinzu</translation> - </message> - <message> - <location filename="../Project/Project.py" line="4982" /> <source><b>Add directory...</b><p>This opens a dialog for adding a directory to the current project.</p></source> <translation><b>Verzeichnis hinzufügen</b><p>Dies öffnet einen Dialog, mit dem ein Verzeichnis bzw. der Inhalt eines Verzeichnisses zum aktuellen Projekt hinzugefügt werden kann.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4992" /> + <location filename="../Project/Project.py" line="4989" /> <source>Add translation to project</source> <translation>Übersetzung zum Projekt hinzufügen</translation> </message> <message> - <location filename="../Project/Project.py" line="4994" /> + <location filename="../Project/Project.py" line="4991" /> <source>Add &translation...</source> <translation>&Übersetzung hinzufügen...</translation> </message> <message> + <location filename="../Project/Project.py" line="4998" /> + <source>Add a translation to the current project</source> + <translation>Eine Übersetzung zum aktuellen Projekt hinzufügen</translation> + </message> + <message> <location filename="../Project/Project.py" line="5001" /> - <source>Add a translation to the current project</source> - <translation>Eine Übersetzung zum aktuellen Projekt hinzufügen</translation> - </message> - <message> - <location filename="../Project/Project.py" line="5004" /> <source><b>Add translation...</b><p>This opens a dialog for add a translation to the current project.</p></source> <translation><b>Übersetzung hinzufügen...</b><p>Dies öffnet einen Dialog, mit dem eine Übersetzung zum aktuellen Projekt hinzugefügt werden kann.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5014" /> + <location filename="../Project/Project.py" line="5011" /> <source>Search new files</source> <translation>Neue Dateien suchen</translation> </message> <message> - <location filename="../Project/Project.py" line="5015" /> + <location filename="../Project/Project.py" line="5012" /> <source>Searc&h new files...</source> <translation>Neue &Dateien suchen...</translation> </message> <message> - <location filename="../Project/Project.py" line="5021" /> + <location filename="../Project/Project.py" line="5018" /> <source>Search new files in the project directory.</source> <translation>Sucht neue Dateien im Projektverzeichnis.</translation> </message> <message> - <location filename="../Project/Project.py" line="5023" /> + <location filename="../Project/Project.py" line="5020" /> <source><b>Search new files...</b><p>This searches for new files (sources, forms, ...) in the project directory and registered subdirectories.</p></source> <translation><b>Neue Dateien suchen...</b><p>Dies sucht im Projektverzeichnis und in registrierten Unterverzeichnissen nach neuen Dateien (Quellen, Formulare, ...).</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5033" /> + <location filename="../Project/Project.py" line="5030" /> <source>Search Project File</source> <translation>Projektdatei suchen</translation> </message> <message> - <location filename="../Project/Project.py" line="5034" /> + <location filename="../Project/Project.py" line="5031" /> <source>Search Project File...</source> <translation>Projektdatei suchen...</translation> </message> <message> - <location filename="../Project/Project.py" line="5035" /> + <location filename="../Project/Project.py" line="5032" /> <source>Alt+Ctrl+P</source> <comment>Project|Search Project File</comment> <translation>Alt+Ctrl+P</translation> </message> <message> - <location filename="../Project/Project.py" line="5040" /> + <location filename="../Project/Project.py" line="5037" /> <source>Search for a file in the project list of files.</source> <translation>Suche nach einer Datei in der Liste der Projektdateien.</translation> </message> <message> - <location filename="../Project/Project.py" line="5042" /> + <location filename="../Project/Project.py" line="5039" /> <source><b>Search Project File</b><p>This searches for a file in the project list of files.</p></source> <translation><b>Projektdatei suchen</b><p>Dies sucht nach einer Datei in der Liste der Projektdateien.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5051" /> + <location filename="../Project/Project.py" line="5048" /> <source>Project properties</source> <translation>Projekteigenschaften</translation> </message> <message> - <location filename="../Project/Project.py" line="5053" /> + <location filename="../Project/Project.py" line="5050" /> <source>&Properties...</source> <translation>&Eigenschaften...</translation> </message> <message> - <location filename="../Project/Project.py" line="5059" /> + <location filename="../Project/Project.py" line="5056" /> <source>Show the project properties</source> <translation>Zeigt die Projekteigenschaften an</translation> </message> <message> - <location filename="../Project/Project.py" line="5061" /> + <location filename="../Project/Project.py" line="5058" /> <source><b>Properties...</b><p>This shows a dialog to edit the project properties.</p></source> <translation><b>Eigenschaften...</b><p>Dies zeigt einen Dialog an, mit dem die Projekteigenschaften bearbeitet werden können.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5070" /> + <location filename="../Project/Project.py" line="5067" /> <source>User project properties</source> <translation>Nutzer bezogene Projektdaten</translation> </message> <message> - <location filename="../Project/Project.py" line="5072" /> + <location filename="../Project/Project.py" line="5069" /> <source>&User Properties...</source> <translation>&Nutzer bezogene Projektdaten...</translation> </message> <message> + <location filename="../Project/Project.py" line="5076" /> + <source>Show the user specific project properties</source> + <translation>Zeigt die Nutzer bezogenen Projektdaten an</translation> + </message> + <message> <location filename="../Project/Project.py" line="5079" /> - <source>Show the user specific project properties</source> - <translation>Zeigt die Nutzer bezogenen Projektdaten an</translation> - </message> - <message> - <location filename="../Project/Project.py" line="5082" /> <source><b>User Properties...</b><p>This shows a dialog to edit the user specific project properties.</p></source> <translation><b>Nutzer bezogene Projektdaten...</b><p>Dies zeigt einen Dialog an, um Nutzer bezogene Projektdaten zu bearbeiten.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5092" /> + <location filename="../Project/Project.py" line="5089" /> <source>Filetype Associations</source> <translation>Dateitypzuordnungen</translation> </message> <message> - <location filename="../Project/Project.py" line="5093" /> + <location filename="../Project/Project.py" line="5090" /> <source>Filetype Associations...</source> <translation>Dateitypzuordnungen...</translation> </message> <message> + <location filename="../Project/Project.py" line="5097" /> + <source>Show the project file type associations</source> + <translation>Zeigt die Dateitypzuordnungen des Projektes</translation> + </message> + <message> <location filename="../Project/Project.py" line="5100" /> - <source>Show the project file type associations</source> - <translation>Zeigt die Dateitypzuordnungen des Projektes</translation> - </message> - <message> - <location filename="../Project/Project.py" line="5103" /> <source><b>Filetype Associations...</b><p>This shows a dialog to edit the file type associations of the project. These associations determine the type (source, form, interface, protocol or others) with a filename pattern. They are used when adding a file to the project and when performing a search for new files.</p></source> <translation><b>Dateitypzuordnungen...</b><p>Dies zeigt einen Dialog zur Eingabe der Dateitypzuordnungen des Projektes. Diese Zuordnungen bestimmen den Typ (Quellen, Formulare, Schnittstellen, Protokolle oder Sonstige) über ein Dateinamenmuster. Sie werden genutzt, wenn eine Datei zum Projekt hinzugefügt oder wenn nach neuen Dateien gesucht wird.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5116" /> + <location filename="../Project/Project.py" line="5113" /> <source>Lexer Associations</source> <translation>Lexerzuordnungen</translation> </message> <message> - <location filename="../Project/Project.py" line="5117" /> + <location filename="../Project/Project.py" line="5114" /> <source>Lexer Associations...</source> <translation>Lexerzuordnungen...</translation> </message> <message> + <location filename="../Project/Project.py" line="5121" /> + <source>Show the project lexer associations (overriding defaults)</source> + <translation>Zeigt die projektspezifischen Lexerzuordnungen</translation> + </message> + <message> <location filename="../Project/Project.py" line="5124" /> - <source>Show the project lexer associations (overriding defaults)</source> - <translation>Zeigt die projektspezifischen Lexerzuordnungen</translation> - </message> - <message> - <location filename="../Project/Project.py" line="5127" /> <source><b>Lexer Associations...</b><p>This shows a dialog to edit the lexer associations of the project. These associations override the global lexer associations. Lexers are used to highlight the editor text.</p></source> <translation><b>Lexerzuordnungen</b><p>Dies öffnet einen Dialog, um die projektspezifischen Lexerzuordnungen zu bearbeiten. Diese Zuordnungen überschreiben die globalen Lexerzuordnungen. Lexer werden verwendet, um den Editortext einzufärben.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5145" /> + <location filename="../Project/Project.py" line="5142" /> <source>Debugger Properties</source> <translation>Debugger-Eigenschaften</translation> </message> <message> - <location filename="../Project/Project.py" line="5146" /> + <location filename="../Project/Project.py" line="5143" /> <source>Debugger &Properties...</source> <translation>Debugger-&Eigenschaften...</translation> </message> <message> - <location filename="../Project/Project.py" line="5152" /> + <location filename="../Project/Project.py" line="5149" /> <source>Show the debugger properties</source> <translation>Debugger-Eigenschaften anzeigen</translation> </message> <message> - <location filename="../Project/Project.py" line="5154" /> + <location filename="../Project/Project.py" line="5151" /> <source><b>Debugger Properties...</b><p>This shows a dialog to edit project specific debugger settings.</p></source> <translation><b>Debugger-Eigenschaften...</b><p>Dies zeigt einen Dialog an, um die projektspezifischen Debugger-Einstellungen zu bearbeiten.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5164" /> + <location filename="../Project/Project.py" line="5161" /> <source>Load</source> <translation>Laden</translation> </message> <message> - <location filename="../Project/Project.py" line="5165" /> + <location filename="../Project/Project.py" line="5162" /> <source>&Load</source> <translation>&Laden</translation> </message> <message> - <location filename="../Project/Project.py" line="5171" /> + <location filename="../Project/Project.py" line="5168" /> <source>Load the debugger properties</source> <translation>Debugger-Eigenschaften laden</translation> </message> <message> - <location filename="../Project/Project.py" line="5173" /> + <location filename="../Project/Project.py" line="5170" /> <source><b>Load Debugger Properties</b><p>This loads the project specific debugger settings.</p></source> <translation><b>Debugger-Eigenschaften laden</b><p>Dies lädt die projektspezifischen Debugger-Einstellungen.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5182" /> + <location filename="../Project/Project.py" line="5179" /> <source>Save</source> <translation>Speichern</translation> </message> <message> - <location filename="../Project/Project.py" line="5189" /> + <location filename="../Project/Project.py" line="5186" /> <source>Save the debugger properties</source> <translation>Debugger-Eigenschaften speichern</translation> </message> <message> - <location filename="../Project/Project.py" line="5191" /> + <location filename="../Project/Project.py" line="5188" /> <source><b>Save Debugger Properties</b><p>This saves the project specific debugger settings.</p></source> <translation><b>Debugger-Eigenschaften speichern</b><p>Dies speichert die projektspezifischen Debugger-Einstellungen.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5200" /> + <location filename="../Project/Project.py" line="5197" /> <source>Delete</source> <translation>Löschen</translation> </message> <message> - <location filename="../Project/Project.py" line="5201" /> + <location filename="../Project/Project.py" line="5198" /> <source>&Delete</source> <translation>&Löschen</translation> </message> <message> - <location filename="../Project/Project.py" line="5207" /> + <location filename="../Project/Project.py" line="5204" /> <source>Delete the debugger properties</source> <translation>Debugger-Eigenschaften löschen</translation> </message> <message> - <location filename="../Project/Project.py" line="5209" /> + <location filename="../Project/Project.py" line="5206" /> <source><b>Delete Debugger Properties</b><p>This deletes the file containing the project specific debugger settings.</p></source> <translation><b>Debugger-Eigenschaften löschen</b><p>Dies löscht die Datei mit den projektspezifischen Debugger-Einstellungen.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5219" /> + <location filename="../Project/Project.py" line="5216" /> <source>Reset</source> <translation>Zurücksetzen</translation> </message> <message> - <location filename="../Project/Project.py" line="5220" /> + <location filename="../Project/Project.py" line="5217" /> <source>&Reset</source> <translation>&Zurücksetzen</translation> </message> <message> - <location filename="../Project/Project.py" line="5226" /> + <location filename="../Project/Project.py" line="5223" /> <source>Reset the debugger properties</source> <translation>Debugger-Eigenschaften zurücksetzen</translation> </message> <message> - <location filename="../Project/Project.py" line="5228" /> + <location filename="../Project/Project.py" line="5225" /> <source><b>Reset Debugger Properties</b><p>This resets the project specific debugger settings.</p></source> <translation><b>Debugger-Eigenschaften zurücksetzen</b><p>Dies setzt die projektspezifischen Debugger-Einstellungen zurück.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5244" /> - <location filename="../Project/Project.py" line="5243" /> + <location filename="../Project/Project.py" line="5241" /> + <location filename="../Project/Project.py" line="5240" /> <source>Load session</source> <translation>Sitzung laden</translation> </message> <message> - <location filename="../Project/Project.py" line="5250" /> + <location filename="../Project/Project.py" line="5247" /> <source>Load the projects session file.</source> <translation>Laden der Projektsitzung.</translation> </message> <message> - <location filename="../Project/Project.py" line="5252" /> + <location filename="../Project/Project.py" line="5249" /> <source><b>Load session</b><p>This loads the projects session file. The session consists of the following data.<br>- all open source files<br>- all breakpoint<br>- the commandline arguments<br>- the working directory<br>- the exception reporting flag</p></source> <translation><b>Sitzung laden</b><p>Dies lädt eine Projektsitzungsdatei. Die Sitzung enthält die folgenden Daten.<br>- alle offenen Quelltextdateien<br>- alle Haltepunkte<br>- die Kommandozeilenparameter<br>- das Arbeitsverzeichnis<br>- das Ausnahmemeldungsflag</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5268" /> - <location filename="../Project/Project.py" line="5267" /> + <location filename="../Project/Project.py" line="5265" /> + <location filename="../Project/Project.py" line="5264" /> <source>Save session</source> <translation>Sitzung speichern</translation> </message> <message> - <location filename="../Project/Project.py" line="5274" /> + <location filename="../Project/Project.py" line="5271" /> <source>Save the projects session file.</source> <translation>Speichern der Projektsitzung.</translation> </message> <message> - <location filename="../Project/Project.py" line="5276" /> + <location filename="../Project/Project.py" line="5273" /> <source><b>Save session</b><p>This saves the projects session file. The session consists of the following data.<br>- all open source files<br>- all breakpoint<br>- the commandline arguments<br>- the working directory<br>- the exception reporting flag</p></source> <translation><b>Sitzung speichern</b><p>Dies speichert eine Projektsitzungsdatei. Die Sitzung enthält die folgenden Daten.<br>- alle offenen Quelltextdateien<br>- alle Haltepunkte<br>- die Kommandozeilenparameter<br>- das Arbeitsverzeichnis<br>- das Ausnahmemeldungsflag</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5292" /> - <location filename="../Project/Project.py" line="5291" /> + <location filename="../Project/Project.py" line="5289" /> + <location filename="../Project/Project.py" line="5288" /> <source>Delete session</source> <translation>Sitzung löschen</translation> </message> <message> - <location filename="../Project/Project.py" line="5298" /> + <location filename="../Project/Project.py" line="5295" /> <source>Delete the projects session file.</source> <translation>Löscht die Projektsitzungsdatei.</translation> </message> <message> - <location filename="../Project/Project.py" line="5300" /> + <location filename="../Project/Project.py" line="5297" /> <source><b>Delete session</b><p>This deletes the projects session file</p></source> <translation><b>Sitzung löschen</b><p>Dies löscht die Sitzungsdatei des Projektes.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5315" /> + <location filename="../Project/Project.py" line="5312" /> <source>Code Metrics</source> <translation>Quelltextmetriken</translation> </message> <message> - <location filename="../Project/Project.py" line="5316" /> + <location filename="../Project/Project.py" line="5313" /> <source>&Code Metrics...</source> <translation>&Quelltextmetriken...</translation> </message> <message> + <location filename="../Project/Project.py" line="5320" /> + <source>Show some code metrics for the project.</source> + <translation>Zeige einige Quelltextmetriken für das Projekt.</translation> + </message> + <message> <location filename="../Project/Project.py" line="5323" /> - <source>Show some code metrics for the project.</source> - <translation>Zeige einige Quelltextmetriken für das Projekt.</translation> - </message> - <message> - <location filename="../Project/Project.py" line="5326" /> <source><b>Code Metrics...</b><p>This shows some code metrics for all Python files in the project.</p></source> <translation><b>Quelltextmetriken...</b><p>Dies zeigt einige Quelltextmetriken für alle Python-Dateien des Projektes.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5336" /> + <location filename="../Project/Project.py" line="5333" /> <source>Python Code Coverage</source> <translation>Python-Quelltext-Abdeckung</translation> </message> <message> - <location filename="../Project/Project.py" line="5337" /> + <location filename="../Project/Project.py" line="5334" /> <source>Code Co&verage...</source> <translation>&Quelltext Abdeckung...</translation> </message> <message> + <location filename="../Project/Project.py" line="5341" /> + <source>Show code coverage information for the project.</source> + <translation>Zeige die Quelltextabdeckung für das Projekt.</translation> + </message> + <message> <location filename="../Project/Project.py" line="5344" /> - <source>Show code coverage information for the project.</source> - <translation>Zeige die Quelltextabdeckung für das Projekt.</translation> - </message> - <message> - <location filename="../Project/Project.py" line="5347" /> <source><b>Code Coverage...</b><p>This shows the code coverage information for all Python files in the project.</p></source> <translation><b>Quelltext Abdeckung...</b><p>Dies zeigt die Quelltextabdeckung für alle Python-Dateien des Projektes an.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="6781" /> - <location filename="../Project/Project.py" line="6768" /> - <location filename="../Project/Project.py" line="5357" /> + <location filename="../Project/Project.py" line="6778" /> + <location filename="../Project/Project.py" line="6765" /> + <location filename="../Project/Project.py" line="5354" /> <source>Profile Data</source> <translation>Profildaten</translation> </message> <message> - <location filename="../Project/Project.py" line="5358" /> + <location filename="../Project/Project.py" line="5355" /> <source>&Profile Data...</source> <translation>&Profildaten...</translation> </message> <message> + <location filename="../Project/Project.py" line="5362" /> + <source>Show profiling data for the project.</source> + <translation>Zeige Profildaten des aktuellen Projektes.</translation> + </message> + <message> <location filename="../Project/Project.py" line="5365" /> - <source>Show profiling data for the project.</source> - <translation>Zeige Profildaten des aktuellen Projektes.</translation> - </message> - <message> - <location filename="../Project/Project.py" line="5368" /> <source><b>Profile Data...</b><p>This shows the profiling data for the project.</p></source> <translation><b>Profildaten...</b><p>Dies zeigt die Profildaten des Projektes.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="6833" /> - <location filename="../Project/Project.py" line="5383" /> + <location filename="../Project/Project.py" line="6830" /> + <location filename="../Project/Project.py" line="5380" /> <source>Application Diagram</source> <translation>Applikations-Diagramm</translation> </message> <message> - <location filename="../Project/Project.py" line="5384" /> + <location filename="../Project/Project.py" line="5381" /> <source>&Application Diagram...</source> <translation>&Applikations-Diagramm...</translation> </message> <message> + <location filename="../Project/Project.py" line="5388" /> + <source>Show a diagram of the project.</source> + <translation>Zeigt ein Diagramm des Projektes.</translation> + </message> + <message> <location filename="../Project/Project.py" line="5391" /> - <source>Show a diagram of the project.</source> - <translation>Zeigt ein Diagramm des Projektes.</translation> - </message> - <message> - <location filename="../Project/Project.py" line="5394" /> <source><b>Application Diagram...</b><p>This shows a diagram of the project.</p></source> <translation><b>Applikations-Diagramm...</b><p>Dies zeigt ein Diagramm des Projektes.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5403" /> + <location filename="../Project/Project.py" line="5400" /> <source>Load Diagram</source> <translation>Diagramm laden</translation> </message> <message> - <location filename="../Project/Project.py" line="5404" /> + <location filename="../Project/Project.py" line="5401" /> <source>&Load Diagram...</source> <translation>Diagramm &laden...</translation> </message> <message> - <location filename="../Project/Project.py" line="5410" /> + <location filename="../Project/Project.py" line="5407" /> <source>Load a diagram from file.</source> <translation>Lade ein Diagramm aus einer Datei.</translation> </message> <message> - <location filename="../Project/Project.py" line="5412" /> + <location filename="../Project/Project.py" line="5409" /> <source><b>Load Diagram...</b><p>This loads a diagram from file.</p></source> <translation><b>Diagramm laden...</b><p>Dies lädt ein Diagramm aus einer Datei.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="7001" /> - <location filename="../Project/Project.py" line="6946" /> - <location filename="../Project/Project.py" line="5427" /> + <location filename="../Project/Project.py" line="6998" /> + <location filename="../Project/Project.py" line="6943" /> + <location filename="../Project/Project.py" line="5424" /> <source>Create Package List</source> <translation>Erzeuge Paketliste</translation> </message> <message> - <location filename="../Project/Project.py" line="5429" /> + <location filename="../Project/Project.py" line="5426" /> <source>Create &Package List</source> <translation>Erzeuge &Paketliste</translation> </message> <message> + <location filename="../Project/Project.py" line="5433" /> + <source>Create an initial PKGLIST file for an eric plugin.</source> + <translation>Erzeugt eine erste PKGLIST-Datei für ein eric Plugin.</translation> + </message> + <message> <location filename="../Project/Project.py" line="5436" /> - <source>Create an initial PKGLIST file for an eric plugin.</source> - <translation>Erzeugt eine erste PKGLIST-Datei für ein eric Plugin.</translation> - </message> - <message> - <location filename="../Project/Project.py" line="5439" /> <source><b>Create Package List</b><p>This creates an initial list of files to include in an eric plugin archive. The list is created from the project file.</p></source> <translation><b>Erzeuge Paketliste</b><p>Dies erzeugt eine erste Liste von Dateien, die in ein eric Pluginarchive einbezogen werden sollen. Die Liste wird aus der Projektdatei erzeugt.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="7071" /> - <location filename="../Project/Project.py" line="5450" /> + <location filename="../Project/Project.py" line="7068" /> + <location filename="../Project/Project.py" line="5447" /> <source>Create Plugin Archives</source> <translation>Erzeuge Plugin Archive</translation> </message> <message> - <location filename="../Project/Project.py" line="5452" /> + <location filename="../Project/Project.py" line="5449" /> <source>Create Plugin &Archives</source> <translation>Erzeuge Plugin &Archive</translation> </message> <message> - <location filename="../Project/Project.py" line="5458" /> + <location filename="../Project/Project.py" line="5455" /> <source>Create eric plugin archive files.</source> <translation>Erzeugt eric Plugin Archivdateien.</translation> </message> <message> - <location filename="../Project/Project.py" line="5460" /> + <location filename="../Project/Project.py" line="5457" /> <source><b>Create Plugin Archives</b><p>This creates eric plugin archive files using the list of files given in a PKGLIST* file. The archive name is built from the main script name if not designated in the package list file.</p></source> <translation><b>Erzeuge Plugin Archive</b><p>Dies erzeugt eric Plugin Archivdateien mit den Dateien, die in einer PKGLIST*-Datei angegeben wurden. Der Archivname wird aus dem Namen des Hauptskriptes generiert, falls er nicht in der Paketlistendatei angegeben ist.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5472" /> + <location filename="../Project/Project.py" line="5469" /> <source>Create Plugin Archives (Snapshot)</source> <translation>Erzeuge Plugin Archive (Snapshot)</translation> </message> <message> - <location filename="../Project/Project.py" line="5474" /> + <location filename="../Project/Project.py" line="5471" /> <source>Create Plugin Archives (&Snapshot)</source> <translation>Erzeuge Plugin Archive (&Snapshot)</translation> </message> <message> + <location filename="../Project/Project.py" line="5478" /> + <source>Create eric plugin archive files (snapshot releases).</source> + <translation>Erzeugt eric Plugin Archivdateien (Snapshot Releases).</translation> + </message> + <message> <location filename="../Project/Project.py" line="5481" /> - <source>Create eric plugin archive files (snapshot releases).</source> - <translation>Erzeugt eric Plugin Archivdateien (Snapshot Releases).</translation> - </message> - <message> - <location filename="../Project/Project.py" line="5484" /> <source><b>Create Plugin Archives (Snapshot)</b><p>This creates eric plugin archive files using the list of files given in the PKGLIST* file. The archive name is built from the main script name if not designated in the package list file. The version entry of the main script is modified to reflect a snapshot release.</p></source> <translation><b>Erzeuge Plugin Archive (Snapshot)</b><p>Dies erzeugt eric Plugin Archivdateien mit den Dateien, die in der PKGLIST*-Datei angegeben wurden. Der Archivname wird aus dem Namen des Hauptskriptes generiert, falls er nicht in der Paketlistendatei angegeben ist. Der Versionseintrag des Hauptskriptes wird verändert, um ein Snapshot Release anzuzeigen.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="7513" /> - <location filename="../Project/Project.py" line="7484" /> - <location filename="../Project/Project.py" line="7438" /> - <location filename="../Project/Project.py" line="7390" /> - <location filename="../Project/Project.py" line="5503" /> + <location filename="../Project/Project.py" line="7510" /> + <location filename="../Project/Project.py" line="7481" /> + <location filename="../Project/Project.py" line="7435" /> + <location filename="../Project/Project.py" line="7387" /> + <location filename="../Project/Project.py" line="5500" /> <source>Execute Make</source> <translation>Make ausführen</translation> </message> <message> - <location filename="../Project/Project.py" line="5504" /> + <location filename="../Project/Project.py" line="5501" /> <source>&Execute Make</source> <translation>&Make ausführen</translation> </message> <message> - <location filename="../Project/Project.py" line="5510" /> + <location filename="../Project/Project.py" line="5507" /> <source>Perform a 'make' run.</source> <translation>Führt eine 'make' Lauf aus.</translation> </message> <message> - <location filename="../Project/Project.py" line="5512" /> + <location filename="../Project/Project.py" line="5509" /> <source><b>Execute Make</b><p>This performs a 'make' run to rebuild the configured target.</p></source> <translation><b>Make ausführen</b><p>Die führt einen 'make' Lauf aus, um das konfigurierte Ziel zu bauen.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="7490" /> - <location filename="../Project/Project.py" line="5522" /> + <location filename="../Project/Project.py" line="7487" /> + <location filename="../Project/Project.py" line="5519" /> <source>Test for Changes</source> <translation>Auf Änderungen prüfen</translation> </message> <message> - <location filename="../Project/Project.py" line="5523" /> + <location filename="../Project/Project.py" line="5520" /> <source>&Test for Changes</source> <translation>Auf Änderungen &prüfen</translation> </message> <message> + <location filename="../Project/Project.py" line="5527" /> + <source>Question 'make', if a rebuild is needed.</source> + <translation>Fragt 'make', ob ein Neubau erforderlich ist.</translation> + </message> + <message> <location filename="../Project/Project.py" line="5530" /> - <source>Question 'make', if a rebuild is needed.</source> - <translation>Fragt 'make', ob ein Neubau erforderlich ist.</translation> - </message> - <message> - <location filename="../Project/Project.py" line="5533" /> <source><b>Test for Changes</b><p>This questions 'make', if a rebuild of the configured target is necessary.</p></source> <translation><b>Auf Änderungen prüfen</b><p>Dies fragt 'make', ob ein Neubau des konfigurierten Zieles erforderlich ist.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5551" /> + <location filename="../Project/Project.py" line="5548" /> <source>Create SBOM File</source> <translation>STL Datei erzeugen</translation> </message> <message> - <location filename="../Project/Project.py" line="5552" /> + <location filename="../Project/Project.py" line="5549" /> <source>Create &SBOM File</source> <translation>&STL Datei erzeugen</translation> </message> <message> + <location filename="../Project/Project.py" line="5556" /> + <source>Create a SBOM file of the project dependencies.</source> + <translation>Erzeuge eine STL Datei der Projektabhängigkeiten.</translation> + </message> + <message> <location filename="../Project/Project.py" line="5559" /> - <source>Create a SBOM file of the project dependencies.</source> - <translation>Erzeuge eine STL Datei der Projektabhängigkeiten.</translation> - </message> - <message> - <location filename="../Project/Project.py" line="5562" /> <source><b>Create SBOM File</b><p>This allows the creation of a SBOM file of the project dependencies. This may be based on various input sources and will be saved as a CycloneDX SBOM file.</p></source> <translation><b>STL Datei erzeugen</b><p>Dies erlaubt die Erstellung einer STL Datei der Projektabhängigkeiten. Dies kann auf verschiedenen Eingaben aufgebaut werden und wird in eine CycloneDX STL Datei gesichert.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5573" /> + <location filename="../Project/Project.py" line="5570" /> <source>Clear Byte Code Caches</source> <translation>Byte Code Caches löschen</translation> </message> <message> - <location filename="../Project/Project.py" line="5574" /> + <location filename="../Project/Project.py" line="5571" /> <source>Clear Byte Code &Caches</source> <translation>Byte Code &Caches löschen</translation> </message> <message> + <location filename="../Project/Project.py" line="5578" /> + <source>Clear the byte code caches of the project.</source> + <translation>Löscht die Byte Code Caches des Projektes.</translation> + </message> + <message> <location filename="../Project/Project.py" line="5581" /> - <source>Clear the byte code caches of the project.</source> - <translation>Löscht die Byte Code Caches des Projektes.</translation> - </message> - <message> - <location filename="../Project/Project.py" line="5584" /> <source><b>Clear Byte Code Caches</b><p>This deletes all directories containing byte code cache files.</p></source> <translation><b>Byte Code Caches löschen</b><p>Dies löscht alle Verzeichnisse mit Byte Code Cachedateien.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5600" /> + <location filename="../Project/Project.py" line="5597" /> <source>About Black</source> <translation>Über Black</translation> </message> <message> - <location filename="../Project/Project.py" line="5601" /> + <location filename="../Project/Project.py" line="5598" /> <source>&Black</source> <translation>&Black</translation> </message> <message> - <location filename="../Project/Project.py" line="5607" /> + <location filename="../Project/Project.py" line="5604" /> <source>Show some information about 'Black'.</source> <translation>Gibt ein paar Informationen zu 'Black' aus.</translation> </message> <message> - <location filename="../Project/Project.py" line="5609" /> + <location filename="../Project/Project.py" line="5606" /> <source><b>Black</b><p>This shows some information about the installed 'Black' tool.</p></source> <translation><b>Black</b><p>Dies gibt ein paar Informationen zum installierten 'Black' Werkzeug aus.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5621" /> + <location filename="../Project/Project.py" line="5618" /> <source>Format Code</source> <translation>Code formatieren</translation> </message> <message> - <location filename="../Project/Project.py" line="5622" /> + <location filename="../Project/Project.py" line="5619" /> <source>&Format Code</source> <translation>Code &formatieren</translation> </message> <message> + <location filename="../Project/Project.py" line="5626" /> + <source>Format the project sources with 'Black'.</source> + <translation>Formatiert die Projektquellen mit 'Black'.</translation> + </message> + <message> <location filename="../Project/Project.py" line="5629" /> - <source>Format the project sources with 'Black'.</source> - <translation>Formatiert die Projektquellen mit 'Black'.</translation> - </message> - <message> - <location filename="../Project/Project.py" line="5632" /> <source><b>Format Code</b><p>This shows a dialog to enter parameters for the formatting run and reformats the project sources using 'Black'.</p></source> <translation><b>Code formatieren</b><p>Dies zeigt einen Dialog zur Konfiguration eines Formatierungslaufes an und formatiert die Quellen mit 'Black'.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5644" /> + <location filename="../Project/Project.py" line="5641" /> <source>Check Code Formatting</source> <translation>Code Umformatierung prüfen</translation> </message> <message> - <location filename="../Project/Project.py" line="5645" /> + <location filename="../Project/Project.py" line="5642" /> <source>&Check Code Formatting</source> <translation>&Code Umformatierung prüfen</translation> </message> <message> - <location filename="../Project/Project.py" line="5652" /> + <location filename="../Project/Project.py" line="5649" /> <source>Check, if the project sources need to be reformatted with 'Black'.</source> <translation>Prüft, ob die Projektquellen mit 'Black' umformatiert werden müssen.</translation> </message> <message> - <location filename="../Project/Project.py" line="5657" /> + <location filename="../Project/Project.py" line="5654" /> <source><b>Check Code Formatting</b><p>This shows a dialog to enter parameters for the format check run and performs a check, if the project sources need to be reformatted using 'Black'.</p></source> <translation><b>Code Umformatierung prüfen</b><p>Dies zeigt einen Dialog zur Konfiguration eines Formatierungsprüflaufes an und prüft, ob die Projektquellen mit 'Black' umformatiert werden müssen.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5670" /> + <location filename="../Project/Project.py" line="5667" /> <source>Code Formatting Diff</source> <translation>Diff Code Umformatierung</translation> </message> <message> - <location filename="../Project/Project.py" line="5671" /> + <location filename="../Project/Project.py" line="5668" /> <source>Code Formatting &Diff</source> <translation>&Diff Code Umformatierung</translation> </message> <message> - <location filename="../Project/Project.py" line="5678" /> + <location filename="../Project/Project.py" line="5675" /> <source>Generate a unified diff of potential project source reformatting with 'Black'.</source> <translation>Erzeugt ein Unified Diff potentieller Umformatierungen der Projektquellen mit 'Black'.</translation> </message> <message> - <location filename="../Project/Project.py" line="5684" /> + <location filename="../Project/Project.py" line="5681" /> <source><b>Diff Code Formatting</b><p>This shows a dialog to enter parameters for the format diff run and generates a unified diff of potential project source reformatting using 'Black'.</p></source> <translation><b>Diff Code Umformatierung</b><p>Dies zeigt einen Dialog zur Konfiguration der Erstellung eines Formatierungsdiff an und erstellt ein Unified Diff potentieller Umformatierungen der Projektquellen mit 'Black'.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5849" /> - <location filename="../Project/Project.py" line="5799" /> - <location filename="../Project/Project.py" line="5798" /> - <location filename="../Project/Project.py" line="5698" /> - <location filename="../Project/Project.py" line="5697" /> + <location filename="../Project/Project.py" line="5846" /> + <location filename="../Project/Project.py" line="5796" /> + <location filename="../Project/Project.py" line="5795" /> + <location filename="../Project/Project.py" line="5695" /> + <location filename="../Project/Project.py" line="5694" /> <source>Configure</source> <translation>Einstellungen</translation> </message> <message> - <location filename="../Project/Project.py" line="5705" /> + <location filename="../Project/Project.py" line="5702" /> <source>Enter the parameters for formatting the project sources with 'Black'.</source> <translation>Gib die Parameter zur Formatierung der Projektquellen mit 'Black' ein.</translation> </message> <message> - <location filename="../Project/Project.py" line="5710" /> + <location filename="../Project/Project.py" line="5707" /> <source><b>Configure</b><p>This shows a dialog to enter the parameters for formatting the project sources with 'Black'.</p></source> <translation><b>Einstellungen</b><p>Dies öffnet einen Dialog zur Eingabe der Parameter für Formatierung der Projektquellen mit 'Black'.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5726" /> + <location filename="../Project/Project.py" line="5723" /> <source>About isort</source> <translation>Über isort</translation> </message> <message> - <location filename="../Project/Project.py" line="5727" /> + <location filename="../Project/Project.py" line="5724" /> <source>&isort</source> <translation>&isort</translation> </message> <message> - <location filename="../Project/Project.py" line="5733" /> + <location filename="../Project/Project.py" line="5730" /> <source>Show some information about 'isort'.</source> <translation>Gibt ein paar Informationen zu 'isort' aus.</translation> </message> <message> - <location filename="../Project/Project.py" line="5735" /> + <location filename="../Project/Project.py" line="5732" /> <source><b>isort</b><p>This shows some information about the installed 'isort' tool.</p></source> <translation><b>isort</b><p>Dies gibt ein paar Informationen zum installierten 'isort' Werkzeug aus.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5748" /> - <location filename="../Project/Project.py" line="5747" /> + <location filename="../Project/Project.py" line="5745" /> + <location filename="../Project/Project.py" line="5744" /> <source>Sort Imports</source> <translation>Imports Sortieren</translation> </message> <message> + <location filename="../Project/Project.py" line="5752" /> + <source>Sort the import statements of the project sources with 'isort'.</source> + <translation>Sortiert die Importanweisungen der Projektquellen mit 'isort'.</translation> + </message> + <message> <location filename="../Project/Project.py" line="5755" /> - <source>Sort the import statements of the project sources with 'isort'.</source> - <translation>Sortiert die Importanweisungen der Projektquellen mit 'isort'.</translation> - </message> - <message> - <location filename="../Project/Project.py" line="5758" /> <source><b>Sort Imports</b><p>This shows a dialog to enter parameters for the imports sorting run and sorts the import statements of the project sources using 'isort'.</p></source> <translation><b>Imports Sortieren</b><p>Dies zeigt einen Dialog zur Eingabe der Parameter eines Sortierungslaufes an und sortiert die Importanweisungen der Projektquellen mit 'isort'.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5772" /> - <location filename="../Project/Project.py" line="5771" /> + <location filename="../Project/Project.py" line="5769" /> + <location filename="../Project/Project.py" line="5768" /> <source>Imports Sorting Diff</source> <translation>Diff der Imports Sortierung</translation> </message> <message> - <location filename="../Project/Project.py" line="5779" /> + <location filename="../Project/Project.py" line="5776" /> <source>Generate a unified diff of potential project source imports resorting with 'isort'.</source> <translation>Erzeugt ein Unified Diff potentieller Umsortierungen der Importanweisungen der Projektquellen mit 'isort'.</translation> </message> <message> - <location filename="../Project/Project.py" line="5785" /> + <location filename="../Project/Project.py" line="5782" /> <source><b>Imports Sorting Diff</b><p>This shows a dialog to enter parameters for the imports sorting diff run and generates a unified diff of potential project source changes using 'isort'.</p></source> <translation><b>Diff der Imports Sortierung</b><p>Dies zeigt einen Dialog zur Eingabe der Parameter eines Sortierungslaufes an und erzeugt ein Unified Diff potentieller Umsortierungen der Importanweisungen der Projektquellen mit 'isort'.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5806" /> + <location filename="../Project/Project.py" line="5803" /> <source>Enter the parameters for resorting the project sources import statements with 'isort'.</source> <translation>Gib die Parameter für die Umsortierung der Importanweisungen der Projektquellen mit 'isort' ein.</translation> </message> <message> - <location filename="../Project/Project.py" line="5812" /> + <location filename="../Project/Project.py" line="5809" /> <source><b>Configure</b><p>This shows a dialog to enter the parameters for resorting the import statements of the project sources with 'isort'.</p></source> <translation><b>Einstellungen</b><p>Dies zeigt einen Dialog zur Eingabe der Parameter für die Umsortierung der Importanweisungen der Projektquellen mit 'isort' an.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5828" /> + <location filename="../Project/Project.py" line="5825" /> <source>Install Project</source> <translation>Projekt installieren</translation> </message> <message> - <location filename="../Project/Project.py" line="5829" /> + <location filename="../Project/Project.py" line="5826" /> <source>&Install Project</source> <translation>Projekt &installieren</translation> </message> <message> + <location filename="../Project/Project.py" line="5833" /> + <source>Install the project into the embedded environment.</source> + <translation>Installiert das Projekt in die eingebettete Umgebung.</translation> + </message> + <message> <location filename="../Project/Project.py" line="5836" /> - <source>Install the project into the embedded environment.</source> - <translation>Installiert das Projekt in die eingebettete Umgebung.</translation> - </message> - <message> - <location filename="../Project/Project.py" line="5839" /> <source><b>Install Project</b><p>This installs the project into the embedded virtual environment in editable mode (i.e. development mode).</p></source> <translation><b>Projekt insttallieren</b><p>Die installiert das Projekt im editierbaren Modus (d.h. Entwicklungsmodus) in die eingebettete Umgebung.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5850" /> + <location filename="../Project/Project.py" line="5847" /> <source>&Configure</source> <translation>&Einstellungen</translation> </message> <message> + <location filename="../Project/Project.py" line="5854" /> + <source>Configure the embedded environment.</source> + <translation>Konfiguriert die eingebettete Umgebung.</translation> + </message> + <message> <location filename="../Project/Project.py" line="5857" /> - <source>Configure the embedded environment.</source> - <translation>Konfiguriert die eingebettete Umgebung.</translation> - </message> - <message> - <location filename="../Project/Project.py" line="5860" /> <source><b>Configure</b><p>This opens a dialog to configure the embedded virtual environment of the project.</p></source> <translation><b>Einstellungen</b><p>Dies öffnet einen Dialog zur Konfiguration der einebetteten virtuellen Umgebung des Projektes.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5870" /> + <location filename="../Project/Project.py" line="5867" /> <source>Upgrade</source> <translation>Aktualisieren</translation> </message> <message> - <location filename="../Project/Project.py" line="5871" /> + <location filename="../Project/Project.py" line="5868" /> <source>&Upgrade</source> <translation>&Aktualisieren</translation> </message> <message> - <location filename="../Project/Project.py" line="5877" /> + <location filename="../Project/Project.py" line="5874" /> <source>Upgrade the embedded environment.</source> <translation>Aktualisiert die eingebettete Umgebung.</translation> </message> <message> - <location filename="../Project/Project.py" line="5879" /> + <location filename="../Project/Project.py" line="5876" /> <source><b>Upgrade</b><p>This opens a dialog to enter the parameters to upgrade the embedded virtual environment of the project.</p></source> <translation><b>Aktualisieren</b><p>Dies öffnet einen Dialog zur Eingabe der Parameter für die Aktualisierung der einebetteten virtuellen Umgebung des Projektes.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5891" /> + <location filename="../Project/Project.py" line="5888" /> <source>Recreate</source> <translation>Neu erzeugen</translation> </message> <message> - <location filename="../Project/Project.py" line="5892" /> + <location filename="../Project/Project.py" line="5889" /> <source>&Recreate</source> <translation>&Neu erzeugen</translation> </message> <message> - <location filename="../Project/Project.py" line="5898" /> + <location filename="../Project/Project.py" line="5895" /> <source>Recreate the embedded environment.</source> <translation>Erzeugt die eingebettete Umgebung neu.</translation> </message> <message> - <location filename="../Project/Project.py" line="5900" /> + <location filename="../Project/Project.py" line="5897" /> <source><b>Recreate</b><p>This opens a dialog to enter the parameters to recreate the embedded virtual environment of the project. The existing environment is cleared first.</p></source> <translation><b>Neu erzeugen</b><p>Dies öffnet einen Dialog zur Eingabe der Parameter für die Neuerzeugung der einebetteten virtuellen Umgebung des Projektes. Die existierende Umgebung wird zunächst gelöscht.</p></translation> </message> <message> + <location filename="../Project/Project.py" line="5929" /> + <source>&Project</source> + <translation>&Projekt</translation> + </message> + <message> + <location filename="../Project/Project.py" line="5930" /> + <source>Open &Recent Projects</source> + <translation>Zu&letzt geöffnete Projekte</translation> + </message> + <message> <location filename="../Project/Project.py" line="5932" /> - <source>&Project</source> - <translation>&Projekt</translation> + <source>Session</source> + <translation>Sitzung</translation> </message> <message> <location filename="../Project/Project.py" line="5933" /> - <source>Open &Recent Projects</source> - <translation>Zu&letzt geöffnete Projekte</translation> - </message> - <message> - <location filename="../Project/Project.py" line="5935" /> - <source>Session</source> - <translation>Sitzung</translation> + <source>Debugger</source> + <translation>Debugger</translation> + </message> + <message> + <location filename="../Project/Project.py" line="5934" /> + <source>Embedded Environment</source> + <translation>Eingebettete Umgebung</translation> </message> <message> <location filename="../Project/Project.py" line="5936" /> - <source>Debugger</source> - <translation>Debugger</translation> + <source>Project-T&ools</source> + <translation>Projekt&werkzeuge</translation> </message> <message> <location filename="../Project/Project.py" line="5937" /> - <source>Embedded Environment</source> - <translation>Eingebettete Umgebung</translation> - </message> - <message> - <location filename="../Project/Project.py" line="5939" /> - <source>Project-T&ools</source> - <translation>Projekt&werkzeuge</translation> - </message> - <message> - <location filename="../Project/Project.py" line="5940" /> <source>&Version Control</source> <translation>&Versionskontrolle</translation> </message> <message> - <location filename="../Project/Project.py" line="5944" /> + <location filename="../Project/Project.py" line="5941" /> <source>Chec&k</source> <translation>&Prüfen</translation> </message> <message> + <location filename="../Project/Project.py" line="5943" /> + <source>Code &Formatting</source> + <translation>Code &Formatierung</translation> + </message> + <message> + <location filename="../Project/Project.py" line="5945" /> + <source>Sho&w</source> + <translation>&Zeige</translation> + </message> + <message> <location filename="../Project/Project.py" line="5946" /> - <source>Code &Formatting</source> - <translation>Code &Formatierung</translation> + <source>&Diagrams</source> + <translation>&Diagramme</translation> + </message> + <message> + <location filename="../Project/Project.py" line="5947" /> + <source>Pac&kagers</source> + <translation>Pa&ketierer</translation> </message> <message> <location filename="../Project/Project.py" line="5948" /> - <source>Sho&w</source> - <translation>&Zeige</translation> - </message> - <message> - <location filename="../Project/Project.py" line="5949" /> - <source>&Diagrams</source> - <translation>&Diagramme</translation> + <source>Source &Documentation</source> + <translation>&Quelltextdokumentation</translation> </message> <message> <location filename="../Project/Project.py" line="5950" /> - <source>Pac&kagers</source> - <translation>Pa&ketierer</translation> + <source>Make</source> + <translation>Make</translation> </message> <message> <location filename="../Project/Project.py" line="5951" /> - <source>Source &Documentation</source> - <translation>&Quelltextdokumentation</translation> - </message> - <message> - <location filename="../Project/Project.py" line="5953" /> - <source>Make</source> - <translation>Make</translation> - </message> - <message> - <location filename="../Project/Project.py" line="5954" /> <source>Other Tools</source> <translation>Weitere Werkzeuge</translation> </message> <message> - <location filename="../Project/Project.py" line="6116" /> - <location filename="../Project/Project.py" line="6114" /> + <location filename="../Project/Project.py" line="6113" /> + <location filename="../Project/Project.py" line="6111" /> <source>Project</source> <translation>Projekt</translation> </message> <message> - <location filename="../Project/Project.py" line="6198" /> + <location filename="../Project/Project.py" line="6195" /> <source>&Clear</source> <translation>&Löschen</translation> </message> <message> - <location filename="../Project/Project.py" line="6395" /> + <location filename="../Project/Project.py" line="6392" /> <source>Search New Files</source> <translation>Neue Dateien suchen</translation> </message> <message> - <location filename="../Project/Project.py" line="6396" /> + <location filename="../Project/Project.py" line="6393" /> <source>There were no new files found to be added.</source> <translation>Es wurden keine neuen Dateien gefunden.</translation> </message> <message> - <location filename="../Project/Project.py" line="6557" /> - <location filename="../Project/Project.py" line="6544" /> + <location filename="../Project/Project.py" line="6554" /> + <location filename="../Project/Project.py" line="6541" /> <source>Version Control System</source> <translation>Versionskontrollsystem</translation> </message> <message> - <location filename="../Project/Project.py" line="6545" /> + <location filename="../Project/Project.py" line="6542" /> <source><p>The selected VCS <b>{0}</b> could not be found. <br/>Reverting override.</p><p>{1}</p></source> <translation><p>Das ausgewählte Versionskontrollsystem <b>{0}</b> konnte nicht gefunden werden.<br/>Ignoriere Übersteuerung.</p><p>{1}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="6558" /> + <location filename="../Project/Project.py" line="6555" /> <source><p>The selected VCS <b>{0}</b> could not be found.<br/>Disabling version control.</p><p>{1}</p></source> <translation><p>Das ausgewählte Versionskontrollsystem <b>{0}</b> konnte nicht gefunden werden.<br/>Versionskontrolle nicht möglich.</p><p>{1}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="6715" /> + <location filename="../Project/Project.py" line="6712" /> <source>Coverage Data</source> <translation>Quelltext Abdeckungsdaten</translation> </message> <message> - <location filename="../Project/Project.py" line="6769" /> - <location filename="../Project/Project.py" line="6716" /> + <location filename="../Project/Project.py" line="6766" /> + <location filename="../Project/Project.py" line="6713" /> <source>There is no main script defined for the current project. Aborting</source> <translation>Für das aktuelle Projekt ist kein Hauptskript festgelegt. Abbruch</translation> </message> <message> - <location filename="../Project/Project.py" line="6728" /> + <location filename="../Project/Project.py" line="6725" /> <source>Code Coverage</source> <translation>Quelltext Abdeckung</translation> </message> <message> - <location filename="../Project/Project.py" line="6729" /> + <location filename="../Project/Project.py" line="6726" /> <source>Please select a coverage file</source> <translation>Bitte wählen Sie eine Datei mit Abdeckungsdaten</translation> </message> <message> - <location filename="../Project/Project.py" line="6782" /> + <location filename="../Project/Project.py" line="6779" /> <source>Please select a profile file</source> <translation>Bitte wählen Sie eine Datei mit Profildaten</translation> </message> <message> - <location filename="../Project/Project.py" line="6834" /> + <location filename="../Project/Project.py" line="6831" /> <source>Include module names?</source> <translation>Modulnamen anzeigen?</translation> </message> <message> - <location filename="../Project/Project.py" line="6947" /> + <location filename="../Project/Project.py" line="6944" /> <source><p>The file <b>PKGLIST</b> already exists.</p><p>Overwrite it?</p></source> <translation><p>Die Datei <b>PKGLIST</b> existiert bereits.</p><p>Überschreiben?</p></translation> </message> <message> - <location filename="../Project/Project.py" line="7002" /> + <location filename="../Project/Project.py" line="6999" /> <source><p>The file <b>PKGLIST</b> could not be created.</p><p>Reason: {0}</p></source> <translation><p>Die Datei <b>PKGLIST</b> konnte nicht erzeugt werden.</p><p>Ursache: {0}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="7298" /> - <location filename="../Project/Project.py" line="7254" /> - <location filename="../Project/Project.py" line="7204" /> - <location filename="../Project/Project.py" line="7193" /> - <location filename="../Project/Project.py" line="7175" /> - <location filename="../Project/Project.py" line="7142" /> - <location filename="../Project/Project.py" line="7112" /> - <location filename="../Project/Project.py" line="7084" /> - <location filename="../Project/Project.py" line="7054" /> - <location filename="../Project/Project.py" line="7040" /> - <location filename="../Project/Project.py" line="7023" /> + <location filename="../Project/Project.py" line="7295" /> + <location filename="../Project/Project.py" line="7251" /> + <location filename="../Project/Project.py" line="7201" /> + <location filename="../Project/Project.py" line="7190" /> + <location filename="../Project/Project.py" line="7172" /> + <location filename="../Project/Project.py" line="7139" /> + <location filename="../Project/Project.py" line="7109" /> + <location filename="../Project/Project.py" line="7081" /> + <location filename="../Project/Project.py" line="7051" /> + <location filename="../Project/Project.py" line="7037" /> + <location filename="../Project/Project.py" line="7020" /> <source>Create Plugin Archive</source> <translation>Erzeuge Plugin Archiv</translation> </message> <message> - <location filename="../Project/Project.py" line="7024" /> + <location filename="../Project/Project.py" line="7021" /> <source>The project does not have a main script defined. Aborting...</source> <translation>Für das Projekt wurde kein Hauptskript angegeben. Abbruch...</translation> </message> <message> - <location filename="../Project/Project.py" line="7041" /> + <location filename="../Project/Project.py" line="7038" /> <source>Select package lists:</source> <translation>Wähle Paketlisten:</translation> </message> <message> - <location filename="../Project/Project.py" line="7055" /> + <location filename="../Project/Project.py" line="7052" /> <source><p>No package list files (PKGLIST*) available or selected. Aborting...</p></source> <translation><p>Keine Paketlistendateien (PKGLIST*) verfügbar oder ausgewählt. Abbruch...</p></translation> </message> <message> - <location filename="../Project/Project.py" line="7063" /> + <location filename="../Project/Project.py" line="7060" /> <source>Creating plugin archives...</source> <translation>Erzeuge Plugin Archive...</translation> </message> <message> + <location filename="../Project/Project.py" line="7061" /> + <source>Abort</source> + <translation>Abbruch</translation> + </message> + <message> <location filename="../Project/Project.py" line="7064" /> - <source>Abort</source> - <translation>Abbruch</translation> - </message> - <message> - <location filename="../Project/Project.py" line="7067" /> <source>%v/%m Archives</source> <translation>%v/%m Archive</translation> </message> <message> - <location filename="../Project/Project.py" line="7085" /> + <location filename="../Project/Project.py" line="7082" /> <source><p>The file <b>{0}</b> could not be read.</p><p>Reason: {1}</p></source> <translation><p>Die Datei <b>{0}</b> konnte nicht geladen werden.<br/>Grund: {1}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="7113" /> + <location filename="../Project/Project.py" line="7110" /> <source><p>The file <b>{0}</b> is not ready yet.</p><p>Please rework it and delete the'; initial_list' line of the header.</p></source> <translation><p>Die Datei <b>{0}</b> ist noch nicht bereit.</p><p>Bitte überarbeite sie und löschen die Zeile '; initial_list' des Dateikopfes.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="7143" /> + <location filename="../Project/Project.py" line="7140" /> <source><p>The eric plugin archive file <b>{0}</b> could not be created.</p><p>Reason: {1}</p></source> <translation><p>Die eric Plugin Archivdatei <b>{0}</b> konnte nicht erzeugt werden.</p><p>Ursache: {1}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="7176" /> + <location filename="../Project/Project.py" line="7173" /> <source><p>The file <b>{0}</b> could not be stored in the archive. Ignoring it.</p><p>Reason: {1}</p></source> <translation><p>Die Datei <b>{0}</b> konnte nicht im Archiv gespeichert werde. Sie wird ignoriert.</p><p>Ursache: {1}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="7194" /> + <location filename="../Project/Project.py" line="7191" /> <source><p>The eric plugin archive files were created with some errors.</p></source> <translation><p>Die eric Plugin Archivdateien wurden mit einigen Fehlern erzeugt.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="7205" /> + <location filename="../Project/Project.py" line="7202" /> <source><p>The eric plugin archive files were created successfully.</p></source> <translation><p>Die eric Plugin Archivdateien wurden erfolgreich erzeugt.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="7255" /> + <location filename="../Project/Project.py" line="7252" /> <source><p>The plugin file <b>{0}</b> could not be read.</p><p>Reason: {1}</p></source> <translation><p>Die Plugindatei <b>{0}</b> konnte nicht gelesen werden.<br>Grund: {1}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="7299" /> + <location filename="../Project/Project.py" line="7296" /> <source><p>The plugin file <b>{0}</b> could not be read.</p> <p>Reason: {1}</p></source> <translation><p>Die Plugindatei <b>{0}</b> konnte nicht gelesen werden.<br>Ursache: {1}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="7391" /> + <location filename="../Project/Project.py" line="7388" /> <source>'Make' is not supported for remote projects. Aborting...</source> <translation>'Make' wird für entfernte Projekte nicht unterstützt. Abbruch...</translation> </message> <message> - <location filename="../Project/Project.py" line="7439" /> + <location filename="../Project/Project.py" line="7436" /> <source>The make process did not start.</source> <translation>Der make Prozess ist nicht gestartet.</translation> </message> <message> - <location filename="../Project/Project.py" line="7485" /> + <location filename="../Project/Project.py" line="7482" /> <source>The make process crashed.</source> <translation>Der make Prozess ist abgestürzt.</translation> </message> <message> - <location filename="../Project/Project.py" line="7493" /> + <location filename="../Project/Project.py" line="7490" /> <source><p>There are changes that require the configured make target <b>{0}</b> to be rebuilt.</p></source> <translation><p>Es gibt Änderungen, die einen Neubau des konfigurierten Zieles <b>{0}</b> erfordern.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="7498" /> + <location filename="../Project/Project.py" line="7495" /> <source><p>There are changes that require the default make target to be rebuilt.</p></source> <translation><p>Es gibt Änderungen, die einen Neubau des Standardzieles erfordern.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="7514" /> + <location filename="../Project/Project.py" line="7511" /> <source>The makefile contains errors.</source> <translation>Die make Datei enthält Fehler.</translation> </message> <message> - <location filename="../Project/Project.py" line="7944" /> + <location filename="../Project/Project.py" line="7941" /> <source>Interpreter Missing</source> <translation>Interpreter fehlt</translation> </message> <message> - <location filename="../Project/Project.py" line="7945" /> + <location filename="../Project/Project.py" line="7942" /> <source>The configured interpreter of the embedded environment does not exist anymore. Shall the environment be upgraded?</source> <translation>Der konfigurierte Interpreter der eingebetteten Umgebung ist nicht mehr vorhanden. Soll die Umgebung aktualisiert werden?</translation> </message> <message> - <location filename="../Project/Project.py" line="8026" /> + <location filename="../Project/Project.py" line="8023" /> <source>Open Remote Project</source> <translation>Entferntes Projekt öffnen</translation> </message> <message> - <location filename="../Project/Project.py" line="8057" /> - <location filename="../Project/Project.py" line="8042" /> + <location filename="../Project/Project.py" line="8054" /> + <location filename="../Project/Project.py" line="8039" /> <source>Save Remote Project</source> <translation>Entferntes Projekt speichern</translation> </message> @@ -64576,8 +64576,8 @@ <translation>VCS-Status</translation> </message> <message> - <location filename="../Project/ProjectBrowserModel.py" line="922" /> - <location filename="../Project/ProjectBrowserModel.py" line="900" /> + <location filename="../Project/ProjectBrowserModel.py" line="926" /> + <location filename="../Project/ProjectBrowserModel.py" line="904" /> <location filename="../Project/ProjectBrowserModel.py" line="548" /> <location filename="../Project/ProjectBrowserModel.py" line="418" /> <source>local</source> @@ -69083,7 +69083,7 @@ <context> <name>PythonDisViewer</name> <message> - <location filename="../UI/PythonDisViewer.py" line="61" /> + <location filename="../UI/PythonDisViewer.py" line="62" /> <location filename="../UI/PythonDisViewer.ui" line="0" /> <source>Disassembly</source> <translation>Disassembly</translation> @@ -69099,160 +69099,160 @@ <translation>fett: Instruktion mit Sprungmarke</translation> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="73" /> + <location filename="../UI/PythonDisViewer.py" line="74" /> <source>Line</source> <translation>Zeile</translation> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="74" /> - <source>Offset</source> - <translation>Offset</translation> - </message> - <message> <location filename="../UI/PythonDisViewer.py" line="75" /> - <source>Operation</source> - <translation>Befehl</translation> + <source>Offset</source> + <translation>Offset</translation> </message> <message> <location filename="../UI/PythonDisViewer.py" line="76" /> - <source>Parameters</source> - <translation>Parameter</translation> + <source>Operation</source> + <translation>Befehl</translation> </message> <message> <location filename="../UI/PythonDisViewer.py" line="77" /> + <source>Parameters</source> + <translation>Parameter</translation> + </message> + <message> + <location filename="../UI/PythonDisViewer.py" line="78" /> <source>Interpreted Parameters</source> <translation>Parameterinterpretation</translation> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="80" /> + <location filename="../UI/PythonDisViewer.py" line="81" /> <source>Key</source> <translation>Schlüssel</translation> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="80" /> + <location filename="../UI/PythonDisViewer.py" line="81" /> <source>Value</source> <translation>Wert</translation> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="85" /> + <location filename="../UI/PythonDisViewer.py" line="86" /> <source>Show Code Info</source> <translation>Code Informationen anzeigen</translation> </message> <message> + <location filename="../UI/PythonDisViewer.py" line="97" /> + <location filename="../UI/PythonDisViewer.py" line="89" /> + <source>Expand All</source> + <translation>Alle aufklappen</translation> + </message> + <message> + <location filename="../UI/PythonDisViewer.py" line="99" /> + <location filename="../UI/PythonDisViewer.py" line="90" /> + <source>Collapse All</source> + <translation>Alle einklappen</translation> + </message> + <message> + <location filename="../UI/PythonDisViewer.py" line="102" /> + <location filename="../UI/PythonDisViewer.py" line="92" /> + <source>Configure...</source> + <translation>Einstellungen...</translation> + </message> + <message> <location filename="../UI/PythonDisViewer.py" line="96" /> - <location filename="../UI/PythonDisViewer.py" line="88" /> - <source>Expand All</source> - <translation>Alle aufklappen</translation> - </message> - <message> - <location filename="../UI/PythonDisViewer.py" line="98" /> - <location filename="../UI/PythonDisViewer.py" line="89" /> - <source>Collapse All</source> - <translation>Alle einklappen</translation> - </message> - <message> - <location filename="../UI/PythonDisViewer.py" line="101" /> - <location filename="../UI/PythonDisViewer.py" line="91" /> - <source>Configure...</source> - <translation>Einstellungen...</translation> - </message> - <message> - <location filename="../UI/PythonDisViewer.py" line="95" /> <source>Hide</source> <translation>Ausblenden</translation> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="448" /> + <location filename="../UI/PythonDisViewer.py" line="455" /> <source>No editor has been opened.</source> <translation>Es wurde kein Editor geöffnet.</translation> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="459" /> + <location filename="../UI/PythonDisViewer.py" line="466" /> <source>The current editor does not contain any source code.</source> <translation>Der aktuelle Editor enthält keinen Quelltext.</translation> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="465" /> + <location filename="../UI/PythonDisViewer.py" line="472" /> <source>The current editor does not contain Python source code.</source> <translation>Der aktuelle Editor enthält keinen Python Quelltext.</translation> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="509" /> + <location filename="../UI/PythonDisViewer.py" line="516" /> <source>Disassembly of last traceback</source> <translation>Disassembly der letzten Ausnahme</translation> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="672" /> + <location filename="../UI/PythonDisViewer.py" line="694" /> <source>Code Object '{0}'</source> <translation>Codeobjekt '{0}'</translation> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="784" /> + <location filename="../UI/PythonDisViewer.py" line="806" /> <source>Name</source> <translation>Name</translation> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="786" /> + <location filename="../UI/PythonDisViewer.py" line="808" /> <source>Filename</source> <translation>Dateiname</translation> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="790" /> - <source>First Line</source> - <translation>Erste Zeile</translation> - </message> - <message> - <location filename="../UI/PythonDisViewer.py" line="794" /> - <source>Argument Count</source> - <translation>Anzahl Argumente</translation> - </message> - <message> - <location filename="../UI/PythonDisViewer.py" line="799" /> - <source>Positional-only Arguments</source> - <translation>Positional-only Argumente</translation> - </message> - <message> - <location filename="../UI/PythonDisViewer.py" line="805" /> - <source>Keyword-only Arguments</source> - <translation>Keyword-only Argumente</translation> - </message> - <message> - <location filename="../UI/PythonDisViewer.py" line="809" /> - <source>Number of Locals</source> - <translation>Anzahle lokaler Variablen</translation> - </message> - <message> <location filename="../UI/PythonDisViewer.py" line="812" /> - <source>Stack Size</source> - <translation>Stackgröße</translation> - </message> - <message> - <location filename="../UI/PythonDisViewer.py" line="814" /> - <source>Flags</source> - <translation>Flags</translation> + <source>First Line</source> + <translation>Erste Zeile</translation> </message> <message> <location filename="../UI/PythonDisViewer.py" line="816" /> + <source>Argument Count</source> + <translation>Anzahl Argumente</translation> + </message> + <message> + <location filename="../UI/PythonDisViewer.py" line="821" /> + <source>Positional-only Arguments</source> + <translation>Positional-only Argumente</translation> + </message> + <message> + <location filename="../UI/PythonDisViewer.py" line="827" /> + <source>Keyword-only Arguments</source> + <translation>Keyword-only Argumente</translation> + </message> + <message> + <location filename="../UI/PythonDisViewer.py" line="831" /> + <source>Number of Locals</source> + <translation>Anzahle lokaler Variablen</translation> + </message> + <message> + <location filename="../UI/PythonDisViewer.py" line="834" /> + <source>Stack Size</source> + <translation>Stackgröße</translation> + </message> + <message> + <location filename="../UI/PythonDisViewer.py" line="836" /> + <source>Flags</source> + <translation>Flags</translation> + </message> + <message> + <location filename="../UI/PythonDisViewer.py" line="838" /> <source>Constants</source> <translation>Konstanten</translation> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="818" /> + <location filename="../UI/PythonDisViewer.py" line="840" /> <source>Names</source> <translation>Namen</translation> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="820" /> + <location filename="../UI/PythonDisViewer.py" line="842" /> <source>Variable Names</source> <translation>Namen von Variablen</translation> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="822" /> + <location filename="../UI/PythonDisViewer.py" line="844" /> <source>Free Variables</source> <translation>Freie Variable</translation> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="824" /> + <location filename="../UI/PythonDisViewer.py" line="846" /> <source>Cell Variables</source> <translation>Zellenvariable</translation> </message> @@ -74431,32 +74431,32 @@ <context> <name>SessionFile</name> <message> - <location filename="../Sessions/SessionFile.py" line="247" /> + <location filename="../Sessions/SessionFile.py" line="249" /> <source>Save Remote Session</source> <translation>Entfernte Session speichern</translation> </message> <message> - <location filename="../Sessions/SessionFile.py" line="250" /> + <location filename="../Sessions/SessionFile.py" line="252" /> <source>Save Session</source> <translation>Sitzung speichern</translation> </message> <message> - <location filename="../Sessions/SessionFile.py" line="258" /> + <location filename="../Sessions/SessionFile.py" line="260" /> <source><p>The session file <b>{0}</b> could not be written.</p><p>Reason: {1}</p></source> <translation><p>Die Sitzungsdatei <b>{0}</b> konnte nicht gespeichert werden.</p><p>Ursache: {1}</p></translation> </message> <message> - <location filename="../Sessions/SessionFile.py" line="282" /> + <location filename="../Sessions/SessionFile.py" line="284" /> <source>Read Remote Session</source> <translation>Entfernte Session lesen</translation> </message> <message> - <location filename="../Sessions/SessionFile.py" line="285" /> + <location filename="../Sessions/SessionFile.py" line="287" /> <source>Read Session</source> <translation>Sitzung lesen</translation> </message> <message> - <location filename="../Sessions/SessionFile.py" line="293" /> + <location filename="../Sessions/SessionFile.py" line="295" /> <source><p>The session file <b>{0}</b> could not be read.</p><p>Reason: {1}</p></source> <translation><p>Die Sitzungsdatei <b>{0}</b> konnte nicht gelesen werden.</p><p>Ursache: {1}</p></translation> </message> @@ -94701,1052 +94701,1052 @@ <context> <name>ViewManager</name> <message> - <location filename="../ViewManager/ViewManager.py" line="615" /> + <location filename="../ViewManager/ViewManager.py" line="625" /> <source>New</source> <translation>Neu</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="617" /> + <location filename="../ViewManager/ViewManager.py" line="627" /> <source>&New</source> <translation>&Neu</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="619" /> - <source>Ctrl+N</source> - <comment>File|New</comment> - <translation>Ctrl+N</translation> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="626" /> - <source>Open an empty editor window</source> - <translation>Öffnet ein leeres Editorfenster</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="629" /> + <source>Ctrl+N</source> + <comment>File|New</comment> + <translation>Ctrl+N</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="636" /> + <source>Open an empty editor window</source> + <translation>Öffnet ein leeres Editorfenster</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="639" /> <source><b>New</b><p>An empty editor window will be created.</p></source> <translation><b>Neu</b><p>Ein neues Editorfenster wird geöffnet.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="638" /> + <location filename="../ViewManager/ViewManager.py" line="648" /> <source>Open</source> <translation>Öffnen</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="640" /> + <location filename="../ViewManager/ViewManager.py" line="650" /> <source>&Open...</source> <translation>&Öffnen...</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="642" /> + <location filename="../ViewManager/ViewManager.py" line="652" /> <source>Ctrl+O</source> <comment>File|Open</comment> <translation>Ctrl+O</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="649" /> + <location filename="../ViewManager/ViewManager.py" line="659" /> <source>Open a file</source> <translation>Datei öffnen</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="652" /> + <location filename="../ViewManager/ViewManager.py" line="662" /> <source><b>Open a file</b><p>You will be asked for the name of a file to be opened in an editor window.</p></source> <translation><b>Datei öffnen</b><p>Sie werden nach dem Namen einer Datei gefragt, die in einem Editor geöffnet werden soll.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="663" /> + <location filename="../ViewManager/ViewManager.py" line="673" /> <source>Open (Remote)</source> <translation>Öffnen (entfernt)</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="665" /> - <source>Open (Remote)...</source> - <translation>Öffnen (entfernt)...</translation> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="672" /> - <source>Open a remote file</source> - <translation>Öffnet eine entfernte Datei</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="675" /> + <source>Open (Remote)...</source> + <translation>Öffnen (entfernt)...</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="682" /> + <source>Open a remote file</source> + <translation>Öffnet eine entfernte Datei</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="685" /> <source><b>Open a remote file</b><p>You will be asked for the name of a remote file to be opened in an editor window.</p></source> <translation><b>Entfernte Datei öffnen</b><p>Sie werden nach dem Namen einer entfernten Datei gefragt, die in einem Editor geöffnet werden soll.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="689" /> - <location filename="../ViewManager/ViewManager.py" line="687" /> - <source>Reload</source> - <translation>Erneut laden</translation> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="696" /> - <source>Reload the current file</source> - <translation>Die aktuelle Datei erneut laden</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="699" /> + <location filename="../ViewManager/ViewManager.py" line="697" /> + <source>Reload</source> + <translation>Erneut laden</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="706" /> + <source>Reload the current file</source> + <translation>Die aktuelle Datei erneut laden</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="709" /> <source><b>Reload</b><p>Reload the contents of current editor window. If the editor contents was modified, a warning will be issued.</p></source> <translation><b>Erneut laden</b><p>Den Inhalt des aktuellen Editorfensters neu laden. Falls der Editorinhalt verändert wurde, wird eine Warnung ausgegeben.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="712" /> + <location filename="../ViewManager/ViewManager.py" line="722" /> <source>Close</source> <translation>Schließen</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="714" /> + <location filename="../ViewManager/ViewManager.py" line="724" /> <source>&Close</source> <translation>Schl&ießen</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="716" /> + <location filename="../ViewManager/ViewManager.py" line="726" /> <source>Ctrl+W</source> <comment>File|Close</comment> <translation>Ctrl+W</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="723" /> + <location filename="../ViewManager/ViewManager.py" line="733" /> <source>Close the current window</source> <translation>Schließt das aktuelle Fenster</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="726" /> - <source><b>Close Window</b><p>Close the current window.</p></source> - <translation><b>Fenster schließen</b><p>Dies schließt das aktuelle Editorfenster.</p></translation> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="735" /> - <source>Close All</source> - <translation>Alle schließen</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="736" /> - <source>Clos&e All</source> - <translation>Alle &schließen</translation> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="743" /> - <source>Close all editor windows</source> - <translation>Schließt alle Editorfenster</translation> + <source><b>Close Window</b><p>Close the current window.</p></source> + <translation><b>Fenster schließen</b><p>Dies schließt das aktuelle Editorfenster.</p></translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="745" /> + <source>Close All</source> + <translation>Alle schließen</translation> </message> <message> <location filename="../ViewManager/ViewManager.py" line="746" /> + <source>Clos&e All</source> + <translation>Alle &schließen</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="753" /> + <source>Close all editor windows</source> + <translation>Schließt alle Editorfenster</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="756" /> <source><b>Close All Windows</b><p>Close all editor windows.</p></source> <translation><b>Alle Fenster schließen</b><p>Dies schließt alle Editorfenster.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="759" /> + <location filename="../ViewManager/ViewManager.py" line="769" /> <source>Save</source> <translation>Speichern</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="761" /> + <location filename="../ViewManager/ViewManager.py" line="771" /> <source>&Save</source> <translation>S&peichern</translation> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="316" /> - <location filename="../ViewManager/ViewManager.py" line="763" /> + <location filename="../ViewManager/ViewManager.py" line="773" /> <source>Ctrl+S</source> <comment>File|Save</comment> <translation>Ctrl+S</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="770" /> + <location filename="../ViewManager/ViewManager.py" line="780" /> <source>Save the current file</source> <translation>Speichert die aktuelle Datei</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="773" /> - <source><b>Save File</b><p>Save the contents of current editor window.</p></source> - <translation><b>Datei speichern</b><p>Dies speichert den Inhalt des aktuellen Editorfensters.</p></translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="783" /> + <source><b>Save File</b><p>Save the contents of current editor window.</p></source> + <translation><b>Datei speichern</b><p>Dies speichert den Inhalt des aktuellen Editorfensters.</p></translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="793" /> <source>Save as</source> <translation>Speichern unter</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="785" /> + <location filename="../ViewManager/ViewManager.py" line="795" /> <source>Save &as...</source> <translation>Speichern &unter...</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="787" /> + <location filename="../ViewManager/ViewManager.py" line="797" /> <source>Shift+Ctrl+S</source> <comment>File|Save As</comment> <translation>Shift+Ctrl+S</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="796" /> + <location filename="../ViewManager/ViewManager.py" line="806" /> <source>Save the current file to a new one</source> <translation>Speichere die aktuelle Datei unter neuem Namen</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="801" /> + <location filename="../ViewManager/ViewManager.py" line="811" /> <source><b>Save File as</b><p>Save the contents of the current editor window to a new file. The file can be entered in a file selection dialog.</p></source> <translation><b>Datei speichen unter</b><p>Dies speichert den Inhalt des aktuellen Editors in eine neue Datei. Die Datei kann mit einem Dateiauswahldialog eingegeben werden.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="812" /> + <location filename="../ViewManager/ViewManager.py" line="822" /> <source>Save as (Remote)</source> <translation>Speichern unter (entfernt)</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="814" /> + <location filename="../ViewManager/ViewManager.py" line="824" /> <source>Save as (Remote)...</source> <translation>Speichern unter (entfernt)...</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="821" /> + <location filename="../ViewManager/ViewManager.py" line="831" /> <source>Save the current file to a new one on an eric-ide server</source> <translation>Speichere die aktuelle Datei in eine neue auf einem eric-ide Server</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="827" /> + <location filename="../ViewManager/ViewManager.py" line="837" /> <source><b>Save File as (Remote)</b><p>Save the contents of the current editor window to a new file on the connected eric-ide server. The file can be entered in a file selection dialog.</p></source> <translation><b>Datei speichern unter (entfernt)</b><p>Dies speichert den Inhalt des aktuellen Editorfensters in eine neue Datei auf dem verbundenen eric-ide Server. Die Datei kann in einem Dateiauswahldialog eingegeben werden.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="839" /> + <location filename="../ViewManager/ViewManager.py" line="849" /> <source>Save Copy</source> <translation>Kopie speichern</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="841" /> - <source>Save &Copy...</source> - <translation>&Kopie speichern...</translation> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="848" /> - <source>Save a copy of the current file</source> - <translation>Speichert eine Kopie der aktuellen Datei</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="851" /> + <source>Save &Copy...</source> + <translation>&Kopie speichern...</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="858" /> + <source>Save a copy of the current file</source> + <translation>Speichert eine Kopie der aktuellen Datei</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="861" /> <source><b>Save Copy</b><p>Save a copy of the contents of current editor window. The file can be entered in a file selection dialog.</p></source> <translation><b>Kopie speichern</b><p>Speichern einer Kopie des Inhalts des aktuellen Editorfensters. Die Datei kann mit einem Dateiauswahldialog eingegeben werden.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="862" /> + <location filename="../ViewManager/ViewManager.py" line="872" /> <source>Save all</source> <translation>Alles speichern</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="864" /> - <source>Save a&ll</source> - <translation>&Alle speichern</translation> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="871" /> - <source>Save all files</source> - <translation>Alle Dateien speichern</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="874" /> + <source>Save a&ll</source> + <translation>&Alle speichern</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="881" /> + <source>Save all files</source> + <translation>Alle Dateien speichern</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="884" /> <source><b>Save All Files</b><p>Save the contents of all editor windows.</p></source> <translation><b>Alle Dateien speichern</b><p>Speichert den Inhalt aller Editorfenster.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="886" /> + <location filename="../ViewManager/ViewManager.py" line="896" /> <source>Print</source> <translation>Drucken</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="888" /> + <location filename="../ViewManager/ViewManager.py" line="898" /> <source>&Print</source> <translation>&Drucken</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="890" /> + <location filename="../ViewManager/ViewManager.py" line="900" /> <source>Ctrl+P</source> <comment>File|Print</comment> <translation>Ctrl+P</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="897" /> + <location filename="../ViewManager/ViewManager.py" line="907" /> <source>Print the current file</source> <translation>Druckt die aktuelle Datei</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="900" /> + <location filename="../ViewManager/ViewManager.py" line="910" /> <source><b>Print File</b><p>Print the contents of current editor window.</p></source> <translation><b>Datei drucken</b><p>Dies druckt den Inhalt des aktuellen Editorfensters.</p></translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="780" /> - <location filename="../ViewManager/ViewManager.py" line="913" /> - <location filename="../ViewManager/ViewManager.py" line="911" /> + <location filename="../ViewManager/ViewManager.py" line="923" /> + <location filename="../ViewManager/ViewManager.py" line="921" /> <source>Print Preview</source> <translation>Druckvorschau</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="920" /> + <location filename="../ViewManager/ViewManager.py" line="930" /> <source>Print preview of the current file</source> <translation>Druckvorschau der aktuellen Datei</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="925" /> + <location filename="../ViewManager/ViewManager.py" line="935" /> <source><b>Print Preview</b><p>Print preview of the current editor window.</p></source> <translation><b>Druckvorschau</b><p>Zeift eine Druckvorschau des aktuellen Editorfensters.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="936" /> + <location filename="../ViewManager/ViewManager.py" line="946" /> <source>Find File</source> <translation>Datei suchen</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="938" /> + <location filename="../ViewManager/ViewManager.py" line="948" /> <source>Find &File...</source> <translation>&Datei suchen...</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="940" /> + <location filename="../ViewManager/ViewManager.py" line="950" /> <source>Alt+Ctrl+F</source> <comment>File|Find File</comment> <translation>Alt+Ctrl+F</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="949" /> + <location filename="../ViewManager/ViewManager.py" line="959" /> <source>Search for a file by entering a search pattern</source> <translation>Suche nach einer Datei durch Eingabe eines Suchmusters</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="954" /> + <location filename="../ViewManager/ViewManager.py" line="964" /> <source><b>Find File</b><p>This searches for a file by entering a search pattern.</p></source> <translation><b>Datei suchen</b><p>Dies sucht nach einer Datei durch Eingabe eines Suchmusters.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="970" /> + <location filename="../ViewManager/ViewManager.py" line="980" /> <source>&File</source> <translation>&Datei</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="972" /> + <location filename="../ViewManager/ViewManager.py" line="982" /> <source>Open &Recent Files</source> <translation>Zu&letzt geöffnete Dateien</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="976" /> + <location filename="../ViewManager/ViewManager.py" line="986" /> <source>Open &Bookmarked Files</source> <translation>Ge&merkte Dateien</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1024" /> - <location filename="../ViewManager/ViewManager.py" line="1022" /> + <location filename="../ViewManager/ViewManager.py" line="1034" /> + <location filename="../ViewManager/ViewManager.py" line="1032" /> <source>File</source> <translation>Datei</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1051" /> + <location filename="../ViewManager/ViewManager.py" line="1061" /> <source>Export as</source> <translation>Exportieren als</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1074" /> + <location filename="../ViewManager/ViewManager.py" line="1084" /> <source>Undo</source> <translation>Rückgängig</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1076" /> + <location filename="../ViewManager/ViewManager.py" line="1086" /> <source>&Undo</source> <translation>&Rückgängig</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1078" /> + <location filename="../ViewManager/ViewManager.py" line="1088" /> <source>Ctrl+Z</source> <comment>Edit|Undo</comment> <translation>Ctrl+Z</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1081" /> + <location filename="../ViewManager/ViewManager.py" line="1091" /> <source>Alt+Backspace</source> <comment>Edit|Undo</comment> <translation>Alt+Backspace</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1087" /> + <location filename="../ViewManager/ViewManager.py" line="1097" /> <source>Undo the last change</source> <translation>Die letzte Änderung rückgängig machen</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1090" /> - <source><b>Undo</b><p>Undo the last change done in the current editor.</p></source> - <translation><b>Rückgängig</b><p>Dies macht die letzte Änderung des aktuellen Editors rückgängig.</p></translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="1100" /> + <source><b>Undo</b><p>Undo the last change done in the current editor.</p></source> + <translation><b>Rückgängig</b><p>Dies macht die letzte Änderung des aktuellen Editors rückgängig.</p></translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="1110" /> <source>Redo</source> <translation>Wiederherstellen</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1102" /> + <location filename="../ViewManager/ViewManager.py" line="1112" /> <source>&Redo</source> <translation>Wieder&herstellen</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1104" /> + <location filename="../ViewManager/ViewManager.py" line="1114" /> <source>Ctrl+Shift+Z</source> <comment>Edit|Redo</comment> <translation>Ctrl+Shift+Z</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1111" /> + <location filename="../ViewManager/ViewManager.py" line="1121" /> <source>Redo the last change</source> <translation>Die letzte Änderung wiederherstellen</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1114" /> + <location filename="../ViewManager/ViewManager.py" line="1124" /> <source><b>Redo</b><p>Redo the last change done in the current editor.</p></source> <translation><b>Wiederherstellen</b><p>Dies stellt die letzte Änderung des aktuellen Editors wieder her.</p></translation> </message> <message> + <location filename="../ViewManager/ViewManager.py" line="1144" /> <location filename="../ViewManager/ViewManager.py" line="1134" /> - <location filename="../ViewManager/ViewManager.py" line="1124" /> <source>Revert to last saved state</source> <translation>Zurück zum letzten gesichert Zustand</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1125" /> + <location filename="../ViewManager/ViewManager.py" line="1135" /> <source>Re&vert to last saved state</source> <translation>&Zurück zum letzten gesichert Zustand</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1127" /> + <location filename="../ViewManager/ViewManager.py" line="1137" /> <source>Ctrl+Y</source> <comment>Edit|Revert</comment> <translation>Ctrl+Y</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1137" /> + <location filename="../ViewManager/ViewManager.py" line="1147" /> <source><b>Revert to last saved state</b><p>Undo all changes up to the last saved state of the current editor.</p></source> <translation><b>Zurück zum letzten gesichert Zustand</b><p>Dies nimmt alle Änderungen des aktuellen Editors bis zum letzten gesicherten Zustand zurück.</p></translation> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="343" /> - <location filename="../ViewManager/ViewManager.py" line="1150" /> + <location filename="../ViewManager/ViewManager.py" line="1160" /> <source>Cut</source> <translation>Ausschneiden</translation> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="345" /> - <location filename="../ViewManager/ViewManager.py" line="1152" /> + <location filename="../ViewManager/ViewManager.py" line="1162" /> <source>Cu&t</source> <translation>&Ausschneiden</translation> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="347" /> - <location filename="../ViewManager/ViewManager.py" line="1154" /> + <location filename="../ViewManager/ViewManager.py" line="1164" /> <source>Ctrl+X</source> <comment>Edit|Cut</comment> <translation>Ctrl+X</translation> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="350" /> - <location filename="../ViewManager/ViewManager.py" line="1157" /> + <location filename="../ViewManager/ViewManager.py" line="1167" /> <source>Shift+Del</source> <comment>Edit|Cut</comment> <translation>Shift+Del</translation> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="356" /> - <location filename="../ViewManager/ViewManager.py" line="1163" /> + <location filename="../ViewManager/ViewManager.py" line="1173" /> <source>Cut the selection</source> <translation>Schneidet die Auswahl aus</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1166" /> + <location filename="../ViewManager/ViewManager.py" line="1176" /> <source><b>Cut</b><p>Cut the selected text of the current editor to the clipboard.</p></source> <translation><b>Ausschneiden</b><p>Dies schneidet den ausgewählten Text des aktuellen Editors aus und legt ihn in der Zwischenablage ab.</p></translation> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="365" /> - <location filename="../ViewManager/ViewManager.py" line="1177" /> + <location filename="../ViewManager/ViewManager.py" line="1187" /> <source>Copy</source> <translation>Kopieren</translation> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="367" /> - <location filename="../ViewManager/ViewManager.py" line="1179" /> + <location filename="../ViewManager/ViewManager.py" line="1189" /> <source>&Copy</source> <translation>&Kopieren</translation> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="369" /> - <location filename="../ViewManager/ViewManager.py" line="1181" /> + <location filename="../ViewManager/ViewManager.py" line="1191" /> <source>Ctrl+C</source> <comment>Edit|Copy</comment> <translation>Ctrl+C</translation> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="372" /> - <location filename="../ViewManager/ViewManager.py" line="1184" /> + <location filename="../ViewManager/ViewManager.py" line="1194" /> <source>Ctrl+Ins</source> <comment>Edit|Copy</comment> <translation>Ctrl+Einfg</translation> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="378" /> - <location filename="../ViewManager/ViewManager.py" line="1190" /> + <location filename="../ViewManager/ViewManager.py" line="1200" /> <source>Copy the selection</source> <translation>Kopiert die Auswahl</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1193" /> + <location filename="../ViewManager/ViewManager.py" line="1203" /> <source><b>Copy</b><p>Copy the selected text of the current editor to the clipboard.</p></source> <translation><b>Kopieren</b><p>Dies kopiert den ausgewählten Text des aktuellen Editors in die Zwischenablage.</p></translation> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="387" /> - <location filename="../ViewManager/ViewManager.py" line="1204" /> + <location filename="../ViewManager/ViewManager.py" line="1214" /> <source>Paste</source> <translation>Einfügen</translation> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="389" /> - <location filename="../ViewManager/ViewManager.py" line="1206" /> + <location filename="../ViewManager/ViewManager.py" line="1216" /> <source>&Paste</source> <translation>Ein&fügen</translation> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="391" /> - <location filename="../ViewManager/ViewManager.py" line="1208" /> + <location filename="../ViewManager/ViewManager.py" line="1218" /> <source>Ctrl+V</source> <comment>Edit|Paste</comment> <translation>Ctrl+V</translation> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="394" /> - <location filename="../ViewManager/ViewManager.py" line="1211" /> + <location filename="../ViewManager/ViewManager.py" line="1221" /> <source>Shift+Ins</source> <comment>Edit|Paste</comment> <translation>Shift+Ins</translation> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="400" /> - <location filename="../ViewManager/ViewManager.py" line="1217" /> + <location filename="../ViewManager/ViewManager.py" line="1227" /> <source>Paste the last cut/copied text</source> <translation>Fügt den Inhalt der Zwischenablage ein</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1220" /> + <location filename="../ViewManager/ViewManager.py" line="1230" /> <source><b>Paste</b><p>Paste the last cut/copied text from the clipboard to the current editor.</p></source> <translation><b>Einfügen</b><p>Dies fügt den zuletzt ausgeschnittenen/kopierten Text aus der Zwischenablage in den aktuellen Editor ein.</p></translation> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="414" /> <location filename="../QScintilla/ShellWindow.py" line="412" /> - <location filename="../ViewManager/ViewManager.py" line="1233" /> - <location filename="../ViewManager/ViewManager.py" line="1231" /> + <location filename="../ViewManager/ViewManager.py" line="1243" /> + <location filename="../ViewManager/ViewManager.py" line="1241" /> <source>Clear</source> <translation>Löschen</translation> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="416" /> - <location filename="../ViewManager/ViewManager.py" line="1235" /> + <location filename="../ViewManager/ViewManager.py" line="1245" /> <source>Alt+Shift+C</source> <comment>Edit|Clear</comment> <translation>Alt+Shift+C</translation> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="423" /> - <location filename="../ViewManager/ViewManager.py" line="1242" /> + <location filename="../ViewManager/ViewManager.py" line="1252" /> <source>Clear all text</source> <translation>Löscht den gesamten Text</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1245" /> + <location filename="../ViewManager/ViewManager.py" line="1255" /> <source><b>Clear</b><p>Delete all text of the current editor.</p></source> <translation><b>Alles Löschen</b><p>Dies löscht den gesamten Text des aktuellen Editors.</p></translation> </message> <message> + <location filename="../ViewManager/ViewManager.py" line="1274" /> + <location filename="../ViewManager/ViewManager.py" line="1265" /> <location filename="../ViewManager/ViewManager.py" line="1264" /> - <location filename="../ViewManager/ViewManager.py" line="1255" /> - <location filename="../ViewManager/ViewManager.py" line="1254" /> <source>Join Lines</source> <translation>Zeilen verbinden</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1257" /> - <source>Ctrl+J</source> - <comment>Edit|Join Lines</comment> - <translation>Ctrl+J</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="1267" /> - <source><b>Join Lines</b><p>Join the current and the next lines.</p></source> - <translation><b>Zeilen verbinden</b><p>Verbindet die aktuelle mit der nächsten Zeile.</p></translation> + <source>Ctrl+J</source> + <comment>Edit|Join Lines</comment> + <translation>Ctrl+J</translation> </message> <message> <location filename="../ViewManager/ViewManager.py" line="1277" /> + <source><b>Join Lines</b><p>Join the current and the next lines.</p></source> + <translation><b>Zeilen verbinden</b><p>Verbindet die aktuelle mit der nächsten Zeile.</p></translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="1287" /> <source>Indent</source> <translation>Einrücken</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1279" /> + <location filename="../ViewManager/ViewManager.py" line="1289" /> <source>&Indent</source> <translation>Ei&nrücken</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1281" /> - <source>Ctrl+I</source> - <comment>Edit|Indent</comment> - <translation>Ctrl+I</translation> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="1288" /> - <source>Indent line</source> - <translation>Zeile einrücken</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="1291" /> + <source>Ctrl+I</source> + <comment>Edit|Indent</comment> + <translation>Ctrl+I</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="1298" /> + <source>Indent line</source> + <translation>Zeile einrücken</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="1301" /> <source><b>Indent</b><p>Indents the current line or the lines of the selection by one level.</p></source> <translation><b>Einrücken</b><p>Dies erhöht die Einrückung der aktuellen Zeile oder Auswahl um eine Ebene.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1302" /> + <location filename="../ViewManager/ViewManager.py" line="1312" /> <source>Unindent</source> <translation>Einrücken rückgängig</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1304" /> + <location filename="../ViewManager/ViewManager.py" line="1314" /> <source>U&nindent</source> <translation>Einrücken rück&gängig</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1306" /> + <location filename="../ViewManager/ViewManager.py" line="1316" /> <source>Ctrl+Shift+I</source> <comment>Edit|Unindent</comment> <translation>Ctrl+Shift+I</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1315" /> + <location filename="../ViewManager/ViewManager.py" line="1325" /> <source>Unindent line</source> <translation>Einrücken der Zeile rückgängig machen</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1318" /> + <location filename="../ViewManager/ViewManager.py" line="1328" /> <source><b>Unindent</b><p>Unindents the current line or the lines of the selection by one level.</p></source> <translation><b>Einrücken rückgängig</b><p>Dies vermindert die Einrückung der aktuellen Zeile oder Auswahl um eine Ebene.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1331" /> - <location filename="../ViewManager/ViewManager.py" line="1329" /> - <source>Smart indent</source> - <translation>Überwachte Einrückung</translation> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="1338" /> - <source>Smart indent Line or Selection</source> - <translation>Rückt eine Zeile oder Auswahl mit Überwachung ein</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="1341" /> + <location filename="../ViewManager/ViewManager.py" line="1339" /> + <source>Smart indent</source> + <translation>Überwachte Einrückung</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="1348" /> + <source>Smart indent Line or Selection</source> + <translation>Rückt eine Zeile oder Auswahl mit Überwachung ein</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="1351" /> <source><b>Smart indent</b><p>Indents the current line or the lines of the current selection smartly.</p></source> <translation><b>Überwachte Einrückung</b><p>Dies rückt die aktuelle Zeile oder die Zeilen der aktuellen Auswahl ein, wobei nur sinnvolle Einrückungstiefen erlaubt sind.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1352" /> + <location filename="../ViewManager/ViewManager.py" line="1362" /> <source>Comment</source> <translation>Kommentar</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1354" /> + <location filename="../ViewManager/ViewManager.py" line="1364" /> <source>C&omment</source> <translation>K&ommentar</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1356" /> - <source>Ctrl+M</source> - <comment>Edit|Comment</comment> - <translation>Ctrl+M</translation> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="1363" /> - <source>Comment Line or Selection</source> - <translation>Kommentiert eine Zeile oder die Auswahl</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="1366" /> + <source>Ctrl+M</source> + <comment>Edit|Comment</comment> + <translation>Ctrl+M</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="1373" /> + <source>Comment Line or Selection</source> + <translation>Kommentiert eine Zeile oder die Auswahl</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="1376" /> <source><b>Comment</b><p>Comments the current line or the lines of the current selection.</p></source> <translation><b>Kommentar</b><p>Dies kommentiert die aktuelle Zeile oder die aktuelle Auswahl.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1377" /> + <location filename="../ViewManager/ViewManager.py" line="1387" /> <source>Uncomment</source> <translation>Kommentar entfernen</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1379" /> + <location filename="../ViewManager/ViewManager.py" line="1389" /> <source>Unco&mment</source> <translation>Ko&mmentar entfernen</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1381" /> + <location filename="../ViewManager/ViewManager.py" line="1391" /> <source>Ctrl+Shift+M</source> <comment>Edit|Uncomment</comment> <translation>Ctrl+Shift+M</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1390" /> + <location filename="../ViewManager/ViewManager.py" line="1400" /> <source>Uncomment Line or Selection</source> <translation>Kommentar einer Zeile oder der Auswahl entfernen</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1393" /> + <location filename="../ViewManager/ViewManager.py" line="1403" /> <source><b>Uncomment</b><p>Uncomments the current line or the lines of the current selection.</p></source> <translation><b>Kommentar entfernen</b><p>Dies entfernt den Kommentar der aktuellen Zeile oder der aktuelle Auswahl.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1406" /> - <location filename="../ViewManager/ViewManager.py" line="1404" /> + <location filename="../ViewManager/ViewManager.py" line="1416" /> + <location filename="../ViewManager/ViewManager.py" line="1414" /> <source>Toggle Comment</source> <translation>Kommentar umschalten</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1408" /> + <location filename="../ViewManager/ViewManager.py" line="1418" /> <source>Ctrl+#</source> <comment>Edit|Toggle Comment</comment> <translation>Ctrl+#</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1417" /> + <location filename="../ViewManager/ViewManager.py" line="1427" /> <source>Toggle the comment of the current line, selection or comment block</source> <translation>Schalte den Kommentar der aktuellen Zeile, Auswahl oder Kommentarblocks um</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1423" /> + <location filename="../ViewManager/ViewManager.py" line="1433" /> <source><b>Toggle Comment</b><p>If the current line does not start with a block comment, the current line or selection is commented. If it is already commented, this comment block is uncommented. </p></source> <translation><b>Kommentar umschalten</b><p>Falls die aktuelle Zeile nicht mit einem Blockkommentar beginnt, so wird die aktuelle Zeile oder Auswahl kommentiert. Ist sie kommentiert, so wird dieser Blockkommentar entkommentiert.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1436" /> - <location filename="../ViewManager/ViewManager.py" line="1435" /> + <location filename="../ViewManager/ViewManager.py" line="1446" /> + <location filename="../ViewManager/ViewManager.py" line="1445" /> <source>Stream Comment</source> <translation>Stream Kommentar</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1443" /> + <location filename="../ViewManager/ViewManager.py" line="1453" /> <source>Stream Comment Line or Selection</source> <translation>Stream kommentiert eine Zeile oder die Auswahl</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1448" /> + <location filename="../ViewManager/ViewManager.py" line="1458" /> <source><b>Stream Comment</b><p>Stream comments the current line or the current selection.</p></source> <translation><b>Stream Kommentar</b><p>Dies kommentiert die aktuelle Zeile oder die aktuelle Auswahl mit einem Stream Kommentar.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1460" /> - <location filename="../ViewManager/ViewManager.py" line="1459" /> - <source>Box Comment</source> - <translation>Box Kommentar</translation> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="1467" /> - <source>Box Comment Line or Selection</source> - <translation>Box kommentiert eine Zeile oder die Auswahl</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="1470" /> + <location filename="../ViewManager/ViewManager.py" line="1469" /> + <source>Box Comment</source> + <translation>Box Kommentar</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="1477" /> + <source>Box Comment Line or Selection</source> + <translation>Box kommentiert eine Zeile oder die Auswahl</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="1480" /> <source><b>Box Comment</b><p>Box comments the current line or the lines of the current selection.</p></source> <translation><b>Box Kommentar</b><p>Dies kommentiert die aktuelle Zeile oder die Zeilen der aktuelle Auswahl mit einem Box Kommentar.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1481" /> + <location filename="../ViewManager/ViewManager.py" line="1491" /> <source>Select to brace</source> <translation>Zur Klammer auswählen</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1482" /> + <location filename="../ViewManager/ViewManager.py" line="1492" /> <source>Select to &brace</source> <translation>Zur Klammer ausw&ählen</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1484" /> + <location filename="../ViewManager/ViewManager.py" line="1494" /> <source>Ctrl+E</source> <comment>Edit|Select to brace</comment> <translation>Ctrl+E</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1493" /> + <location filename="../ViewManager/ViewManager.py" line="1503" /> <source>Select text to the matching brace</source> <translation>Text bis zur passenden Klammer auswählen</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1498" /> + <location filename="../ViewManager/ViewManager.py" line="1508" /> <source><b>Select to brace</b><p>Select text of the current editor to the matching brace.</p></source> <translation><b>Zur Klammer auswählen</b><p>Im aktuellen Editor Text bis zur passenden Klammer auswählen.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1509" /> + <location filename="../ViewManager/ViewManager.py" line="1519" /> <source>Select all</source> <translation>Alles auswählen</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1511" /> + <location filename="../ViewManager/ViewManager.py" line="1521" /> <source>&Select all</source> <translation>A&lles auswählen</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1513" /> + <location filename="../ViewManager/ViewManager.py" line="1523" /> <source>Ctrl+A</source> <comment>Edit|Select all</comment> <translation>Ctrl+A</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1520" /> + <location filename="../ViewManager/ViewManager.py" line="1530" /> <source>Select all text</source> <translation>Gesamten text auswählen</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1523" /> - <source><b>Select All</b><p>Select all text of the current editor.</p></source> - <translation><b>Alles auswählen</b><p>Dies wählt den gesamten Text des aktuellen Editors aus.</p></translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="1533" /> + <source><b>Select All</b><p>Select all text of the current editor.</p></source> + <translation><b>Alles auswählen</b><p>Dies wählt den gesamten Text des aktuellen Editors aus.</p></translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="1543" /> <source>Deselect all</source> <translation>Auswahl aufheben</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1534" /> + <location filename="../ViewManager/ViewManager.py" line="1544" /> <source>&Deselect all</source> <translation>Aus&wahl aufheben</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1536" /> + <location filename="../ViewManager/ViewManager.py" line="1546" /> <source>Alt+Ctrl+A</source> <comment>Edit|Deselect all</comment> <translation>Alt+Ctrl+A</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1545" /> + <location filename="../ViewManager/ViewManager.py" line="1555" /> <source>Deselect all text</source> <translation>Hebt die Auswahl auf</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1548" /> + <location filename="../ViewManager/ViewManager.py" line="1558" /> <source><b>Deselect All</b><p>Deselect all text of the current editor.</p></source> <translation><b>Auswahl aufheben</b><p>Dies hebt die Auswahl des aktuellen Editors auf.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1566" /> - <location filename="../ViewManager/ViewManager.py" line="1559" /> - <location filename="../ViewManager/ViewManager.py" line="1558" /> + <location filename="../ViewManager/ViewManager.py" line="1576" /> + <location filename="../ViewManager/ViewManager.py" line="1569" /> + <location filename="../ViewManager/ViewManager.py" line="1568" /> <source>Convert Line End Characters</source> <translation>Zeilenende Marke umwandeln</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1569" /> + <location filename="../ViewManager/ViewManager.py" line="1579" /> <source><b>Convert Line End Characters</b><p>Convert the line end characters to the currently set type.</p></source> <translation><b>Zeilenende Marke umwandeln</b><p>Dies wandelt die Zeilenende Marke in den aktuell eingestellten Typ um.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1588" /> - <location filename="../ViewManager/ViewManager.py" line="1581" /> - <location filename="../ViewManager/ViewManager.py" line="1580" /> + <location filename="../ViewManager/ViewManager.py" line="1598" /> + <location filename="../ViewManager/ViewManager.py" line="1591" /> + <location filename="../ViewManager/ViewManager.py" line="1590" /> <source>Convert Tabs to Spaces</source> <translation>Tabulatoren in Leerzeichen umwandeln</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1591" /> + <location filename="../ViewManager/ViewManager.py" line="1601" /> <source><b>Convert Tabs to Spaces</b><p>Convert tabulators to the configured amount of space characters.</p></source> <translation><b>Tabulatoren in Leerzeichen umwandeln</b><p>Wandelt Tabulatoren in die konfigurierte Anzahl Leerzeichen um.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1610" /> - <location filename="../ViewManager/ViewManager.py" line="1603" /> - <location filename="../ViewManager/ViewManager.py" line="1602" /> + <location filename="../ViewManager/ViewManager.py" line="1620" /> + <location filename="../ViewManager/ViewManager.py" line="1613" /> + <location filename="../ViewManager/ViewManager.py" line="1612" /> <source>Shorten empty lines</source> <translation>Leere Zeilen verkürzen</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1613" /> + <location filename="../ViewManager/ViewManager.py" line="1623" /> <source><b>Shorten empty lines</b><p>Shorten lines consisting solely of whitespace characters.</p></source> <translation><b>Leere Zeilen verkürzen</b><p>Zeilen, die nur aus Leerzeichen und Tabulatoren bestehen, werden verkürzt.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3497" /> - <location filename="../ViewManager/ViewManager.py" line="1624" /> + <location filename="../ViewManager/ViewManager.py" line="3507" /> + <location filename="../ViewManager/ViewManager.py" line="1634" /> <source>Complete</source> <translation>Vervollständigen</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1625" /> + <location filename="../ViewManager/ViewManager.py" line="1635" /> <source>&Complete</source> <translation>&Vervollständigen</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1627" /> + <location filename="../ViewManager/ViewManager.py" line="1637" /> <source>Ctrl+Space</source> <comment>Edit|Complete</comment> <translation>Ctrl+Space</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1634" /> + <location filename="../ViewManager/ViewManager.py" line="1644" /> <source>Complete current word</source> <translation>Aktuelles Wort vervollständigen</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1637" /> + <location filename="../ViewManager/ViewManager.py" line="1647" /> <source><b>Complete</b><p>Performs a completion of the word containing the cursor.</p></source> <translation><b>Vervollständigen</b><p>Führt eine Vervollständigung des Wortes, das den Cursor enthält, durch.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1649" /> - <location filename="../ViewManager/ViewManager.py" line="1648" /> + <location filename="../ViewManager/ViewManager.py" line="1659" /> + <location filename="../ViewManager/ViewManager.py" line="1658" /> <source>Complete from Document</source> <translation>Vervollständigung vom Dokument</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1651" /> + <location filename="../ViewManager/ViewManager.py" line="1661" /> <source>Ctrl+Shift+Space</source> <comment>Edit|Complete from Document</comment> <translation>Ctrl+Shift+Space</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1660" /> + <location filename="../ViewManager/ViewManager.py" line="1670" /> <source>Complete current word from Document</source> <translation>Aktuelles Wort vom Dokument vervollständigen</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1665" /> + <location filename="../ViewManager/ViewManager.py" line="1675" /> <source><b>Complete from Document</b><p>Performs a completion from document of the word containing the cursor.</p></source> <translation><b>Vervollständigung vom Dokument</b><p>Vervollständigt das Wort, das den Cursor enthält, vom Dokument.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1677" /> - <location filename="../ViewManager/ViewManager.py" line="1676" /> + <location filename="../ViewManager/ViewManager.py" line="1687" /> + <location filename="../ViewManager/ViewManager.py" line="1686" /> <source>Complete from APIs</source> <translation>Vervollständigung von APIs</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1679" /> + <location filename="../ViewManager/ViewManager.py" line="1689" /> <source>Ctrl+Alt+Space</source> <comment>Edit|Complete from APIs</comment> <translation>Ctrl+Alt+Space</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1688" /> + <location filename="../ViewManager/ViewManager.py" line="1698" /> <source>Complete current word from APIs</source> <translation>Aktuelles Wort von APIs vervollständigen</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1691" /> + <location filename="../ViewManager/ViewManager.py" line="1701" /> <source><b>Complete from APIs</b><p>Performs a completion from APIs of the word containing the cursor.</p></source> <translation><b>Vervollständigung von APIs</b><p>Vervollständigt das Wort, das den Cursor enthält, von APIs.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1705" /> - <location filename="../ViewManager/ViewManager.py" line="1702" /> + <location filename="../ViewManager/ViewManager.py" line="1715" /> + <location filename="../ViewManager/ViewManager.py" line="1712" /> <source>Complete from Document and APIs</source> <translation>Vervollständigung vom Dokument und von APIs</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1709" /> + <location filename="../ViewManager/ViewManager.py" line="1719" /> <source>Alt+Shift+Space</source> <comment>Edit|Complete from Document and APIs</comment> <translation>Alt+Shift+Space</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1720" /> + <location filename="../ViewManager/ViewManager.py" line="1730" /> <source>Complete current word from Document and APIs</source> <translation>Aktuelles Wort vom Dokument und von APIs vervollständigen</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1725" /> + <location filename="../ViewManager/ViewManager.py" line="1735" /> <source><b>Complete from Document and APIs</b><p>Performs a completion from document and APIs of the word containing the cursor.</p></source> <translation><b>Vervollständigung vom Dokument und von APIs</b><p>Vervollständigt das Wort, das den Cursor enthält, vom Dokument und von APIs.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1736" /> + <location filename="../ViewManager/ViewManager.py" line="1746" /> <source>Calltip</source> <translation>Calltip</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1737" /> + <location filename="../ViewManager/ViewManager.py" line="1747" /> <source>&Calltip</source> <translation>&Calltip</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1739" /> + <location filename="../ViewManager/ViewManager.py" line="1749" /> <source>Meta+Alt+Space</source> <comment>Edit|Calltip</comment> <translation>Meta+Alt+Space</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1748" /> + <location filename="../ViewManager/ViewManager.py" line="1758" /> <source>Show Calltips</source> <translation>Calltips anzeigen</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1751" /> + <location filename="../ViewManager/ViewManager.py" line="1761" /> <source><b>Calltip</b><p>Show calltips based on the characters immediately to the left of the cursor.</p></source> <translation><b>Calltip</b><p>Zeige Calltips basierend auf den links vom Cursor befindlichen Zeichen an.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1764" /> - <location filename="../ViewManager/ViewManager.py" line="1762" /> + <location filename="../ViewManager/ViewManager.py" line="1774" /> + <location filename="../ViewManager/ViewManager.py" line="1772" /> <source>Code Info</source> <translation>Code Info</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1766" /> + <location filename="../ViewManager/ViewManager.py" line="1776" /> <source>Ctrl+Alt+I</source> <comment>Edit|Code Info</comment> <translation>Ctrl+Alt+I</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1775" /> + <location filename="../ViewManager/ViewManager.py" line="1785" /> <source>Show Code Info</source> <translation>Code Informationen anzeigen</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1778" /> + <location filename="../ViewManager/ViewManager.py" line="1788" /> <source><b>Code Info</b><p>Show code information based on the cursor position.</p></source> <translation><b>Code Info</b><p>Zeigt Code Informationen basierend auf der aktuellen Cursorposition an.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1789" /> - <location filename="../ViewManager/ViewManager.py" line="1788" /> + <location filename="../ViewManager/ViewManager.py" line="1799" /> + <location filename="../ViewManager/ViewManager.py" line="1798" /> <source>Sort</source> <translation>Sortieren</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1791" /> + <location filename="../ViewManager/ViewManager.py" line="1801" /> <source>Ctrl+Alt+S</source> <comment>Edit|Sort</comment> <translation>Ctrl+Alt+S</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1798" /> + <location filename="../ViewManager/ViewManager.py" line="1808" /> <source>Sort the lines containing the rectangular selection</source> <translation>Sortiere die Zeilen, die von der rechteckigen Auswahl überspannt werden</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1803" /> + <location filename="../ViewManager/ViewManager.py" line="1813" /> <source><b>Sort</b><p>Sort the lines spanned by a rectangular selection based on the selection ignoring leading and trailing whitespace.</p></source> <translation><b>Sortieren</b><p>Dies sortiert die von der Rechteckauswahl überspannten Zeilen basierend auf der Auswahl. Führende und folgende Leerzeichen werden ignoriert.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1815" /> - <location filename="../ViewManager/ViewManager.py" line="1814" /> + <location filename="../ViewManager/ViewManager.py" line="1825" /> + <location filename="../ViewManager/ViewManager.py" line="1824" /> <source>Generate Docstring</source> <translation>Docstring erzeugen</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1817" /> + <location filename="../ViewManager/ViewManager.py" line="1827" /> <source>Ctrl+Alt+D</source> <comment>Edit|Generate Docstring</comment> <translation>Ctrl+Alt+D</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1826" /> + <location filename="../ViewManager/ViewManager.py" line="1836" /> <source>Generate a docstring for the current function/method</source> <translation>Erzeuge eine Docstring für die aktuelle Funktion/Methode</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1831" /> + <location filename="../ViewManager/ViewManager.py" line="1841" /> <source><b>Generate Docstring</b><p>Generate a docstring for the current function/method if the cursor is placed on the line starting the function definition or on the line thereafter. The docstring is inserted at the appropriate position and the cursor is placed at the end of the description line.</p></source> <translation><b>Docstring erzeugen</b><p>Erzeuge eine Docstring für die aktuelle Funktion/Methode falls die Einfügemarke auf der Startzeile der Funktionsdefinition oder der Zeile nach deren Ende steht. Der Docstring wird an der korrekten Stelle eingefügt und die Einfügemarke wird an das Ende der Beschreibungszeile gesetzt.</p></translation> </message> @@ -95755,22 +95755,22 @@ <location filename="../QScintilla/MiniEditor.py" line="929" /> <location filename="../QScintilla/ShellWindow.py" line="579" /> <location filename="../QScintilla/ShellWindow.py" line="578" /> - <location filename="../ViewManager/ViewManager.py" line="1858" /> - <location filename="../ViewManager/ViewManager.py" line="1857" /> + <location filename="../ViewManager/ViewManager.py" line="1868" /> + <location filename="../ViewManager/ViewManager.py" line="1867" /> <source>Move left one character</source> <translation>Ein Zeichen nach links</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="931" /> <location filename="../QScintilla/ShellWindow.py" line="580" /> - <location filename="../ViewManager/ViewManager.py" line="1859" /> + <location filename="../ViewManager/ViewManager.py" line="1869" /> <source>Left</source> <translation>Left</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="939" /> <location filename="../QScintilla/ShellWindow.py" line="588" /> - <location filename="../ViewManager/ViewManager.py" line="1867" /> + <location filename="../ViewManager/ViewManager.py" line="1877" /> <source>Meta+B</source> <translation>Meta+B</translation> </message> @@ -95779,22 +95779,22 @@ <location filename="../QScintilla/MiniEditor.py" line="945" /> <location filename="../QScintilla/ShellWindow.py" line="595" /> <location filename="../QScintilla/ShellWindow.py" line="594" /> - <location filename="../ViewManager/ViewManager.py" line="1874" /> - <location filename="../ViewManager/ViewManager.py" line="1873" /> + <location filename="../ViewManager/ViewManager.py" line="1884" /> + <location filename="../ViewManager/ViewManager.py" line="1883" /> <source>Move right one character</source> <translation>Ein Zeichen nach rechts</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="947" /> <location filename="../QScintilla/ShellWindow.py" line="596" /> - <location filename="../ViewManager/ViewManager.py" line="1875" /> + <location filename="../ViewManager/ViewManager.py" line="1885" /> <source>Right</source> <translation>Right</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="954" /> <location filename="../QScintilla/ShellWindow.py" line="603" /> - <location filename="../ViewManager/ViewManager.py" line="1882" /> + <location filename="../ViewManager/ViewManager.py" line="1892" /> <source>Meta+F</source> <translation>Meta+F</translation> </message> @@ -95803,22 +95803,22 @@ <location filename="../QScintilla/MiniEditor.py" line="961" /> <location filename="../QScintilla/ShellWindow.py" line="687" /> <location filename="../QScintilla/ShellWindow.py" line="686" /> - <location filename="../ViewManager/ViewManager.py" line="1890" /> - <location filename="../ViewManager/ViewManager.py" line="1889" /> + <location filename="../ViewManager/ViewManager.py" line="1900" /> + <location filename="../ViewManager/ViewManager.py" line="1899" /> <source>Move up one line</source> <translation>Eine Zeile nach oben</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="963" /> <location filename="../QScintilla/ShellWindow.py" line="688" /> - <location filename="../ViewManager/ViewManager.py" line="1891" /> + <location filename="../ViewManager/ViewManager.py" line="1901" /> <source>Up</source> <translation>Up</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="970" /> <location filename="../QScintilla/ShellWindow.py" line="695" /> - <location filename="../ViewManager/ViewManager.py" line="1898" /> + <location filename="../ViewManager/ViewManager.py" line="1908" /> <source>Meta+P</source> <translation>Meta+P</translation> </message> @@ -95827,30 +95827,30 @@ <location filename="../QScintilla/MiniEditor.py" line="977" /> <location filename="../QScintilla/ShellWindow.py" line="703" /> <location filename="../QScintilla/ShellWindow.py" line="702" /> - <location filename="../ViewManager/ViewManager.py" line="1906" /> - <location filename="../ViewManager/ViewManager.py" line="1905" /> + <location filename="../ViewManager/ViewManager.py" line="1916" /> + <location filename="../ViewManager/ViewManager.py" line="1915" /> <source>Move down one line</source> <translation>Eine Zeile nach unten</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="979" /> <location filename="../QScintilla/ShellWindow.py" line="704" /> - <location filename="../ViewManager/ViewManager.py" line="1907" /> + <location filename="../ViewManager/ViewManager.py" line="1917" /> <source>Down</source> <translation>Down</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="986" /> <location filename="../QScintilla/ShellWindow.py" line="711" /> - <location filename="../ViewManager/ViewManager.py" line="1914" /> + <location filename="../ViewManager/ViewManager.py" line="1924" /> <source>Meta+N</source> <translation>Meta+N</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="994" /> <location filename="../QScintilla/MiniEditor.py" line="993" /> - <location filename="../ViewManager/ViewManager.py" line="1922" /> - <location filename="../ViewManager/ViewManager.py" line="1921" /> + <location filename="../ViewManager/ViewManager.py" line="1932" /> + <location filename="../ViewManager/ViewManager.py" line="1931" /> <source>Move left one word part</source> <translation>Ein Wortteil nach links</translation> </message> @@ -95858,16 +95858,16 @@ <location filename="../QScintilla/MiniEditor.py" line="1034" /> <location filename="../QScintilla/MiniEditor.py" line="1002" /> <location filename="../QScintilla/ShellWindow.py" line="619" /> - <location filename="../ViewManager/ViewManager.py" line="1962" /> - <location filename="../ViewManager/ViewManager.py" line="1930" /> + <location filename="../ViewManager/ViewManager.py" line="1972" /> + <location filename="../ViewManager/ViewManager.py" line="1940" /> <source>Alt+Left</source> <translation>Alt+Left</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1010" /> <location filename="../QScintilla/MiniEditor.py" line="1009" /> - <location filename="../ViewManager/ViewManager.py" line="1938" /> - <location filename="../ViewManager/ViewManager.py" line="1937" /> + <location filename="../ViewManager/ViewManager.py" line="1948" /> + <location filename="../ViewManager/ViewManager.py" line="1947" /> <source>Move right one word part</source> <translation>Ein Wortteil nach rechts</translation> </message> @@ -95875,8 +95875,8 @@ <location filename="../QScintilla/MiniEditor.py" line="2164" /> <location filename="../QScintilla/MiniEditor.py" line="1054" /> <location filename="../QScintilla/MiniEditor.py" line="1018" /> - <location filename="../ViewManager/ViewManager.py" line="3071" /> - <location filename="../ViewManager/ViewManager.py" line="1946" /> + <location filename="../ViewManager/ViewManager.py" line="3081" /> + <location filename="../ViewManager/ViewManager.py" line="1956" /> <source>Alt+Right</source> <translation>Alt+Right</translation> </message> @@ -95885,8 +95885,8 @@ <location filename="../QScintilla/MiniEditor.py" line="1025" /> <location filename="../QScintilla/ShellWindow.py" line="611" /> <location filename="../QScintilla/ShellWindow.py" line="610" /> - <location filename="../ViewManager/ViewManager.py" line="1954" /> - <location filename="../ViewManager/ViewManager.py" line="1953" /> + <location filename="../ViewManager/ViewManager.py" line="1964" /> + <location filename="../ViewManager/ViewManager.py" line="1963" /> <source>Move left one word</source> <translation>Ein Wort nach links</translation> </message> @@ -95894,8 +95894,8 @@ <location filename="../QScintilla/MiniEditor.py" line="1094" /> <location filename="../QScintilla/MiniEditor.py" line="1038" /> <location filename="../QScintilla/ShellWindow.py" line="623" /> - <location filename="../ViewManager/ViewManager.py" line="2018" /> - <location filename="../ViewManager/ViewManager.py" line="1966" /> + <location filename="../ViewManager/ViewManager.py" line="2028" /> + <location filename="../ViewManager/ViewManager.py" line="1976" /> <source>Ctrl+Left</source> <translation>Ctrl+Left</translation> </message> @@ -95904,8 +95904,8 @@ <location filename="../QScintilla/MiniEditor.py" line="1045" /> <location filename="../QScintilla/ShellWindow.py" line="631" /> <location filename="../QScintilla/ShellWindow.py" line="630" /> - <location filename="../ViewManager/ViewManager.py" line="1974" /> - <location filename="../ViewManager/ViewManager.py" line="1973" /> + <location filename="../ViewManager/ViewManager.py" line="1984" /> + <location filename="../ViewManager/ViewManager.py" line="1983" /> <source>Move right one word</source> <translation>Ein Wort nach rechts</translation> </message> @@ -95913,8 +95913,8 @@ <location filename="../QScintilla/MiniEditor.py" line="1848" /> <location filename="../QScintilla/MiniEditor.py" line="1058" /> <location filename="../QScintilla/ShellWindow.py" line="639" /> - <location filename="../ViewManager/ViewManager.py" line="2755" /> - <location filename="../ViewManager/ViewManager.py" line="1982" /> + <location filename="../ViewManager/ViewManager.py" line="2765" /> + <location filename="../ViewManager/ViewManager.py" line="1992" /> <source>Ctrl+Right</source> <translation>Ctrl+Right</translation> </message> @@ -95923,8 +95923,8 @@ <location filename="../QScintilla/MiniEditor.py" line="1065" /> <location filename="../QScintilla/ShellWindow.py" line="649" /> <location filename="../QScintilla/ShellWindow.py" line="646" /> - <location filename="../ViewManager/ViewManager.py" line="1992" /> - <location filename="../ViewManager/ViewManager.py" line="1989" /> + <location filename="../ViewManager/ViewManager.py" line="2002" /> + <location filename="../ViewManager/ViewManager.py" line="1999" /> <source>Move to first visible character in document line</source> <translation>Zum ersten sichtbaren Zeichen der Dokumentzeile springen</translation> </message> @@ -95932,22 +95932,22 @@ <location filename="../QScintilla/MiniEditor.py" line="2109" /> <location filename="../QScintilla/MiniEditor.py" line="1078" /> <location filename="../QScintilla/ShellWindow.py" line="659" /> - <location filename="../ViewManager/ViewManager.py" line="3016" /> - <location filename="../ViewManager/ViewManager.py" line="2002" /> + <location filename="../ViewManager/ViewManager.py" line="3026" /> + <location filename="../ViewManager/ViewManager.py" line="2012" /> <source>Home</source> <translation>Home</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1086" /> <location filename="../QScintilla/MiniEditor.py" line="1085" /> - <location filename="../ViewManager/ViewManager.py" line="2010" /> - <location filename="../ViewManager/ViewManager.py" line="2009" /> + <location filename="../ViewManager/ViewManager.py" line="2020" /> + <location filename="../ViewManager/ViewManager.py" line="2019" /> <source>Move to start of display line</source> <translation>Zum Beginn der Anzeigezeile springen</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1098" /> - <location filename="../ViewManager/ViewManager.py" line="2022" /> + <location filename="../ViewManager/ViewManager.py" line="2032" /> <source>Alt+Home</source> <translation>Alt+Home</translation> </message> @@ -95956,15 +95956,15 @@ <location filename="../QScintilla/MiniEditor.py" line="1105" /> <location filename="../QScintilla/ShellWindow.py" line="667" /> <location filename="../QScintilla/ShellWindow.py" line="666" /> - <location filename="../ViewManager/ViewManager.py" line="2030" /> - <location filename="../ViewManager/ViewManager.py" line="2029" /> + <location filename="../ViewManager/ViewManager.py" line="2040" /> + <location filename="../ViewManager/ViewManager.py" line="2039" /> <source>Move to end of document line</source> <translation>Zum Ende der Dokumentenzeile springen</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1114" /> <location filename="../QScintilla/ShellWindow.py" line="675" /> - <location filename="../ViewManager/ViewManager.py" line="2038" /> + <location filename="../ViewManager/ViewManager.py" line="2048" /> <source>Meta+E</source> <translation>Meta+E</translation> </message> @@ -95972,16 +95972,16 @@ <location filename="../QScintilla/MiniEditor.py" line="2126" /> <location filename="../QScintilla/MiniEditor.py" line="1118" /> <location filename="../QScintilla/ShellWindow.py" line="679" /> - <location filename="../ViewManager/ViewManager.py" line="3033" /> - <location filename="../ViewManager/ViewManager.py" line="2042" /> + <location filename="../ViewManager/ViewManager.py" line="3043" /> + <location filename="../ViewManager/ViewManager.py" line="2052" /> <source>End</source> <translation>End</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1126" /> <location filename="../QScintilla/MiniEditor.py" line="1125" /> - <location filename="../ViewManager/ViewManager.py" line="2050" /> - <location filename="../ViewManager/ViewManager.py" line="2049" /> + <location filename="../ViewManager/ViewManager.py" line="2060" /> + <location filename="../ViewManager/ViewManager.py" line="2059" /> <source>Scroll view down one line</source> <translation>Eine Zeile nach unten rollen</translation> </message> @@ -95989,16 +95989,16 @@ <location filename="../QScintilla/MiniEditor.py" line="1230" /> <location filename="../QScintilla/MiniEditor.py" line="1127" /> <location filename="../QScintilla/ShellWindow.py" line="720" /> - <location filename="../ViewManager/ViewManager.py" line="2154" /> - <location filename="../ViewManager/ViewManager.py" line="2051" /> + <location filename="../ViewManager/ViewManager.py" line="2164" /> + <location filename="../ViewManager/ViewManager.py" line="2061" /> <source>Ctrl+Down</source> <translation>Ctrl+Down</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1138" /> <location filename="../QScintilla/MiniEditor.py" line="1137" /> - <location filename="../ViewManager/ViewManager.py" line="2062" /> - <location filename="../ViewManager/ViewManager.py" line="2061" /> + <location filename="../ViewManager/ViewManager.py" line="2072" /> + <location filename="../ViewManager/ViewManager.py" line="2071" /> <source>Scroll view up one line</source> <translation>Eine Zeile nach oben rollen</translation> </message> @@ -96006,36 +96006,36 @@ <location filename="../QScintilla/MiniEditor.py" line="1210" /> <location filename="../QScintilla/MiniEditor.py" line="1139" /> <location filename="../QScintilla/ShellWindow.py" line="732" /> - <location filename="../ViewManager/ViewManager.py" line="2134" /> - <location filename="../ViewManager/ViewManager.py" line="2063" /> + <location filename="../ViewManager/ViewManager.py" line="2144" /> + <location filename="../ViewManager/ViewManager.py" line="2073" /> <source>Ctrl+Up</source> <translation>Ctrl+Up</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1150" /> <location filename="../QScintilla/MiniEditor.py" line="1149" /> - <location filename="../ViewManager/ViewManager.py" line="2074" /> - <location filename="../ViewManager/ViewManager.py" line="2073" /> + <location filename="../ViewManager/ViewManager.py" line="2084" /> + <location filename="../ViewManager/ViewManager.py" line="2083" /> <source>Move up one paragraph</source> <translation>Einen Absatz nach oben</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1151" /> - <location filename="../ViewManager/ViewManager.py" line="2075" /> + <location filename="../ViewManager/ViewManager.py" line="2085" /> <source>Alt+Up</source> <translation>Alt+Up</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1162" /> <location filename="../QScintilla/MiniEditor.py" line="1161" /> - <location filename="../ViewManager/ViewManager.py" line="2086" /> - <location filename="../ViewManager/ViewManager.py" line="2085" /> + <location filename="../ViewManager/ViewManager.py" line="2096" /> + <location filename="../ViewManager/ViewManager.py" line="2095" /> <source>Move down one paragraph</source> <translation>Einen Absatz nach unten</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1163" /> - <location filename="../ViewManager/ViewManager.py" line="2087" /> + <location filename="../ViewManager/ViewManager.py" line="2097" /> <source>Alt+Down</source> <translation>Alt+Down</translation> </message> @@ -96044,15 +96044,15 @@ <location filename="../QScintilla/MiniEditor.py" line="1173" /> <location filename="../QScintilla/ShellWindow.py" line="743" /> <location filename="../QScintilla/ShellWindow.py" line="742" /> - <location filename="../ViewManager/ViewManager.py" line="2098" /> - <location filename="../ViewManager/ViewManager.py" line="2097" /> + <location filename="../ViewManager/ViewManager.py" line="2108" /> + <location filename="../ViewManager/ViewManager.py" line="2107" /> <source>Move up one page</source> <translation>Eine Seite hoch</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1175" /> <location filename="../QScintilla/ShellWindow.py" line="744" /> - <location filename="../ViewManager/ViewManager.py" line="2099" /> + <location filename="../ViewManager/ViewManager.py" line="2109" /> <source>PgUp</source> <translation>PgUp</translation> </message> @@ -96061,50 +96061,50 @@ <location filename="../QScintilla/MiniEditor.py" line="1185" /> <location filename="../QScintilla/ShellWindow.py" line="755" /> <location filename="../QScintilla/ShellWindow.py" line="754" /> - <location filename="../ViewManager/ViewManager.py" line="2110" /> - <location filename="../ViewManager/ViewManager.py" line="2109" /> + <location filename="../ViewManager/ViewManager.py" line="2120" /> + <location filename="../ViewManager/ViewManager.py" line="2119" /> <source>Move down one page</source> <translation>Eine Seite nach unten</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1187" /> <location filename="../QScintilla/ShellWindow.py" line="756" /> - <location filename="../ViewManager/ViewManager.py" line="2111" /> + <location filename="../ViewManager/ViewManager.py" line="2121" /> <source>PgDown</source> <translation>PgDown</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1194" /> <location filename="../QScintilla/ShellWindow.py" line="763" /> - <location filename="../ViewManager/ViewManager.py" line="2118" /> + <location filename="../ViewManager/ViewManager.py" line="2128" /> <source>Meta+V</source> <translation>Meta+V</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1202" /> <location filename="../QScintilla/MiniEditor.py" line="1201" /> - <location filename="../ViewManager/ViewManager.py" line="2126" /> - <location filename="../ViewManager/ViewManager.py" line="2125" /> + <location filename="../ViewManager/ViewManager.py" line="2136" /> + <location filename="../ViewManager/ViewManager.py" line="2135" /> <source>Move to start of document</source> <translation>Zum Dokumentenanfang springen</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1214" /> - <location filename="../ViewManager/ViewManager.py" line="2138" /> + <location filename="../ViewManager/ViewManager.py" line="2148" /> <source>Ctrl+Home</source> <translation>Ctrl+Home</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1222" /> <location filename="../QScintilla/MiniEditor.py" line="1221" /> - <location filename="../ViewManager/ViewManager.py" line="2146" /> - <location filename="../ViewManager/ViewManager.py" line="2145" /> + <location filename="../ViewManager/ViewManager.py" line="2156" /> + <location filename="../ViewManager/ViewManager.py" line="2155" /> <source>Move to end of document</source> <translation>Zum Dokumentenende springen</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1234" /> - <location filename="../ViewManager/ViewManager.py" line="2158" /> + <location filename="../ViewManager/ViewManager.py" line="2168" /> <source>Ctrl+End</source> <translation>Ctrl+End</translation> </message> @@ -96113,29 +96113,29 @@ <location filename="../QScintilla/MiniEditor.py" line="1241" /> <location filename="../QScintilla/ShellWindow.py" line="457" /> <location filename="../QScintilla/ShellWindow.py" line="456" /> - <location filename="../ViewManager/ViewManager.py" line="2166" /> - <location filename="../ViewManager/ViewManager.py" line="2165" /> + <location filename="../ViewManager/ViewManager.py" line="2176" /> + <location filename="../ViewManager/ViewManager.py" line="2175" /> <source>Indent one level</source> <translation>Eine Ebene einrücken</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1243" /> <location filename="../QScintilla/ShellWindow.py" line="458" /> - <location filename="../ViewManager/ViewManager.py" line="2167" /> + <location filename="../ViewManager/ViewManager.py" line="2177" /> <source>Tab</source> <translation>Tab</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1254" /> <location filename="../QScintilla/MiniEditor.py" line="1253" /> - <location filename="../ViewManager/ViewManager.py" line="2178" /> - <location filename="../ViewManager/ViewManager.py" line="2177" /> + <location filename="../ViewManager/ViewManager.py" line="2188" /> + <location filename="../ViewManager/ViewManager.py" line="2187" /> <source>Unindent one level</source> <translation>Eine Ebene ausrücken</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1255" /> - <location filename="../ViewManager/ViewManager.py" line="2179" /> + <location filename="../ViewManager/ViewManager.py" line="2189" /> <source>Shift+Tab</source> <translation>Shift+Tab</translation> </message> @@ -96144,22 +96144,22 @@ <location filename="../QScintilla/MiniEditor.py" line="1265" /> <location filename="../QScintilla/ShellWindow.py" line="785" /> <location filename="../QScintilla/ShellWindow.py" line="782" /> - <location filename="../ViewManager/ViewManager.py" line="2192" /> - <location filename="../ViewManager/ViewManager.py" line="2189" /> + <location filename="../ViewManager/ViewManager.py" line="2202" /> + <location filename="../ViewManager/ViewManager.py" line="2199" /> <source>Extend selection left one character</source> <translation>Auswahl um ein Zeichen nach links erweitern</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1271" /> <location filename="../QScintilla/ShellWindow.py" line="788" /> - <location filename="../ViewManager/ViewManager.py" line="2195" /> + <location filename="../ViewManager/ViewManager.py" line="2205" /> <source>Shift+Left</source> <translation>Shift+Left</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1278" /> <location filename="../QScintilla/ShellWindow.py" line="795" /> - <location filename="../ViewManager/ViewManager.py" line="2202" /> + <location filename="../ViewManager/ViewManager.py" line="2212" /> <source>Meta+Shift+B</source> <translation>Meta+Shift+B</translation> </message> @@ -96168,70 +96168,70 @@ <location filename="../QScintilla/MiniEditor.py" line="1285" /> <location filename="../QScintilla/ShellWindow.py" line="805" /> <location filename="../QScintilla/ShellWindow.py" line="802" /> - <location filename="../ViewManager/ViewManager.py" line="2212" /> - <location filename="../ViewManager/ViewManager.py" line="2209" /> + <location filename="../ViewManager/ViewManager.py" line="2222" /> + <location filename="../ViewManager/ViewManager.py" line="2219" /> <source>Extend selection right one character</source> <translation>Auswahl um ein Zeichen nach rechts erweitern</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1291" /> <location filename="../QScintilla/ShellWindow.py" line="808" /> - <location filename="../ViewManager/ViewManager.py" line="2215" /> + <location filename="../ViewManager/ViewManager.py" line="2225" /> <source>Shift+Right</source> <translation>Shift+Right</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1298" /> <location filename="../QScintilla/ShellWindow.py" line="815" /> - <location filename="../ViewManager/ViewManager.py" line="2222" /> + <location filename="../ViewManager/ViewManager.py" line="2232" /> <source>Meta+Shift+F</source> <translation>Meta+Shift+F</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1306" /> <location filename="../QScintilla/MiniEditor.py" line="1305" /> - <location filename="../ViewManager/ViewManager.py" line="2230" /> - <location filename="../ViewManager/ViewManager.py" line="2229" /> + <location filename="../ViewManager/ViewManager.py" line="2240" /> + <location filename="../ViewManager/ViewManager.py" line="2239" /> <source>Extend selection up one line</source> <translation>Auswahl um eine Zeile nach oben erweitern</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1307" /> - <location filename="../ViewManager/ViewManager.py" line="2231" /> + <location filename="../ViewManager/ViewManager.py" line="2241" /> <source>Shift+Up</source> <translation>Shift+Up</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1314" /> - <location filename="../ViewManager/ViewManager.py" line="2238" /> + <location filename="../ViewManager/ViewManager.py" line="2248" /> <source>Meta+Shift+P</source> <translation>Meta+Shift+P</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1322" /> <location filename="../QScintilla/MiniEditor.py" line="1321" /> - <location filename="../ViewManager/ViewManager.py" line="2246" /> - <location filename="../ViewManager/ViewManager.py" line="2245" /> + <location filename="../ViewManager/ViewManager.py" line="2256" /> + <location filename="../ViewManager/ViewManager.py" line="2255" /> <source>Extend selection down one line</source> <translation>Auswahl um eine Zeile nach unten erweitern</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1323" /> - <location filename="../ViewManager/ViewManager.py" line="2247" /> + <location filename="../ViewManager/ViewManager.py" line="2257" /> <source>Shift+Down</source> <translation>Shift+Down</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1330" /> - <location filename="../ViewManager/ViewManager.py" line="2254" /> + <location filename="../ViewManager/ViewManager.py" line="2264" /> <source>Meta+Shift+N</source> <translation>Meta+Shift+N</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1340" /> <location filename="../QScintilla/MiniEditor.py" line="1337" /> - <location filename="../ViewManager/ViewManager.py" line="2264" /> - <location filename="../ViewManager/ViewManager.py" line="2261" /> + <location filename="../ViewManager/ViewManager.py" line="2274" /> + <location filename="../ViewManager/ViewManager.py" line="2271" /> <source>Extend selection left one word part</source> <translation>Auswahl um einen Wortteil nach links erweitern</translation> </message> @@ -96239,16 +96239,16 @@ <location filename="../QScintilla/MiniEditor.py" line="1391" /> <location filename="../QScintilla/MiniEditor.py" line="1351" /> <location filename="../QScintilla/ShellWindow.py" line="832" /> - <location filename="../ViewManager/ViewManager.py" line="2315" /> - <location filename="../ViewManager/ViewManager.py" line="2275" /> + <location filename="../ViewManager/ViewManager.py" line="2325" /> + <location filename="../ViewManager/ViewManager.py" line="2285" /> <source>Alt+Shift+Left</source> <translation>Alt+Shift+Left</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1362" /> <location filename="../QScintilla/MiniEditor.py" line="1359" /> - <location filename="../ViewManager/ViewManager.py" line="2286" /> - <location filename="../ViewManager/ViewManager.py" line="2283" /> + <location filename="../ViewManager/ViewManager.py" line="2296" /> + <location filename="../ViewManager/ViewManager.py" line="2293" /> <source>Extend selection right one word part</source> <translation>Auswahl um einen Wortteil nach rechts erweitern</translation> </message> @@ -96257,9 +96257,9 @@ <location filename="../QScintilla/MiniEditor.py" line="1419" /> <location filename="../QScintilla/MiniEditor.py" line="1373" /> <location filename="../QScintilla/ShellWindow.py" line="860" /> - <location filename="../ViewManager/ViewManager.py" line="3093" /> - <location filename="../ViewManager/ViewManager.py" line="2343" /> - <location filename="../ViewManager/ViewManager.py" line="2297" /> + <location filename="../ViewManager/ViewManager.py" line="3103" /> + <location filename="../ViewManager/ViewManager.py" line="2353" /> + <location filename="../ViewManager/ViewManager.py" line="2307" /> <source>Alt+Shift+Right</source> <translation>Alt+Shift+Right</translation> </message> @@ -96268,8 +96268,8 @@ <location filename="../QScintilla/MiniEditor.py" line="1381" /> <location filename="../QScintilla/ShellWindow.py" line="823" /> <location filename="../QScintilla/ShellWindow.py" line="822" /> - <location filename="../ViewManager/ViewManager.py" line="2306" /> - <location filename="../ViewManager/ViewManager.py" line="2305" /> + <location filename="../ViewManager/ViewManager.py" line="2316" /> + <location filename="../ViewManager/ViewManager.py" line="2315" /> <source>Extend selection left one word</source> <translation>Auswahl um ein Wort nach links erweitern</translation> </message> @@ -96277,8 +96277,8 @@ <location filename="../QScintilla/MiniEditor.py" line="2312" /> <location filename="../QScintilla/MiniEditor.py" line="1397" /> <location filename="../QScintilla/ShellWindow.py" line="838" /> - <location filename="../ViewManager/ViewManager.py" line="3219" /> - <location filename="../ViewManager/ViewManager.py" line="2321" /> + <location filename="../ViewManager/ViewManager.py" line="3229" /> + <location filename="../ViewManager/ViewManager.py" line="2331" /> <source>Ctrl+Shift+Left</source> <translation>Ctrl+Shift+Left</translation> </message> @@ -96287,8 +96287,8 @@ <location filename="../QScintilla/MiniEditor.py" line="1405" /> <location filename="../QScintilla/ShellWindow.py" line="849" /> <location filename="../QScintilla/ShellWindow.py" line="846" /> - <location filename="../ViewManager/ViewManager.py" line="2332" /> - <location filename="../ViewManager/ViewManager.py" line="2329" /> + <location filename="../ViewManager/ViewManager.py" line="2342" /> + <location filename="../ViewManager/ViewManager.py" line="2339" /> <source>Extend selection right one word</source> <translation>Auswahl um ein Wort nach rechts erweitern</translation> </message> @@ -96296,8 +96296,8 @@ <location filename="../QScintilla/MiniEditor.py" line="1873" /> <location filename="../QScintilla/MiniEditor.py" line="1425" /> <location filename="../QScintilla/ShellWindow.py" line="866" /> - <location filename="../ViewManager/ViewManager.py" line="2780" /> - <location filename="../ViewManager/ViewManager.py" line="2349" /> + <location filename="../ViewManager/ViewManager.py" line="2790" /> + <location filename="../ViewManager/ViewManager.py" line="2359" /> <source>Ctrl+Shift+Right</source> <translation>Ctrl+Shift+Right</translation> </message> @@ -96306,15 +96306,15 @@ <location filename="../QScintilla/MiniEditor.py" line="1433" /> <location filename="../QScintilla/ShellWindow.py" line="878" /> <location filename="../QScintilla/ShellWindow.py" line="874" /> - <location filename="../ViewManager/ViewManager.py" line="2361" /> - <location filename="../ViewManager/ViewManager.py" line="2357" /> + <location filename="../ViewManager/ViewManager.py" line="2371" /> + <location filename="../ViewManager/ViewManager.py" line="2367" /> <source>Extend selection to first visible character in document line</source> <translation>Auswahl zum ersten sichtbaren Zeichen der Dokumentzeile erweitern</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1448" /> <location filename="../QScintilla/ShellWindow.py" line="889" /> - <location filename="../ViewManager/ViewManager.py" line="2372" /> + <location filename="../ViewManager/ViewManager.py" line="2382" /> <source>Shift+Home</source> <translation>Shift+Home</translation> </message> @@ -96323,124 +96323,124 @@ <location filename="../QScintilla/MiniEditor.py" line="1455" /> <location filename="../QScintilla/ShellWindow.py" line="899" /> <location filename="../QScintilla/ShellWindow.py" line="896" /> - <location filename="../ViewManager/ViewManager.py" line="2382" /> - <location filename="../ViewManager/ViewManager.py" line="2379" /> + <location filename="../ViewManager/ViewManager.py" line="2392" /> + <location filename="../ViewManager/ViewManager.py" line="2389" /> <source>Extend selection to end of document line</source> <translation>Auswahl zum Ende der Dokumentenzeile erweitern</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1468" /> <location filename="../QScintilla/ShellWindow.py" line="909" /> - <location filename="../ViewManager/ViewManager.py" line="2392" /> + <location filename="../ViewManager/ViewManager.py" line="2402" /> <source>Meta+Shift+E</source> <translation>Meta+Shift+E</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1472" /> <location filename="../QScintilla/ShellWindow.py" line="913" /> - <location filename="../ViewManager/ViewManager.py" line="2396" /> + <location filename="../ViewManager/ViewManager.py" line="2406" /> <source>Shift+End</source> <translation>Shift+End</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1482" /> <location filename="../QScintilla/MiniEditor.py" line="1479" /> - <location filename="../ViewManager/ViewManager.py" line="2406" /> - <location filename="../ViewManager/ViewManager.py" line="2403" /> + <location filename="../ViewManager/ViewManager.py" line="2416" /> + <location filename="../ViewManager/ViewManager.py" line="2413" /> <source>Extend selection up one paragraph</source> <translation>Auswahl um einen Absatz nach oben erweitern</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1485" /> - <location filename="../ViewManager/ViewManager.py" line="2409" /> + <location filename="../ViewManager/ViewManager.py" line="2419" /> <source>Alt+Shift+Up</source> <translation>Alt+Shift+Up</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1498" /> <location filename="../QScintilla/MiniEditor.py" line="1495" /> - <location filename="../ViewManager/ViewManager.py" line="2422" /> - <location filename="../ViewManager/ViewManager.py" line="2419" /> + <location filename="../ViewManager/ViewManager.py" line="2432" /> + <location filename="../ViewManager/ViewManager.py" line="2429" /> <source>Extend selection down one paragraph</source> <translation>Auswahl um einen Absatz nach unten erweitern</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1501" /> - <location filename="../ViewManager/ViewManager.py" line="2425" /> + <location filename="../ViewManager/ViewManager.py" line="2435" /> <source>Alt+Shift+Down</source> <translation>Alt+Shift+Down</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1512" /> <location filename="../QScintilla/MiniEditor.py" line="1511" /> - <location filename="../ViewManager/ViewManager.py" line="2436" /> - <location filename="../ViewManager/ViewManager.py" line="2435" /> + <location filename="../ViewManager/ViewManager.py" line="2446" /> + <location filename="../ViewManager/ViewManager.py" line="2445" /> <source>Extend selection up one page</source> <translation>Auswahl um eine Seite nach oben erweitern</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1513" /> - <location filename="../ViewManager/ViewManager.py" line="2437" /> + <location filename="../ViewManager/ViewManager.py" line="2447" /> <source>Shift+PgUp</source> <translation>Shift+PgUp</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1524" /> <location filename="../QScintilla/MiniEditor.py" line="1523" /> - <location filename="../ViewManager/ViewManager.py" line="2448" /> - <location filename="../ViewManager/ViewManager.py" line="2447" /> + <location filename="../ViewManager/ViewManager.py" line="2458" /> + <location filename="../ViewManager/ViewManager.py" line="2457" /> <source>Extend selection down one page</source> <translation>Auswahl um eine Seite nach unten erweitern</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1525" /> - <location filename="../ViewManager/ViewManager.py" line="2449" /> + <location filename="../ViewManager/ViewManager.py" line="2459" /> <source>Shift+PgDown</source> <translation>Shift+PgDown</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1532" /> - <location filename="../ViewManager/ViewManager.py" line="2456" /> + <location filename="../ViewManager/ViewManager.py" line="2466" /> <source>Meta+Shift+V</source> <translation>Meta+Shift+V</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1542" /> <location filename="../QScintilla/MiniEditor.py" line="1539" /> - <location filename="../ViewManager/ViewManager.py" line="2466" /> - <location filename="../ViewManager/ViewManager.py" line="2463" /> + <location filename="../ViewManager/ViewManager.py" line="2476" /> + <location filename="../ViewManager/ViewManager.py" line="2473" /> <source>Extend selection to start of document</source> <translation>Auswahl zum Dokumentenanfang erweitern</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1552" /> - <location filename="../ViewManager/ViewManager.py" line="2476" /> + <location filename="../ViewManager/ViewManager.py" line="2486" /> <source>Ctrl+Shift+Up</source> <translation>Ctrl+Shift+Up</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1557" /> - <location filename="../ViewManager/ViewManager.py" line="2481" /> + <location filename="../ViewManager/ViewManager.py" line="2491" /> <source>Ctrl+Shift+Home</source> <translation>Ctrl+Shift+Home</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1568" /> <location filename="../QScintilla/MiniEditor.py" line="1565" /> - <location filename="../ViewManager/ViewManager.py" line="2492" /> - <location filename="../ViewManager/ViewManager.py" line="2489" /> + <location filename="../ViewManager/ViewManager.py" line="2502" /> + <location filename="../ViewManager/ViewManager.py" line="2499" /> <source>Extend selection to end of document</source> <translation>Auswahl zum Dokumentenende erweitern</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1579" /> - <location filename="../ViewManager/ViewManager.py" line="2503" /> + <location filename="../ViewManager/ViewManager.py" line="2513" /> <source>Ctrl+Shift+Down</source> <translation>Ctrl+Shift+Down</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1585" /> - <location filename="../ViewManager/ViewManager.py" line="2509" /> + <location filename="../ViewManager/ViewManager.py" line="2519" /> <source>Ctrl+Shift+End</source> <translation>Ctrl+Shift+End</translation> </message> @@ -96449,37 +96449,37 @@ <location filename="../QScintilla/MiniEditor.py" line="1593" /> <location filename="../QScintilla/ShellWindow.py" line="481" /> <location filename="../QScintilla/ShellWindow.py" line="480" /> - <location filename="../ViewManager/ViewManager.py" line="2518" /> - <location filename="../ViewManager/ViewManager.py" line="2517" /> + <location filename="../ViewManager/ViewManager.py" line="2528" /> + <location filename="../ViewManager/ViewManager.py" line="2527" /> <source>Delete previous character</source> <translation>Zeichen links löschen</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1595" /> <location filename="../QScintilla/ShellWindow.py" line="482" /> - <location filename="../ViewManager/ViewManager.py" line="2519" /> + <location filename="../ViewManager/ViewManager.py" line="2529" /> <source>Backspace</source> <translation>Backspace</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1602" /> <location filename="../QScintilla/ShellWindow.py" line="489" /> - <location filename="../ViewManager/ViewManager.py" line="2526" /> + <location filename="../ViewManager/ViewManager.py" line="2536" /> <source>Meta+H</source> <translation>Meta+H</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1607" /> <location filename="../QScintilla/ShellWindow.py" line="494" /> - <location filename="../ViewManager/ViewManager.py" line="2531" /> + <location filename="../ViewManager/ViewManager.py" line="2541" /> <source>Shift+Backspace</source> <translation>Shift+Backspace</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1618" /> <location filename="../QScintilla/MiniEditor.py" line="1615" /> - <location filename="../ViewManager/ViewManager.py" line="2542" /> - <location filename="../ViewManager/ViewManager.py" line="2539" /> + <location filename="../ViewManager/ViewManager.py" line="2552" /> + <location filename="../ViewManager/ViewManager.py" line="2549" /> <source>Delete previous character if not at start of line</source> <translation>Zeichen links löschen, wenn nicht am Zeilenanfang</translation> </message> @@ -96488,22 +96488,22 @@ <location filename="../QScintilla/MiniEditor.py" line="1631" /> <location filename="../QScintilla/ShellWindow.py" line="503" /> <location filename="../QScintilla/ShellWindow.py" line="502" /> - <location filename="../ViewManager/ViewManager.py" line="2556" /> - <location filename="../ViewManager/ViewManager.py" line="2555" /> + <location filename="../ViewManager/ViewManager.py" line="2566" /> + <location filename="../ViewManager/ViewManager.py" line="2565" /> <source>Delete current character</source> <translation>Aktuelles Zeichen löschen</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1633" /> <location filename="../QScintilla/ShellWindow.py" line="504" /> - <location filename="../ViewManager/ViewManager.py" line="2557" /> + <location filename="../ViewManager/ViewManager.py" line="2567" /> <source>Del</source> <translation>Del</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1640" /> <location filename="../QScintilla/ShellWindow.py" line="511" /> - <location filename="../ViewManager/ViewManager.py" line="2564" /> + <location filename="../ViewManager/ViewManager.py" line="2574" /> <source>Meta+D</source> <translation>Meta+D</translation> </message> @@ -96512,15 +96512,15 @@ <location filename="../QScintilla/MiniEditor.py" line="1647" /> <location filename="../QScintilla/ShellWindow.py" line="519" /> <location filename="../QScintilla/ShellWindow.py" line="518" /> - <location filename="../ViewManager/ViewManager.py" line="2572" /> - <location filename="../ViewManager/ViewManager.py" line="2571" /> + <location filename="../ViewManager/ViewManager.py" line="2582" /> + <location filename="../ViewManager/ViewManager.py" line="2581" /> <source>Delete word to left</source> <translation>Wort links löschen</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1649" /> <location filename="../QScintilla/ShellWindow.py" line="520" /> - <location filename="../ViewManager/ViewManager.py" line="2573" /> + <location filename="../ViewManager/ViewManager.py" line="2583" /> <source>Ctrl+Backspace</source> <translation>Ctrl+Backspace</translation> </message> @@ -96529,15 +96529,15 @@ <location filename="../QScintilla/MiniEditor.py" line="1659" /> <location filename="../QScintilla/ShellWindow.py" line="531" /> <location filename="../QScintilla/ShellWindow.py" line="530" /> - <location filename="../ViewManager/ViewManager.py" line="2584" /> - <location filename="../ViewManager/ViewManager.py" line="2583" /> + <location filename="../ViewManager/ViewManager.py" line="2594" /> + <location filename="../ViewManager/ViewManager.py" line="2593" /> <source>Delete word to right</source> <translation>Wort rechts löschen</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1661" /> <location filename="../QScintilla/ShellWindow.py" line="532" /> - <location filename="../ViewManager/ViewManager.py" line="2585" /> + <location filename="../ViewManager/ViewManager.py" line="2595" /> <source>Ctrl+Del</source> <translation>Ctrl+Del</translation> </message> @@ -96546,15 +96546,15 @@ <location filename="../QScintilla/MiniEditor.py" line="1671" /> <location filename="../QScintilla/ShellWindow.py" line="543" /> <location filename="../QScintilla/ShellWindow.py" line="542" /> - <location filename="../ViewManager/ViewManager.py" line="2596" /> - <location filename="../ViewManager/ViewManager.py" line="2595" /> + <location filename="../ViewManager/ViewManager.py" line="2606" /> + <location filename="../ViewManager/ViewManager.py" line="2605" /> <source>Delete line to left</source> <translation>Zeile links löschen</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1674" /> <location filename="../QScintilla/ShellWindow.py" line="545" /> - <location filename="../ViewManager/ViewManager.py" line="2598" /> + <location filename="../ViewManager/ViewManager.py" line="2608" /> <source>Ctrl+Shift+Backspace</source> <translation>Ctrl+Shift+Backspace</translation> </message> @@ -96563,22 +96563,22 @@ <location filename="../QScintilla/MiniEditor.py" line="1685" /> <location filename="../QScintilla/ShellWindow.py" line="557" /> <location filename="../QScintilla/ShellWindow.py" line="556" /> - <location filename="../ViewManager/ViewManager.py" line="2610" /> - <location filename="../ViewManager/ViewManager.py" line="2609" /> + <location filename="../ViewManager/ViewManager.py" line="2620" /> + <location filename="../ViewManager/ViewManager.py" line="2619" /> <source>Delete line to right</source> <translation>Zeile rechts löschen</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1694" /> <location filename="../QScintilla/ShellWindow.py" line="565" /> - <location filename="../ViewManager/ViewManager.py" line="2618" /> + <location filename="../ViewManager/ViewManager.py" line="2628" /> <source>Meta+K</source> <translation>Meta+K</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1699" /> <location filename="../QScintilla/ShellWindow.py" line="570" /> - <location filename="../ViewManager/ViewManager.py" line="2623" /> + <location filename="../ViewManager/ViewManager.py" line="2633" /> <source>Ctrl+Shift+Del</source> <translation>Ctrl+Shift+Del</translation> </message> @@ -96587,38 +96587,38 @@ <location filename="../QScintilla/MiniEditor.py" line="1707" /> <location filename="../QScintilla/ShellWindow.py" line="469" /> <location filename="../QScintilla/ShellWindow.py" line="468" /> - <location filename="../ViewManager/ViewManager.py" line="2632" /> - <location filename="../ViewManager/ViewManager.py" line="2631" /> + <location filename="../ViewManager/ViewManager.py" line="2642" /> + <location filename="../ViewManager/ViewManager.py" line="2641" /> <source>Insert new line</source> <translation>Neue Zeile einfügen</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1709" /> <location filename="../QScintilla/ShellWindow.py" line="470" /> - <location filename="../ViewManager/ViewManager.py" line="2633" /> + <location filename="../ViewManager/ViewManager.py" line="2643" /> <source>Return</source> <translation>Return</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1710" /> <location filename="../QScintilla/ShellWindow.py" line="471" /> - <location filename="../ViewManager/ViewManager.py" line="2634" /> + <location filename="../ViewManager/ViewManager.py" line="2644" /> <source>Enter</source> <translation>Enter</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="2646" /> - <location filename="../ViewManager/ViewManager.py" line="2643" /> + <location filename="../ViewManager/ViewManager.py" line="2656" /> + <location filename="../ViewManager/ViewManager.py" line="2653" /> <source>Insert new line below current line</source> <translation>Neue Zeile unterhalb der aktuellen einfügen</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="2649" /> + <location filename="../ViewManager/ViewManager.py" line="2659" /> <source>Shift+Return</source> <translation>Shift+Return</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="2650" /> + <location filename="../ViewManager/ViewManager.py" line="2660" /> <source>Shift+Enter</source> <translation>Shift+Enter</translation> </message> @@ -96627,129 +96627,129 @@ <location filename="../QScintilla/MiniEditor.py" line="1719" /> <location filename="../QScintilla/ShellWindow.py" line="445" /> <location filename="../QScintilla/ShellWindow.py" line="444" /> - <location filename="../ViewManager/ViewManager.py" line="2659" /> - <location filename="../ViewManager/ViewManager.py" line="2658" /> + <location filename="../ViewManager/ViewManager.py" line="2669" /> + <location filename="../ViewManager/ViewManager.py" line="2668" /> <source>Delete current line</source> <translation>Aktuelle Zeile löschen</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1721" /> <location filename="../QScintilla/ShellWindow.py" line="446" /> - <location filename="../ViewManager/ViewManager.py" line="2660" /> + <location filename="../ViewManager/ViewManager.py" line="2670" /> <source>Ctrl+Shift+L</source> <translation>Ctrl+Shift+L</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1732" /> <location filename="../QScintilla/MiniEditor.py" line="1731" /> - <location filename="../ViewManager/ViewManager.py" line="2671" /> - <location filename="../ViewManager/ViewManager.py" line="2670" /> + <location filename="../ViewManager/ViewManager.py" line="2681" /> + <location filename="../ViewManager/ViewManager.py" line="2680" /> <source>Duplicate current line</source> <translation>Aktuelle Zeile duplizieren</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1733" /> - <location filename="../ViewManager/ViewManager.py" line="2672" /> + <location filename="../ViewManager/ViewManager.py" line="2682" /> <source>Ctrl+D</source> <translation>Ctrl+D</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1746" /> <location filename="../QScintilla/MiniEditor.py" line="1743" /> - <location filename="../ViewManager/ViewManager.py" line="2685" /> - <location filename="../ViewManager/ViewManager.py" line="2682" /> + <location filename="../ViewManager/ViewManager.py" line="2695" /> + <location filename="../ViewManager/ViewManager.py" line="2692" /> <source>Swap current and previous lines</source> <translation>Aktuelle Zeile mit vorhergehender tauschen</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1749" /> - <location filename="../ViewManager/ViewManager.py" line="2688" /> + <location filename="../ViewManager/ViewManager.py" line="2698" /> <source>Ctrl+T</source> <translation>Ctrl+T</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1760" /> <location filename="../QScintilla/MiniEditor.py" line="1759" /> - <location filename="../ViewManager/ViewManager.py" line="2699" /> - <location filename="../ViewManager/ViewManager.py" line="2698" /> + <location filename="../ViewManager/ViewManager.py" line="2709" /> + <location filename="../ViewManager/ViewManager.py" line="2708" /> <source>Reverse selected lines</source> <translation>Ausgewählte Zeilen umkehren</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1761" /> - <location filename="../ViewManager/ViewManager.py" line="2700" /> + <location filename="../ViewManager/ViewManager.py" line="2710" /> <source>Meta+Alt+R</source> <translation>Meta+Ctrl+Alt+R</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1772" /> <location filename="../QScintilla/MiniEditor.py" line="1771" /> - <location filename="../ViewManager/ViewManager.py" line="2711" /> - <location filename="../ViewManager/ViewManager.py" line="2710" /> + <location filename="../ViewManager/ViewManager.py" line="2721" /> + <location filename="../ViewManager/ViewManager.py" line="2720" /> <source>Cut current line</source> <translation>Aktuelle Zeile ausschneiden</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1773" /> - <location filename="../ViewManager/ViewManager.py" line="2712" /> + <location filename="../ViewManager/ViewManager.py" line="2722" /> <source>Alt+Shift+L</source> <translation>Alt+Shift+L</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1784" /> <location filename="../QScintilla/MiniEditor.py" line="1783" /> - <location filename="../ViewManager/ViewManager.py" line="2723" /> - <location filename="../ViewManager/ViewManager.py" line="2722" /> + <location filename="../ViewManager/ViewManager.py" line="2733" /> + <location filename="../ViewManager/ViewManager.py" line="2732" /> <source>Copy current line</source> <translation>Aktuelle Zeile kopieren</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1785" /> - <location filename="../ViewManager/ViewManager.py" line="2724" /> + <location filename="../ViewManager/ViewManager.py" line="2734" /> <source>Ctrl+Shift+T</source> <translation>Ctrl+Shift+L</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1796" /> <location filename="../QScintilla/MiniEditor.py" line="1795" /> - <location filename="../ViewManager/ViewManager.py" line="2735" /> - <location filename="../ViewManager/ViewManager.py" line="2734" /> + <location filename="../ViewManager/ViewManager.py" line="2745" /> + <location filename="../ViewManager/ViewManager.py" line="2744" /> <source>Toggle insert/overtype</source> <translation>Einfügen/Überschreiben umschalten</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1797" /> - <location filename="../ViewManager/ViewManager.py" line="2736" /> + <location filename="../ViewManager/ViewManager.py" line="2746" /> <source>Ins</source> <translation>Ins</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1840" /> <location filename="../QScintilla/MiniEditor.py" line="1839" /> - <location filename="../ViewManager/ViewManager.py" line="2747" /> - <location filename="../ViewManager/ViewManager.py" line="2746" /> + <location filename="../ViewManager/ViewManager.py" line="2757" /> + <location filename="../ViewManager/ViewManager.py" line="2756" /> <source>Move to end of display line</source> <translation>Zum Ende der Anzeigezeile springen</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1852" /> - <location filename="../ViewManager/ViewManager.py" line="2759" /> + <location filename="../ViewManager/ViewManager.py" line="2769" /> <source>Alt+End</source> <translation>Alt+End</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1862" /> <location filename="../QScintilla/MiniEditor.py" line="1859" /> - <location filename="../ViewManager/ViewManager.py" line="2769" /> - <location filename="../ViewManager/ViewManager.py" line="2766" /> + <location filename="../ViewManager/ViewManager.py" line="2779" /> + <location filename="../ViewManager/ViewManager.py" line="2776" /> <source>Extend selection to end of display line</source> <translation>Auswahl zum Ende der Anzeigezeile erweitern</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1882" /> <location filename="../QScintilla/MiniEditor.py" line="1881" /> - <location filename="../ViewManager/ViewManager.py" line="2789" /> - <location filename="../ViewManager/ViewManager.py" line="2788" /> + <location filename="../ViewManager/ViewManager.py" line="2799" /> + <location filename="../ViewManager/ViewManager.py" line="2798" /> <source>Formfeed</source> <translation>Seitenumbruch</translation> </message> @@ -96758,163 +96758,163 @@ <location filename="../QScintilla/MiniEditor.py" line="1893" /> <location filename="../QScintilla/ShellWindow.py" line="771" /> <location filename="../QScintilla/ShellWindow.py" line="770" /> - <location filename="../ViewManager/ViewManager.py" line="2801" /> - <location filename="../ViewManager/ViewManager.py" line="2800" /> + <location filename="../ViewManager/ViewManager.py" line="2811" /> + <location filename="../ViewManager/ViewManager.py" line="2810" /> <source>Escape</source> <translation>Abbruch</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1895" /> <location filename="../QScintilla/ShellWindow.py" line="772" /> - <location filename="../ViewManager/ViewManager.py" line="2802" /> + <location filename="../ViewManager/ViewManager.py" line="2812" /> <source>Esc</source> <translation>Esc</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1908" /> <location filename="../QScintilla/MiniEditor.py" line="1905" /> - <location filename="../ViewManager/ViewManager.py" line="2815" /> - <location filename="../ViewManager/ViewManager.py" line="2812" /> + <location filename="../ViewManager/ViewManager.py" line="2825" /> + <location filename="../ViewManager/ViewManager.py" line="2822" /> <source>Extend rectangular selection down one line</source> <translation>Rechteckige Auswahl um eine Zeile nach unten erweitern</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1911" /> - <location filename="../ViewManager/ViewManager.py" line="2818" /> + <location filename="../ViewManager/ViewManager.py" line="2828" /> <source>Alt+Ctrl+Down</source> <translation>Alt+Ctrl+Down</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1919" /> - <location filename="../ViewManager/ViewManager.py" line="2826" /> + <location filename="../ViewManager/ViewManager.py" line="2836" /> <source>Meta+Alt+Shift+N</source> <translation>Meta+Alt+Shift+N</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1930" /> <location filename="../QScintilla/MiniEditor.py" line="1927" /> - <location filename="../ViewManager/ViewManager.py" line="2837" /> - <location filename="../ViewManager/ViewManager.py" line="2834" /> + <location filename="../ViewManager/ViewManager.py" line="2847" /> + <location filename="../ViewManager/ViewManager.py" line="2844" /> <source>Extend rectangular selection up one line</source> <translation>Rechteckige Auswahl um eine Zeile nach oben erweitern</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1933" /> - <location filename="../ViewManager/ViewManager.py" line="2840" /> + <location filename="../ViewManager/ViewManager.py" line="2850" /> <source>Alt+Ctrl+Up</source> <translation>Alt+Ctrl+Up</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1941" /> - <location filename="../ViewManager/ViewManager.py" line="2848" /> + <location filename="../ViewManager/ViewManager.py" line="2858" /> <source>Meta+Alt+Shift+P</source> <translation>Meta+Alt+Shift+P</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1952" /> <location filename="../QScintilla/MiniEditor.py" line="1949" /> - <location filename="../ViewManager/ViewManager.py" line="2859" /> - <location filename="../ViewManager/ViewManager.py" line="2856" /> + <location filename="../ViewManager/ViewManager.py" line="2869" /> + <location filename="../ViewManager/ViewManager.py" line="2866" /> <source>Extend rectangular selection left one character</source> <translation>Rechteckige Auswahl um ein Zeichen nach links erweitern</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1955" /> - <location filename="../ViewManager/ViewManager.py" line="2862" /> + <location filename="../ViewManager/ViewManager.py" line="2872" /> <source>Alt+Ctrl+Left</source> <translation>Alt+Ctrl+Left</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1963" /> - <location filename="../ViewManager/ViewManager.py" line="2870" /> + <location filename="../ViewManager/ViewManager.py" line="2880" /> <source>Meta+Alt+Shift+B</source> <translation>Meta+Alt+Shift+B</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1974" /> <location filename="../QScintilla/MiniEditor.py" line="1971" /> - <location filename="../ViewManager/ViewManager.py" line="2881" /> - <location filename="../ViewManager/ViewManager.py" line="2878" /> + <location filename="../ViewManager/ViewManager.py" line="2891" /> + <location filename="../ViewManager/ViewManager.py" line="2888" /> <source>Extend rectangular selection right one character</source> <translation>Rechteckige Auswahl um ein Zeichen nach rechts erweitern</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1977" /> - <location filename="../ViewManager/ViewManager.py" line="2884" /> + <location filename="../ViewManager/ViewManager.py" line="2894" /> <source>Alt+Ctrl+Right</source> <translation>Alt+Ctrl+Right</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1985" /> - <location filename="../ViewManager/ViewManager.py" line="2892" /> + <location filename="../ViewManager/ViewManager.py" line="2902" /> <source>Meta+Alt+Shift+F</source> <translation>Meta+Alt+Shift+F</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1998" /> <location filename="../QScintilla/MiniEditor.py" line="1993" /> - <location filename="../ViewManager/ViewManager.py" line="2905" /> - <location filename="../ViewManager/ViewManager.py" line="2900" /> + <location filename="../ViewManager/ViewManager.py" line="2915" /> + <location filename="../ViewManager/ViewManager.py" line="2910" /> <source>Extend rectangular selection to first visible character in document line</source> <translation>Rechteckige Auswahl zum ersten sichtbaren Zeichen der Dokumentzeile erweitern</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2011" /> - <location filename="../ViewManager/ViewManager.py" line="2918" /> + <location filename="../ViewManager/ViewManager.py" line="2928" /> <source>Alt+Shift+Home</source> <translation>Alt+Shift+Home</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2022" /> <location filename="../QScintilla/MiniEditor.py" line="2019" /> - <location filename="../ViewManager/ViewManager.py" line="2929" /> - <location filename="../ViewManager/ViewManager.py" line="2926" /> + <location filename="../ViewManager/ViewManager.py" line="2939" /> + <location filename="../ViewManager/ViewManager.py" line="2936" /> <source>Extend rectangular selection to end of document line</source> <translation>Rechteckige Auswahl zum Ende der Dokumentenzeile erweitern</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2033" /> - <location filename="../ViewManager/ViewManager.py" line="2940" /> + <location filename="../ViewManager/ViewManager.py" line="2950" /> <source>Meta+Alt+Shift+E</source> <translation>Meta+Alt+Shift+E</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2038" /> - <location filename="../ViewManager/ViewManager.py" line="2945" /> + <location filename="../ViewManager/ViewManager.py" line="2955" /> <source>Alt+Shift+End</source> <translation>Alt+Shift+End</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2048" /> <location filename="../QScintilla/MiniEditor.py" line="2045" /> - <location filename="../ViewManager/ViewManager.py" line="2955" /> - <location filename="../ViewManager/ViewManager.py" line="2952" /> + <location filename="../ViewManager/ViewManager.py" line="2965" /> + <location filename="../ViewManager/ViewManager.py" line="2962" /> <source>Extend rectangular selection up one page</source> <translation>Rechteckige Auswahl um eine Seite nach oben erweitern</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2051" /> - <location filename="../ViewManager/ViewManager.py" line="2958" /> + <location filename="../ViewManager/ViewManager.py" line="2968" /> <source>Alt+Shift+PgUp</source> <translation>Alt+Shift+PgUp</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2064" /> <location filename="../QScintilla/MiniEditor.py" line="2061" /> - <location filename="../ViewManager/ViewManager.py" line="2971" /> - <location filename="../ViewManager/ViewManager.py" line="2968" /> + <location filename="../ViewManager/ViewManager.py" line="2981" /> + <location filename="../ViewManager/ViewManager.py" line="2978" /> <source>Extend rectangular selection down one page</source> <translation>Rechteckige Auswahl um eine Seite nach unten erweitern</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2067" /> - <location filename="../ViewManager/ViewManager.py" line="2974" /> + <location filename="../ViewManager/ViewManager.py" line="2984" /> <source>Alt+Shift+PgDown</source> <translation>Alt+Shift+PgDown</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2075" /> - <location filename="../ViewManager/ViewManager.py" line="2982" /> + <location filename="../ViewManager/ViewManager.py" line="2992" /> <source>Meta+Alt+Shift+V</source> <translation>Meta+Alt+Shift+V</translation> </message> @@ -96923,299 +96923,299 @@ <location filename="../QScintilla/MiniEditor.py" line="2549" /> <location filename="../QScintilla/MiniEditor.py" line="2084" /> <location filename="../QScintilla/MiniEditor.py" line="2083" /> - <location filename="../ViewManager/ViewManager.py" line="2991" /> - <location filename="../ViewManager/ViewManager.py" line="2990" /> + <location filename="../ViewManager/ViewManager.py" line="3001" /> + <location filename="../ViewManager/ViewManager.py" line="3000" /> <source>Duplicate current selection</source> <translation>Aktuelle Auswahl duplizieren</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2551" /> <location filename="../QScintilla/MiniEditor.py" line="2085" /> - <location filename="../ViewManager/ViewManager.py" line="2992" /> + <location filename="../ViewManager/ViewManager.py" line="3002" /> <source>Ctrl+Shift+D</source> <translation>Ctrl+Shift+D</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2099" /> <location filename="../QScintilla/MiniEditor.py" line="2096" /> - <location filename="../ViewManager/ViewManager.py" line="3006" /> - <location filename="../ViewManager/ViewManager.py" line="3003" /> + <location filename="../ViewManager/ViewManager.py" line="3016" /> + <location filename="../ViewManager/ViewManager.py" line="3013" /> <source>Scroll to start of document</source> <translation>Zum Dokumentenanfang rollen</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2118" /> <location filename="../QScintilla/MiniEditor.py" line="2117" /> - <location filename="../ViewManager/ViewManager.py" line="3025" /> - <location filename="../ViewManager/ViewManager.py" line="3024" /> + <location filename="../ViewManager/ViewManager.py" line="3035" /> + <location filename="../ViewManager/ViewManager.py" line="3034" /> <source>Scroll to end of document</source> <translation>Zum Dokumentenende rollen</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2137" /> <location filename="../QScintilla/MiniEditor.py" line="2134" /> - <location filename="../ViewManager/ViewManager.py" line="3044" /> - <location filename="../ViewManager/ViewManager.py" line="3041" /> + <location filename="../ViewManager/ViewManager.py" line="3054" /> + <location filename="../ViewManager/ViewManager.py" line="3051" /> <source>Scroll vertically to center current line</source> <translation>Vertical rollen, um aktuelle Zeile zu zentrieren</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2147" /> - <location filename="../ViewManager/ViewManager.py" line="3054" /> + <location filename="../ViewManager/ViewManager.py" line="3064" /> <source>Meta+L</source> <translation>Meta+L</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2156" /> <location filename="../QScintilla/MiniEditor.py" line="2155" /> - <location filename="../ViewManager/ViewManager.py" line="3063" /> - <location filename="../ViewManager/ViewManager.py" line="3062" /> + <location filename="../ViewManager/ViewManager.py" line="3073" /> + <location filename="../ViewManager/ViewManager.py" line="3072" /> <source>Move to end of next word</source> <translation>Zum Ende des nächsten Wortes springen</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2175" /> <location filename="../QScintilla/MiniEditor.py" line="2172" /> - <location filename="../ViewManager/ViewManager.py" line="3082" /> - <location filename="../ViewManager/ViewManager.py" line="3079" /> + <location filename="../ViewManager/ViewManager.py" line="3092" /> + <location filename="../ViewManager/ViewManager.py" line="3089" /> <source>Extend selection to end of next word</source> <translation>Auswahl bis zum Ende des nächsten Wortes erweitern</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2198" /> <location filename="../QScintilla/MiniEditor.py" line="2195" /> - <location filename="../ViewManager/ViewManager.py" line="3105" /> - <location filename="../ViewManager/ViewManager.py" line="3102" /> + <location filename="../ViewManager/ViewManager.py" line="3115" /> + <location filename="../ViewManager/ViewManager.py" line="3112" /> <source>Move to end of previous word</source> <translation>Zum Ende des vorigen Wortes springen</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2215" /> <location filename="../QScintilla/MiniEditor.py" line="2212" /> - <location filename="../ViewManager/ViewManager.py" line="3122" /> - <location filename="../ViewManager/ViewManager.py" line="3119" /> + <location filename="../ViewManager/ViewManager.py" line="3132" /> + <location filename="../ViewManager/ViewManager.py" line="3129" /> <source>Extend selection to end of previous word</source> <translation>Auswahl bis zum Ende des vorigen Wortes erweitern</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2232" /> <location filename="../QScintilla/MiniEditor.py" line="2229" /> - <location filename="../ViewManager/ViewManager.py" line="3139" /> - <location filename="../ViewManager/ViewManager.py" line="3136" /> + <location filename="../ViewManager/ViewManager.py" line="3149" /> + <location filename="../ViewManager/ViewManager.py" line="3146" /> <source>Move to start of document line</source> <translation>Zum Beginn der Dokumentenzeile springen</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2242" /> - <location filename="../ViewManager/ViewManager.py" line="3149" /> + <location filename="../ViewManager/ViewManager.py" line="3159" /> <source>Meta+A</source> <translation>Meta+A</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2253" /> <location filename="../QScintilla/MiniEditor.py" line="2250" /> - <location filename="../ViewManager/ViewManager.py" line="3160" /> - <location filename="../ViewManager/ViewManager.py" line="3157" /> + <location filename="../ViewManager/ViewManager.py" line="3170" /> + <location filename="../ViewManager/ViewManager.py" line="3167" /> <source>Extend selection to start of document line</source> <translation>Auswahl zum Beginn der Dokumentenzeile erweitern</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2264" /> - <location filename="../ViewManager/ViewManager.py" line="3171" /> + <location filename="../ViewManager/ViewManager.py" line="3181" /> <source>Meta+Shift+A</source> <translation>Meta+Shift+A</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2277" /> <location filename="../QScintilla/MiniEditor.py" line="2273" /> - <location filename="../ViewManager/ViewManager.py" line="3184" /> - <location filename="../ViewManager/ViewManager.py" line="3180" /> + <location filename="../ViewManager/ViewManager.py" line="3194" /> + <location filename="../ViewManager/ViewManager.py" line="3190" /> <source>Extend rectangular selection to start of document line</source> <translation>Rechteckige Auswahl zum Beginn der Dokumentenzeile erweitern</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2289" /> - <location filename="../ViewManager/ViewManager.py" line="3196" /> + <location filename="../ViewManager/ViewManager.py" line="3206" /> <source>Meta+Alt+Shift+A</source> <translation>Meta+Alt+Shift+A</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2301" /> <location filename="../QScintilla/MiniEditor.py" line="2298" /> - <location filename="../ViewManager/ViewManager.py" line="3208" /> - <location filename="../ViewManager/ViewManager.py" line="3205" /> + <location filename="../ViewManager/ViewManager.py" line="3218" /> + <location filename="../ViewManager/ViewManager.py" line="3215" /> <source>Extend selection to start of display line</source> <translation>Auswahl zum Beginn der Anzeigezeile erweitern</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2324" /> <location filename="../QScintilla/MiniEditor.py" line="2321" /> - <location filename="../ViewManager/ViewManager.py" line="3231" /> - <location filename="../ViewManager/ViewManager.py" line="3228" /> + <location filename="../ViewManager/ViewManager.py" line="3241" /> + <location filename="../ViewManager/ViewManager.py" line="3238" /> <source>Move to start of display or document line</source> <translation>Zum Beginn der Dokumenten- oder Anzeigezeile springen</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2342" /> <location filename="../QScintilla/MiniEditor.py" line="2338" /> - <location filename="../ViewManager/ViewManager.py" line="3249" /> - <location filename="../ViewManager/ViewManager.py" line="3245" /> + <location filename="../ViewManager/ViewManager.py" line="3259" /> + <location filename="../ViewManager/ViewManager.py" line="3255" /> <source>Extend selection to start of display or document line</source> <translation>Auswahl zum Beginn der Dokumenten- oder Anzeigezeile erweitern</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2361" /> <location filename="../QScintilla/MiniEditor.py" line="2357" /> - <location filename="../ViewManager/ViewManager.py" line="3268" /> - <location filename="../ViewManager/ViewManager.py" line="3264" /> + <location filename="../ViewManager/ViewManager.py" line="3278" /> + <location filename="../ViewManager/ViewManager.py" line="3274" /> <source>Move to first visible character in display or document line</source> <translation>Zum ersten sichtbaren Zeichen der Dokument- oder Anzeigezeile springen</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2381" /> <location filename="../QScintilla/MiniEditor.py" line="2376" /> - <location filename="../ViewManager/ViewManager.py" line="3288" /> - <location filename="../ViewManager/ViewManager.py" line="3283" /> + <location filename="../ViewManager/ViewManager.py" line="3298" /> + <location filename="../ViewManager/ViewManager.py" line="3293" /> <source>Extend selection to first visible character in display or document line</source> <translation>Auswahl zum ersten sichtbaren Zeichen der Dokument- oder Anzeigezeile erweitern</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2400" /> <location filename="../QScintilla/MiniEditor.py" line="2397" /> - <location filename="../ViewManager/ViewManager.py" line="3307" /> - <location filename="../ViewManager/ViewManager.py" line="3304" /> + <location filename="../ViewManager/ViewManager.py" line="3317" /> + <location filename="../ViewManager/ViewManager.py" line="3314" /> <source>Move to end of display or document line</source> <translation>Zum Ende der Dokumenten- oder Anzeigezeile springen</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2417" /> <location filename="../QScintilla/MiniEditor.py" line="2414" /> - <location filename="../ViewManager/ViewManager.py" line="3324" /> - <location filename="../ViewManager/ViewManager.py" line="3321" /> + <location filename="../ViewManager/ViewManager.py" line="3334" /> + <location filename="../ViewManager/ViewManager.py" line="3331" /> <source>Extend selection to end of display or document line</source> <translation>Auswahl zum Ende der Dokumenten- oder Anzeigezeile erweitern</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2432" /> <location filename="../QScintilla/MiniEditor.py" line="2431" /> - <location filename="../ViewManager/ViewManager.py" line="3339" /> - <location filename="../ViewManager/ViewManager.py" line="3338" /> + <location filename="../ViewManager/ViewManager.py" line="3349" /> + <location filename="../ViewManager/ViewManager.py" line="3348" /> <source>Stuttered move up one page</source> <translation>„Stotternd“ um eine Seite nach oben</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2447" /> <location filename="../QScintilla/MiniEditor.py" line="2444" /> - <location filename="../ViewManager/ViewManager.py" line="3354" /> - <location filename="../ViewManager/ViewManager.py" line="3351" /> + <location filename="../ViewManager/ViewManager.py" line="3364" /> + <location filename="../ViewManager/ViewManager.py" line="3361" /> <source>Stuttered extend selection up one page</source> <translation>Auswahl „stotternd“ um eine Seite nach oben erweitern</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2464" /> <location filename="../QScintilla/MiniEditor.py" line="2461" /> - <location filename="../ViewManager/ViewManager.py" line="3371" /> - <location filename="../ViewManager/ViewManager.py" line="3368" /> + <location filename="../ViewManager/ViewManager.py" line="3381" /> + <location filename="../ViewManager/ViewManager.py" line="3378" /> <source>Stuttered move down one page</source> <translation>„Stotternd“ um eine Seite nach unten</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2481" /> <location filename="../QScintilla/MiniEditor.py" line="2478" /> - <location filename="../ViewManager/ViewManager.py" line="3388" /> - <location filename="../ViewManager/ViewManager.py" line="3385" /> + <location filename="../ViewManager/ViewManager.py" line="3398" /> + <location filename="../ViewManager/ViewManager.py" line="3395" /> <source>Stuttered extend selection down one page</source> <translation>Auswahl „stotternd“ um eine Seite nach unten erweitern</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2498" /> <location filename="../QScintilla/MiniEditor.py" line="2495" /> - <location filename="../ViewManager/ViewManager.py" line="3405" /> - <location filename="../ViewManager/ViewManager.py" line="3402" /> + <location filename="../ViewManager/ViewManager.py" line="3415" /> + <location filename="../ViewManager/ViewManager.py" line="3412" /> <source>Delete right to end of next word</source> <translation>Rechts bis zum Ende des nächsten Wortes löschen</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2508" /> - <location filename="../ViewManager/ViewManager.py" line="3415" /> + <location filename="../ViewManager/ViewManager.py" line="3425" /> <source>Alt+Del</source> <translation>Alt+Del</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2519" /> <location filename="../QScintilla/MiniEditor.py" line="2516" /> - <location filename="../ViewManager/ViewManager.py" line="3426" /> - <location filename="../ViewManager/ViewManager.py" line="3423" /> + <location filename="../ViewManager/ViewManager.py" line="3436" /> + <location filename="../ViewManager/ViewManager.py" line="3433" /> <source>Move selected lines up one line</source> <translation>Ausgewählte Zeilen um eine Zeile nach oben</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2536" /> <location filename="../QScintilla/MiniEditor.py" line="2533" /> - <location filename="../ViewManager/ViewManager.py" line="3443" /> - <location filename="../ViewManager/ViewManager.py" line="3440" /> + <location filename="../ViewManager/ViewManager.py" line="3453" /> + <location filename="../ViewManager/ViewManager.py" line="3450" /> <source>Move selected lines down one line</source> <translation>Ausgewählte Zeilen um eine Zeile nach unten</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1810" /> <location filename="../QScintilla/MiniEditor.py" line="1807" /> - <location filename="../ViewManager/ViewManager.py" line="3461" /> - <location filename="../ViewManager/ViewManager.py" line="3458" /> + <location filename="../ViewManager/ViewManager.py" line="3471" /> + <location filename="../ViewManager/ViewManager.py" line="3468" /> <source>Convert selection to lower case</source> <translation>Auswahl in Kleinbuchstaben umwandeln</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1813" /> - <location filename="../ViewManager/ViewManager.py" line="3464" /> + <location filename="../ViewManager/ViewManager.py" line="3474" /> <source>Alt+Shift+U</source> <translation>Alt+Shift+U</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1826" /> <location filename="../QScintilla/MiniEditor.py" line="1823" /> - <location filename="../ViewManager/ViewManager.py" line="3477" /> - <location filename="../ViewManager/ViewManager.py" line="3474" /> + <location filename="../ViewManager/ViewManager.py" line="3487" /> + <location filename="../ViewManager/ViewManager.py" line="3484" /> <source>Convert selection to upper case</source> <translation>Auswahl in Großbuchstaben umwandeln</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1829" /> - <location filename="../ViewManager/ViewManager.py" line="3480" /> + <location filename="../ViewManager/ViewManager.py" line="3490" /> <source>Ctrl+Shift+U</source> <translation>Ctrl+Shift+U</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3506" /> + <location filename="../ViewManager/ViewManager.py" line="3516" /> <source>&Edit</source> <translation>&Bearbeiten</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3564" /> - <location filename="../ViewManager/ViewManager.py" line="3562" /> + <location filename="../ViewManager/ViewManager.py" line="3574" /> + <location filename="../ViewManager/ViewManager.py" line="3572" /> <source>Edit</source> <translation>Bearbeiten</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2568" /> <location filename="../QScintilla/ShellWindow.py" line="927" /> - <location filename="../ViewManager/ViewManager.py" line="4167" /> - <location filename="../ViewManager/ViewManager.py" line="4165" /> - <location filename="../ViewManager/ViewManager.py" line="3598" /> + <location filename="../ViewManager/ViewManager.py" line="4177" /> + <location filename="../ViewManager/ViewManager.py" line="4175" /> + <location filename="../ViewManager/ViewManager.py" line="3608" /> <source>Search</source> <translation>Suchen</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2570" /> <location filename="../QScintilla/ShellWindow.py" line="929" /> - <location filename="../ViewManager/ViewManager.py" line="3600" /> + <location filename="../ViewManager/ViewManager.py" line="3610" /> <source>&Search...</source> <translation>&Suchen...</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2572" /> <location filename="../QScintilla/ShellWindow.py" line="931" /> - <location filename="../ViewManager/ViewManager.py" line="3602" /> + <location filename="../ViewManager/ViewManager.py" line="3612" /> <source>Ctrl+F</source> <comment>Search|Search</comment> <translation>Ctrl+F</translation> @@ -97223,34 +97223,34 @@ <message> <location filename="../QScintilla/MiniEditor.py" line="2579" /> <location filename="../QScintilla/ShellWindow.py" line="938" /> - <location filename="../ViewManager/ViewManager.py" line="3609" /> + <location filename="../ViewManager/ViewManager.py" line="3619" /> <source>Search for a text</source> <translation>Sucht nach Text</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2582" /> - <location filename="../ViewManager/ViewManager.py" line="3612" /> + <location filename="../ViewManager/ViewManager.py" line="3622" /> <source><b>Search</b><p>Search for some text in the current editor. A dialog is shown to enter the searchtext and options for the search.</p></source> <translation><b>Suchen</b><p>Sucht einen Text im aktuellen Editor. Es wird ein Dialog eingeblendet, in dem der Suchtext und verschieden Suchoptionen eingegeben werden kann.</p></translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2594" /> <location filename="../QScintilla/ShellWindow.py" line="953" /> - <location filename="../ViewManager/ViewManager.py" line="3624" /> + <location filename="../ViewManager/ViewManager.py" line="3634" /> <source>Search next</source> <translation>Weitersuchen</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2596" /> <location filename="../QScintilla/ShellWindow.py" line="955" /> - <location filename="../ViewManager/ViewManager.py" line="3626" /> + <location filename="../ViewManager/ViewManager.py" line="3636" /> <source>Search &next</source> <translation>&Weitersuchen</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2598" /> <location filename="../QScintilla/ShellWindow.py" line="957" /> - <location filename="../ViewManager/ViewManager.py" line="3628" /> + <location filename="../ViewManager/ViewManager.py" line="3638" /> <source>F3</source> <comment>Search|Search next</comment> <translation>F3</translation> @@ -97258,34 +97258,34 @@ <message> <location filename="../QScintilla/MiniEditor.py" line="2605" /> <location filename="../QScintilla/ShellWindow.py" line="964" /> - <location filename="../ViewManager/ViewManager.py" line="3635" /> + <location filename="../ViewManager/ViewManager.py" line="3645" /> <source>Search next occurrence of text</source> <translation>Das nächste Vorkommen des Textes in der Seite suchen</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2608" /> - <location filename="../ViewManager/ViewManager.py" line="3638" /> + <location filename="../ViewManager/ViewManager.py" line="3648" /> <source><b>Search next</b><p>Search the next occurrence of some text in the current editor. The previously entered searchtext and options are reused.</p></source> <translation><b>Weitersuchen</b><p>Nach der nächsten Textstelle im aktuellen Editor suchen. Der zuvor eingegebene Suchtext und die Suchoptionen werden weiterverwendet.</p></translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2620" /> <location filename="../QScintilla/ShellWindow.py" line="981" /> - <location filename="../ViewManager/ViewManager.py" line="3650" /> + <location filename="../ViewManager/ViewManager.py" line="3660" /> <source>Search previous</source> <translation>Rückwärtssuchen</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2622" /> <location filename="../QScintilla/ShellWindow.py" line="983" /> - <location filename="../ViewManager/ViewManager.py" line="3652" /> + <location filename="../ViewManager/ViewManager.py" line="3662" /> <source>Search &previous</source> <translation>&Rückwärtssuchen</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2624" /> <location filename="../QScintilla/ShellWindow.py" line="985" /> - <location filename="../ViewManager/ViewManager.py" line="3654" /> + <location filename="../ViewManager/ViewManager.py" line="3664" /> <source>Shift+F3</source> <comment>Search|Search previous</comment> <translation>Shift+F3</translation> @@ -97293,436 +97293,436 @@ <message> <location filename="../QScintilla/MiniEditor.py" line="2633" /> <location filename="../QScintilla/ShellWindow.py" line="994" /> - <location filename="../ViewManager/ViewManager.py" line="3663" /> + <location filename="../ViewManager/ViewManager.py" line="3673" /> <source>Search previous occurrence of text</source> <translation>Das vorherige Vorkommen des Textes in der Seite suchen</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2638" /> - <location filename="../ViewManager/ViewManager.py" line="3668" /> + <location filename="../ViewManager/ViewManager.py" line="3678" /> <source><b>Search previous</b><p>Search the previous occurrence of some text in the current editor. The previously entered searchtext and options are reused.</p></source> <translation><b>Rückwärtssuchen</b><p>Nach der vorherigen Textstelle im aktuellen Editor suchen. Der zuvor eingegebene Suchtext und die Suchoptionen werden weiterverwendet.</p></translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2652" /> <location filename="../QScintilla/MiniEditor.py" line="2650" /> - <location filename="../ViewManager/ViewManager.py" line="3682" /> - <location filename="../ViewManager/ViewManager.py" line="3680" /> + <location filename="../ViewManager/ViewManager.py" line="3692" /> + <location filename="../ViewManager/ViewManager.py" line="3690" /> <source>Clear search markers</source> <translation>Suchmarkierungen löschen</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2654" /> - <location filename="../ViewManager/ViewManager.py" line="3684" /> + <location filename="../ViewManager/ViewManager.py" line="3694" /> <source>Ctrl+3</source> <comment>Search|Clear search markers</comment> <translation>Ctrl+3</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2663" /> - <location filename="../ViewManager/ViewManager.py" line="3693" /> + <location filename="../ViewManager/ViewManager.py" line="3703" /> <source>Clear all displayed search markers</source> <translation>Löscht alle angezeigten Suchmarkierungen</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2668" /> - <location filename="../ViewManager/ViewManager.py" line="3698" /> + <location filename="../ViewManager/ViewManager.py" line="3708" /> <source><b>Clear search markers</b><p>Clear all displayed search markers.</p></source> <translation><b>Suchmarkierungen löschen</b><p>Löscht alle angezeigten Suchmarkierungen.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3710" /> - <location filename="../ViewManager/ViewManager.py" line="3708" /> + <location filename="../ViewManager/ViewManager.py" line="3720" /> + <location filename="../ViewManager/ViewManager.py" line="3718" /> <source>Search current word forward</source> <translation>Aktuelles Wort vorwärts suchen</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3712" /> + <location filename="../ViewManager/ViewManager.py" line="3722" /> <source>Ctrl+.</source> <comment>Search|Search current word forward</comment> <translation>Ctrl+.</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3721" /> + <location filename="../ViewManager/ViewManager.py" line="3731" /> <source>Search next occurrence of the current word</source> <translation>Das nächste Vorkommen des aktuellen Wortes suchen</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3726" /> + <location filename="../ViewManager/ViewManager.py" line="3736" /> <source><b>Search current word forward</b><p>Search the next occurrence of the current word of the current editor.</p></source> <translation><b>Aktuelles Wort vorwärts suchen</b><p>Sucht das nächste Vorkommen des aktuellen Wortes des aktuellen Editors.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3739" /> - <location filename="../ViewManager/ViewManager.py" line="3737" /> + <location filename="../ViewManager/ViewManager.py" line="3749" /> + <location filename="../ViewManager/ViewManager.py" line="3747" /> <source>Search current word backward</source> <translation>Aktuelles Wort rückwärts suchen</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3741" /> + <location filename="../ViewManager/ViewManager.py" line="3751" /> <source>Ctrl+,</source> <comment>Search|Search current word backward</comment> <translation>Ctrl+,</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3750" /> + <location filename="../ViewManager/ViewManager.py" line="3760" /> <source>Search previous occurrence of the current word</source> <translation>Das vorherige Vorkommen des aktuellen Wortes suchen</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3755" /> + <location filename="../ViewManager/ViewManager.py" line="3765" /> <source><b>Search current word backward</b><p>Search the previous occurrence of the current word of the current editor.</p></source> <translation><b>Aktuelles Wort rückwärts suchen</b><p>Sucht das vorherige Vorkommen des aktuellen Wortes des aktuellen Editors.</p></translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2678" /> - <location filename="../ViewManager/ViewManager.py" line="3766" /> + <location filename="../ViewManager/ViewManager.py" line="3776" /> <source>Replace</source> <translation>Ersetzen</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2679" /> - <location filename="../ViewManager/ViewManager.py" line="3767" /> + <location filename="../ViewManager/ViewManager.py" line="3777" /> <source>&Replace...</source> <translation>&Ersetzen...</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2681" /> - <location filename="../ViewManager/ViewManager.py" line="3769" /> + <location filename="../ViewManager/ViewManager.py" line="3779" /> <source>Ctrl+R</source> <comment>Search|Replace</comment> <translation>Ctrl+R</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2688" /> - <location filename="../ViewManager/ViewManager.py" line="3776" /> + <location filename="../ViewManager/ViewManager.py" line="3786" /> <source>Replace some text</source> <translation>Ersetzt Text</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2691" /> - <location filename="../ViewManager/ViewManager.py" line="3779" /> + <location filename="../ViewManager/ViewManager.py" line="3789" /> <source><b>Replace</b><p>Search for some text in the current editor and replace it. A dialog is shown to enter the searchtext, the replacement text and options for the search and replace.</p></source> <translation><b>Ersetzen</b><p>Dies sucht nach Text im aktuellen Editor und ersetzt ihn. Es wird ein Dialog eingeblendet, in dem der Suchtext, der Ersetzungstext und verschieden Such- und Ersetzungsoptionen eingegeben werden kann.</p></translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2705" /> <location filename="../QScintilla/MiniEditor.py" line="2703" /> - <location filename="../ViewManager/ViewManager.py" line="3793" /> - <location filename="../ViewManager/ViewManager.py" line="3791" /> + <location filename="../ViewManager/ViewManager.py" line="3803" /> + <location filename="../ViewManager/ViewManager.py" line="3801" /> <source>Replace and Search</source> <translation>Ersetzen und Suchen</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2707" /> - <location filename="../ViewManager/ViewManager.py" line="3795" /> + <location filename="../ViewManager/ViewManager.py" line="3805" /> <source>Meta+R</source> <comment>Search|Replace and Search</comment> <translation>Meta+R</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2716" /> - <location filename="../ViewManager/ViewManager.py" line="3804" /> + <location filename="../ViewManager/ViewManager.py" line="3814" /> <source>Replace the found text and search the next occurrence</source> <translation>Erstezt den gefundenen Text und sucht das nächste Vorkommen</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2721" /> - <location filename="../ViewManager/ViewManager.py" line="3809" /> + <location filename="../ViewManager/ViewManager.py" line="3819" /> <source><b>Replace and Search</b><p>Replace the found occurrence of text in the current editor and search for the next one. The previously entered search text and options are reused.</p></source> <translation><b>Ersetzen und Suchen</b><p>Ersetzt den Text an der Fundstelle im aktuellen Editor und sucht das nächste Vorkommen. Der zuvor eingegebene Suchtext und die Suchoptionen werden wiederverwendet.</p></translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2737" /> <location filename="../QScintilla/MiniEditor.py" line="2735" /> - <location filename="../ViewManager/ViewManager.py" line="3825" /> - <location filename="../ViewManager/ViewManager.py" line="3823" /> + <location filename="../ViewManager/ViewManager.py" line="3835" /> + <location filename="../ViewManager/ViewManager.py" line="3833" /> <source>Replace Occurrence</source> <translation>Fundstelle ersetzen</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2739" /> - <location filename="../ViewManager/ViewManager.py" line="3827" /> + <location filename="../ViewManager/ViewManager.py" line="3837" /> <source>Ctrl+Meta+R</source> <comment>Search|Replace Occurrence</comment> <translation>Ctrl+Meta+R</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2748" /> - <location filename="../ViewManager/ViewManager.py" line="3836" /> + <location filename="../ViewManager/ViewManager.py" line="3846" /> <source>Replace the found text</source> <translation>Ersetzt den gefundenen Text</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2751" /> - <location filename="../ViewManager/ViewManager.py" line="3839" /> + <location filename="../ViewManager/ViewManager.py" line="3849" /> <source><b>Replace Occurrence</b><p>Replace the found occurrence of the search text in the current editor.</p></source> <translation><b>Fundstelle ersetzen</b><p>Ersetzt den Text an der Fundstelle im aktuellen Editor.</p></translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2764" /> <location filename="../QScintilla/MiniEditor.py" line="2762" /> - <location filename="../ViewManager/ViewManager.py" line="3852" /> - <location filename="../ViewManager/ViewManager.py" line="3850" /> + <location filename="../ViewManager/ViewManager.py" line="3862" /> + <location filename="../ViewManager/ViewManager.py" line="3860" /> <source>Replace All</source> <translation>Alle ersetzen</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2766" /> - <location filename="../ViewManager/ViewManager.py" line="3854" /> + <location filename="../ViewManager/ViewManager.py" line="3864" /> <source>Shift+Meta+R</source> <comment>Search|Replace All</comment> <translation>Shift+Meta+R</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2775" /> - <location filename="../ViewManager/ViewManager.py" line="3863" /> + <location filename="../ViewManager/ViewManager.py" line="3873" /> <source>Replace search text occurrences</source> <translation>Ersetzt alle Fundstellen des Suchtextes</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2778" /> - <location filename="../ViewManager/ViewManager.py" line="3866" /> + <location filename="../ViewManager/ViewManager.py" line="3876" /> <source><b>Replace All</b><p>Replace all occurrences of the search text in the current editor.</p></source> <translation><b>Alle ersetzen</b><p>Ersetzt alle Fundstellen des Suchtextes im aktuellen Editor.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3888" /> - <location filename="../ViewManager/ViewManager.py" line="3877" /> + <location filename="../ViewManager/ViewManager.py" line="3898" /> + <location filename="../ViewManager/ViewManager.py" line="3887" /> <source>Goto Line</source> <translation>Gehe zu Zeile</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3879" /> + <location filename="../ViewManager/ViewManager.py" line="3889" /> <source>&Goto Line...</source> <translation>Gehe zu &Zeile...</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3881" /> + <location filename="../ViewManager/ViewManager.py" line="3891" /> <source>Ctrl+G</source> <comment>Search|Goto Line</comment> <translation>Ctrl+G</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3891" /> + <location filename="../ViewManager/ViewManager.py" line="3901" /> <source><b>Goto Line</b><p>Go to a specific line of text in the current editor. A dialog is shown to enter the linenumber.</p></source> <translation><b>Gehe zu Zeile</b><p>Dies springt zur angegebenen Zeile im aktuellen Editor. Es wird ein Dialog eingeblendet, in dem die Zeilennummer eingegeben werden kann.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3913" /> - <location filename="../ViewManager/ViewManager.py" line="3902" /> + <location filename="../ViewManager/ViewManager.py" line="3923" /> + <location filename="../ViewManager/ViewManager.py" line="3912" /> <source>Goto Brace</source> <translation>Gehe zu Klammer</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3904" /> + <location filename="../ViewManager/ViewManager.py" line="3914" /> <source>Goto &Brace</source> <translation>Gehe zu &Klammer</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3906" /> - <source>Ctrl+L</source> - <comment>Search|Goto Brace</comment> - <translation>Ctrl+L</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="3916" /> + <source>Ctrl+L</source> + <comment>Search|Goto Brace</comment> + <translation>Ctrl+L</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="3926" /> <source><b>Goto Brace</b><p>Go to the matching brace in the current editor.</p></source> <translation><b>Gehe zu Klammer</b><p>Gehe zur passenden Klammer im aktuellen Editor.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3939" /> - <location filename="../ViewManager/ViewManager.py" line="3926" /> + <location filename="../ViewManager/ViewManager.py" line="3949" /> + <location filename="../ViewManager/ViewManager.py" line="3936" /> <source>Goto Last Edit Location</source> <translation>Gehe zur letzten Editierposition</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3928" /> + <location filename="../ViewManager/ViewManager.py" line="3938" /> <source>Goto Last &Edit Location</source> <translation>Gehe zur letzten &Editierposition</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3930" /> + <location filename="../ViewManager/ViewManager.py" line="3940" /> <source>Ctrl+Shift+G</source> <comment>Search|Goto Last Edit Location</comment> <translation>Ctrl+Shift+G</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3942" /> + <location filename="../ViewManager/ViewManager.py" line="3952" /> <source><b>Goto Last Edit Location</b><p>Go to the location of the last edit in the current editor.</p></source> <translation><b>Gehe zur letzten Editierposition</b><p>Gehe zu der Textposition, an der die letzte Editieraktion stattgefunden hat.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3954" /> - <location filename="../ViewManager/ViewManager.py" line="3953" /> + <location filename="../ViewManager/ViewManager.py" line="3964" /> + <location filename="../ViewManager/ViewManager.py" line="3963" /> <source>Goto Previous Method or Class</source> <translation>Gehe zur vorherigen Methode oder Klasse</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3956" /> + <location filename="../ViewManager/ViewManager.py" line="3966" /> <source>Ctrl+Shift+Up</source> <comment>Search|Goto Previous Method or Class</comment> <translation>Ctrl+Shift+Up</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3967" /> + <location filename="../ViewManager/ViewManager.py" line="3977" /> <source>Go to the previous method or class definition</source> <translation>Gehe zur vorherigen Methoden- oder Klassendefinition</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3972" /> + <location filename="../ViewManager/ViewManager.py" line="3982" /> <source><b>Goto Previous Method or Class</b><p>Goes to the line of the previous method or class definition and highlights the name.</p></source> <translation><b>Gehe zur vorherigen Methode oder Klasse</b><p>Dies springt zur Zeile der vorherigen Methoden- oder Klassendefinition und selektiert den Namen.</p<</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3984" /> - <location filename="../ViewManager/ViewManager.py" line="3983" /> + <location filename="../ViewManager/ViewManager.py" line="3994" /> + <location filename="../ViewManager/ViewManager.py" line="3993" /> <source>Goto Next Method or Class</source> <translation>Gehe zur nächsten Methode oder Klasse</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3986" /> + <location filename="../ViewManager/ViewManager.py" line="3996" /> <source>Ctrl+Shift+Down</source> <comment>Search|Goto Next Method or Class</comment> <translation>Ctrl+Shift+Down</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3995" /> + <location filename="../ViewManager/ViewManager.py" line="4005" /> <source>Go to the next method or class definition</source> <translation>Gehe zur nächsten Methoden- oder Klassendefinition</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4000" /> + <location filename="../ViewManager/ViewManager.py" line="4010" /> <source><b>Goto Next Method or Class</b><p>Goes to the line of the next method or class definition and highlights the name.</p></source> <translation><b>Gehe zur nächsten Methode oder Klasse</b><p>Dies springt zur Zeile der nächsten Methoden- oder Klassendefinition und selektiert den Namen.</p<</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4013" /> + <location filename="../ViewManager/ViewManager.py" line="4023" /> <source>Search in Files</source> <translation>Suchen in Dateien</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4015" /> + <location filename="../ViewManager/ViewManager.py" line="4025" /> <source>Search in &Files...</source> <translation>Suchen in &Dateien...</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4017" /> + <location filename="../ViewManager/ViewManager.py" line="4027" /> <source>Shift+Ctrl+F</source> <comment>Search|Search Files</comment> <translation>Shift+Ctrl+F</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4026" /> + <location filename="../ViewManager/ViewManager.py" line="4036" /> <source>Search for a text in files</source> <translation>Nach Text in Dateien suchen</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4029" /> + <location filename="../ViewManager/ViewManager.py" line="4039" /> <source><b>Search in Files</b><p>Search for some text in the files of a directory tree or the project. A window is shown to enter the searchtext and options for the search and to display the result.</p></source> <translation><b>Suchen in Dateien</b><p>Sucht nach Text in den Dateien eines Verzeichnisbaumes oder des Projektes. Es wird ein Fenster angezeigt, in dem der Suchtext und die Suchoptionen eingegeben werden können und in dem das Suchresultat angezeigt wird.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4041" /> + <location filename="../ViewManager/ViewManager.py" line="4051" /> <source>Replace in Files</source> <translation>Ersetzen in Dateien</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4042" /> + <location filename="../ViewManager/ViewManager.py" line="4052" /> <source>Replace in F&iles...</source> <translation>Ersetzen in Da&teien...</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4044" /> + <location filename="../ViewManager/ViewManager.py" line="4054" /> <source>Shift+Ctrl+R</source> <comment>Search|Replace in Files</comment> <translation>Shift+Ctrl+R</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4053" /> + <location filename="../ViewManager/ViewManager.py" line="4063" /> <source>Search for a text in files and replace it</source> <translation>Nach Text in Dateien suchen und ihn ersetzen</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4058" /> + <location filename="../ViewManager/ViewManager.py" line="4068" /> <source><b>Replace in Files</b><p>Search for some text in the files of a directory tree or the project and replace it. A window is shown to enter the searchtext, the replacement text and options for the search and to display the result.</p></source> <translation><b>Ersetzen in Dateien</b><p>Sucht nach Text in den Dateien eines Verzeichnisbaumes oder des Projektes und ersetzt ihn. Es wird ein Fenster angezeigt, in dem der Suchtext, der Ersetzungstext und die Suchoptionen eingegeben werden können und in dem das Suchresultat angezeigt wird.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4071" /> + <location filename="../ViewManager/ViewManager.py" line="4081" /> <source>Search in Open Files</source> <translation>Suchen in geöffneten Dateien</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4073" /> + <location filename="../ViewManager/ViewManager.py" line="4083" /> <source>Search in Open Files...</source> <translation>Suchen in geöffneten Dateien...</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4075" /> + <location filename="../ViewManager/ViewManager.py" line="4085" /> <source>Meta+Ctrl+Alt+F</source> <comment>Search|Search Open Files</comment> <translation>Meta+Ctrl+Alt+F</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4084" /> + <location filename="../ViewManager/ViewManager.py" line="4094" /> <source>Search for a text in open files</source> <translation>Nach Text in geöffneten Dateien suchen</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4087" /> + <location filename="../ViewManager/ViewManager.py" line="4097" /> <source><b>Search in Open Files</b><p>Search for some text in the currently opened files. A window is shown to enter the search text and options for the search and to display the result.</p></source> <translation><b>Suchen in geöffneten Dateien</b><p>Sucht nach Text in den aktuell geöffneten Dateien. Es wird ein Fenster angezeigt, in dem der Suchtext und die Suchoptionen eingegeben werden können und in dem das Suchresultat angezeigt wird.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4099" /> + <location filename="../ViewManager/ViewManager.py" line="4109" /> <source>Replace in Open Files</source> <translation>Ersetzen in geöffneten Dateien</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4100" /> + <location filename="../ViewManager/ViewManager.py" line="4110" /> <source>Replace in Open Files...</source> <translation>Ersetzen in geöffneten Dateien...</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4102" /> + <location filename="../ViewManager/ViewManager.py" line="4112" /> <source>Meta+Ctrl+Alt+R</source> <comment>Search|Replace in Open Files</comment> <translation>Meta+Ctrl+Alt+R</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4111" /> + <location filename="../ViewManager/ViewManager.py" line="4121" /> <source>Search for a text in open files and replace it</source> <translation>Nach Text in geöffneten Dateien suchen und ihn ersetzen</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4116" /> + <location filename="../ViewManager/ViewManager.py" line="4126" /> <source><b>Replace in Open Files</b><p>Search for some text in the currently opened files and replace it. A window is shown to enter the search text, the replacement text and options for the search and to display the result.</p></source> <translation><b>Ersetzen in geöffneten Dateien</b><p>Sucht nach Text in den aktuell geöffneten Dateien und ersetzt ihn. Es wird ein Fenster angezeigt, in dem der Suchtext, der Ersetzungstext und die Suchoptionen eingegeben werden können und in dem das Suchresultat angezeigt wird.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4137" /> + <location filename="../ViewManager/ViewManager.py" line="4147" /> <source>&Search</source> <translation>&Suchen</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2793" /> <location filename="../QScintilla/ShellWindow.py" line="1020" /> - <location filename="../ViewManager/ViewManager.py" line="4208" /> + <location filename="../ViewManager/ViewManager.py" line="4218" /> <source>Zoom in</source> <translation>Vergrößern</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2795" /> <location filename="../QScintilla/ShellWindow.py" line="1022" /> - <location filename="../ViewManager/ViewManager.py" line="4210" /> + <location filename="../ViewManager/ViewManager.py" line="4220" /> <source>Zoom &in</source> <translation>Ver&größern</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2797" /> <location filename="../QScintilla/ShellWindow.py" line="1024" /> - <location filename="../ViewManager/ViewManager.py" line="4212" /> + <location filename="../ViewManager/ViewManager.py" line="4222" /> <source>Ctrl++</source> <comment>View|Zoom in</comment> <translation>Ctrl++</translation> @@ -97730,7 +97730,7 @@ <message> <location filename="../QScintilla/MiniEditor.py" line="2800" /> <location filename="../QScintilla/ShellWindow.py" line="1027" /> - <location filename="../ViewManager/ViewManager.py" line="4215" /> + <location filename="../ViewManager/ViewManager.py" line="4225" /> <source>Zoom In</source> <comment>View|Zoom in</comment> <translation>Vergrößern</translation> @@ -97738,35 +97738,35 @@ <message> <location filename="../QScintilla/MiniEditor.py" line="2806" /> <location filename="../QScintilla/ShellWindow.py" line="1033" /> - <location filename="../ViewManager/ViewManager.py" line="4221" /> + <location filename="../ViewManager/ViewManager.py" line="4231" /> <source>Zoom in on the text</source> <translation>Text vergrößern</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2809" /> <location filename="../QScintilla/ShellWindow.py" line="1036" /> - <location filename="../ViewManager/ViewManager.py" line="4224" /> + <location filename="../ViewManager/ViewManager.py" line="4234" /> <source><b>Zoom in</b><p>Zoom in on the text. This makes the text bigger.</p></source> <translation><b>Vergrößern</b><p>Den angezeigten Text vergrößern.</p></translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2819" /> <location filename="../QScintilla/ShellWindow.py" line="1046" /> - <location filename="../ViewManager/ViewManager.py" line="4234" /> + <location filename="../ViewManager/ViewManager.py" line="4244" /> <source>Zoom out</source> <translation>Verkleinern</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2821" /> <location filename="../QScintilla/ShellWindow.py" line="1048" /> - <location filename="../ViewManager/ViewManager.py" line="4236" /> + <location filename="../ViewManager/ViewManager.py" line="4246" /> <source>Zoom &out</source> <translation>Ver&kleinern</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2823" /> <location filename="../QScintilla/ShellWindow.py" line="1050" /> - <location filename="../ViewManager/ViewManager.py" line="4238" /> + <location filename="../ViewManager/ViewManager.py" line="4248" /> <source>Ctrl+-</source> <comment>View|Zoom out</comment> <translation>Ctrl+-</translation> @@ -97774,7 +97774,7 @@ <message> <location filename="../QScintilla/MiniEditor.py" line="2826" /> <location filename="../QScintilla/ShellWindow.py" line="1053" /> - <location filename="../ViewManager/ViewManager.py" line="4241" /> + <location filename="../ViewManager/ViewManager.py" line="4251" /> <source>Zoom Out</source> <comment>View|Zoom out</comment> <translation>Verkleinern</translation> @@ -97782,35 +97782,35 @@ <message> <location filename="../QScintilla/MiniEditor.py" line="2832" /> <location filename="../QScintilla/ShellWindow.py" line="1059" /> - <location filename="../ViewManager/ViewManager.py" line="4247" /> + <location filename="../ViewManager/ViewManager.py" line="4257" /> <source>Zoom out on the text</source> <translation>Text verkleinern</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2835" /> <location filename="../QScintilla/ShellWindow.py" line="1062" /> - <location filename="../ViewManager/ViewManager.py" line="4250" /> + <location filename="../ViewManager/ViewManager.py" line="4260" /> <source><b>Zoom out</b><p>Zoom out on the text. This makes the text smaller.</p></source> <translation><b>Verkleinern</b><p>Den angezeigten Text verkleinern.</p></translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2845" /> <location filename="../QScintilla/ShellWindow.py" line="1072" /> - <location filename="../ViewManager/ViewManager.py" line="4260" /> + <location filename="../ViewManager/ViewManager.py" line="4270" /> <source>Zoom reset</source> <translation>Vergrößerung zurücksetzen</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2847" /> <location filename="../QScintilla/ShellWindow.py" line="1074" /> - <location filename="../ViewManager/ViewManager.py" line="4262" /> + <location filename="../ViewManager/ViewManager.py" line="4272" /> <source>Zoom &reset</source> <translation>Vergrößerung &zurücksetzen</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2849" /> <location filename="../QScintilla/ShellWindow.py" line="1076" /> - <location filename="../ViewManager/ViewManager.py" line="4264" /> + <location filename="../ViewManager/ViewManager.py" line="4274" /> <source>Ctrl+0</source> <comment>View|Zoom reset</comment> <translation>Ctrl+0</translation> @@ -97818,894 +97818,894 @@ <message> <location filename="../QScintilla/MiniEditor.py" line="2856" /> <location filename="../QScintilla/ShellWindow.py" line="1083" /> - <location filename="../ViewManager/ViewManager.py" line="4271" /> + <location filename="../ViewManager/ViewManager.py" line="4281" /> <source>Reset the zoom of the text</source> <translation>Die Textgröße zurücksetzen</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2859" /> <location filename="../QScintilla/ShellWindow.py" line="1086" /> - <location filename="../ViewManager/ViewManager.py" line="4274" /> + <location filename="../ViewManager/ViewManager.py" line="4284" /> <source><b>Zoom reset</b><p>Reset the zoom of the text. This sets the zoom factor to 100%.</p></source> <translation><b>Vergrößerung zurücksetzen</b><p>Setzt die Vergrößerung auf den Wert 100% zurück.</p></translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2870" /> <location filename="../QScintilla/ShellWindow.py" line="1097" /> - <location filename="../ViewManager/ViewManager.py" line="4285" /> + <location filename="../ViewManager/ViewManager.py" line="4295" /> <source>Zoom</source> <translation>Maßstab</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2872" /> <location filename="../QScintilla/ShellWindow.py" line="1099" /> - <location filename="../ViewManager/ViewManager.py" line="4287" /> + <location filename="../ViewManager/ViewManager.py" line="4297" /> <source>&Zoom</source> <translation>&Maßstab</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2879" /> <location filename="../QScintilla/ShellWindow.py" line="1106" /> - <location filename="../ViewManager/ViewManager.py" line="4294" /> + <location filename="../ViewManager/ViewManager.py" line="4304" /> <source>Zoom the text</source> <translation>Den Maßstab des Textes ändern</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2882" /> <location filename="../QScintilla/ShellWindow.py" line="1109" /> - <location filename="../ViewManager/ViewManager.py" line="4297" /> + <location filename="../ViewManager/ViewManager.py" line="4307" /> <source><b>Zoom</b><p>Zoom the text. This opens a dialog where the desired size can be entered.</p></source> <translation><b>Maßstab</b><p>dies ändert den Textmaßstab. Es wird ein dialog eingeblendet, in dem der Maßstab eingegeben werden kann.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4316" /> - <location filename="../ViewManager/ViewManager.py" line="4308" /> + <location filename="../ViewManager/ViewManager.py" line="4326" /> + <location filename="../ViewManager/ViewManager.py" line="4318" /> <source>Toggle all folds</source> <translation>Alle Faltungen umschalten</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4309" /> - <source>&Toggle all folds</source> - <translation>&Alle Faltungen umschalten</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="4319" /> + <source>&Toggle all folds</source> + <translation>&Alle Faltungen umschalten</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4329" /> <source><b>Toggle all folds</b><p>Toggle all folds of the current editor.</p></source> <translation><b>Alle Faltungen umschalten</b><p>Dies schaltet alle Faltungen des aktuellen Editors um.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4341" /> - <location filename="../ViewManager/ViewManager.py" line="4329" /> + <location filename="../ViewManager/ViewManager.py" line="4351" /> + <location filename="../ViewManager/ViewManager.py" line="4339" /> <source>Toggle all folds (including children)</source> <translation>Alle Faltungen umschalten (inkl. Unterfaltungen)</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4332" /> + <location filename="../ViewManager/ViewManager.py" line="4342" /> <source>Toggle all &folds (including children)</source> <translation>Alle Faltungen &umschalten (inkl. Unterfaltungen)</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4346" /> + <location filename="../ViewManager/ViewManager.py" line="4356" /> <source><b>Toggle all folds (including children)</b><p>Toggle all folds of the current editor including all children.</p></source> <translation><b>Alle Faltungen umschalten (inkl. Unterfaltungen)</b><p>Dies schaltet alle Faltungen des aktuellen Editors inklusive Unterfaltungen um.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4365" /> - <location filename="../ViewManager/ViewManager.py" line="4357" /> + <location filename="../ViewManager/ViewManager.py" line="4375" /> + <location filename="../ViewManager/ViewManager.py" line="4367" /> <source>Toggle current fold</source> <translation>Aktuelle Faltung umschalten</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4358" /> - <source>Toggle &current fold</source> - <translation>Aktuelle &Faltung umschalten</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="4368" /> + <source>Toggle &current fold</source> + <translation>Aktuelle &Faltung umschalten</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4378" /> <source><b>Toggle current fold</b><p>Toggle the folds of the current line of the current editor.</p></source> <translation><b>Aktuelle Faltung umschalten</b><p>Dies schaltet die Faltung der aktuellen Zeile des aktuellen Editors um.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4387" /> - <location filename="../ViewManager/ViewManager.py" line="4379" /> + <location filename="../ViewManager/ViewManager.py" line="4397" /> + <location filename="../ViewManager/ViewManager.py" line="4389" /> <source>Clear all folds</source> <translation>Alle Faltungen aufklappen</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4380" /> - <source>Clear &all folds</source> - <translation>Alle &Faltungen aufklappen</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="4390" /> + <source>Clear &all folds</source> + <translation>Alle &Faltungen aufklappen</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4400" /> <source><b>Clear all folds</b><p>Clear all folds of the current editor, i.e. ensure that all lines are displayed unfolded.</p></source> <translation><b>Alle Faltungen aufklappen</b><p>Alle Faltungen des aktuellen Editors aufklappen, d.h. sicherstellen, dass alle Zeilen angezeigt werden.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4410" /> - <location filename="../ViewManager/ViewManager.py" line="4403" /> - <location filename="../ViewManager/ViewManager.py" line="4401" /> + <location filename="../ViewManager/ViewManager.py" line="4420" /> + <location filename="../ViewManager/ViewManager.py" line="4413" /> + <location filename="../ViewManager/ViewManager.py" line="4411" /> <source>Remove all highlights</source> <translation>Hervorhebungen löschen</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4413" /> - <source><b>Remove all highlights</b><p>Remove the highlights of all editors.</p></source> - <translation><b>Hervorhebungen löschen</b><p>Hervorhebungen aller Editoren löschen.</p></translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="4423" /> + <source><b>Remove all highlights</b><p>Remove the highlights of all editors.</p></source> + <translation><b>Hervorhebungen löschen</b><p>Hervorhebungen aller Editoren löschen.</p></translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4433" /> <source>New Document View</source> <translation>Neue Dokumentenansicht</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4425" /> + <location filename="../ViewManager/ViewManager.py" line="4435" /> <source>New &Document View</source> <translation>Neue &Dokumentenansicht</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4432" /> + <location filename="../ViewManager/ViewManager.py" line="4442" /> <source>Open a new view of the current document</source> <translation>Offnet eine neue Ansicht des aktuellen Dokumentes</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4437" /> + <location filename="../ViewManager/ViewManager.py" line="4447" /> <source><b>New Document View</b><p>Opens a new view of the current document. Both views show the same document. However, the cursors may be positioned independently.</p></source> <translation><b>Neue Dokumentenansicht</b><p>Offnet eine neue Ansicht des aktuellen Dokumentes. Beide Ansichten zeigen das selbe Dokument. Die Cursor lassen sich jedoch unabhängig positionieren.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4453" /> - <location filename="../ViewManager/ViewManager.py" line="4449" /> + <location filename="../ViewManager/ViewManager.py" line="4463" /> + <location filename="../ViewManager/ViewManager.py" line="4459" /> <source>New Document View (with new split)</source> <translation>Neue Dokumentenansicht (in neuem Abschnitt)</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4462" /> + <location filename="../ViewManager/ViewManager.py" line="4472" /> <source>Open a new view of the current document in a new split</source> <translation>Offnet eine neue Ansicht des aktuellen Dokumentes in einem neuen Abschnitt</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4467" /> + <location filename="../ViewManager/ViewManager.py" line="4477" /> <source><b>New Document View</b><p>Opens a new view of the current document in a new split. Both views show the same document. However, the cursors may be positioned independently.</p></source> <translation><b>Neue Dokumentenansicht</b><p>Offnet eine neue Ansicht des aktuellen Dokumentes in einem neuen Abschnitt. Beide Ansichten zeigen das selbe Dokument. Die Cursor lassen sich jedoch unabhängig positionieren.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4479" /> + <location filename="../ViewManager/ViewManager.py" line="4489" /> <source>Split view</source> <translation>Ansicht aufteilen</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4481" /> - <source>&Split view</source> - <translation>An&sicht aufteilen</translation> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="4488" /> - <source>Add a split to the view</source> - <translation>Fügt eine weiter Ansicht hinzu</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="4491" /> - <source><b>Split view</b><p>Add a split to the view.</p></source> - <translation><b>Ansicht aufteilen</b><p>Fügt eine weitere Ansicht hinzu.</p></translation> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="4500" /> - <source>Arrange horizontally</source> - <translation>Horizontal anordnen</translation> + <source>&Split view</source> + <translation>An&sicht aufteilen</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4498" /> + <source>Add a split to the view</source> + <translation>Fügt eine weiter Ansicht hinzu</translation> </message> <message> <location filename="../ViewManager/ViewManager.py" line="4501" /> + <source><b>Split view</b><p>Add a split to the view.</p></source> + <translation><b>Ansicht aufteilen</b><p>Fügt eine weitere Ansicht hinzu.</p></translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4510" /> + <source>Arrange horizontally</source> + <translation>Horizontal anordnen</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4511" /> <source>Arrange &horizontally</source> <translation>&Horizontal anordnen</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4509" /> + <location filename="../ViewManager/ViewManager.py" line="4519" /> <source>Arrange the splitted views horizontally</source> <translation>Ordnet die geteilten Ansichten horizontal an</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4514" /> + <location filename="../ViewManager/ViewManager.py" line="4524" /> <source><b>Arrange horizontally</b><p>Arrange the splitted views horizontally.</p></source> <translation><b>Horizontal anordnen</b><p>Ordnet die geteilten Ansichten horizontal an.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4525" /> + <location filename="../ViewManager/ViewManager.py" line="4535" /> <source>Remove split</source> <translation>Geteilte Ansicht löschen</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4527" /> - <source>&Remove split</source> - <translation>Geteilte Ansicht &löschen</translation> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="4534" /> - <source>Remove the current split</source> - <translation>Löscht die aktuelle Ansicht</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="4537" /> - <source><b>Remove split</b><p>Remove the current split.</p></source> - <translation><b>Geteilte Ansicht löschen</b><p>Löscht die aktuelle Ansicht</p></translation> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="4546" /> - <source>Next split</source> - <translation>Nächste Ansichte</translation> + <source>&Remove split</source> + <translation>Geteilte Ansicht &löschen</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4544" /> + <source>Remove the current split</source> + <translation>Löscht die aktuelle Ansicht</translation> </message> <message> <location filename="../ViewManager/ViewManager.py" line="4547" /> + <source><b>Remove split</b><p>Remove the current split.</p></source> + <translation><b>Geteilte Ansicht löschen</b><p>Löscht die aktuelle Ansicht</p></translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4556" /> + <source>Next split</source> + <translation>Nächste Ansichte</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4557" /> <source>&Next split</source> <translation>&Nächste Ansicht</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4549" /> + <location filename="../ViewManager/ViewManager.py" line="4559" /> <source>Ctrl+Alt+N</source> <comment>View|Next split</comment> <translation>Ctrl+Alt+N</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4558" /> + <location filename="../ViewManager/ViewManager.py" line="4568" /> <source>Move to the next split</source> <translation>Gehe zur nächsten Ansicht</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4561" /> - <source><b>Next split</b><p>Move to the next split.</p></source> - <translation><b>Nächste Ansicht</b><p>Gehe zur nächsten Ansicht.</p></translation> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="4570" /> - <source>Previous split</source> - <translation>Vorherige Ansicht</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="4571" /> + <source><b>Next split</b><p>Move to the next split.</p></source> + <translation><b>Nächste Ansicht</b><p>Gehe zur nächsten Ansicht.</p></translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4580" /> + <source>Previous split</source> + <translation>Vorherige Ansicht</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4581" /> <source>&Previous split</source> <translation>&Vorherige Ansicht</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4573" /> + <location filename="../ViewManager/ViewManager.py" line="4583" /> <source>Ctrl+Alt+P</source> <comment>View|Previous split</comment> <translation>Ctrl+Alt+P</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4582" /> + <location filename="../ViewManager/ViewManager.py" line="4592" /> <source>Move to the previous split</source> <translation>Gehe zur vorherigen Ansicht</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4585" /> + <location filename="../ViewManager/ViewManager.py" line="4595" /> <source><b>Previous split</b><p>Move to the previous split.</p></source> <translation><b>Vorherige Ansicht</b><p>Gehe zur vorherigen Ansicht.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4596" /> - <location filename="../ViewManager/ViewManager.py" line="4594" /> + <location filename="../ViewManager/ViewManager.py" line="4606" /> + <location filename="../ViewManager/ViewManager.py" line="4604" /> <source>Preview</source> <translation>Vorschau</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4604" /> + <location filename="../ViewManager/ViewManager.py" line="4614" /> <source>Preview the current file in the web browser</source> <translation>Zeige eine Vorschau der aktuellen Datei im Web Browser</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4609" /> + <location filename="../ViewManager/ViewManager.py" line="4619" /> <source><b>Preview</b><p>This opens the web browser with a preview of the current file.</p></source> <translation><b>Vorschau</b><p>Dies öffnet einen Web Browser mit einer Vorschau der aktuellen Datei.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4623" /> - <location filename="../ViewManager/ViewManager.py" line="4621" /> + <location filename="../ViewManager/ViewManager.py" line="4633" /> + <location filename="../ViewManager/ViewManager.py" line="4631" /> <source>Python AST Viewer</source> <translation>Python AST Anzeige</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4631" /> + <location filename="../ViewManager/ViewManager.py" line="4641" /> <source>Show the AST for the current Python file</source> <translation>Zeigt den AST für die aktuelle Python Datei</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4636" /> + <location filename="../ViewManager/ViewManager.py" line="4646" /> <source><b>Python AST Viewer</b><p>This opens the a tree view of the AST of the current Python source file.</p></source> <translation><b>Python AST Anzeige<b><p>Dies öffnet eine Baumansicht mit dem AST der aktuellen Python Quelltextdatei.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4650" /> - <location filename="../ViewManager/ViewManager.py" line="4648" /> + <location filename="../ViewManager/ViewManager.py" line="4660" /> + <location filename="../ViewManager/ViewManager.py" line="4658" /> <source>Python Disassembly Viewer</source> <translation>Python Disassembly Anzeige</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4658" /> + <location filename="../ViewManager/ViewManager.py" line="4668" /> <source>Show the Disassembly for the current Python file</source> <translation>Zeigt ein Disassembly für die aktuelle Python Datei</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4663" /> + <location filename="../ViewManager/ViewManager.py" line="4673" /> <source><b>Python Disassembly Viewer</b><p>This opens the a tree view of the Disassembly of the current Python source file.</p></source> <translation><b>Python Disassembly Anzeige</b><p>Dies öffnet eine Baumansicht mit einer Disassembly der aktuellen Python Quelltextdatei.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4699" /> + <location filename="../ViewManager/ViewManager.py" line="4709" /> <source>&View</source> <translation>&Ansicht</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4734" /> - <location filename="../ViewManager/ViewManager.py" line="4732" /> + <location filename="../ViewManager/ViewManager.py" line="4744" /> + <location filename="../ViewManager/ViewManager.py" line="4742" /> <source>View</source> <translation>Ansicht</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4773" /> - <location filename="../ViewManager/ViewManager.py" line="4765" /> + <location filename="../ViewManager/ViewManager.py" line="4783" /> + <location filename="../ViewManager/ViewManager.py" line="4775" /> <source>Start Macro Recording</source> <translation>Makroaufzeichnung starten</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4766" /> - <source>S&tart Macro Recording</source> - <translation>Makroaufzeichnung s&tarten</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="4776" /> + <source>S&tart Macro Recording</source> + <translation>Makroaufzeichnung s&tarten</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4786" /> <source><b>Start Macro Recording</b><p>Start recording editor commands into a new macro.</p></source> <translation><b>Makroaufzeichnung starten</b><p>Startet die Aufzeichnung von Editorbefehlen in ein neues Makro.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4794" /> - <location filename="../ViewManager/ViewManager.py" line="4786" /> + <location filename="../ViewManager/ViewManager.py" line="4804" /> + <location filename="../ViewManager/ViewManager.py" line="4796" /> <source>Stop Macro Recording</source> <translation>Makroaufzeichnung stoppen</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4787" /> - <source>Sto&p Macro Recording</source> - <translation>Makroaufzeichnung sto&ppen</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="4797" /> + <source>Sto&p Macro Recording</source> + <translation>Makroaufzeichnung sto&ppen</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4807" /> <source><b>Stop Macro Recording</b><p>Stop recording editor commands into a new macro.</p></source> <translation><b>Makroaufzeichnung stoppen</b><p>Stopt die Aufzeichnung von Editorbefehlen in ein neues Makro.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4815" /> - <location filename="../ViewManager/ViewManager.py" line="4807" /> + <location filename="../ViewManager/ViewManager.py" line="4825" /> + <location filename="../ViewManager/ViewManager.py" line="4817" /> <source>Run Macro</source> <translation>Makro ausführen</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4808" /> - <source>&Run Macro</source> - <translation>Makro &ausführen</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="4818" /> + <source>&Run Macro</source> + <translation>Makro &ausführen</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4828" /> <source><b>Run Macro</b><p>Run a previously recorded editor macro.</p></source> <translation><b>Makro ausführen</b><p>Führt ein vorher aufgezeichnetes Makro aus.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4836" /> - <location filename="../ViewManager/ViewManager.py" line="4828" /> + <location filename="../ViewManager/ViewManager.py" line="4846" /> + <location filename="../ViewManager/ViewManager.py" line="4838" /> <source>Delete Macro</source> <translation>Makro löschen</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4829" /> - <source>&Delete Macro</source> - <translation>Makro &löschen</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="4839" /> + <source>&Delete Macro</source> + <translation>Makro &löschen</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4849" /> <source><b>Delete Macro</b><p>Delete a previously recorded editor macro.</p></source> <translation><b>Makro löschen</b><p>Löscht ein vorher aufgezeichnetes Makro.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4857" /> - <location filename="../ViewManager/ViewManager.py" line="4849" /> + <location filename="../ViewManager/ViewManager.py" line="4867" /> + <location filename="../ViewManager/ViewManager.py" line="4859" /> <source>Load Macro</source> <translation>Makro laden</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4850" /> - <source>&Load Macro</source> - <translation>Makro la&den</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="4860" /> - <source><b>Load Macro</b><p>Load an editor macro from a file.</p></source> - <translation><b>Makro laden</b><p>Lädt ein Makro aus einer Datei.</p></translation> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="4877" /> - <location filename="../ViewManager/ViewManager.py" line="4869" /> - <source>Save Macro</source> - <translation>Makro speichern</translation> + <source>&Load Macro</source> + <translation>Makro la&den</translation> </message> <message> <location filename="../ViewManager/ViewManager.py" line="4870" /> - <source>&Save Macro</source> - <translation>Makro &speichern</translation> + <source><b>Load Macro</b><p>Load an editor macro from a file.</p></source> + <translation><b>Makro laden</b><p>Lädt ein Makro aus einer Datei.</p></translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4887" /> + <location filename="../ViewManager/ViewManager.py" line="4879" /> + <source>Save Macro</source> + <translation>Makro speichern</translation> </message> <message> <location filename="../ViewManager/ViewManager.py" line="4880" /> + <source>&Save Macro</source> + <translation>Makro &speichern</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4890" /> <source><b>Save Macro</b><p>Save a previously recorded editor macro to a file.</p></source> <translation><b>Makro speichern</b><p>Speichert ein vorher aufgezeichnetes Makro in eine Datei.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4898" /> + <location filename="../ViewManager/ViewManager.py" line="4908" /> <source>&Macros</source> <translation>&Makros</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4929" /> - <location filename="../ViewManager/ViewManager.py" line="4916" /> + <location filename="../ViewManager/ViewManager.py" line="4939" /> + <location filename="../ViewManager/ViewManager.py" line="4926" /> <source>Toggle Bookmark</source> <translation>Lesezeichen setzen/löschen</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4918" /> + <location filename="../ViewManager/ViewManager.py" line="4928" /> <source>&Toggle Bookmark</source> <translation>&Lesezeichen setzen/löschen</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4920" /> + <location filename="../ViewManager/ViewManager.py" line="4930" /> <source>Alt+Ctrl+T</source> <comment>Bookmark|Toggle</comment> <translation>Alt+Ctrl+T</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4932" /> + <location filename="../ViewManager/ViewManager.py" line="4942" /> <source><b>Toggle Bookmark</b><p>Toggle a bookmark at the current line of the current editor.</p></source> <translation><b>Lesezeichen setzen/löschen</b><p>Setzt/löscht ein Lesezeichen in der aktuellen Zeile des aktuellen Editors.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4956" /> - <location filename="../ViewManager/ViewManager.py" line="4943" /> + <location filename="../ViewManager/ViewManager.py" line="4966" /> + <location filename="../ViewManager/ViewManager.py" line="4953" /> <source>Next Bookmark</source> <translation>Nächstes Lesezeichen</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4945" /> + <location filename="../ViewManager/ViewManager.py" line="4955" /> <source>&Next Bookmark</source> <translation>&Nächstes Lesezeichen</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4947" /> + <location filename="../ViewManager/ViewManager.py" line="4957" /> <source>Ctrl+PgDown</source> <comment>Bookmark|Next</comment> <translation>Ctrl+PgDown</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4959" /> + <location filename="../ViewManager/ViewManager.py" line="4969" /> <source><b>Next Bookmark</b><p>Go to next bookmark of the current editor.</p></source> <translation><b>Nächstes Lesezeichen</b><p>Gehe zum nächsten Lesezeichen des aktuellen Editors.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4982" /> - <location filename="../ViewManager/ViewManager.py" line="4969" /> + <location filename="../ViewManager/ViewManager.py" line="4992" /> + <location filename="../ViewManager/ViewManager.py" line="4979" /> <source>Previous Bookmark</source> <translation>Vorheriges Lesezeichen</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4971" /> + <location filename="../ViewManager/ViewManager.py" line="4981" /> <source>&Previous Bookmark</source> <translation>&Vorheriges Lesezeichen</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4973" /> + <location filename="../ViewManager/ViewManager.py" line="4983" /> <source>Ctrl+PgUp</source> <comment>Bookmark|Previous</comment> <translation>Ctrl+PgUp</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4985" /> + <location filename="../ViewManager/ViewManager.py" line="4995" /> <source><b>Previous Bookmark</b><p>Go to previous bookmark of the current editor.</p></source> <translation><b>Vorheriges Lesezeichen</b><p>Gehe zum vorherigen Lesezeichen des aktuellen Editors.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5007" /> - <location filename="../ViewManager/ViewManager.py" line="4995" /> + <location filename="../ViewManager/ViewManager.py" line="5017" /> + <location filename="../ViewManager/ViewManager.py" line="5005" /> <source>Clear Bookmarks</source> <translation>Lesezeichen löschen</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4996" /> + <location filename="../ViewManager/ViewManager.py" line="5006" /> <source>&Clear Bookmarks</source> <translation>Lesezeichen l&öschen</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4998" /> + <location filename="../ViewManager/ViewManager.py" line="5008" /> <source>Alt+Ctrl+C</source> <comment>Bookmark|Clear</comment> <translation>Alt+Ctrl+C</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5010" /> + <location filename="../ViewManager/ViewManager.py" line="5020" /> <source><b>Clear Bookmarks</b><p>Clear bookmarks of all editors.</p></source> <translation><b>Lesezeichen löschen</b><p>Lesezeichen aller Editoren löschen.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5029" /> - <location filename="../ViewManager/ViewManager.py" line="5020" /> + <location filename="../ViewManager/ViewManager.py" line="5039" /> + <location filename="../ViewManager/ViewManager.py" line="5030" /> <source>Goto Syntax Error</source> <translation>Zu Syntaxfehler gehen</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5022" /> - <source>&Goto Syntax Error</source> - <translation>Zu Syntaxfehler &gehen</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="5032" /> + <source>&Goto Syntax Error</source> + <translation>Zu Syntaxfehler &gehen</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="5042" /> <source><b>Goto Syntax Error</b><p>Go to next syntax error of the current editor.</p></source> <translation><b>Zu Syntaxfehler gehen</b><p>Gehe zum nächsten Syntaxfehler des aktuellen Editors.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5050" /> - <location filename="../ViewManager/ViewManager.py" line="5042" /> + <location filename="../ViewManager/ViewManager.py" line="5060" /> + <location filename="../ViewManager/ViewManager.py" line="5052" /> <source>Clear Syntax Errors</source> <translation>Syntaxfehler löschen</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5043" /> - <source>Clear &Syntax Errors</source> - <translation>Synta&xfehler löschen</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="5053" /> + <source>Clear &Syntax Errors</source> + <translation>Synta&xfehler löschen</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="5063" /> <source><b>Clear Syntax Errors</b><p>Clear syntax errors of all editors.</p></source> <translation><b>Syntaxfehler löschen</b><p>Syntaxfehler aller Editoren löschen.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5072" /> - <location filename="../ViewManager/ViewManager.py" line="5063" /> + <location filename="../ViewManager/ViewManager.py" line="5082" /> + <location filename="../ViewManager/ViewManager.py" line="5073" /> <source>Next warning message</source> <translation>Nächste Warnung</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5065" /> - <source>&Next warning message</source> - <translation>&Nächste Warnung</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="5075" /> + <source>&Next warning message</source> + <translation>&Nächste Warnung</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="5085" /> <source><b>Next warning message</b><p>Go to next line of the current editor having a pyflakes warning.</p></source> <translation><b>Nächste Warnung</b><p>Gehe zur nächsten Zeile des aktuellen Editors, die eine pyflakes Warnung besitzt.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5095" /> - <location filename="../ViewManager/ViewManager.py" line="5086" /> + <location filename="../ViewManager/ViewManager.py" line="5105" /> + <location filename="../ViewManager/ViewManager.py" line="5096" /> <source>Previous warning message</source> <translation>Vorherige Warnung</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5088" /> - <source>&Previous warning message</source> - <translation>&Vorherige Warnung</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="5098" /> + <source>&Previous warning message</source> + <translation>&Vorherige Warnung</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="5108" /> <source><b>Previous warning message</b><p>Go to previous line of the current editor having a pyflakes warning.</p></source> <translation><b>Vorherige Warnung</b><p>Gehe zur vorherigen Zeile des aktuellen Editors, die eine pyflakes Warnung besitzt.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5117" /> - <location filename="../ViewManager/ViewManager.py" line="5109" /> + <location filename="../ViewManager/ViewManager.py" line="5127" /> + <location filename="../ViewManager/ViewManager.py" line="5119" /> <source>Clear Warning Messages</source> <translation>Warnungen löschen</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5110" /> - <source>Clear &Warning Messages</source> - <translation>&Warnungen löschen</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="5120" /> + <source>Clear &Warning Messages</source> + <translation>&Warnungen löschen</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="5130" /> <source><b>Clear Warning Messages</b><p>Clear pyflakes warning messages of all editors.</p></source> <translation><b>Warnungen löschen</b><p>Löscht die pyflakes Warnungen aller Editoren.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5139" /> - <location filename="../ViewManager/ViewManager.py" line="5130" /> + <location filename="../ViewManager/ViewManager.py" line="5149" /> + <location filename="../ViewManager/ViewManager.py" line="5140" /> <source>Next uncovered line</source> <translation>Nächste nichtabgedeckte Zeile</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5132" /> - <source>&Next uncovered line</source> - <translation>&Nächste nichtabgedeckte Zeile</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="5142" /> + <source>&Next uncovered line</source> + <translation>&Nächste nichtabgedeckte Zeile</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="5152" /> <source><b>Next uncovered line</b><p>Go to next line of the current editor marked as not covered.</p></source> <translation><b>Nächste nichtabgedeckte Zeile</b><p>Gehe zur nächsten als nicht abgedeckt markierten Zeile des aktiven Editors.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5162" /> - <location filename="../ViewManager/ViewManager.py" line="5153" /> + <location filename="../ViewManager/ViewManager.py" line="5172" /> + <location filename="../ViewManager/ViewManager.py" line="5163" /> <source>Previous uncovered line</source> <translation>Vorige nichtabgedeckte Zeile</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5155" /> - <source>&Previous uncovered line</source> - <translation>&Vorige nichtabgedeckte Zeile</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="5165" /> + <source>&Previous uncovered line</source> + <translation>&Vorige nichtabgedeckte Zeile</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="5175" /> <source><b>Previous uncovered line</b><p>Go to previous line of the current editor marked as not covered.</p></source> <translation><b>Vorige nichtabgedeckte Zeile</b><p>Gehe zur vorigen als nicht abgedeckt markierten Zeile des aktiven Editors.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5185" /> - <location filename="../ViewManager/ViewManager.py" line="5176" /> + <location filename="../ViewManager/ViewManager.py" line="5195" /> + <location filename="../ViewManager/ViewManager.py" line="5186" /> <source>Next Task</source> <translation>Nächste Aufgabe</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5178" /> - <source>&Next Task</source> - <translation>&Nächste Aufgabe</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="5188" /> + <source>&Next Task</source> + <translation>&Nächste Aufgabe</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="5198" /> <source><b>Next Task</b><p>Go to next line of the current editor having a task.</p></source> <translation><b>Nächste Aufgabe</b><p>Gehe zur nächsten Zeile des aktuellen Editors, die eine Aufgabe enthält.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5207" /> - <location filename="../ViewManager/ViewManager.py" line="5198" /> + <location filename="../ViewManager/ViewManager.py" line="5217" /> + <location filename="../ViewManager/ViewManager.py" line="5208" /> <source>Previous Task</source> <translation>Vorherige Aufgabe</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5200" /> - <source>&Previous Task</source> - <translation>&Vorherige Aufgabe</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="5210" /> + <source>&Previous Task</source> + <translation>&Vorherige Aufgabe</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="5220" /> <source><b>Previous Task</b><p>Go to previous line of the current editor having a task.</p></source> <translation><b>Vorherige Aufgabe</b><p>Gehe zur vorherigen Zeile des aktuellen Editors, die eine Aufgabe enthält.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5230" /> - <location filename="../ViewManager/ViewManager.py" line="5221" /> + <location filename="../ViewManager/ViewManager.py" line="5240" /> + <location filename="../ViewManager/ViewManager.py" line="5231" /> <source>Next Change</source> <translation>Nächste Änderung</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5223" /> - <source>&Next Change</source> - <translation>&Nächste Änderung</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="5233" /> + <source>&Next Change</source> + <translation>&Nächste Änderung</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="5243" /> <source><b>Next Change</b><p>Go to next line of the current editor having a change marker.</p></source> <translation><b>Nächste Änderung</b><p>Gehe zur nächsten Zeile des aktuellen Editors, die eine Änderung enthält.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5253" /> - <location filename="../ViewManager/ViewManager.py" line="5244" /> + <location filename="../ViewManager/ViewManager.py" line="5263" /> + <location filename="../ViewManager/ViewManager.py" line="5254" /> <source>Previous Change</source> <translation>Vorherige Änderung</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5246" /> - <source>&Previous Change</source> - <translation>&Vorherige Änderung</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="5256" /> + <source>&Previous Change</source> + <translation>&Vorherige Änderung</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="5266" /> <source><b>Previous Change</b><p>Go to previous line of the current editor having a change marker.</p></source> <translation><b>Vorherige Änderung</b><p>Gehe zur vorherigen Zeile des aktuellen Editors, die eine Änderung enthält.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5277" /> - <location filename="../ViewManager/ViewManager.py" line="5275" /> + <location filename="../ViewManager/ViewManager.py" line="5287" /> + <location filename="../ViewManager/ViewManager.py" line="5285" /> <source>&Bookmarks</source> <translation>&Lesezeichen</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5321" /> - <location filename="../ViewManager/ViewManager.py" line="5319" /> + <location filename="../ViewManager/ViewManager.py" line="5331" /> + <location filename="../ViewManager/ViewManager.py" line="5329" /> <source>Bookmarks</source> <translation>Lesezeichen</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5355" /> + <location filename="../ViewManager/ViewManager.py" line="5365" /> <source>Check spelling</source> <translation>Rechtschreibprüfung</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5357" /> + <location filename="../ViewManager/ViewManager.py" line="5367" /> <source>Check &spelling...</source> <translation>&Rechtschreibprüfung...</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5359" /> + <location filename="../ViewManager/ViewManager.py" line="5369" /> <source>Shift+F7</source> <comment>Spelling|Spell Check</comment> <translation>Shift+F7</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5368" /> + <location filename="../ViewManager/ViewManager.py" line="5378" /> <source>Perform spell check of current editor</source> <translation>Führe eine Rechtschreibprüfung des aktuellen Editors durch</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5373" /> - <source><b>Check spelling</b><p>Perform a spell check of the current editor.</p></source> - <translation><b>Rechtschreibprüfung<b><p>Führe eine Rechtschreibprüfung des aktuellen Editors durch.</p></translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="5383" /> - <source>Automatic spell checking</source> - <translation>Automatische Rechtschreibprüfung</translation> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="5385" /> - <source>&Automatic spell checking</source> - <translation>&Automatische Rechtschreibprüfung</translation> + <source><b>Check spelling</b><p>Perform a spell check of the current editor.</p></source> + <translation><b>Rechtschreibprüfung<b><p>Führe eine Rechtschreibprüfung des aktuellen Editors durch.</p></translation> </message> <message> <location filename="../ViewManager/ViewManager.py" line="5393" /> + <source>Automatic spell checking</source> + <translation>Automatische Rechtschreibprüfung</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="5395" /> + <source>&Automatic spell checking</source> + <translation>&Automatische Rechtschreibprüfung</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="5403" /> <source>(De-)Activate automatic spell checking</source> <translation>(De-)Aktiviert die automatische Rechtschreibprüfung</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5398" /> + <location filename="../ViewManager/ViewManager.py" line="5408" /> <source><b>Automatic spell checking</b><p>Activate or deactivate the automatic spell checking function of all editors.</p></source> <translation><b>Automatische Rechtschreibprüfung</b><p>Aktiviert bzw. deaktiviert die automatische Rechtschreibprüfung aller Editoren.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5432" /> + <location filename="../ViewManager/ViewManager.py" line="5442" /> <source>Edit Dictionary</source> <translation>Wörterbuch bearbeiten</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5435" /> + <location filename="../ViewManager/ViewManager.py" line="5445" /> <source>Project Word List</source> <translation>Projekt-Wörterliste</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5439" /> + <location filename="../ViewManager/ViewManager.py" line="5449" /> <source>Project Exception List</source> <translation>Projekt-Ausnahmenliste</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5444" /> + <location filename="../ViewManager/ViewManager.py" line="5454" /> <source>User Word List</source> <translation>Nutzer-Wörterliste</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5448" /> + <location filename="../ViewManager/ViewManager.py" line="5458" /> <source>User Exception List</source> <translation>Nutzer-Ausnahmenliste</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5469" /> - <location filename="../ViewManager/ViewManager.py" line="5467" /> + <location filename="../ViewManager/ViewManager.py" line="5479" /> + <location filename="../ViewManager/ViewManager.py" line="5477" /> <source>Spelling</source> <translation>Rechtschreibung</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5492" /> + <location filename="../ViewManager/ViewManager.py" line="5502" /> <source>Open Files</source> <translation>Dateien öffnen</translation> </message> <message> + <location filename="../ViewManager/ViewManager.py" line="5531" /> <location filename="../ViewManager/ViewManager.py" line="5521" /> - <location filename="../ViewManager/ViewManager.py" line="5511" /> <source>Open Remote Files</source> <translation>Entfernte Dateien öffnen</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5578" /> + <location filename="../ViewManager/ViewManager.py" line="5588" /> <source>File Modified</source> <translation>Datei geändert</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5579" /> + <location filename="../ViewManager/ViewManager.py" line="5589" /> <source><p>The file <b>{0}</b> has unsaved changes.</p></source> <translation><p>Die Datei <b>{0}</b> enthält ungesicherte Änderungen.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6078" /> + <location filename="../ViewManager/ViewManager.py" line="6090" /> <source>Line: {0:5}</source> <translation>Zeile: {0:5}</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6084" /> + <location filename="../ViewManager/ViewManager.py" line="6096" /> <source>Pos: {0:5}</source> <translation>Pos: {0:5}</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6104" /> + <location filename="../ViewManager/ViewManager.py" line="6116" /> <source>Language: {0}</source> <translation>Sprache: {0}</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6113" /> + <location filename="../ViewManager/ViewManager.py" line="6125" /> <source>EOL Mode: {0}</source> <translation>EOL-Modus: {0}</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6641" /> - <location filename="../ViewManager/ViewManager.py" line="6598" /> + <location filename="../ViewManager/ViewManager.py" line="6668" /> + <location filename="../ViewManager/ViewManager.py" line="6625" /> <source>&Clear</source> <translation>&Löschen</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6635" /> + <location filename="../ViewManager/ViewManager.py" line="6662" /> <source>&Add</source> <translation>&Hinzufügen</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6638" /> + <location filename="../ViewManager/ViewManager.py" line="6665" /> <source>&Edit...</source> <translation>&Bearbeiten...</translation> </message> <message> + <location filename="../ViewManager/ViewManager.py" line="7735" /> + <location filename="../ViewManager/ViewManager.py" line="7721" /> + <location filename="../ViewManager/ViewManager.py" line="7689" /> + <source>Edit Spelling Dictionary</source> + <translation>Wörterbuch bearbeiten</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="7692" /> + <source><p>The spelling dictionary file <b>{0}</b> could not be read.</p><p>Reason: {1}</p></source> + <translation><p>Die Wörterbuchdatei <b>{0}</b> konnte nicht gelesen werden.</p><p>Ursache: {1}</p></translation> + </message> + <message> <location filename="../ViewManager/ViewManager.py" line="7708" /> - <location filename="../ViewManager/ViewManager.py" line="7694" /> - <location filename="../ViewManager/ViewManager.py" line="7662" /> - <source>Edit Spelling Dictionary</source> - <translation>Wörterbuch bearbeiten</translation> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="7665" /> - <source><p>The spelling dictionary file <b>{0}</b> could not be read.</p><p>Reason: {1}</p></source> - <translation><p>Die Wörterbuchdatei <b>{0}</b> konnte nicht gelesen werden.</p><p>Ursache: {1}</p></translation> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="7681" /> <source>Editing {0}</source> <translation>Bearbeite {0}</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="7697" /> + <location filename="../ViewManager/ViewManager.py" line="7724" /> <source><p>The spelling dictionary file <b>{0}</b> could not be written.</p><p>Reason: {1}</p></source> <translation><p>Die Wörterbuchdatei <b>{0}</b> konnte nicht geschrieben werden.</p><p>Ursache: {1}</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="7711" /> + <location filename="../ViewManager/ViewManager.py" line="7738" /> <source>The spelling dictionary was saved successfully.</source> <translation>Das Wörterbuch wurde erfolgreich gespeichert.</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5522" /> + <location filename="../ViewManager/ViewManager.py" line="5532" /> <source>You must be connected to a remote eric-ide server. Aborting...</source> <translation>Es muss eine Verbindung zu einem eric-ide Server bestehen. Abbruch...</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6820" /> + <location filename="../ViewManager/ViewManager.py" line="6847" /> <source>Clear Editor</source> <translation>Editor löschen</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6821" /> + <location filename="../ViewManager/ViewManager.py" line="6848" /> <source>Do you really want to delete all text of the current editor?</source> <translation>Soll wirklich der gesamte Text des aktuellen Editors gelöscht werden?</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="8241" /> - <location filename="../ViewManager/ViewManager.py" line="8224" /> + <location filename="../ViewManager/ViewManager.py" line="8268" /> + <location filename="../ViewManager/ViewManager.py" line="8251" /> <source>File System Watcher Error</source> <translation>Fehler bei Dateisystemüberwachung</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="8225" /> + <location filename="../ViewManager/ViewManager.py" line="8252" /> <source><p>The operating system resources for file system watches are exhausted. This limit should be increased. On a Linux system you should <ul><li>sudo nano /etc/sysctl.conf</li><li>add to the bottom "fs.inotify.max_user_instances = 1024"</li><li>save and close the editor</li><li>sudo sysctl -p</li></ul></p><p>Error Message: {0}</p></source> <translation><p>Die Betriebssystemresourcen zur Dateisystemüberwachung sind erschöpft. Diese Grenze sollte erhöht werden. Auf einem Linux System sollte dies ausgeführt werden <ul><li>sudo nano /etc/sysctl.conf</li><li>ergänze am Ende "fs.inotify.max_user_instances = 1024"</li><li>speichere und beende den Editor</li><li>sudo sysctl -p</li></ul></p><p>Fehlermeldung: {0}</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="8242" /> + <location filename="../ViewManager/ViewManager.py" line="8269" /> <source>The file system watcher reported an error with code <b>{0}</b>.</p><p>Error Message: {1}</p></source> <translation>Die Dateisystemüberwachung meldete einen Fehler mit dem Code <b>{0}</b>.</p><p>Fehlermeldung: {1}</p></translation> </message> @@ -99579,54 +99579,54 @@ <context> <name>VirtualenvManager</name> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="317" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="319" /> <source>Add Virtual Environment</source> <translation>Virtuelle Umgebung hinzufügen</translation> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="318" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="320" /> <source>A virtual environment named <b>{0}</b> exists already. Shall it be replaced?</source> <translation>Eine virtuelle Umgebung mit Namen <b>{0}</b> existiert bereits. Soll sie ersetzt werden?</translation> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="355" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="357" /> <source>Change Virtual Environment</source> <translation>Virtuelle Umgebung ändern</translation> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="388" /> - <location filename="../VirtualEnv/VirtualenvManager.py" line="356" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="390" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="358" /> <source>A virtual environment named <b>{0}</b> does not exist. Aborting!</source> <translation>Eine virtuelle Umgebung mit Namen <b>{0}</b> existiert nicht. Abbruch!</translation> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="387" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="389" /> <source>Rename Virtual Environment</source> <translation>Virtuelle Umgebung umbenennen</translation> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="479" /> - <location filename="../VirtualEnv/VirtualenvManager.py" line="412" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="481" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="414" /> <source>{0} - {1}</source> <translation>{0} – {1}</translation> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="419" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="421" /> <source>Delete Virtual Environments</source> <translation>Virtuelle Umgebung löschen</translation> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="420" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="422" /> <source>Do you really want to delete these virtual environments?</source> <translation>Sollen diese virtuellen Umgebungen wirklich gelöscht werden?</translation> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="486" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="488" /> <source>Remove Virtual Environments</source> <translation>Virtuelle Umgebung entfernen</translation> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="487" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="489" /> <source>Do you really want to remove these virtual environments?</source> <translation>Sollen diese virtuellen Umgebungen wirklich entfernt werden?</translation> </message> @@ -99634,7 +99634,7 @@ <context> <name>VirtualenvManagerDialog</name> <message> - <location filename="../VirtualEnv/VirtualenvManagerWidgets.py" line="442" /> + <location filename="../VirtualEnv/VirtualenvManagerWidgets.py" line="448" /> <source>Manage Virtual Environments</source> <translation>Virtuelle Umgebungen verwalten</translation> </message> @@ -99758,7 +99758,7 @@ <context> <name>VirtualenvManagerWindow</name> <message> - <location filename="../VirtualEnv/VirtualenvManagerWidgets.py" line="482" /> + <location filename="../VirtualEnv/VirtualenvManagerWidgets.py" line="488" /> <source>Manage Virtual Environments</source> <translation>Virtuelle Umgebungen verwalten</translation> </message>
--- a/src/eric7/i18n/eric7_empty.ts Wed Oct 16 17:38:35 2024 +0200 +++ b/src/eric7/i18n/eric7_empty.ts Wed Oct 16 17:39:40 2024 +0200 @@ -1628,27 +1628,27 @@ <context> <name>AssistantJedi</name> <message> - <location filename="../JediInterface/AssistantJedi.py" line="230" /> + <location filename="../JediInterface/AssistantJedi.py" line="236" /> <source>Refactoring</source> <translation type="unfinished" /> </message> <message> - <location filename="../JediInterface/AssistantJedi.py" line="232" /> - <source>Rename Variable</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../JediInterface/AssistantJedi.py" line="235" /> - <source>Extract Variable</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../JediInterface/AssistantJedi.py" line="238" /> + <source>Rename Variable</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../JediInterface/AssistantJedi.py" line="241" /> + <source>Extract Variable</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../JediInterface/AssistantJedi.py" line="244" /> <source>Inline Variable</source> <translation type="unfinished" /> </message> <message> - <location filename="../JediInterface/AssistantJedi.py" line="242" /> + <location filename="../JediInterface/AssistantJedi.py" line="248" /> <source>Extract Function</source> <translation type="unfinished" /> </message> @@ -9170,19 +9170,35 @@ <translation type="unfinished" /> </message> <message> - <location filename="../Debugger/DebugServer.py" line="2109" /> + <location filename="../Debugger/DebugServer.py" line="2110" /> <source>Passive debug connection received </source> <translation type="unfinished" /> </message> <message> - <location filename="../Debugger/DebugServer.py" line="2123" /> + <location filename="../Debugger/DebugServer.py" line="2119" /> + <source>Passive debug connection received while not in passive mode. +</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Debugger/DebugServer.py" line="2125" /> + <source>Debug Client Connection</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Debugger/DebugServer.py" line="2126" /> + <source>Passive debug client connection received while not in passive mode. Enable this mode on the 'Debugger General' configuration page. The connection will be rejected.</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Debugger/DebugServer.py" line="2141" /> <source>Passive debug connection closed </source> <translation type="unfinished" /> </message> <message> - <location filename="../Debugger/DebugServer.py" line="2254" /> + <location filename="../Debugger/DebugServer.py" line="2272" /> <source><project></source> <translation type="unfinished" /> </message> @@ -10133,23 +10149,12 @@ </message> <message> <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" /> - <source>Enables the passive debug mode</source> + <source>Debugger Type:</source> <translation type="unfinished" /> </message> <message> <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" /> - <source><b>Passive Debugger Enabled</b> -<p>This enables the passive debugging mode. In this mode the debug client (the script) connects to the debug server (the IDE). The script is started outside the IDE. This way mod_python or Zope scripts can be debugged.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" /> - <source>Passive Debugger Enabled</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" /> - <source>Debug Server Port:</source> + <source>Select the debugger type of the backend</source> <translation type="unfinished" /> </message> <message> @@ -10165,12 +10170,7 @@ </message> <message> <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" /> - <source>Debugger Type:</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" /> - <source>Select the debugger type of the backend</source> + <source>Debug Server Port:</source> <translation type="unfinished" /> </message> <message> @@ -10503,46 +10503,46 @@ <context> <name>DebuggerInterfacePython</name> <message> - <location filename="../Debugger/DebuggerInterfacePython.py" line="727" /> - <location filename="../Debugger/DebuggerInterfacePython.py" line="704" /> - <location filename="../Debugger/DebuggerInterfacePython.py" line="611" /> - <location filename="../Debugger/DebuggerInterfacePython.py" line="565" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="728" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="705" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="609" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="563" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="445" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="422" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="345" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="321" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="258" /> + <source>Start Debugger</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Debugger/DebuggerInterfacePython.py" line="564" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="259" /> + <source><p>No suitable Python3 environment configured.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Debugger/DebuggerInterfacePython.py" line="729" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="706" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="610" /> <location filename="../Debugger/DebuggerInterfacePython.py" line="446" /> <location filename="../Debugger/DebuggerInterfacePython.py" line="423" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="322" /> + <source><p>The debugger backend could not be started.</p></source> + <translation type="unfinished" /> + </message> + <message> <location filename="../Debugger/DebuggerInterfacePython.py" line="346" /> - <location filename="../Debugger/DebuggerInterfacePython.py" line="322" /> - <location filename="../Debugger/DebuggerInterfacePython.py" line="259" /> - <source>Start Debugger</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Debugger/DebuggerInterfacePython.py" line="566" /> - <location filename="../Debugger/DebuggerInterfacePython.py" line="260" /> - <source><p>No suitable Python3 environment configured.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Debugger/DebuggerInterfacePython.py" line="728" /> - <location filename="../Debugger/DebuggerInterfacePython.py" line="705" /> - <location filename="../Debugger/DebuggerInterfacePython.py" line="612" /> - <location filename="../Debugger/DebuggerInterfacePython.py" line="447" /> - <location filename="../Debugger/DebuggerInterfacePython.py" line="424" /> - <location filename="../Debugger/DebuggerInterfacePython.py" line="323" /> - <source><p>The debugger backend could not be started.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Debugger/DebuggerInterfacePython.py" line="347" /> <source><p>Remote debugging is configured but no command for remote login was given.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Debugger/DebuggerInterfacePython.py" line="1659" /> - <source>Debug Protocol Error</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Debugger/DebuggerInterfacePython.py" line="1660" /> + <source>Debug Protocol Error</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Debugger/DebuggerInterfacePython.py" line="1661" /> <source><p>The response received from the debugger backend 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" /> </message> @@ -61851,7 +61851,7 @@ <context> <name>PreviewModel</name> <message> - <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="478" /> + <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="506" /> <source>Variable Name</source> <translation type="unfinished" /> </message> @@ -62733,8 +62733,8 @@ <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="8058" /> - <location filename="../Project/Project.py" line="3901" /> + <location filename="../Project/Project.py" line="8055" /> + <location filename="../Project/Project.py" line="3898" /> <location filename="../Project/Project.py" line="2398" /> <source><p>The file <b>{0}</b> already exists. Overwrite it?</p></source> <translation type="unfinished" /> @@ -62868,1308 +62868,1308 @@ <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="8044" /> - <location filename="../Project/Project.py" line="8038" /> - <location filename="../Project/Project.py" line="8028" /> - <location filename="../Project/Project.py" line="3886" /> - <location filename="../Project/Project.py" line="3876" /> + <location filename="../Project/Project.py" line="8041" /> + <location filename="../Project/Project.py" line="8035" /> + <location filename="../Project/Project.py" line="8025" /> + <location filename="../Project/Project.py" line="3883" /> + <location filename="../Project/Project.py" line="3873" /> <location filename="../Project/Project.py" line="3652" /> <source>Project Files (*.epj)</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="3900" /> - <location filename="../Project/Project.py" line="3884" /> + <location filename="../Project/Project.py" line="3897" /> + <location filename="../Project/Project.py" line="3881" /> <source>Save Project</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="3939" /> + <location filename="../Project/Project.py" line="3936" /> <source>Close Project</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="3940" /> + <location filename="../Project/Project.py" line="3937" /> <source>The current project has unsaved changes.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="4140" /> - <location filename="../Project/Project.py" line="4104" /> + <location filename="../Project/Project.py" line="4137" /> + <location filename="../Project/Project.py" line="4101" /> <source>Syntax Errors Detected</source> <translation type="unfinished" /> </message> <message numerus="yes"> - <location filename="../Project/Project.py" line="4141" /> - <location filename="../Project/Project.py" line="4105" /> + <location filename="../Project/Project.py" line="4138" /> + <location filename="../Project/Project.py" line="4102" /> <source>The project contains %n file(s) with syntax errors.</source> <translation type="unfinished"> <numerusform /> </translation> </message> <message> - <location filename="../Project/Project.py" line="4799" /> + <location filename="../Project/Project.py" line="4796" /> <source>New project</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="4801" /> + <location filename="../Project/Project.py" line="4798" /> <source>&New...</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="4807" /> + <location filename="../Project/Project.py" line="4804" /> <source>Generate a new project</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="4809" /> + <location filename="../Project/Project.py" line="4806" /> <source><b>New...</b><p>This opens a dialog for entering the info for a new project.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="4819" /> + <location filename="../Project/Project.py" line="4816" /> <source>Open project</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="4821" /> + <location filename="../Project/Project.py" line="4818" /> <source>&Open...</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="4827" /> + <location filename="../Project/Project.py" line="4824" /> <source>Open an existing project</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="4829" /> + <location filename="../Project/Project.py" line="4826" /> <source><b>Open...</b><p>This opens an existing project.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="4835" /> + <location filename="../Project/Project.py" line="4832" /> <source>Open remote project</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="4837" /> + <location filename="../Project/Project.py" line="4834" /> <source>Open (Remote)...</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="4843" /> + <location filename="../Project/Project.py" line="4840" /> <source>Open an existing remote project</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="4845" /> + <location filename="../Project/Project.py" line="4842" /> <source><b>Open (Remote)...</b><p>This opens an existing remote project.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="4854" /> + <location filename="../Project/Project.py" line="4851" /> <source>Reload project</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="4856" /> + <location filename="../Project/Project.py" line="4853" /> <source>Re&load</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="4862" /> + <location filename="../Project/Project.py" line="4859" /> <source>Reload the current project</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="4864" /> + <location filename="../Project/Project.py" line="4861" /> <source><b>Reload</b><p>This reloads the current project.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="4870" /> + <location filename="../Project/Project.py" line="4867" /> <source>Close project</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="4872" /> + <location filename="../Project/Project.py" line="4869" /> <source>&Close</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="4878" /> + <location filename="../Project/Project.py" line="4875" /> <source>Close the current project</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="4880" /> + <location filename="../Project/Project.py" line="4877" /> <source><b>Close</b><p>This closes the current project.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="4886" /> + <location filename="../Project/Project.py" line="4883" /> <source>Save project</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5183" /> - <location filename="../Project/Project.py" line="4888" /> + <location filename="../Project/Project.py" line="5180" /> + <location filename="../Project/Project.py" line="4885" /> <source>&Save</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="4894" /> + <location filename="../Project/Project.py" line="4891" /> <source>Save the current project</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="4896" /> + <location filename="../Project/Project.py" line="4893" /> <source><b>Save</b><p>This saves the current project.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="4902" /> + <location filename="../Project/Project.py" line="4899" /> <source>Save project as</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="4904" /> + <location filename="../Project/Project.py" line="4901" /> <source>Save &as...</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="4910" /> + <location filename="../Project/Project.py" line="4907" /> <source>Save the current project to a new file</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="4912" /> + <location filename="../Project/Project.py" line="4909" /> <source><b>Save as</b><p>This saves the current project to a new file.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="4921" /> + <location filename="../Project/Project.py" line="4918" /> <source>Save project as (Remote)</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="4923" /> + <location filename="../Project/Project.py" line="4920" /> <source>Save as (Remote)...</source> <translation type="unfinished" /> </message> <message> + <location filename="../Project/Project.py" line="4927" /> + <source>Save the current project to a new remote file</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../Project/Project.py" line="4930" /> - <source>Save the current project to a new remote file</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="4933" /> <source><b>Save as (Remote)</b><p>This saves the current project to a new remote file.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="4949" /> + <location filename="../Project/Project.py" line="4946" /> <source>Add files to project</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="4951" /> + <location filename="../Project/Project.py" line="4948" /> <source>Add &files...</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="4957" /> + <location filename="../Project/Project.py" line="4954" /> <source>Add files to the current project</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="4959" /> + <location filename="../Project/Project.py" line="4956" /> <source><b>Add files...</b><p>This opens a dialog for adding files to the current project. The place to add is determined by the file extension.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="4970" /> + <location filename="../Project/Project.py" line="4967" /> <source>Add directory to project</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="4972" /> + <location filename="../Project/Project.py" line="4969" /> <source>Add directory...</source> <translation type="unfinished" /> </message> <message> + <location filename="../Project/Project.py" line="4976" /> + <source>Add a directory to the current project</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../Project/Project.py" line="4979" /> - <source>Add a directory to the current project</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="4982" /> <source><b>Add directory...</b><p>This opens a dialog for adding a directory to the current project.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="4992" /> + <location filename="../Project/Project.py" line="4989" /> <source>Add translation to project</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="4994" /> + <location filename="../Project/Project.py" line="4991" /> <source>Add &translation...</source> <translation type="unfinished" /> </message> <message> + <location filename="../Project/Project.py" line="4998" /> + <source>Add a translation to the current project</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../Project/Project.py" line="5001" /> - <source>Add a translation to the current project</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="5004" /> <source><b>Add translation...</b><p>This opens a dialog for add a translation to the current project.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5014" /> + <location filename="../Project/Project.py" line="5011" /> <source>Search new files</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5015" /> + <location filename="../Project/Project.py" line="5012" /> <source>Searc&h new files...</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5021" /> + <location filename="../Project/Project.py" line="5018" /> <source>Search new files in the project directory.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5023" /> + <location filename="../Project/Project.py" line="5020" /> <source><b>Search new files...</b><p>This searches for new files (sources, forms, ...) in the project directory and registered subdirectories.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5033" /> + <location filename="../Project/Project.py" line="5030" /> <source>Search Project File</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5034" /> + <location filename="../Project/Project.py" line="5031" /> <source>Search Project File...</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5035" /> + <location filename="../Project/Project.py" line="5032" /> <source>Alt+Ctrl+P</source> <comment>Project|Search Project File</comment> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5040" /> + <location filename="../Project/Project.py" line="5037" /> <source>Search for a file in the project list of files.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5042" /> + <location filename="../Project/Project.py" line="5039" /> <source><b>Search Project File</b><p>This searches for a file in the project list of files.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5051" /> + <location filename="../Project/Project.py" line="5048" /> <source>Project properties</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5053" /> + <location filename="../Project/Project.py" line="5050" /> <source>&Properties...</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5059" /> + <location filename="../Project/Project.py" line="5056" /> <source>Show the project properties</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5061" /> + <location filename="../Project/Project.py" line="5058" /> <source><b>Properties...</b><p>This shows a dialog to edit the project properties.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5070" /> + <location filename="../Project/Project.py" line="5067" /> <source>User project properties</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5072" /> + <location filename="../Project/Project.py" line="5069" /> <source>&User Properties...</source> <translation type="unfinished" /> </message> <message> + <location filename="../Project/Project.py" line="5076" /> + <source>Show the user specific project properties</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../Project/Project.py" line="5079" /> - <source>Show the user specific project properties</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="5082" /> <source><b>User Properties...</b><p>This shows a dialog to edit the user specific project properties.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5092" /> + <location filename="../Project/Project.py" line="5089" /> <source>Filetype Associations</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5093" /> + <location filename="../Project/Project.py" line="5090" /> <source>Filetype Associations...</source> <translation type="unfinished" /> </message> <message> + <location filename="../Project/Project.py" line="5097" /> + <source>Show the project file type associations</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../Project/Project.py" line="5100" /> - <source>Show the project file type associations</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="5103" /> <source><b>Filetype Associations...</b><p>This shows a dialog to edit the file type associations of the project. These associations determine the type (source, form, interface, protocol or others) with a filename pattern. They are used when adding a file to the project and when performing a search for new files.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5116" /> + <location filename="../Project/Project.py" line="5113" /> <source>Lexer Associations</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5117" /> + <location filename="../Project/Project.py" line="5114" /> <source>Lexer Associations...</source> <translation type="unfinished" /> </message> <message> + <location filename="../Project/Project.py" line="5121" /> + <source>Show the project lexer associations (overriding defaults)</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../Project/Project.py" line="5124" /> - <source>Show the project lexer associations (overriding defaults)</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="5127" /> <source><b>Lexer Associations...</b><p>This shows a dialog to edit the lexer associations of the project. These associations override the global lexer associations. Lexers are used to highlight the editor text.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5145" /> + <location filename="../Project/Project.py" line="5142" /> <source>Debugger Properties</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5146" /> + <location filename="../Project/Project.py" line="5143" /> <source>Debugger &Properties...</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5152" /> + <location filename="../Project/Project.py" line="5149" /> <source>Show the debugger properties</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5154" /> + <location filename="../Project/Project.py" line="5151" /> <source><b>Debugger Properties...</b><p>This shows a dialog to edit project specific debugger settings.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5164" /> + <location filename="../Project/Project.py" line="5161" /> <source>Load</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5165" /> + <location filename="../Project/Project.py" line="5162" /> <source>&Load</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5171" /> + <location filename="../Project/Project.py" line="5168" /> <source>Load the debugger properties</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5173" /> + <location filename="../Project/Project.py" line="5170" /> <source><b>Load Debugger Properties</b><p>This loads the project specific debugger settings.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5182" /> + <location filename="../Project/Project.py" line="5179" /> <source>Save</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5189" /> + <location filename="../Project/Project.py" line="5186" /> <source>Save the debugger properties</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5191" /> + <location filename="../Project/Project.py" line="5188" /> <source><b>Save Debugger Properties</b><p>This saves the project specific debugger settings.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5200" /> + <location filename="../Project/Project.py" line="5197" /> <source>Delete</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5201" /> + <location filename="../Project/Project.py" line="5198" /> <source>&Delete</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5207" /> + <location filename="../Project/Project.py" line="5204" /> <source>Delete the debugger properties</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5209" /> + <location filename="../Project/Project.py" line="5206" /> <source><b>Delete Debugger Properties</b><p>This deletes the file containing the project specific debugger settings.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5219" /> + <location filename="../Project/Project.py" line="5216" /> <source>Reset</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5220" /> + <location filename="../Project/Project.py" line="5217" /> <source>&Reset</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5226" /> + <location filename="../Project/Project.py" line="5223" /> <source>Reset the debugger properties</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5228" /> + <location filename="../Project/Project.py" line="5225" /> <source><b>Reset Debugger Properties</b><p>This resets the project specific debugger settings.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5244" /> - <location filename="../Project/Project.py" line="5243" /> + <location filename="../Project/Project.py" line="5241" /> + <location filename="../Project/Project.py" line="5240" /> <source>Load session</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5250" /> + <location filename="../Project/Project.py" line="5247" /> <source>Load the projects session file.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5252" /> + <location filename="../Project/Project.py" line="5249" /> <source><b>Load session</b><p>This loads the projects session file. The session consists of the following data.<br>- all open source files<br>- all breakpoint<br>- the commandline arguments<br>- the working directory<br>- the exception reporting flag</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5268" /> - <location filename="../Project/Project.py" line="5267" /> + <location filename="../Project/Project.py" line="5265" /> + <location filename="../Project/Project.py" line="5264" /> <source>Save session</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5274" /> + <location filename="../Project/Project.py" line="5271" /> <source>Save the projects session file.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5276" /> + <location filename="../Project/Project.py" line="5273" /> <source><b>Save session</b><p>This saves the projects session file. The session consists of the following data.<br>- all open source files<br>- all breakpoint<br>- the commandline arguments<br>- the working directory<br>- the exception reporting flag</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5292" /> - <location filename="../Project/Project.py" line="5291" /> + <location filename="../Project/Project.py" line="5289" /> + <location filename="../Project/Project.py" line="5288" /> <source>Delete session</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5298" /> + <location filename="../Project/Project.py" line="5295" /> <source>Delete the projects session file.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5300" /> + <location filename="../Project/Project.py" line="5297" /> <source><b>Delete session</b><p>This deletes the projects session file</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5315" /> + <location filename="../Project/Project.py" line="5312" /> <source>Code Metrics</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5316" /> + <location filename="../Project/Project.py" line="5313" /> <source>&Code Metrics...</source> <translation type="unfinished" /> </message> <message> + <location filename="../Project/Project.py" line="5320" /> + <source>Show some code metrics for the project.</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../Project/Project.py" line="5323" /> - <source>Show some code metrics for the project.</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="5326" /> <source><b>Code Metrics...</b><p>This shows some code metrics for all Python files in the project.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5336" /> + <location filename="../Project/Project.py" line="5333" /> <source>Python Code Coverage</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5337" /> + <location filename="../Project/Project.py" line="5334" /> <source>Code Co&verage...</source> <translation type="unfinished" /> </message> <message> + <location filename="../Project/Project.py" line="5341" /> + <source>Show code coverage information for the project.</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../Project/Project.py" line="5344" /> - <source>Show code coverage information for the project.</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="5347" /> <source><b>Code Coverage...</b><p>This shows the code coverage information for all Python files in the project.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6781" /> - <location filename="../Project/Project.py" line="6768" /> - <location filename="../Project/Project.py" line="5357" /> + <location filename="../Project/Project.py" line="6778" /> + <location filename="../Project/Project.py" line="6765" /> + <location filename="../Project/Project.py" line="5354" /> <source>Profile Data</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5358" /> + <location filename="../Project/Project.py" line="5355" /> <source>&Profile Data...</source> <translation type="unfinished" /> </message> <message> + <location filename="../Project/Project.py" line="5362" /> + <source>Show profiling data for the project.</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../Project/Project.py" line="5365" /> - <source>Show profiling data for the project.</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="5368" /> <source><b>Profile Data...</b><p>This shows the profiling data for the project.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6833" /> - <location filename="../Project/Project.py" line="5383" /> + <location filename="../Project/Project.py" line="6830" /> + <location filename="../Project/Project.py" line="5380" /> <source>Application Diagram</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5384" /> + <location filename="../Project/Project.py" line="5381" /> <source>&Application Diagram...</source> <translation type="unfinished" /> </message> <message> + <location filename="../Project/Project.py" line="5388" /> + <source>Show a diagram of the project.</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../Project/Project.py" line="5391" /> - <source>Show a diagram of the project.</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="5394" /> <source><b>Application Diagram...</b><p>This shows a diagram of the project.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5403" /> + <location filename="../Project/Project.py" line="5400" /> <source>Load Diagram</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5404" /> + <location filename="../Project/Project.py" line="5401" /> <source>&Load Diagram...</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5410" /> + <location filename="../Project/Project.py" line="5407" /> <source>Load a diagram from file.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5412" /> + <location filename="../Project/Project.py" line="5409" /> <source><b>Load Diagram...</b><p>This loads a diagram from file.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="7001" /> - <location filename="../Project/Project.py" line="6946" /> - <location filename="../Project/Project.py" line="5427" /> + <location filename="../Project/Project.py" line="6998" /> + <location filename="../Project/Project.py" line="6943" /> + <location filename="../Project/Project.py" line="5424" /> <source>Create Package List</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5429" /> + <location filename="../Project/Project.py" line="5426" /> <source>Create &Package List</source> <translation type="unfinished" /> </message> <message> + <location filename="../Project/Project.py" line="5433" /> + <source>Create an initial PKGLIST file for an eric plugin.</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../Project/Project.py" line="5436" /> - <source>Create an initial PKGLIST file for an eric plugin.</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="5439" /> <source><b>Create Package List</b><p>This creates an initial list of files to include in an eric plugin archive. The list is created from the project file.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="7071" /> - <location filename="../Project/Project.py" line="5450" /> + <location filename="../Project/Project.py" line="7068" /> + <location filename="../Project/Project.py" line="5447" /> <source>Create Plugin Archives</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5452" /> + <location filename="../Project/Project.py" line="5449" /> <source>Create Plugin &Archives</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5458" /> + <location filename="../Project/Project.py" line="5455" /> <source>Create eric plugin archive files.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5460" /> + <location filename="../Project/Project.py" line="5457" /> <source><b>Create Plugin Archives</b><p>This creates eric plugin archive files using the list of files given in a PKGLIST* file. The archive name is built from the main script name if not designated in the package list file.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5472" /> + <location filename="../Project/Project.py" line="5469" /> <source>Create Plugin Archives (Snapshot)</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5474" /> + <location filename="../Project/Project.py" line="5471" /> <source>Create Plugin Archives (&Snapshot)</source> <translation type="unfinished" /> </message> <message> + <location filename="../Project/Project.py" line="5478" /> + <source>Create eric plugin archive files (snapshot releases).</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../Project/Project.py" line="5481" /> - <source>Create eric plugin archive files (snapshot releases).</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="5484" /> <source><b>Create Plugin Archives (Snapshot)</b><p>This creates eric plugin archive files using the list of files given in the PKGLIST* file. The archive name is built from the main script name if not designated in the package list file. The version entry of the main script is modified to reflect a snapshot release.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="7513" /> - <location filename="../Project/Project.py" line="7484" /> - <location filename="../Project/Project.py" line="7438" /> - <location filename="../Project/Project.py" line="7390" /> - <location filename="../Project/Project.py" line="5503" /> + <location filename="../Project/Project.py" line="7510" /> + <location filename="../Project/Project.py" line="7481" /> + <location filename="../Project/Project.py" line="7435" /> + <location filename="../Project/Project.py" line="7387" /> + <location filename="../Project/Project.py" line="5500" /> <source>Execute Make</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5504" /> + <location filename="../Project/Project.py" line="5501" /> <source>&Execute Make</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5510" /> + <location filename="../Project/Project.py" line="5507" /> <source>Perform a 'make' run.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5512" /> + <location filename="../Project/Project.py" line="5509" /> <source><b>Execute Make</b><p>This performs a 'make' run to rebuild the configured target.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="7490" /> - <location filename="../Project/Project.py" line="5522" /> + <location filename="../Project/Project.py" line="7487" /> + <location filename="../Project/Project.py" line="5519" /> <source>Test for Changes</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5523" /> + <location filename="../Project/Project.py" line="5520" /> <source>&Test for Changes</source> <translation type="unfinished" /> </message> <message> + <location filename="../Project/Project.py" line="5527" /> + <source>Question 'make', if a rebuild is needed.</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../Project/Project.py" line="5530" /> - <source>Question 'make', if a rebuild is needed.</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="5533" /> <source><b>Test for Changes</b><p>This questions 'make', if a rebuild of the configured target is necessary.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5551" /> + <location filename="../Project/Project.py" line="5548" /> <source>Create SBOM File</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5552" /> + <location filename="../Project/Project.py" line="5549" /> <source>Create &SBOM File</source> <translation type="unfinished" /> </message> <message> + <location filename="../Project/Project.py" line="5556" /> + <source>Create a SBOM file of the project dependencies.</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../Project/Project.py" line="5559" /> - <source>Create a SBOM file of the project dependencies.</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="5562" /> <source><b>Create SBOM File</b><p>This allows the creation of a SBOM file of the project dependencies. This may be based on various input sources and will be saved as a CycloneDX SBOM file.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5573" /> + <location filename="../Project/Project.py" line="5570" /> <source>Clear Byte Code Caches</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5574" /> + <location filename="../Project/Project.py" line="5571" /> <source>Clear Byte Code &Caches</source> <translation type="unfinished" /> </message> <message> + <location filename="../Project/Project.py" line="5578" /> + <source>Clear the byte code caches of the project.</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../Project/Project.py" line="5581" /> - <source>Clear the byte code caches of the project.</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="5584" /> <source><b>Clear Byte Code Caches</b><p>This deletes all directories containing byte code cache files.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5600" /> + <location filename="../Project/Project.py" line="5597" /> <source>About Black</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5601" /> + <location filename="../Project/Project.py" line="5598" /> <source>&Black</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5607" /> + <location filename="../Project/Project.py" line="5604" /> <source>Show some information about 'Black'.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5609" /> + <location filename="../Project/Project.py" line="5606" /> <source><b>Black</b><p>This shows some information about the installed 'Black' tool.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5621" /> + <location filename="../Project/Project.py" line="5618" /> <source>Format Code</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5622" /> + <location filename="../Project/Project.py" line="5619" /> <source>&Format Code</source> <translation type="unfinished" /> </message> <message> + <location filename="../Project/Project.py" line="5626" /> + <source>Format the project sources with 'Black'.</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../Project/Project.py" line="5629" /> - <source>Format the project sources with 'Black'.</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="5632" /> <source><b>Format Code</b><p>This shows a dialog to enter parameters for the formatting run and reformats the project sources using 'Black'.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5644" /> + <location filename="../Project/Project.py" line="5641" /> <source>Check Code Formatting</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5645" /> + <location filename="../Project/Project.py" line="5642" /> <source>&Check Code Formatting</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5652" /> + <location filename="../Project/Project.py" line="5649" /> <source>Check, if the project sources need to be reformatted with 'Black'.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5657" /> + <location filename="../Project/Project.py" line="5654" /> <source><b>Check Code Formatting</b><p>This shows a dialog to enter parameters for the format check run and performs a check, if the project sources need to be reformatted using 'Black'.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5670" /> + <location filename="../Project/Project.py" line="5667" /> <source>Code Formatting Diff</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5671" /> + <location filename="../Project/Project.py" line="5668" /> <source>Code Formatting &Diff</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5678" /> + <location filename="../Project/Project.py" line="5675" /> <source>Generate a unified diff of potential project source reformatting with 'Black'.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5684" /> + <location filename="../Project/Project.py" line="5681" /> <source><b>Diff Code Formatting</b><p>This shows a dialog to enter parameters for the format diff run and generates a unified diff of potential project source reformatting using 'Black'.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5849" /> - <location filename="../Project/Project.py" line="5799" /> - <location filename="../Project/Project.py" line="5798" /> - <location filename="../Project/Project.py" line="5698" /> - <location filename="../Project/Project.py" line="5697" /> + <location filename="../Project/Project.py" line="5846" /> + <location filename="../Project/Project.py" line="5796" /> + <location filename="../Project/Project.py" line="5795" /> + <location filename="../Project/Project.py" line="5695" /> + <location filename="../Project/Project.py" line="5694" /> <source>Configure</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5705" /> + <location filename="../Project/Project.py" line="5702" /> <source>Enter the parameters for formatting the project sources with 'Black'.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5710" /> + <location filename="../Project/Project.py" line="5707" /> <source><b>Configure</b><p>This shows a dialog to enter the parameters for formatting the project sources with 'Black'.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5726" /> + <location filename="../Project/Project.py" line="5723" /> <source>About isort</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5727" /> + <location filename="../Project/Project.py" line="5724" /> <source>&isort</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5733" /> + <location filename="../Project/Project.py" line="5730" /> <source>Show some information about 'isort'.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5735" /> + <location filename="../Project/Project.py" line="5732" /> <source><b>isort</b><p>This shows some information about the installed 'isort' tool.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5748" /> - <location filename="../Project/Project.py" line="5747" /> + <location filename="../Project/Project.py" line="5745" /> + <location filename="../Project/Project.py" line="5744" /> <source>Sort Imports</source> <translation type="unfinished" /> </message> <message> + <location filename="../Project/Project.py" line="5752" /> + <source>Sort the import statements of the project sources with 'isort'.</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../Project/Project.py" line="5755" /> - <source>Sort the import statements of the project sources with 'isort'.</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="5758" /> <source><b>Sort Imports</b><p>This shows a dialog to enter parameters for the imports sorting run and sorts the import statements of the project sources using 'isort'.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5772" /> - <location filename="../Project/Project.py" line="5771" /> + <location filename="../Project/Project.py" line="5769" /> + <location filename="../Project/Project.py" line="5768" /> <source>Imports Sorting Diff</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5779" /> + <location filename="../Project/Project.py" line="5776" /> <source>Generate a unified diff of potential project source imports resorting with 'isort'.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5785" /> + <location filename="../Project/Project.py" line="5782" /> <source><b>Imports Sorting Diff</b><p>This shows a dialog to enter parameters for the imports sorting diff run and generates a unified diff of potential project source changes using 'isort'.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5806" /> + <location filename="../Project/Project.py" line="5803" /> <source>Enter the parameters for resorting the project sources import statements with 'isort'.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5812" /> + <location filename="../Project/Project.py" line="5809" /> <source><b>Configure</b><p>This shows a dialog to enter the parameters for resorting the import statements of the project sources with 'isort'.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5828" /> + <location filename="../Project/Project.py" line="5825" /> <source>Install Project</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5829" /> + <location filename="../Project/Project.py" line="5826" /> <source>&Install Project</source> <translation type="unfinished" /> </message> <message> + <location filename="../Project/Project.py" line="5833" /> + <source>Install the project into the embedded environment.</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../Project/Project.py" line="5836" /> - <source>Install the project into the embedded environment.</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="5839" /> <source><b>Install Project</b><p>This installs the project into the embedded virtual environment in editable mode (i.e. development mode).</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5850" /> + <location filename="../Project/Project.py" line="5847" /> <source>&Configure</source> <translation type="unfinished" /> </message> <message> + <location filename="../Project/Project.py" line="5854" /> + <source>Configure the embedded environment.</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../Project/Project.py" line="5857" /> - <source>Configure the embedded environment.</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="5860" /> <source><b>Configure</b><p>This opens a dialog to configure the embedded virtual environment of the project.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5870" /> + <location filename="../Project/Project.py" line="5867" /> <source>Upgrade</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5871" /> + <location filename="../Project/Project.py" line="5868" /> <source>&Upgrade</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5877" /> + <location filename="../Project/Project.py" line="5874" /> <source>Upgrade the embedded environment.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5879" /> + <location filename="../Project/Project.py" line="5876" /> <source><b>Upgrade</b><p>This opens a dialog to enter the parameters to upgrade the embedded virtual environment of the project.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5891" /> + <location filename="../Project/Project.py" line="5888" /> <source>Recreate</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5892" /> + <location filename="../Project/Project.py" line="5889" /> <source>&Recreate</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5898" /> + <location filename="../Project/Project.py" line="5895" /> <source>Recreate the embedded environment.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5900" /> + <location filename="../Project/Project.py" line="5897" /> <source><b>Recreate</b><p>This opens a dialog to enter the parameters to recreate the embedded virtual environment of the project. The existing environment is cleared first.</p></source> <translation type="unfinished" /> </message> <message> + <location filename="../Project/Project.py" line="5929" /> + <source>&Project</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Project/Project.py" line="5930" /> + <source>Open &Recent Projects</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../Project/Project.py" line="5932" /> - <source>&Project</source> + <source>Session</source> <translation type="unfinished" /> </message> <message> <location filename="../Project/Project.py" line="5933" /> - <source>Open &Recent Projects</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="5935" /> - <source>Session</source> + <source>Debugger</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Project/Project.py" line="5934" /> + <source>Embedded Environment</source> <translation type="unfinished" /> </message> <message> <location filename="../Project/Project.py" line="5936" /> - <source>Debugger</source> + <source>Project-T&ools</source> <translation type="unfinished" /> </message> <message> <location filename="../Project/Project.py" line="5937" /> - <source>Embedded Environment</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="5939" /> - <source>Project-T&ools</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="5940" /> <source>&Version Control</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5944" /> + <location filename="../Project/Project.py" line="5941" /> <source>Chec&k</source> <translation type="unfinished" /> </message> <message> + <location filename="../Project/Project.py" line="5943" /> + <source>Code &Formatting</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Project/Project.py" line="5945" /> + <source>Sho&w</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../Project/Project.py" line="5946" /> - <source>Code &Formatting</source> + <source>&Diagrams</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Project/Project.py" line="5947" /> + <source>Pac&kagers</source> <translation type="unfinished" /> </message> <message> <location filename="../Project/Project.py" line="5948" /> - <source>Sho&w</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="5949" /> - <source>&Diagrams</source> + <source>Source &Documentation</source> <translation type="unfinished" /> </message> <message> <location filename="../Project/Project.py" line="5950" /> - <source>Pac&kagers</source> + <source>Make</source> <translation type="unfinished" /> </message> <message> <location filename="../Project/Project.py" line="5951" /> - <source>Source &Documentation</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="5953" /> - <source>Make</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="5954" /> <source>Other Tools</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6116" /> - <location filename="../Project/Project.py" line="6114" /> + <location filename="../Project/Project.py" line="6113" /> + <location filename="../Project/Project.py" line="6111" /> <source>Project</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6198" /> + <location filename="../Project/Project.py" line="6195" /> <source>&Clear</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6395" /> + <location filename="../Project/Project.py" line="6392" /> <source>Search New Files</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6396" /> + <location filename="../Project/Project.py" line="6393" /> <source>There were no new files found to be added.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6557" /> - <location filename="../Project/Project.py" line="6544" /> + <location filename="../Project/Project.py" line="6554" /> + <location filename="../Project/Project.py" line="6541" /> <source>Version Control System</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6545" /> + <location filename="../Project/Project.py" line="6542" /> <source><p>The selected VCS <b>{0}</b> could not be found. <br/>Reverting override.</p><p>{1}</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6558" /> + <location filename="../Project/Project.py" line="6555" /> <source><p>The selected VCS <b>{0}</b> could not be found.<br/>Disabling version control.</p><p>{1}</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6715" /> + <location filename="../Project/Project.py" line="6712" /> <source>Coverage Data</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6769" /> - <location filename="../Project/Project.py" line="6716" /> + <location filename="../Project/Project.py" line="6766" /> + <location filename="../Project/Project.py" line="6713" /> <source>There is no main script defined for the current project. Aborting</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6728" /> + <location filename="../Project/Project.py" line="6725" /> <source>Code Coverage</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6729" /> + <location filename="../Project/Project.py" line="6726" /> <source>Please select a coverage file</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6782" /> + <location filename="../Project/Project.py" line="6779" /> <source>Please select a profile file</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6834" /> + <location filename="../Project/Project.py" line="6831" /> <source>Include module names?</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6947" /> + <location filename="../Project/Project.py" line="6944" /> <source><p>The file <b>PKGLIST</b> already exists.</p><p>Overwrite it?</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="7002" /> + <location filename="../Project/Project.py" line="6999" /> <source><p>The file <b>PKGLIST</b> could not be created.</p><p>Reason: {0}</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="7298" /> - <location filename="../Project/Project.py" line="7254" /> - <location filename="../Project/Project.py" line="7204" /> - <location filename="../Project/Project.py" line="7193" /> - <location filename="../Project/Project.py" line="7175" /> - <location filename="../Project/Project.py" line="7142" /> - <location filename="../Project/Project.py" line="7112" /> - <location filename="../Project/Project.py" line="7084" /> - <location filename="../Project/Project.py" line="7054" /> - <location filename="../Project/Project.py" line="7040" /> - <location filename="../Project/Project.py" line="7023" /> + <location filename="../Project/Project.py" line="7295" /> + <location filename="../Project/Project.py" line="7251" /> + <location filename="../Project/Project.py" line="7201" /> + <location filename="../Project/Project.py" line="7190" /> + <location filename="../Project/Project.py" line="7172" /> + <location filename="../Project/Project.py" line="7139" /> + <location filename="../Project/Project.py" line="7109" /> + <location filename="../Project/Project.py" line="7081" /> + <location filename="../Project/Project.py" line="7051" /> + <location filename="../Project/Project.py" line="7037" /> + <location filename="../Project/Project.py" line="7020" /> <source>Create Plugin Archive</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="7024" /> + <location filename="../Project/Project.py" line="7021" /> <source>The project does not have a main script defined. Aborting...</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="7041" /> + <location filename="../Project/Project.py" line="7038" /> <source>Select package lists:</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="7055" /> + <location filename="../Project/Project.py" line="7052" /> <source><p>No package list files (PKGLIST*) available or selected. Aborting...</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="7063" /> + <location filename="../Project/Project.py" line="7060" /> <source>Creating plugin archives...</source> <translation type="unfinished" /> </message> <message> + <location filename="../Project/Project.py" line="7061" /> + <source>Abort</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../Project/Project.py" line="7064" /> - <source>Abort</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="7067" /> <source>%v/%m Archives</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="7085" /> + <location filename="../Project/Project.py" line="7082" /> <source><p>The file <b>{0}</b> could not be read.</p><p>Reason: {1}</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="7113" /> + <location filename="../Project/Project.py" line="7110" /> <source><p>The file <b>{0}</b> is not ready yet.</p><p>Please rework it and delete the'; initial_list' line of the header.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="7143" /> + <location filename="../Project/Project.py" line="7140" /> <source><p>The eric plugin archive file <b>{0}</b> could not be created.</p><p>Reason: {1}</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="7176" /> + <location filename="../Project/Project.py" line="7173" /> <source><p>The file <b>{0}</b> could not be stored in the archive. Ignoring it.</p><p>Reason: {1}</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="7194" /> + <location filename="../Project/Project.py" line="7191" /> <source><p>The eric plugin archive files were created with some errors.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="7205" /> + <location filename="../Project/Project.py" line="7202" /> <source><p>The eric plugin archive files were created successfully.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="7255" /> + <location filename="../Project/Project.py" line="7252" /> <source><p>The plugin file <b>{0}</b> could not be read.</p><p>Reason: {1}</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="7299" /> + <location filename="../Project/Project.py" line="7296" /> <source><p>The plugin file <b>{0}</b> could not be read.</p> <p>Reason: {1}</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="7391" /> + <location filename="../Project/Project.py" line="7388" /> <source>'Make' is not supported for remote projects. Aborting...</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="7439" /> + <location filename="../Project/Project.py" line="7436" /> <source>The make process did not start.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="7485" /> + <location filename="../Project/Project.py" line="7482" /> <source>The make process crashed.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="7493" /> + <location filename="../Project/Project.py" line="7490" /> <source><p>There are changes that require the configured make target <b>{0}</b> to be rebuilt.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="7498" /> + <location filename="../Project/Project.py" line="7495" /> <source><p>There are changes that require the default make target to be rebuilt.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="7514" /> + <location filename="../Project/Project.py" line="7511" /> <source>The makefile contains errors.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="7944" /> + <location filename="../Project/Project.py" line="7941" /> <source>Interpreter Missing</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="7945" /> + <location filename="../Project/Project.py" line="7942" /> <source>The configured interpreter of the embedded environment does not exist anymore. Shall the environment be upgraded?</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="8026" /> + <location filename="../Project/Project.py" line="8023" /> <source>Open Remote Project</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="8057" /> - <location filename="../Project/Project.py" line="8042" /> + <location filename="../Project/Project.py" line="8054" /> + <location filename="../Project/Project.py" line="8039" /> <source>Save Remote Project</source> <translation type="unfinished" /> </message> @@ -64296,8 +64296,8 @@ <translation type="unfinished" /> </message> <message> - <location filename="../Project/ProjectBrowserModel.py" line="922" /> - <location filename="../Project/ProjectBrowserModel.py" line="900" /> + <location filename="../Project/ProjectBrowserModel.py" line="926" /> + <location filename="../Project/ProjectBrowserModel.py" line="904" /> <location filename="../Project/ProjectBrowserModel.py" line="548" /> <location filename="../Project/ProjectBrowserModel.py" line="418" /> <source>local</source> @@ -68724,7 +68724,7 @@ <context> <name>PythonDisViewer</name> <message> - <location filename="../UI/PythonDisViewer.py" line="61" /> + <location filename="../UI/PythonDisViewer.py" line="62" /> <location filename="../UI/PythonDisViewer.ui" line="0" /> <source>Disassembly</source> <translation type="unfinished" /> @@ -68740,160 +68740,160 @@ <translation type="unfinished" /> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="73" /> + <location filename="../UI/PythonDisViewer.py" line="74" /> <source>Line</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="74" /> - <source>Offset</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../UI/PythonDisViewer.py" line="75" /> - <source>Operation</source> + <source>Offset</source> <translation type="unfinished" /> </message> <message> <location filename="../UI/PythonDisViewer.py" line="76" /> - <source>Parameters</source> + <source>Operation</source> <translation type="unfinished" /> </message> <message> <location filename="../UI/PythonDisViewer.py" line="77" /> + <source>Parameters</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/PythonDisViewer.py" line="78" /> <source>Interpreted Parameters</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="80" /> + <location filename="../UI/PythonDisViewer.py" line="81" /> <source>Key</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="80" /> + <location filename="../UI/PythonDisViewer.py" line="81" /> <source>Value</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="85" /> + <location filename="../UI/PythonDisViewer.py" line="86" /> <source>Show Code Info</source> <translation type="unfinished" /> </message> <message> + <location filename="../UI/PythonDisViewer.py" line="97" /> + <location filename="../UI/PythonDisViewer.py" line="89" /> + <source>Expand All</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/PythonDisViewer.py" line="99" /> + <location filename="../UI/PythonDisViewer.py" line="90" /> + <source>Collapse All</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/PythonDisViewer.py" line="102" /> + <location filename="../UI/PythonDisViewer.py" line="92" /> + <source>Configure...</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../UI/PythonDisViewer.py" line="96" /> - <location filename="../UI/PythonDisViewer.py" line="88" /> - <source>Expand All</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/PythonDisViewer.py" line="98" /> - <location filename="../UI/PythonDisViewer.py" line="89" /> - <source>Collapse All</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/PythonDisViewer.py" line="101" /> - <location filename="../UI/PythonDisViewer.py" line="91" /> - <source>Configure...</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/PythonDisViewer.py" line="95" /> <source>Hide</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="448" /> + <location filename="../UI/PythonDisViewer.py" line="455" /> <source>No editor has been opened.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="459" /> + <location filename="../UI/PythonDisViewer.py" line="466" /> <source>The current editor does not contain any source code.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="465" /> + <location filename="../UI/PythonDisViewer.py" line="472" /> <source>The current editor does not contain Python source code.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="509" /> + <location filename="../UI/PythonDisViewer.py" line="516" /> <source>Disassembly of last traceback</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="672" /> + <location filename="../UI/PythonDisViewer.py" line="694" /> <source>Code Object '{0}'</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="784" /> + <location filename="../UI/PythonDisViewer.py" line="806" /> <source>Name</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="786" /> + <location filename="../UI/PythonDisViewer.py" line="808" /> <source>Filename</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="790" /> - <source>First Line</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/PythonDisViewer.py" line="794" /> - <source>Argument Count</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/PythonDisViewer.py" line="799" /> - <source>Positional-only Arguments</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/PythonDisViewer.py" line="805" /> - <source>Keyword-only Arguments</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/PythonDisViewer.py" line="809" /> - <source>Number of Locals</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../UI/PythonDisViewer.py" line="812" /> - <source>Stack Size</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/PythonDisViewer.py" line="814" /> - <source>Flags</source> + <source>First Line</source> <translation type="unfinished" /> </message> <message> <location filename="../UI/PythonDisViewer.py" line="816" /> + <source>Argument Count</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/PythonDisViewer.py" line="821" /> + <source>Positional-only Arguments</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/PythonDisViewer.py" line="827" /> + <source>Keyword-only Arguments</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/PythonDisViewer.py" line="831" /> + <source>Number of Locals</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/PythonDisViewer.py" line="834" /> + <source>Stack Size</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/PythonDisViewer.py" line="836" /> + <source>Flags</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/PythonDisViewer.py" line="838" /> <source>Constants</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="818" /> + <location filename="../UI/PythonDisViewer.py" line="840" /> <source>Names</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="820" /> + <location filename="../UI/PythonDisViewer.py" line="842" /> <source>Variable Names</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="822" /> + <location filename="../UI/PythonDisViewer.py" line="844" /> <source>Free Variables</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="824" /> + <location filename="../UI/PythonDisViewer.py" line="846" /> <source>Cell Variables</source> <translation type="unfinished" /> </message> @@ -73972,32 +73972,32 @@ <context> <name>SessionFile</name> <message> - <location filename="../Sessions/SessionFile.py" line="247" /> + <location filename="../Sessions/SessionFile.py" line="249" /> <source>Save Remote Session</source> <translation type="unfinished" /> </message> <message> - <location filename="../Sessions/SessionFile.py" line="250" /> + <location filename="../Sessions/SessionFile.py" line="252" /> <source>Save Session</source> <translation type="unfinished" /> </message> <message> - <location filename="../Sessions/SessionFile.py" line="258" /> + <location filename="../Sessions/SessionFile.py" line="260" /> <source><p>The session file <b>{0}</b> could not be written.</p><p>Reason: {1}</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Sessions/SessionFile.py" line="282" /> + <location filename="../Sessions/SessionFile.py" line="284" /> <source>Read Remote Session</source> <translation type="unfinished" /> </message> <message> - <location filename="../Sessions/SessionFile.py" line="285" /> + <location filename="../Sessions/SessionFile.py" line="287" /> <source>Read Session</source> <translation type="unfinished" /> </message> <message> - <location filename="../Sessions/SessionFile.py" line="293" /> + <location filename="../Sessions/SessionFile.py" line="295" /> <source><p>The session file <b>{0}</b> could not be read.</p><p>Reason: {1}</p></source> <translation type="unfinished" /> </message> @@ -94103,1052 +94103,1052 @@ <context> <name>ViewManager</name> <message> - <location filename="../ViewManager/ViewManager.py" line="615" /> + <location filename="../ViewManager/ViewManager.py" line="625" /> <source>New</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="617" /> + <location filename="../ViewManager/ViewManager.py" line="627" /> <source>&New</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="619" /> - <source>Ctrl+N</source> - <comment>File|New</comment> - <translation type="unfinished" /> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="626" /> - <source>Open an empty editor window</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="629" /> + <source>Ctrl+N</source> + <comment>File|New</comment> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="636" /> + <source>Open an empty editor window</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="639" /> <source><b>New</b><p>An empty editor window will be created.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="638" /> + <location filename="../ViewManager/ViewManager.py" line="648" /> <source>Open</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="640" /> + <location filename="../ViewManager/ViewManager.py" line="650" /> <source>&Open...</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="642" /> - <source>Ctrl+O</source> - <comment>File|Open</comment> - <translation type="unfinished" /> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="649" /> - <source>Open a file</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="652" /> + <source>Ctrl+O</source> + <comment>File|Open</comment> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="659" /> + <source>Open a file</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="662" /> <source><b>Open a file</b><p>You will be asked for the name of a file to be opened in an editor window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="663" /> + <location filename="../ViewManager/ViewManager.py" line="673" /> <source>Open (Remote)</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="665" /> - <source>Open (Remote)...</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="672" /> - <source>Open a remote file</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="675" /> + <source>Open (Remote)...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="682" /> + <source>Open a remote file</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="685" /> <source><b>Open a remote file</b><p>You will be asked for the name of a remote file to be opened in an editor window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="689" /> - <location filename="../ViewManager/ViewManager.py" line="687" /> - <source>Reload</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="696" /> - <source>Reload the current file</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="699" /> + <location filename="../ViewManager/ViewManager.py" line="697" /> + <source>Reload</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="706" /> + <source>Reload the current file</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="709" /> <source><b>Reload</b><p>Reload the contents of current editor window. If the editor contents was modified, a warning will be issued.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="712" /> + <location filename="../ViewManager/ViewManager.py" line="722" /> <source>Close</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="714" /> + <location filename="../ViewManager/ViewManager.py" line="724" /> <source>&Close</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="716" /> - <source>Ctrl+W</source> - <comment>File|Close</comment> - <translation type="unfinished" /> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="723" /> - <source>Close the current window</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="726" /> - <source><b>Close Window</b><p>Close the current window.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="735" /> - <source>Close All</source> + <source>Ctrl+W</source> + <comment>File|Close</comment> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="733" /> + <source>Close the current window</source> <translation type="unfinished" /> </message> <message> <location filename="../ViewManager/ViewManager.py" line="736" /> - <source>Clos&e All</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="743" /> - <source>Close all editor windows</source> + <source><b>Close Window</b><p>Close the current window.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="745" /> + <source>Close All</source> <translation type="unfinished" /> </message> <message> <location filename="../ViewManager/ViewManager.py" line="746" /> + <source>Clos&e All</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="753" /> + <source>Close all editor windows</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="756" /> <source><b>Close All Windows</b><p>Close all editor windows.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="759" /> + <location filename="../ViewManager/ViewManager.py" line="769" /> <source>Save</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="761" /> + <location filename="../ViewManager/ViewManager.py" line="771" /> <source>&Save</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="316" /> - <location filename="../ViewManager/ViewManager.py" line="763" /> + <location filename="../ViewManager/ViewManager.py" line="773" /> <source>Ctrl+S</source> <comment>File|Save</comment> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="770" /> + <location filename="../ViewManager/ViewManager.py" line="780" /> <source>Save the current file</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="773" /> - <source><b>Save File</b><p>Save the contents of current editor window.</p></source> - <translation type="unfinished" /> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="783" /> + <source><b>Save File</b><p>Save the contents of current editor window.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="793" /> <source>Save as</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="785" /> + <location filename="../ViewManager/ViewManager.py" line="795" /> <source>Save &as...</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="787" /> + <location filename="../ViewManager/ViewManager.py" line="797" /> <source>Shift+Ctrl+S</source> <comment>File|Save As</comment> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="796" /> + <location filename="../ViewManager/ViewManager.py" line="806" /> <source>Save the current file to a new one</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="801" /> + <location filename="../ViewManager/ViewManager.py" line="811" /> <source><b>Save File as</b><p>Save the contents of the current editor window to a new file. The file can be entered in a file selection dialog.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="812" /> + <location filename="../ViewManager/ViewManager.py" line="822" /> <source>Save as (Remote)</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="814" /> + <location filename="../ViewManager/ViewManager.py" line="824" /> <source>Save as (Remote)...</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="821" /> + <location filename="../ViewManager/ViewManager.py" line="831" /> <source>Save the current file to a new one on an eric-ide server</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="827" /> + <location filename="../ViewManager/ViewManager.py" line="837" /> <source><b>Save File as (Remote)</b><p>Save the contents of the current editor window to a new file on the connected eric-ide server. The file can be entered in a file selection dialog.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="839" /> + <location filename="../ViewManager/ViewManager.py" line="849" /> <source>Save Copy</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="841" /> - <source>Save &Copy...</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="848" /> - <source>Save a copy of the current file</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="851" /> + <source>Save &Copy...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="858" /> + <source>Save a copy of the current file</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="861" /> <source><b>Save Copy</b><p>Save a copy of the contents of current editor window. The file can be entered in a file selection dialog.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="862" /> + <location filename="../ViewManager/ViewManager.py" line="872" /> <source>Save all</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="864" /> - <source>Save a&ll</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="871" /> - <source>Save all files</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="874" /> + <source>Save a&ll</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="881" /> + <source>Save all files</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="884" /> <source><b>Save All Files</b><p>Save the contents of all editor windows.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="886" /> + <location filename="../ViewManager/ViewManager.py" line="896" /> <source>Print</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="888" /> + <location filename="../ViewManager/ViewManager.py" line="898" /> <source>&Print</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="890" /> - <source>Ctrl+P</source> - <comment>File|Print</comment> - <translation type="unfinished" /> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="897" /> - <source>Print the current file</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="900" /> + <source>Ctrl+P</source> + <comment>File|Print</comment> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="907" /> + <source>Print the current file</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="910" /> <source><b>Print File</b><p>Print the contents of current editor window.</p></source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="780" /> - <location filename="../ViewManager/ViewManager.py" line="913" /> - <location filename="../ViewManager/ViewManager.py" line="911" /> + <location filename="../ViewManager/ViewManager.py" line="923" /> + <location filename="../ViewManager/ViewManager.py" line="921" /> <source>Print Preview</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="920" /> + <location filename="../ViewManager/ViewManager.py" line="930" /> <source>Print preview of the current file</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="925" /> + <location filename="../ViewManager/ViewManager.py" line="935" /> <source><b>Print Preview</b><p>Print preview of the current editor window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="936" /> + <location filename="../ViewManager/ViewManager.py" line="946" /> <source>Find File</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="938" /> + <location filename="../ViewManager/ViewManager.py" line="948" /> <source>Find &File...</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="940" /> + <location filename="../ViewManager/ViewManager.py" line="950" /> <source>Alt+Ctrl+F</source> <comment>File|Find File</comment> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="949" /> + <location filename="../ViewManager/ViewManager.py" line="959" /> <source>Search for a file by entering a search pattern</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="954" /> + <location filename="../ViewManager/ViewManager.py" line="964" /> <source><b>Find File</b><p>This searches for a file by entering a search pattern.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="970" /> + <location filename="../ViewManager/ViewManager.py" line="980" /> <source>&File</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="972" /> + <location filename="../ViewManager/ViewManager.py" line="982" /> <source>Open &Recent Files</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="976" /> + <location filename="../ViewManager/ViewManager.py" line="986" /> <source>Open &Bookmarked Files</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1024" /> - <location filename="../ViewManager/ViewManager.py" line="1022" /> + <location filename="../ViewManager/ViewManager.py" line="1034" /> + <location filename="../ViewManager/ViewManager.py" line="1032" /> <source>File</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1051" /> + <location filename="../ViewManager/ViewManager.py" line="1061" /> <source>Export as</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1074" /> + <location filename="../ViewManager/ViewManager.py" line="1084" /> <source>Undo</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1076" /> + <location filename="../ViewManager/ViewManager.py" line="1086" /> <source>&Undo</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1078" /> + <location filename="../ViewManager/ViewManager.py" line="1088" /> <source>Ctrl+Z</source> <comment>Edit|Undo</comment> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1081" /> + <location filename="../ViewManager/ViewManager.py" line="1091" /> <source>Alt+Backspace</source> <comment>Edit|Undo</comment> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1087" /> + <location filename="../ViewManager/ViewManager.py" line="1097" /> <source>Undo the last change</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1090" /> - <source><b>Undo</b><p>Undo the last change done in the current editor.</p></source> - <translation type="unfinished" /> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="1100" /> + <source><b>Undo</b><p>Undo the last change done in the current editor.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="1110" /> <source>Redo</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1102" /> + <location filename="../ViewManager/ViewManager.py" line="1112" /> <source>&Redo</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1104" /> - <source>Ctrl+Shift+Z</source> - <comment>Edit|Redo</comment> - <translation type="unfinished" /> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="1111" /> - <source>Redo the last change</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="1114" /> + <source>Ctrl+Shift+Z</source> + <comment>Edit|Redo</comment> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="1121" /> + <source>Redo the last change</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="1124" /> <source><b>Redo</b><p>Redo the last change done in the current editor.</p></source> <translation type="unfinished" /> </message> <message> + <location filename="../ViewManager/ViewManager.py" line="1144" /> <location filename="../ViewManager/ViewManager.py" line="1134" /> - <location filename="../ViewManager/ViewManager.py" line="1124" /> <source>Revert to last saved state</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1125" /> + <location filename="../ViewManager/ViewManager.py" line="1135" /> <source>Re&vert to last saved state</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1127" /> - <source>Ctrl+Y</source> - <comment>Edit|Revert</comment> - <translation type="unfinished" /> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="1137" /> + <source>Ctrl+Y</source> + <comment>Edit|Revert</comment> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="1147" /> <source><b>Revert to last saved state</b><p>Undo all changes up to the last saved state of the current editor.</p></source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="343" /> - <location filename="../ViewManager/ViewManager.py" line="1150" /> + <location filename="../ViewManager/ViewManager.py" line="1160" /> <source>Cut</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="345" /> - <location filename="../ViewManager/ViewManager.py" line="1152" /> + <location filename="../ViewManager/ViewManager.py" line="1162" /> <source>Cu&t</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="347" /> - <location filename="../ViewManager/ViewManager.py" line="1154" /> + <location filename="../ViewManager/ViewManager.py" line="1164" /> <source>Ctrl+X</source> <comment>Edit|Cut</comment> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="350" /> - <location filename="../ViewManager/ViewManager.py" line="1157" /> + <location filename="../ViewManager/ViewManager.py" line="1167" /> <source>Shift+Del</source> <comment>Edit|Cut</comment> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="356" /> - <location filename="../ViewManager/ViewManager.py" line="1163" /> + <location filename="../ViewManager/ViewManager.py" line="1173" /> <source>Cut the selection</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1166" /> + <location filename="../ViewManager/ViewManager.py" line="1176" /> <source><b>Cut</b><p>Cut the selected text of the current editor to the clipboard.</p></source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="365" /> - <location filename="../ViewManager/ViewManager.py" line="1177" /> + <location filename="../ViewManager/ViewManager.py" line="1187" /> <source>Copy</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="367" /> - <location filename="../ViewManager/ViewManager.py" line="1179" /> + <location filename="../ViewManager/ViewManager.py" line="1189" /> <source>&Copy</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="369" /> - <location filename="../ViewManager/ViewManager.py" line="1181" /> + <location filename="../ViewManager/ViewManager.py" line="1191" /> <source>Ctrl+C</source> <comment>Edit|Copy</comment> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="372" /> - <location filename="../ViewManager/ViewManager.py" line="1184" /> + <location filename="../ViewManager/ViewManager.py" line="1194" /> <source>Ctrl+Ins</source> <comment>Edit|Copy</comment> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="378" /> - <location filename="../ViewManager/ViewManager.py" line="1190" /> + <location filename="../ViewManager/ViewManager.py" line="1200" /> <source>Copy the selection</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1193" /> + <location filename="../ViewManager/ViewManager.py" line="1203" /> <source><b>Copy</b><p>Copy the selected text of the current editor to the clipboard.</p></source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="387" /> - <location filename="../ViewManager/ViewManager.py" line="1204" /> + <location filename="../ViewManager/ViewManager.py" line="1214" /> <source>Paste</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="389" /> - <location filename="../ViewManager/ViewManager.py" line="1206" /> + <location filename="../ViewManager/ViewManager.py" line="1216" /> <source>&Paste</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="391" /> - <location filename="../ViewManager/ViewManager.py" line="1208" /> + <location filename="../ViewManager/ViewManager.py" line="1218" /> <source>Ctrl+V</source> <comment>Edit|Paste</comment> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="394" /> - <location filename="../ViewManager/ViewManager.py" line="1211" /> + <location filename="../ViewManager/ViewManager.py" line="1221" /> <source>Shift+Ins</source> <comment>Edit|Paste</comment> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="400" /> - <location filename="../ViewManager/ViewManager.py" line="1217" /> + <location filename="../ViewManager/ViewManager.py" line="1227" /> <source>Paste the last cut/copied text</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1220" /> + <location filename="../ViewManager/ViewManager.py" line="1230" /> <source><b>Paste</b><p>Paste the last cut/copied text from the clipboard to the current editor.</p></source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="414" /> <location filename="../QScintilla/ShellWindow.py" line="412" /> - <location filename="../ViewManager/ViewManager.py" line="1233" /> - <location filename="../ViewManager/ViewManager.py" line="1231" /> + <location filename="../ViewManager/ViewManager.py" line="1243" /> + <location filename="../ViewManager/ViewManager.py" line="1241" /> <source>Clear</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="416" /> - <location filename="../ViewManager/ViewManager.py" line="1235" /> + <location filename="../ViewManager/ViewManager.py" line="1245" /> <source>Alt+Shift+C</source> <comment>Edit|Clear</comment> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="423" /> - <location filename="../ViewManager/ViewManager.py" line="1242" /> + <location filename="../ViewManager/ViewManager.py" line="1252" /> <source>Clear all text</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1245" /> + <location filename="../ViewManager/ViewManager.py" line="1255" /> <source><b>Clear</b><p>Delete all text of the current editor.</p></source> <translation type="unfinished" /> </message> <message> + <location filename="../ViewManager/ViewManager.py" line="1274" /> + <location filename="../ViewManager/ViewManager.py" line="1265" /> <location filename="../ViewManager/ViewManager.py" line="1264" /> - <location filename="../ViewManager/ViewManager.py" line="1255" /> - <location filename="../ViewManager/ViewManager.py" line="1254" /> <source>Join Lines</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1257" /> - <source>Ctrl+J</source> - <comment>Edit|Join Lines</comment> - <translation type="unfinished" /> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="1267" /> - <source><b>Join Lines</b><p>Join the current and the next lines.</p></source> + <source>Ctrl+J</source> + <comment>Edit|Join Lines</comment> <translation type="unfinished" /> </message> <message> <location filename="../ViewManager/ViewManager.py" line="1277" /> + <source><b>Join Lines</b><p>Join the current and the next lines.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="1287" /> <source>Indent</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1279" /> + <location filename="../ViewManager/ViewManager.py" line="1289" /> <source>&Indent</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1281" /> - <source>Ctrl+I</source> - <comment>Edit|Indent</comment> - <translation type="unfinished" /> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="1288" /> - <source>Indent line</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="1291" /> + <source>Ctrl+I</source> + <comment>Edit|Indent</comment> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="1298" /> + <source>Indent line</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="1301" /> <source><b>Indent</b><p>Indents the current line or the lines of the selection by one level.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1302" /> + <location filename="../ViewManager/ViewManager.py" line="1312" /> <source>Unindent</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1304" /> + <location filename="../ViewManager/ViewManager.py" line="1314" /> <source>U&nindent</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1306" /> + <location filename="../ViewManager/ViewManager.py" line="1316" /> <source>Ctrl+Shift+I</source> <comment>Edit|Unindent</comment> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1315" /> + <location filename="../ViewManager/ViewManager.py" line="1325" /> <source>Unindent line</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1318" /> + <location filename="../ViewManager/ViewManager.py" line="1328" /> <source><b>Unindent</b><p>Unindents the current line or the lines of the selection by one level.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1331" /> - <location filename="../ViewManager/ViewManager.py" line="1329" /> - <source>Smart indent</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="1338" /> - <source>Smart indent Line or Selection</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="1341" /> + <location filename="../ViewManager/ViewManager.py" line="1339" /> + <source>Smart indent</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="1348" /> + <source>Smart indent Line or Selection</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="1351" /> <source><b>Smart indent</b><p>Indents the current line or the lines of the current selection smartly.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1352" /> + <location filename="../ViewManager/ViewManager.py" line="1362" /> <source>Comment</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1354" /> + <location filename="../ViewManager/ViewManager.py" line="1364" /> <source>C&omment</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1356" /> - <source>Ctrl+M</source> - <comment>Edit|Comment</comment> - <translation type="unfinished" /> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="1363" /> - <source>Comment Line or Selection</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="1366" /> + <source>Ctrl+M</source> + <comment>Edit|Comment</comment> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="1373" /> + <source>Comment Line or Selection</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="1376" /> <source><b>Comment</b><p>Comments the current line or the lines of the current selection.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1377" /> + <location filename="../ViewManager/ViewManager.py" line="1387" /> <source>Uncomment</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1379" /> + <location filename="../ViewManager/ViewManager.py" line="1389" /> <source>Unco&mment</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1381" /> + <location filename="../ViewManager/ViewManager.py" line="1391" /> <source>Ctrl+Shift+M</source> <comment>Edit|Uncomment</comment> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1390" /> + <location filename="../ViewManager/ViewManager.py" line="1400" /> <source>Uncomment Line or Selection</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1393" /> + <location filename="../ViewManager/ViewManager.py" line="1403" /> <source><b>Uncomment</b><p>Uncomments the current line or the lines of the current selection.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1406" /> - <location filename="../ViewManager/ViewManager.py" line="1404" /> + <location filename="../ViewManager/ViewManager.py" line="1416" /> + <location filename="../ViewManager/ViewManager.py" line="1414" /> <source>Toggle Comment</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1408" /> + <location filename="../ViewManager/ViewManager.py" line="1418" /> <source>Ctrl+#</source> <comment>Edit|Toggle Comment</comment> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1417" /> + <location filename="../ViewManager/ViewManager.py" line="1427" /> <source>Toggle the comment of the current line, selection or comment block</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1423" /> + <location filename="../ViewManager/ViewManager.py" line="1433" /> <source><b>Toggle Comment</b><p>If the current line does not start with a block comment, the current line or selection is commented. If it is already commented, this comment block is uncommented. </p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1436" /> - <location filename="../ViewManager/ViewManager.py" line="1435" /> + <location filename="../ViewManager/ViewManager.py" line="1446" /> + <location filename="../ViewManager/ViewManager.py" line="1445" /> <source>Stream Comment</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1443" /> + <location filename="../ViewManager/ViewManager.py" line="1453" /> <source>Stream Comment Line or Selection</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1448" /> + <location filename="../ViewManager/ViewManager.py" line="1458" /> <source><b>Stream Comment</b><p>Stream comments the current line or the current selection.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1460" /> - <location filename="../ViewManager/ViewManager.py" line="1459" /> - <source>Box Comment</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="1467" /> - <source>Box Comment Line or Selection</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="1470" /> + <location filename="../ViewManager/ViewManager.py" line="1469" /> + <source>Box Comment</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="1477" /> + <source>Box Comment Line or Selection</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="1480" /> <source><b>Box Comment</b><p>Box comments the current line or the lines of the current selection.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1481" /> + <location filename="../ViewManager/ViewManager.py" line="1491" /> <source>Select to brace</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1482" /> + <location filename="../ViewManager/ViewManager.py" line="1492" /> <source>Select to &brace</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1484" /> + <location filename="../ViewManager/ViewManager.py" line="1494" /> <source>Ctrl+E</source> <comment>Edit|Select to brace</comment> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1493" /> + <location filename="../ViewManager/ViewManager.py" line="1503" /> <source>Select text to the matching brace</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1498" /> + <location filename="../ViewManager/ViewManager.py" line="1508" /> <source><b>Select to brace</b><p>Select text of the current editor to the matching brace.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1509" /> + <location filename="../ViewManager/ViewManager.py" line="1519" /> <source>Select all</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1511" /> + <location filename="../ViewManager/ViewManager.py" line="1521" /> <source>&Select all</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1513" /> - <source>Ctrl+A</source> - <comment>Edit|Select all</comment> - <translation type="unfinished" /> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="1520" /> - <source>Select all text</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="1523" /> - <source><b>Select All</b><p>Select all text of the current editor.</p></source> + <source>Ctrl+A</source> + <comment>Edit|Select all</comment> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="1530" /> + <source>Select all text</source> <translation type="unfinished" /> </message> <message> <location filename="../ViewManager/ViewManager.py" line="1533" /> + <source><b>Select All</b><p>Select all text of the current editor.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="1543" /> <source>Deselect all</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1534" /> + <location filename="../ViewManager/ViewManager.py" line="1544" /> <source>&Deselect all</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1536" /> + <location filename="../ViewManager/ViewManager.py" line="1546" /> <source>Alt+Ctrl+A</source> <comment>Edit|Deselect all</comment> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1545" /> + <location filename="../ViewManager/ViewManager.py" line="1555" /> <source>Deselect all text</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1548" /> + <location filename="../ViewManager/ViewManager.py" line="1558" /> <source><b>Deselect All</b><p>Deselect all text of the current editor.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1566" /> - <location filename="../ViewManager/ViewManager.py" line="1559" /> - <location filename="../ViewManager/ViewManager.py" line="1558" /> + <location filename="../ViewManager/ViewManager.py" line="1576" /> + <location filename="../ViewManager/ViewManager.py" line="1569" /> + <location filename="../ViewManager/ViewManager.py" line="1568" /> <source>Convert Line End Characters</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1569" /> + <location filename="../ViewManager/ViewManager.py" line="1579" /> <source><b>Convert Line End Characters</b><p>Convert the line end characters to the currently set type.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1588" /> - <location filename="../ViewManager/ViewManager.py" line="1581" /> - <location filename="../ViewManager/ViewManager.py" line="1580" /> + <location filename="../ViewManager/ViewManager.py" line="1598" /> + <location filename="../ViewManager/ViewManager.py" line="1591" /> + <location filename="../ViewManager/ViewManager.py" line="1590" /> <source>Convert Tabs to Spaces</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1591" /> + <location filename="../ViewManager/ViewManager.py" line="1601" /> <source><b>Convert Tabs to Spaces</b><p>Convert tabulators to the configured amount of space characters.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1610" /> - <location filename="../ViewManager/ViewManager.py" line="1603" /> - <location filename="../ViewManager/ViewManager.py" line="1602" /> + <location filename="../ViewManager/ViewManager.py" line="1620" /> + <location filename="../ViewManager/ViewManager.py" line="1613" /> + <location filename="../ViewManager/ViewManager.py" line="1612" /> <source>Shorten empty lines</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1613" /> + <location filename="../ViewManager/ViewManager.py" line="1623" /> <source><b>Shorten empty lines</b><p>Shorten lines consisting solely of whitespace characters.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3497" /> - <location filename="../ViewManager/ViewManager.py" line="1624" /> + <location filename="../ViewManager/ViewManager.py" line="3507" /> + <location filename="../ViewManager/ViewManager.py" line="1634" /> <source>Complete</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1625" /> + <location filename="../ViewManager/ViewManager.py" line="1635" /> <source>&Complete</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1627" /> - <source>Ctrl+Space</source> - <comment>Edit|Complete</comment> - <translation type="unfinished" /> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="1634" /> - <source>Complete current word</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="1637" /> + <source>Ctrl+Space</source> + <comment>Edit|Complete</comment> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="1644" /> + <source>Complete current word</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="1647" /> <source><b>Complete</b><p>Performs a completion of the word containing the cursor.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1649" /> - <location filename="../ViewManager/ViewManager.py" line="1648" /> + <location filename="../ViewManager/ViewManager.py" line="1659" /> + <location filename="../ViewManager/ViewManager.py" line="1658" /> <source>Complete from Document</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1651" /> + <location filename="../ViewManager/ViewManager.py" line="1661" /> <source>Ctrl+Shift+Space</source> <comment>Edit|Complete from Document</comment> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1660" /> + <location filename="../ViewManager/ViewManager.py" line="1670" /> <source>Complete current word from Document</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1665" /> + <location filename="../ViewManager/ViewManager.py" line="1675" /> <source><b>Complete from Document</b><p>Performs a completion from document of the word containing the cursor.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1677" /> - <location filename="../ViewManager/ViewManager.py" line="1676" /> + <location filename="../ViewManager/ViewManager.py" line="1687" /> + <location filename="../ViewManager/ViewManager.py" line="1686" /> <source>Complete from APIs</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1679" /> + <location filename="../ViewManager/ViewManager.py" line="1689" /> <source>Ctrl+Alt+Space</source> <comment>Edit|Complete from APIs</comment> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1688" /> + <location filename="../ViewManager/ViewManager.py" line="1698" /> <source>Complete current word from APIs</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1691" /> + <location filename="../ViewManager/ViewManager.py" line="1701" /> <source><b>Complete from APIs</b><p>Performs a completion from APIs of the word containing the cursor.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1705" /> - <location filename="../ViewManager/ViewManager.py" line="1702" /> + <location filename="../ViewManager/ViewManager.py" line="1715" /> + <location filename="../ViewManager/ViewManager.py" line="1712" /> <source>Complete from Document and APIs</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1709" /> + <location filename="../ViewManager/ViewManager.py" line="1719" /> <source>Alt+Shift+Space</source> <comment>Edit|Complete from Document and APIs</comment> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1720" /> + <location filename="../ViewManager/ViewManager.py" line="1730" /> <source>Complete current word from Document and APIs</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1725" /> + <location filename="../ViewManager/ViewManager.py" line="1735" /> <source><b>Complete from Document and APIs</b><p>Performs a completion from document and APIs of the word containing the cursor.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1736" /> + <location filename="../ViewManager/ViewManager.py" line="1746" /> <source>Calltip</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1737" /> + <location filename="../ViewManager/ViewManager.py" line="1747" /> <source>&Calltip</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1739" /> + <location filename="../ViewManager/ViewManager.py" line="1749" /> <source>Meta+Alt+Space</source> <comment>Edit|Calltip</comment> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1748" /> + <location filename="../ViewManager/ViewManager.py" line="1758" /> <source>Show Calltips</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1751" /> + <location filename="../ViewManager/ViewManager.py" line="1761" /> <source><b>Calltip</b><p>Show calltips based on the characters immediately to the left of the cursor.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1764" /> - <location filename="../ViewManager/ViewManager.py" line="1762" /> + <location filename="../ViewManager/ViewManager.py" line="1774" /> + <location filename="../ViewManager/ViewManager.py" line="1772" /> <source>Code Info</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1766" /> + <location filename="../ViewManager/ViewManager.py" line="1776" /> <source>Ctrl+Alt+I</source> <comment>Edit|Code Info</comment> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1775" /> + <location filename="../ViewManager/ViewManager.py" line="1785" /> <source>Show Code Info</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1778" /> + <location filename="../ViewManager/ViewManager.py" line="1788" /> <source><b>Code Info</b><p>Show code information based on the cursor position.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1789" /> - <location filename="../ViewManager/ViewManager.py" line="1788" /> + <location filename="../ViewManager/ViewManager.py" line="1799" /> + <location filename="../ViewManager/ViewManager.py" line="1798" /> <source>Sort</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1791" /> + <location filename="../ViewManager/ViewManager.py" line="1801" /> <source>Ctrl+Alt+S</source> <comment>Edit|Sort</comment> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1798" /> + <location filename="../ViewManager/ViewManager.py" line="1808" /> <source>Sort the lines containing the rectangular selection</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1803" /> + <location filename="../ViewManager/ViewManager.py" line="1813" /> <source><b>Sort</b><p>Sort the lines spanned by a rectangular selection based on the selection ignoring leading and trailing whitespace.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1815" /> - <location filename="../ViewManager/ViewManager.py" line="1814" /> + <location filename="../ViewManager/ViewManager.py" line="1825" /> + <location filename="../ViewManager/ViewManager.py" line="1824" /> <source>Generate Docstring</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1817" /> + <location filename="../ViewManager/ViewManager.py" line="1827" /> <source>Ctrl+Alt+D</source> <comment>Edit|Generate Docstring</comment> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1826" /> + <location filename="../ViewManager/ViewManager.py" line="1836" /> <source>Generate a docstring for the current function/method</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1831" /> + <location filename="../ViewManager/ViewManager.py" line="1841" /> <source><b>Generate Docstring</b><p>Generate a docstring for the current function/method if the cursor is placed on the line starting the function definition or on the line thereafter. The docstring is inserted at the appropriate position and the cursor is placed at the end of the description line.</p></source> <translation type="unfinished" /> </message> @@ -95157,22 +95157,22 @@ <location filename="../QScintilla/MiniEditor.py" line="929" /> <location filename="../QScintilla/ShellWindow.py" line="579" /> <location filename="../QScintilla/ShellWindow.py" line="578" /> - <location filename="../ViewManager/ViewManager.py" line="1858" /> - <location filename="../ViewManager/ViewManager.py" line="1857" /> + <location filename="../ViewManager/ViewManager.py" line="1868" /> + <location filename="../ViewManager/ViewManager.py" line="1867" /> <source>Move left one character</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="931" /> <location filename="../QScintilla/ShellWindow.py" line="580" /> - <location filename="../ViewManager/ViewManager.py" line="1859" /> + <location filename="../ViewManager/ViewManager.py" line="1869" /> <source>Left</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="939" /> <location filename="../QScintilla/ShellWindow.py" line="588" /> - <location filename="../ViewManager/ViewManager.py" line="1867" /> + <location filename="../ViewManager/ViewManager.py" line="1877" /> <source>Meta+B</source> <translation type="unfinished" /> </message> @@ -95181,22 +95181,22 @@ <location filename="../QScintilla/MiniEditor.py" line="945" /> <location filename="../QScintilla/ShellWindow.py" line="595" /> <location filename="../QScintilla/ShellWindow.py" line="594" /> - <location filename="../ViewManager/ViewManager.py" line="1874" /> - <location filename="../ViewManager/ViewManager.py" line="1873" /> + <location filename="../ViewManager/ViewManager.py" line="1884" /> + <location filename="../ViewManager/ViewManager.py" line="1883" /> <source>Move right one character</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="947" /> <location filename="../QScintilla/ShellWindow.py" line="596" /> - <location filename="../ViewManager/ViewManager.py" line="1875" /> + <location filename="../ViewManager/ViewManager.py" line="1885" /> <source>Right</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="954" /> <location filename="../QScintilla/ShellWindow.py" line="603" /> - <location filename="../ViewManager/ViewManager.py" line="1882" /> + <location filename="../ViewManager/ViewManager.py" line="1892" /> <source>Meta+F</source> <translation type="unfinished" /> </message> @@ -95205,22 +95205,22 @@ <location filename="../QScintilla/MiniEditor.py" line="961" /> <location filename="../QScintilla/ShellWindow.py" line="687" /> <location filename="../QScintilla/ShellWindow.py" line="686" /> - <location filename="../ViewManager/ViewManager.py" line="1890" /> - <location filename="../ViewManager/ViewManager.py" line="1889" /> + <location filename="../ViewManager/ViewManager.py" line="1900" /> + <location filename="../ViewManager/ViewManager.py" line="1899" /> <source>Move up one line</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="963" /> <location filename="../QScintilla/ShellWindow.py" line="688" /> - <location filename="../ViewManager/ViewManager.py" line="1891" /> + <location filename="../ViewManager/ViewManager.py" line="1901" /> <source>Up</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="970" /> <location filename="../QScintilla/ShellWindow.py" line="695" /> - <location filename="../ViewManager/ViewManager.py" line="1898" /> + <location filename="../ViewManager/ViewManager.py" line="1908" /> <source>Meta+P</source> <translation type="unfinished" /> </message> @@ -95229,30 +95229,30 @@ <location filename="../QScintilla/MiniEditor.py" line="977" /> <location filename="../QScintilla/ShellWindow.py" line="703" /> <location filename="../QScintilla/ShellWindow.py" line="702" /> - <location filename="../ViewManager/ViewManager.py" line="1906" /> - <location filename="../ViewManager/ViewManager.py" line="1905" /> + <location filename="../ViewManager/ViewManager.py" line="1916" /> + <location filename="../ViewManager/ViewManager.py" line="1915" /> <source>Move down one line</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="979" /> <location filename="../QScintilla/ShellWindow.py" line="704" /> - <location filename="../ViewManager/ViewManager.py" line="1907" /> + <location filename="../ViewManager/ViewManager.py" line="1917" /> <source>Down</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="986" /> <location filename="../QScintilla/ShellWindow.py" line="711" /> - <location filename="../ViewManager/ViewManager.py" line="1914" /> + <location filename="../ViewManager/ViewManager.py" line="1924" /> <source>Meta+N</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="994" /> <location filename="../QScintilla/MiniEditor.py" line="993" /> - <location filename="../ViewManager/ViewManager.py" line="1922" /> - <location filename="../ViewManager/ViewManager.py" line="1921" /> + <location filename="../ViewManager/ViewManager.py" line="1932" /> + <location filename="../ViewManager/ViewManager.py" line="1931" /> <source>Move left one word part</source> <translation type="unfinished" /> </message> @@ -95260,16 +95260,16 @@ <location filename="../QScintilla/MiniEditor.py" line="1034" /> <location filename="../QScintilla/MiniEditor.py" line="1002" /> <location filename="../QScintilla/ShellWindow.py" line="619" /> - <location filename="../ViewManager/ViewManager.py" line="1962" /> - <location filename="../ViewManager/ViewManager.py" line="1930" /> + <location filename="../ViewManager/ViewManager.py" line="1972" /> + <location filename="../ViewManager/ViewManager.py" line="1940" /> <source>Alt+Left</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1010" /> <location filename="../QScintilla/MiniEditor.py" line="1009" /> - <location filename="../ViewManager/ViewManager.py" line="1938" /> - <location filename="../ViewManager/ViewManager.py" line="1937" /> + <location filename="../ViewManager/ViewManager.py" line="1948" /> + <location filename="../ViewManager/ViewManager.py" line="1947" /> <source>Move right one word part</source> <translation type="unfinished" /> </message> @@ -95277,8 +95277,8 @@ <location filename="../QScintilla/MiniEditor.py" line="2164" /> <location filename="../QScintilla/MiniEditor.py" line="1054" /> <location filename="../QScintilla/MiniEditor.py" line="1018" /> - <location filename="../ViewManager/ViewManager.py" line="3071" /> - <location filename="../ViewManager/ViewManager.py" line="1946" /> + <location filename="../ViewManager/ViewManager.py" line="3081" /> + <location filename="../ViewManager/ViewManager.py" line="1956" /> <source>Alt+Right</source> <translation type="unfinished" /> </message> @@ -95287,8 +95287,8 @@ <location filename="../QScintilla/MiniEditor.py" line="1025" /> <location filename="../QScintilla/ShellWindow.py" line="611" /> <location filename="../QScintilla/ShellWindow.py" line="610" /> - <location filename="../ViewManager/ViewManager.py" line="1954" /> - <location filename="../ViewManager/ViewManager.py" line="1953" /> + <location filename="../ViewManager/ViewManager.py" line="1964" /> + <location filename="../ViewManager/ViewManager.py" line="1963" /> <source>Move left one word</source> <translation type="unfinished" /> </message> @@ -95296,8 +95296,8 @@ <location filename="../QScintilla/MiniEditor.py" line="1094" /> <location filename="../QScintilla/MiniEditor.py" line="1038" /> <location filename="../QScintilla/ShellWindow.py" line="623" /> - <location filename="../ViewManager/ViewManager.py" line="2018" /> - <location filename="../ViewManager/ViewManager.py" line="1966" /> + <location filename="../ViewManager/ViewManager.py" line="2028" /> + <location filename="../ViewManager/ViewManager.py" line="1976" /> <source>Ctrl+Left</source> <translation type="unfinished" /> </message> @@ -95306,8 +95306,8 @@ <location filename="../QScintilla/MiniEditor.py" line="1045" /> <location filename="../QScintilla/ShellWindow.py" line="631" /> <location filename="../QScintilla/ShellWindow.py" line="630" /> - <location filename="../ViewManager/ViewManager.py" line="1974" /> - <location filename="../ViewManager/ViewManager.py" line="1973" /> + <location filename="../ViewManager/ViewManager.py" line="1984" /> + <location filename="../ViewManager/ViewManager.py" line="1983" /> <source>Move right one word</source> <translation type="unfinished" /> </message> @@ -95315,8 +95315,8 @@ <location filename="../QScintilla/MiniEditor.py" line="1848" /> <location filename="../QScintilla/MiniEditor.py" line="1058" /> <location filename="../QScintilla/ShellWindow.py" line="639" /> - <location filename="../ViewManager/ViewManager.py" line="2755" /> - <location filename="../ViewManager/ViewManager.py" line="1982" /> + <location filename="../ViewManager/ViewManager.py" line="2765" /> + <location filename="../ViewManager/ViewManager.py" line="1992" /> <source>Ctrl+Right</source> <translation type="unfinished" /> </message> @@ -95325,8 +95325,8 @@ <location filename="../QScintilla/MiniEditor.py" line="1065" /> <location filename="../QScintilla/ShellWindow.py" line="649" /> <location filename="../QScintilla/ShellWindow.py" line="646" /> - <location filename="../ViewManager/ViewManager.py" line="1992" /> - <location filename="../ViewManager/ViewManager.py" line="1989" /> + <location filename="../ViewManager/ViewManager.py" line="2002" /> + <location filename="../ViewManager/ViewManager.py" line="1999" /> <source>Move to first visible character in document line</source> <translation type="unfinished" /> </message> @@ -95334,22 +95334,22 @@ <location filename="../QScintilla/MiniEditor.py" line="2109" /> <location filename="../QScintilla/MiniEditor.py" line="1078" /> <location filename="../QScintilla/ShellWindow.py" line="659" /> - <location filename="../ViewManager/ViewManager.py" line="3016" /> - <location filename="../ViewManager/ViewManager.py" line="2002" /> + <location filename="../ViewManager/ViewManager.py" line="3026" /> + <location filename="../ViewManager/ViewManager.py" line="2012" /> <source>Home</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1086" /> <location filename="../QScintilla/MiniEditor.py" line="1085" /> - <location filename="../ViewManager/ViewManager.py" line="2010" /> - <location filename="../ViewManager/ViewManager.py" line="2009" /> + <location filename="../ViewManager/ViewManager.py" line="2020" /> + <location filename="../ViewManager/ViewManager.py" line="2019" /> <source>Move to start of display line</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1098" /> - <location filename="../ViewManager/ViewManager.py" line="2022" /> + <location filename="../ViewManager/ViewManager.py" line="2032" /> <source>Alt+Home</source> <translation type="unfinished" /> </message> @@ -95358,15 +95358,15 @@ <location filename="../QScintilla/MiniEditor.py" line="1105" /> <location filename="../QScintilla/ShellWindow.py" line="667" /> <location filename="../QScintilla/ShellWindow.py" line="666" /> - <location filename="../ViewManager/ViewManager.py" line="2030" /> - <location filename="../ViewManager/ViewManager.py" line="2029" /> + <location filename="../ViewManager/ViewManager.py" line="2040" /> + <location filename="../ViewManager/ViewManager.py" line="2039" /> <source>Move to end of document line</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1114" /> <location filename="../QScintilla/ShellWindow.py" line="675" /> - <location filename="../ViewManager/ViewManager.py" line="2038" /> + <location filename="../ViewManager/ViewManager.py" line="2048" /> <source>Meta+E</source> <translation type="unfinished" /> </message> @@ -95374,16 +95374,16 @@ <location filename="../QScintilla/MiniEditor.py" line="2126" /> <location filename="../QScintilla/MiniEditor.py" line="1118" /> <location filename="../QScintilla/ShellWindow.py" line="679" /> - <location filename="../ViewManager/ViewManager.py" line="3033" /> - <location filename="../ViewManager/ViewManager.py" line="2042" /> + <location filename="../ViewManager/ViewManager.py" line="3043" /> + <location filename="../ViewManager/ViewManager.py" line="2052" /> <source>End</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1126" /> <location filename="../QScintilla/MiniEditor.py" line="1125" /> - <location filename="../ViewManager/ViewManager.py" line="2050" /> - <location filename="../ViewManager/ViewManager.py" line="2049" /> + <location filename="../ViewManager/ViewManager.py" line="2060" /> + <location filename="../ViewManager/ViewManager.py" line="2059" /> <source>Scroll view down one line</source> <translation type="unfinished" /> </message> @@ -95391,16 +95391,16 @@ <location filename="../QScintilla/MiniEditor.py" line="1230" /> <location filename="../QScintilla/MiniEditor.py" line="1127" /> <location filename="../QScintilla/ShellWindow.py" line="720" /> - <location filename="../ViewManager/ViewManager.py" line="2154" /> - <location filename="../ViewManager/ViewManager.py" line="2051" /> + <location filename="../ViewManager/ViewManager.py" line="2164" /> + <location filename="../ViewManager/ViewManager.py" line="2061" /> <source>Ctrl+Down</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1138" /> <location filename="../QScintilla/MiniEditor.py" line="1137" /> - <location filename="../ViewManager/ViewManager.py" line="2062" /> - <location filename="../ViewManager/ViewManager.py" line="2061" /> + <location filename="../ViewManager/ViewManager.py" line="2072" /> + <location filename="../ViewManager/ViewManager.py" line="2071" /> <source>Scroll view up one line</source> <translation type="unfinished" /> </message> @@ -95408,36 +95408,36 @@ <location filename="../QScintilla/MiniEditor.py" line="1210" /> <location filename="../QScintilla/MiniEditor.py" line="1139" /> <location filename="../QScintilla/ShellWindow.py" line="732" /> - <location filename="../ViewManager/ViewManager.py" line="2134" /> - <location filename="../ViewManager/ViewManager.py" line="2063" /> + <location filename="../ViewManager/ViewManager.py" line="2144" /> + <location filename="../ViewManager/ViewManager.py" line="2073" /> <source>Ctrl+Up</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1150" /> <location filename="../QScintilla/MiniEditor.py" line="1149" /> - <location filename="../ViewManager/ViewManager.py" line="2074" /> - <location filename="../ViewManager/ViewManager.py" line="2073" /> + <location filename="../ViewManager/ViewManager.py" line="2084" /> + <location filename="../ViewManager/ViewManager.py" line="2083" /> <source>Move up one paragraph</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1151" /> - <location filename="../ViewManager/ViewManager.py" line="2075" /> + <location filename="../ViewManager/ViewManager.py" line="2085" /> <source>Alt+Up</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1162" /> <location filename="../QScintilla/MiniEditor.py" line="1161" /> - <location filename="../ViewManager/ViewManager.py" line="2086" /> - <location filename="../ViewManager/ViewManager.py" line="2085" /> + <location filename="../ViewManager/ViewManager.py" line="2096" /> + <location filename="../ViewManager/ViewManager.py" line="2095" /> <source>Move down one paragraph</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1163" /> - <location filename="../ViewManager/ViewManager.py" line="2087" /> + <location filename="../ViewManager/ViewManager.py" line="2097" /> <source>Alt+Down</source> <translation type="unfinished" /> </message> @@ -95446,15 +95446,15 @@ <location filename="../QScintilla/MiniEditor.py" line="1173" /> <location filename="../QScintilla/ShellWindow.py" line="743" /> <location filename="../QScintilla/ShellWindow.py" line="742" /> - <location filename="../ViewManager/ViewManager.py" line="2098" /> - <location filename="../ViewManager/ViewManager.py" line="2097" /> + <location filename="../ViewManager/ViewManager.py" line="2108" /> + <location filename="../ViewManager/ViewManager.py" line="2107" /> <source>Move up one page</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1175" /> <location filename="../QScintilla/ShellWindow.py" line="744" /> - <location filename="../ViewManager/ViewManager.py" line="2099" /> + <location filename="../ViewManager/ViewManager.py" line="2109" /> <source>PgUp</source> <translation type="unfinished" /> </message> @@ -95463,50 +95463,50 @@ <location filename="../QScintilla/MiniEditor.py" line="1185" /> <location filename="../QScintilla/ShellWindow.py" line="755" /> <location filename="../QScintilla/ShellWindow.py" line="754" /> - <location filename="../ViewManager/ViewManager.py" line="2110" /> - <location filename="../ViewManager/ViewManager.py" line="2109" /> + <location filename="../ViewManager/ViewManager.py" line="2120" /> + <location filename="../ViewManager/ViewManager.py" line="2119" /> <source>Move down one page</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1187" /> <location filename="../QScintilla/ShellWindow.py" line="756" /> - <location filename="../ViewManager/ViewManager.py" line="2111" /> + <location filename="../ViewManager/ViewManager.py" line="2121" /> <source>PgDown</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1194" /> <location filename="../QScintilla/ShellWindow.py" line="763" /> - <location filename="../ViewManager/ViewManager.py" line="2118" /> + <location filename="../ViewManager/ViewManager.py" line="2128" /> <source>Meta+V</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1202" /> <location filename="../QScintilla/MiniEditor.py" line="1201" /> - <location filename="../ViewManager/ViewManager.py" line="2126" /> - <location filename="../ViewManager/ViewManager.py" line="2125" /> + <location filename="../ViewManager/ViewManager.py" line="2136" /> + <location filename="../ViewManager/ViewManager.py" line="2135" /> <source>Move to start of document</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1214" /> - <location filename="../ViewManager/ViewManager.py" line="2138" /> + <location filename="../ViewManager/ViewManager.py" line="2148" /> <source>Ctrl+Home</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1222" /> <location filename="../QScintilla/MiniEditor.py" line="1221" /> - <location filename="../ViewManager/ViewManager.py" line="2146" /> - <location filename="../ViewManager/ViewManager.py" line="2145" /> + <location filename="../ViewManager/ViewManager.py" line="2156" /> + <location filename="../ViewManager/ViewManager.py" line="2155" /> <source>Move to end of document</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1234" /> - <location filename="../ViewManager/ViewManager.py" line="2158" /> + <location filename="../ViewManager/ViewManager.py" line="2168" /> <source>Ctrl+End</source> <translation type="unfinished" /> </message> @@ -95515,29 +95515,29 @@ <location filename="../QScintilla/MiniEditor.py" line="1241" /> <location filename="../QScintilla/ShellWindow.py" line="457" /> <location filename="../QScintilla/ShellWindow.py" line="456" /> - <location filename="../ViewManager/ViewManager.py" line="2166" /> - <location filename="../ViewManager/ViewManager.py" line="2165" /> + <location filename="../ViewManager/ViewManager.py" line="2176" /> + <location filename="../ViewManager/ViewManager.py" line="2175" /> <source>Indent one level</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1243" /> <location filename="../QScintilla/ShellWindow.py" line="458" /> - <location filename="../ViewManager/ViewManager.py" line="2167" /> + <location filename="../ViewManager/ViewManager.py" line="2177" /> <source>Tab</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1254" /> <location filename="../QScintilla/MiniEditor.py" line="1253" /> - <location filename="../ViewManager/ViewManager.py" line="2178" /> - <location filename="../ViewManager/ViewManager.py" line="2177" /> + <location filename="../ViewManager/ViewManager.py" line="2188" /> + <location filename="../ViewManager/ViewManager.py" line="2187" /> <source>Unindent one level</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1255" /> - <location filename="../ViewManager/ViewManager.py" line="2179" /> + <location filename="../ViewManager/ViewManager.py" line="2189" /> <source>Shift+Tab</source> <translation type="unfinished" /> </message> @@ -95546,22 +95546,22 @@ <location filename="../QScintilla/MiniEditor.py" line="1265" /> <location filename="../QScintilla/ShellWindow.py" line="785" /> <location filename="../QScintilla/ShellWindow.py" line="782" /> - <location filename="../ViewManager/ViewManager.py" line="2192" /> - <location filename="../ViewManager/ViewManager.py" line="2189" /> + <location filename="../ViewManager/ViewManager.py" line="2202" /> + <location filename="../ViewManager/ViewManager.py" line="2199" /> <source>Extend selection left one character</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1271" /> <location filename="../QScintilla/ShellWindow.py" line="788" /> - <location filename="../ViewManager/ViewManager.py" line="2195" /> + <location filename="../ViewManager/ViewManager.py" line="2205" /> <source>Shift+Left</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1278" /> <location filename="../QScintilla/ShellWindow.py" line="795" /> - <location filename="../ViewManager/ViewManager.py" line="2202" /> + <location filename="../ViewManager/ViewManager.py" line="2212" /> <source>Meta+Shift+B</source> <translation type="unfinished" /> </message> @@ -95570,70 +95570,70 @@ <location filename="../QScintilla/MiniEditor.py" line="1285" /> <location filename="../QScintilla/ShellWindow.py" line="805" /> <location filename="../QScintilla/ShellWindow.py" line="802" /> - <location filename="../ViewManager/ViewManager.py" line="2212" /> - <location filename="../ViewManager/ViewManager.py" line="2209" /> + <location filename="../ViewManager/ViewManager.py" line="2222" /> + <location filename="../ViewManager/ViewManager.py" line="2219" /> <source>Extend selection right one character</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1291" /> <location filename="../QScintilla/ShellWindow.py" line="808" /> - <location filename="../ViewManager/ViewManager.py" line="2215" /> + <location filename="../ViewManager/ViewManager.py" line="2225" /> <source>Shift+Right</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1298" /> <location filename="../QScintilla/ShellWindow.py" line="815" /> - <location filename="../ViewManager/ViewManager.py" line="2222" /> + <location filename="../ViewManager/ViewManager.py" line="2232" /> <source>Meta+Shift+F</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1306" /> <location filename="../QScintilla/MiniEditor.py" line="1305" /> - <location filename="../ViewManager/ViewManager.py" line="2230" /> - <location filename="../ViewManager/ViewManager.py" line="2229" /> + <location filename="../ViewManager/ViewManager.py" line="2240" /> + <location filename="../ViewManager/ViewManager.py" line="2239" /> <source>Extend selection up one line</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1307" /> - <location filename="../ViewManager/ViewManager.py" line="2231" /> + <location filename="../ViewManager/ViewManager.py" line="2241" /> <source>Shift+Up</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1314" /> - <location filename="../ViewManager/ViewManager.py" line="2238" /> + <location filename="../ViewManager/ViewManager.py" line="2248" /> <source>Meta+Shift+P</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1322" /> <location filename="../QScintilla/MiniEditor.py" line="1321" /> - <location filename="../ViewManager/ViewManager.py" line="2246" /> - <location filename="../ViewManager/ViewManager.py" line="2245" /> + <location filename="../ViewManager/ViewManager.py" line="2256" /> + <location filename="../ViewManager/ViewManager.py" line="2255" /> <source>Extend selection down one line</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1323" /> - <location filename="../ViewManager/ViewManager.py" line="2247" /> + <location filename="../ViewManager/ViewManager.py" line="2257" /> <source>Shift+Down</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1330" /> - <location filename="../ViewManager/ViewManager.py" line="2254" /> + <location filename="../ViewManager/ViewManager.py" line="2264" /> <source>Meta+Shift+N</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1340" /> <location filename="../QScintilla/MiniEditor.py" line="1337" /> - <location filename="../ViewManager/ViewManager.py" line="2264" /> - <location filename="../ViewManager/ViewManager.py" line="2261" /> + <location filename="../ViewManager/ViewManager.py" line="2274" /> + <location filename="../ViewManager/ViewManager.py" line="2271" /> <source>Extend selection left one word part</source> <translation type="unfinished" /> </message> @@ -95641,16 +95641,16 @@ <location filename="../QScintilla/MiniEditor.py" line="1391" /> <location filename="../QScintilla/MiniEditor.py" line="1351" /> <location filename="../QScintilla/ShellWindow.py" line="832" /> - <location filename="../ViewManager/ViewManager.py" line="2315" /> - <location filename="../ViewManager/ViewManager.py" line="2275" /> + <location filename="../ViewManager/ViewManager.py" line="2325" /> + <location filename="../ViewManager/ViewManager.py" line="2285" /> <source>Alt+Shift+Left</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1362" /> <location filename="../QScintilla/MiniEditor.py" line="1359" /> - <location filename="../ViewManager/ViewManager.py" line="2286" /> - <location filename="../ViewManager/ViewManager.py" line="2283" /> + <location filename="../ViewManager/ViewManager.py" line="2296" /> + <location filename="../ViewManager/ViewManager.py" line="2293" /> <source>Extend selection right one word part</source> <translation type="unfinished" /> </message> @@ -95659,9 +95659,9 @@ <location filename="../QScintilla/MiniEditor.py" line="1419" /> <location filename="../QScintilla/MiniEditor.py" line="1373" /> <location filename="../QScintilla/ShellWindow.py" line="860" /> - <location filename="../ViewManager/ViewManager.py" line="3093" /> - <location filename="../ViewManager/ViewManager.py" line="2343" /> - <location filename="../ViewManager/ViewManager.py" line="2297" /> + <location filename="../ViewManager/ViewManager.py" line="3103" /> + <location filename="../ViewManager/ViewManager.py" line="2353" /> + <location filename="../ViewManager/ViewManager.py" line="2307" /> <source>Alt+Shift+Right</source> <translation type="unfinished" /> </message> @@ -95670,8 +95670,8 @@ <location filename="../QScintilla/MiniEditor.py" line="1381" /> <location filename="../QScintilla/ShellWindow.py" line="823" /> <location filename="../QScintilla/ShellWindow.py" line="822" /> - <location filename="../ViewManager/ViewManager.py" line="2306" /> - <location filename="../ViewManager/ViewManager.py" line="2305" /> + <location filename="../ViewManager/ViewManager.py" line="2316" /> + <location filename="../ViewManager/ViewManager.py" line="2315" /> <source>Extend selection left one word</source> <translation type="unfinished" /> </message> @@ -95679,8 +95679,8 @@ <location filename="../QScintilla/MiniEditor.py" line="2312" /> <location filename="../QScintilla/MiniEditor.py" line="1397" /> <location filename="../QScintilla/ShellWindow.py" line="838" /> - <location filename="../ViewManager/ViewManager.py" line="3219" /> - <location filename="../ViewManager/ViewManager.py" line="2321" /> + <location filename="../ViewManager/ViewManager.py" line="3229" /> + <location filename="../ViewManager/ViewManager.py" line="2331" /> <source>Ctrl+Shift+Left</source> <translation type="unfinished" /> </message> @@ -95689,8 +95689,8 @@ <location filename="../QScintilla/MiniEditor.py" line="1405" /> <location filename="../QScintilla/ShellWindow.py" line="849" /> <location filename="../QScintilla/ShellWindow.py" line="846" /> - <location filename="../ViewManager/ViewManager.py" line="2332" /> - <location filename="../ViewManager/ViewManager.py" line="2329" /> + <location filename="../ViewManager/ViewManager.py" line="2342" /> + <location filename="../ViewManager/ViewManager.py" line="2339" /> <source>Extend selection right one word</source> <translation type="unfinished" /> </message> @@ -95698,8 +95698,8 @@ <location filename="../QScintilla/MiniEditor.py" line="1873" /> <location filename="../QScintilla/MiniEditor.py" line="1425" /> <location filename="../QScintilla/ShellWindow.py" line="866" /> - <location filename="../ViewManager/ViewManager.py" line="2780" /> - <location filename="../ViewManager/ViewManager.py" line="2349" /> + <location filename="../ViewManager/ViewManager.py" line="2790" /> + <location filename="../ViewManager/ViewManager.py" line="2359" /> <source>Ctrl+Shift+Right</source> <translation type="unfinished" /> </message> @@ -95708,15 +95708,15 @@ <location filename="../QScintilla/MiniEditor.py" line="1433" /> <location filename="../QScintilla/ShellWindow.py" line="878" /> <location filename="../QScintilla/ShellWindow.py" line="874" /> - <location filename="../ViewManager/ViewManager.py" line="2361" /> - <location filename="../ViewManager/ViewManager.py" line="2357" /> + <location filename="../ViewManager/ViewManager.py" line="2371" /> + <location filename="../ViewManager/ViewManager.py" line="2367" /> <source>Extend selection to first visible character in document line</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1448" /> <location filename="../QScintilla/ShellWindow.py" line="889" /> - <location filename="../ViewManager/ViewManager.py" line="2372" /> + <location filename="../ViewManager/ViewManager.py" line="2382" /> <source>Shift+Home</source> <translation type="unfinished" /> </message> @@ -95725,124 +95725,124 @@ <location filename="../QScintilla/MiniEditor.py" line="1455" /> <location filename="../QScintilla/ShellWindow.py" line="899" /> <location filename="../QScintilla/ShellWindow.py" line="896" /> - <location filename="../ViewManager/ViewManager.py" line="2382" /> - <location filename="../ViewManager/ViewManager.py" line="2379" /> + <location filename="../ViewManager/ViewManager.py" line="2392" /> + <location filename="../ViewManager/ViewManager.py" line="2389" /> <source>Extend selection to end of document line</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1468" /> <location filename="../QScintilla/ShellWindow.py" line="909" /> - <location filename="../ViewManager/ViewManager.py" line="2392" /> + <location filename="../ViewManager/ViewManager.py" line="2402" /> <source>Meta+Shift+E</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1472" /> <location filename="../QScintilla/ShellWindow.py" line="913" /> - <location filename="../ViewManager/ViewManager.py" line="2396" /> + <location filename="../ViewManager/ViewManager.py" line="2406" /> <source>Shift+End</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1482" /> <location filename="../QScintilla/MiniEditor.py" line="1479" /> - <location filename="../ViewManager/ViewManager.py" line="2406" /> - <location filename="../ViewManager/ViewManager.py" line="2403" /> + <location filename="../ViewManager/ViewManager.py" line="2416" /> + <location filename="../ViewManager/ViewManager.py" line="2413" /> <source>Extend selection up one paragraph</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1485" /> - <location filename="../ViewManager/ViewManager.py" line="2409" /> + <location filename="../ViewManager/ViewManager.py" line="2419" /> <source>Alt+Shift+Up</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1498" /> <location filename="../QScintilla/MiniEditor.py" line="1495" /> - <location filename="../ViewManager/ViewManager.py" line="2422" /> - <location filename="../ViewManager/ViewManager.py" line="2419" /> + <location filename="../ViewManager/ViewManager.py" line="2432" /> + <location filename="../ViewManager/ViewManager.py" line="2429" /> <source>Extend selection down one paragraph</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1501" /> - <location filename="../ViewManager/ViewManager.py" line="2425" /> + <location filename="../ViewManager/ViewManager.py" line="2435" /> <source>Alt+Shift+Down</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1512" /> <location filename="../QScintilla/MiniEditor.py" line="1511" /> - <location filename="../ViewManager/ViewManager.py" line="2436" /> - <location filename="../ViewManager/ViewManager.py" line="2435" /> + <location filename="../ViewManager/ViewManager.py" line="2446" /> + <location filename="../ViewManager/ViewManager.py" line="2445" /> <source>Extend selection up one page</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1513" /> - <location filename="../ViewManager/ViewManager.py" line="2437" /> + <location filename="../ViewManager/ViewManager.py" line="2447" /> <source>Shift+PgUp</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1524" /> <location filename="../QScintilla/MiniEditor.py" line="1523" /> - <location filename="../ViewManager/ViewManager.py" line="2448" /> - <location filename="../ViewManager/ViewManager.py" line="2447" /> + <location filename="../ViewManager/ViewManager.py" line="2458" /> + <location filename="../ViewManager/ViewManager.py" line="2457" /> <source>Extend selection down one page</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1525" /> - <location filename="../ViewManager/ViewManager.py" line="2449" /> + <location filename="../ViewManager/ViewManager.py" line="2459" /> <source>Shift+PgDown</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1532" /> - <location filename="../ViewManager/ViewManager.py" line="2456" /> + <location filename="../ViewManager/ViewManager.py" line="2466" /> <source>Meta+Shift+V</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1542" /> <location filename="../QScintilla/MiniEditor.py" line="1539" /> - <location filename="../ViewManager/ViewManager.py" line="2466" /> - <location filename="../ViewManager/ViewManager.py" line="2463" /> + <location filename="../ViewManager/ViewManager.py" line="2476" /> + <location filename="../ViewManager/ViewManager.py" line="2473" /> <source>Extend selection to start of document</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1552" /> - <location filename="../ViewManager/ViewManager.py" line="2476" /> + <location filename="../ViewManager/ViewManager.py" line="2486" /> <source>Ctrl+Shift+Up</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1557" /> - <location filename="../ViewManager/ViewManager.py" line="2481" /> + <location filename="../ViewManager/ViewManager.py" line="2491" /> <source>Ctrl+Shift+Home</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1568" /> <location filename="../QScintilla/MiniEditor.py" line="1565" /> - <location filename="../ViewManager/ViewManager.py" line="2492" /> - <location filename="../ViewManager/ViewManager.py" line="2489" /> + <location filename="../ViewManager/ViewManager.py" line="2502" /> + <location filename="../ViewManager/ViewManager.py" line="2499" /> <source>Extend selection to end of document</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1579" /> - <location filename="../ViewManager/ViewManager.py" line="2503" /> + <location filename="../ViewManager/ViewManager.py" line="2513" /> <source>Ctrl+Shift+Down</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1585" /> - <location filename="../ViewManager/ViewManager.py" line="2509" /> + <location filename="../ViewManager/ViewManager.py" line="2519" /> <source>Ctrl+Shift+End</source> <translation type="unfinished" /> </message> @@ -95851,37 +95851,37 @@ <location filename="../QScintilla/MiniEditor.py" line="1593" /> <location filename="../QScintilla/ShellWindow.py" line="481" /> <location filename="../QScintilla/ShellWindow.py" line="480" /> - <location filename="../ViewManager/ViewManager.py" line="2518" /> - <location filename="../ViewManager/ViewManager.py" line="2517" /> + <location filename="../ViewManager/ViewManager.py" line="2528" /> + <location filename="../ViewManager/ViewManager.py" line="2527" /> <source>Delete previous character</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1595" /> <location filename="../QScintilla/ShellWindow.py" line="482" /> - <location filename="../ViewManager/ViewManager.py" line="2519" /> + <location filename="../ViewManager/ViewManager.py" line="2529" /> <source>Backspace</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1602" /> <location filename="../QScintilla/ShellWindow.py" line="489" /> - <location filename="../ViewManager/ViewManager.py" line="2526" /> + <location filename="../ViewManager/ViewManager.py" line="2536" /> <source>Meta+H</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1607" /> <location filename="../QScintilla/ShellWindow.py" line="494" /> - <location filename="../ViewManager/ViewManager.py" line="2531" /> + <location filename="../ViewManager/ViewManager.py" line="2541" /> <source>Shift+Backspace</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1618" /> <location filename="../QScintilla/MiniEditor.py" line="1615" /> - <location filename="../ViewManager/ViewManager.py" line="2542" /> - <location filename="../ViewManager/ViewManager.py" line="2539" /> + <location filename="../ViewManager/ViewManager.py" line="2552" /> + <location filename="../ViewManager/ViewManager.py" line="2549" /> <source>Delete previous character if not at start of line</source> <translation type="unfinished" /> </message> @@ -95890,22 +95890,22 @@ <location filename="../QScintilla/MiniEditor.py" line="1631" /> <location filename="../QScintilla/ShellWindow.py" line="503" /> <location filename="../QScintilla/ShellWindow.py" line="502" /> - <location filename="../ViewManager/ViewManager.py" line="2556" /> - <location filename="../ViewManager/ViewManager.py" line="2555" /> + <location filename="../ViewManager/ViewManager.py" line="2566" /> + <location filename="../ViewManager/ViewManager.py" line="2565" /> <source>Delete current character</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1633" /> <location filename="../QScintilla/ShellWindow.py" line="504" /> - <location filename="../ViewManager/ViewManager.py" line="2557" /> + <location filename="../ViewManager/ViewManager.py" line="2567" /> <source>Del</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1640" /> <location filename="../QScintilla/ShellWindow.py" line="511" /> - <location filename="../ViewManager/ViewManager.py" line="2564" /> + <location filename="../ViewManager/ViewManager.py" line="2574" /> <source>Meta+D</source> <translation type="unfinished" /> </message> @@ -95914,15 +95914,15 @@ <location filename="../QScintilla/MiniEditor.py" line="1647" /> <location filename="../QScintilla/ShellWindow.py" line="519" /> <location filename="../QScintilla/ShellWindow.py" line="518" /> - <location filename="../ViewManager/ViewManager.py" line="2572" /> - <location filename="../ViewManager/ViewManager.py" line="2571" /> + <location filename="../ViewManager/ViewManager.py" line="2582" /> + <location filename="../ViewManager/ViewManager.py" line="2581" /> <source>Delete word to left</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1649" /> <location filename="../QScintilla/ShellWindow.py" line="520" /> - <location filename="../ViewManager/ViewManager.py" line="2573" /> + <location filename="../ViewManager/ViewManager.py" line="2583" /> <source>Ctrl+Backspace</source> <translation type="unfinished" /> </message> @@ -95931,15 +95931,15 @@ <location filename="../QScintilla/MiniEditor.py" line="1659" /> <location filename="../QScintilla/ShellWindow.py" line="531" /> <location filename="../QScintilla/ShellWindow.py" line="530" /> - <location filename="../ViewManager/ViewManager.py" line="2584" /> - <location filename="../ViewManager/ViewManager.py" line="2583" /> + <location filename="../ViewManager/ViewManager.py" line="2594" /> + <location filename="../ViewManager/ViewManager.py" line="2593" /> <source>Delete word to right</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1661" /> <location filename="../QScintilla/ShellWindow.py" line="532" /> - <location filename="../ViewManager/ViewManager.py" line="2585" /> + <location filename="../ViewManager/ViewManager.py" line="2595" /> <source>Ctrl+Del</source> <translation type="unfinished" /> </message> @@ -95948,15 +95948,15 @@ <location filename="../QScintilla/MiniEditor.py" line="1671" /> <location filename="../QScintilla/ShellWindow.py" line="543" /> <location filename="../QScintilla/ShellWindow.py" line="542" /> - <location filename="../ViewManager/ViewManager.py" line="2596" /> - <location filename="../ViewManager/ViewManager.py" line="2595" /> + <location filename="../ViewManager/ViewManager.py" line="2606" /> + <location filename="../ViewManager/ViewManager.py" line="2605" /> <source>Delete line to left</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1674" /> <location filename="../QScintilla/ShellWindow.py" line="545" /> - <location filename="../ViewManager/ViewManager.py" line="2598" /> + <location filename="../ViewManager/ViewManager.py" line="2608" /> <source>Ctrl+Shift+Backspace</source> <translation type="unfinished" /> </message> @@ -95965,22 +95965,22 @@ <location filename="../QScintilla/MiniEditor.py" line="1685" /> <location filename="../QScintilla/ShellWindow.py" line="557" /> <location filename="../QScintilla/ShellWindow.py" line="556" /> - <location filename="../ViewManager/ViewManager.py" line="2610" /> - <location filename="../ViewManager/ViewManager.py" line="2609" /> + <location filename="../ViewManager/ViewManager.py" line="2620" /> + <location filename="../ViewManager/ViewManager.py" line="2619" /> <source>Delete line to right</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1694" /> <location filename="../QScintilla/ShellWindow.py" line="565" /> - <location filename="../ViewManager/ViewManager.py" line="2618" /> + <location filename="../ViewManager/ViewManager.py" line="2628" /> <source>Meta+K</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1699" /> <location filename="../QScintilla/ShellWindow.py" line="570" /> - <location filename="../ViewManager/ViewManager.py" line="2623" /> + <location filename="../ViewManager/ViewManager.py" line="2633" /> <source>Ctrl+Shift+Del</source> <translation type="unfinished" /> </message> @@ -95989,38 +95989,38 @@ <location filename="../QScintilla/MiniEditor.py" line="1707" /> <location filename="../QScintilla/ShellWindow.py" line="469" /> <location filename="../QScintilla/ShellWindow.py" line="468" /> - <location filename="../ViewManager/ViewManager.py" line="2632" /> - <location filename="../ViewManager/ViewManager.py" line="2631" /> + <location filename="../ViewManager/ViewManager.py" line="2642" /> + <location filename="../ViewManager/ViewManager.py" line="2641" /> <source>Insert new line</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1709" /> <location filename="../QScintilla/ShellWindow.py" line="470" /> - <location filename="../ViewManager/ViewManager.py" line="2633" /> + <location filename="../ViewManager/ViewManager.py" line="2643" /> <source>Return</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1710" /> <location filename="../QScintilla/ShellWindow.py" line="471" /> - <location filename="../ViewManager/ViewManager.py" line="2634" /> + <location filename="../ViewManager/ViewManager.py" line="2644" /> <source>Enter</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="2646" /> - <location filename="../ViewManager/ViewManager.py" line="2643" /> + <location filename="../ViewManager/ViewManager.py" line="2656" /> + <location filename="../ViewManager/ViewManager.py" line="2653" /> <source>Insert new line below current line</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="2649" /> + <location filename="../ViewManager/ViewManager.py" line="2659" /> <source>Shift+Return</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="2650" /> + <location filename="../ViewManager/ViewManager.py" line="2660" /> <source>Shift+Enter</source> <translation type="unfinished" /> </message> @@ -96029,129 +96029,129 @@ <location filename="../QScintilla/MiniEditor.py" line="1719" /> <location filename="../QScintilla/ShellWindow.py" line="445" /> <location filename="../QScintilla/ShellWindow.py" line="444" /> - <location filename="../ViewManager/ViewManager.py" line="2659" /> - <location filename="../ViewManager/ViewManager.py" line="2658" /> + <location filename="../ViewManager/ViewManager.py" line="2669" /> + <location filename="../ViewManager/ViewManager.py" line="2668" /> <source>Delete current line</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1721" /> <location filename="../QScintilla/ShellWindow.py" line="446" /> - <location filename="../ViewManager/ViewManager.py" line="2660" /> + <location filename="../ViewManager/ViewManager.py" line="2670" /> <source>Ctrl+Shift+L</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1732" /> <location filename="../QScintilla/MiniEditor.py" line="1731" /> - <location filename="../ViewManager/ViewManager.py" line="2671" /> - <location filename="../ViewManager/ViewManager.py" line="2670" /> + <location filename="../ViewManager/ViewManager.py" line="2681" /> + <location filename="../ViewManager/ViewManager.py" line="2680" /> <source>Duplicate current line</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1733" /> - <location filename="../ViewManager/ViewManager.py" line="2672" /> + <location filename="../ViewManager/ViewManager.py" line="2682" /> <source>Ctrl+D</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1746" /> <location filename="../QScintilla/MiniEditor.py" line="1743" /> - <location filename="../ViewManager/ViewManager.py" line="2685" /> - <location filename="../ViewManager/ViewManager.py" line="2682" /> + <location filename="../ViewManager/ViewManager.py" line="2695" /> + <location filename="../ViewManager/ViewManager.py" line="2692" /> <source>Swap current and previous lines</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1749" /> - <location filename="../ViewManager/ViewManager.py" line="2688" /> + <location filename="../ViewManager/ViewManager.py" line="2698" /> <source>Ctrl+T</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1760" /> <location filename="../QScintilla/MiniEditor.py" line="1759" /> - <location filename="../ViewManager/ViewManager.py" line="2699" /> - <location filename="../ViewManager/ViewManager.py" line="2698" /> + <location filename="../ViewManager/ViewManager.py" line="2709" /> + <location filename="../ViewManager/ViewManager.py" line="2708" /> <source>Reverse selected lines</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1761" /> - <location filename="../ViewManager/ViewManager.py" line="2700" /> + <location filename="../ViewManager/ViewManager.py" line="2710" /> <source>Meta+Alt+R</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1772" /> <location filename="../QScintilla/MiniEditor.py" line="1771" /> - <location filename="../ViewManager/ViewManager.py" line="2711" /> - <location filename="../ViewManager/ViewManager.py" line="2710" /> + <location filename="../ViewManager/ViewManager.py" line="2721" /> + <location filename="../ViewManager/ViewManager.py" line="2720" /> <source>Cut current line</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1773" /> - <location filename="../ViewManager/ViewManager.py" line="2712" /> + <location filename="../ViewManager/ViewManager.py" line="2722" /> <source>Alt+Shift+L</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1784" /> <location filename="../QScintilla/MiniEditor.py" line="1783" /> - <location filename="../ViewManager/ViewManager.py" line="2723" /> - <location filename="../ViewManager/ViewManager.py" line="2722" /> + <location filename="../ViewManager/ViewManager.py" line="2733" /> + <location filename="../ViewManager/ViewManager.py" line="2732" /> <source>Copy current line</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1785" /> - <location filename="../ViewManager/ViewManager.py" line="2724" /> + <location filename="../ViewManager/ViewManager.py" line="2734" /> <source>Ctrl+Shift+T</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1796" /> <location filename="../QScintilla/MiniEditor.py" line="1795" /> - <location filename="../ViewManager/ViewManager.py" line="2735" /> - <location filename="../ViewManager/ViewManager.py" line="2734" /> + <location filename="../ViewManager/ViewManager.py" line="2745" /> + <location filename="../ViewManager/ViewManager.py" line="2744" /> <source>Toggle insert/overtype</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1797" /> - <location filename="../ViewManager/ViewManager.py" line="2736" /> + <location filename="../ViewManager/ViewManager.py" line="2746" /> <source>Ins</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1840" /> <location filename="../QScintilla/MiniEditor.py" line="1839" /> - <location filename="../ViewManager/ViewManager.py" line="2747" /> - <location filename="../ViewManager/ViewManager.py" line="2746" /> + <location filename="../ViewManager/ViewManager.py" line="2757" /> + <location filename="../ViewManager/ViewManager.py" line="2756" /> <source>Move to end of display line</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1852" /> - <location filename="../ViewManager/ViewManager.py" line="2759" /> + <location filename="../ViewManager/ViewManager.py" line="2769" /> <source>Alt+End</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1862" /> <location filename="../QScintilla/MiniEditor.py" line="1859" /> - <location filename="../ViewManager/ViewManager.py" line="2769" /> - <location filename="../ViewManager/ViewManager.py" line="2766" /> + <location filename="../ViewManager/ViewManager.py" line="2779" /> + <location filename="../ViewManager/ViewManager.py" line="2776" /> <source>Extend selection to end of display line</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1882" /> <location filename="../QScintilla/MiniEditor.py" line="1881" /> - <location filename="../ViewManager/ViewManager.py" line="2789" /> - <location filename="../ViewManager/ViewManager.py" line="2788" /> + <location filename="../ViewManager/ViewManager.py" line="2799" /> + <location filename="../ViewManager/ViewManager.py" line="2798" /> <source>Formfeed</source> <translation type="unfinished" /> </message> @@ -96160,163 +96160,163 @@ <location filename="../QScintilla/MiniEditor.py" line="1893" /> <location filename="../QScintilla/ShellWindow.py" line="771" /> <location filename="../QScintilla/ShellWindow.py" line="770" /> - <location filename="../ViewManager/ViewManager.py" line="2801" /> - <location filename="../ViewManager/ViewManager.py" line="2800" /> + <location filename="../ViewManager/ViewManager.py" line="2811" /> + <location filename="../ViewManager/ViewManager.py" line="2810" /> <source>Escape</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1895" /> <location filename="../QScintilla/ShellWindow.py" line="772" /> - <location filename="../ViewManager/ViewManager.py" line="2802" /> + <location filename="../ViewManager/ViewManager.py" line="2812" /> <source>Esc</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1908" /> <location filename="../QScintilla/MiniEditor.py" line="1905" /> - <location filename="../ViewManager/ViewManager.py" line="2815" /> - <location filename="../ViewManager/ViewManager.py" line="2812" /> + <location filename="../ViewManager/ViewManager.py" line="2825" /> + <location filename="../ViewManager/ViewManager.py" line="2822" /> <source>Extend rectangular selection down one line</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1911" /> - <location filename="../ViewManager/ViewManager.py" line="2818" /> + <location filename="../ViewManager/ViewManager.py" line="2828" /> <source>Alt+Ctrl+Down</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1919" /> - <location filename="../ViewManager/ViewManager.py" line="2826" /> + <location filename="../ViewManager/ViewManager.py" line="2836" /> <source>Meta+Alt+Shift+N</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1930" /> <location filename="../QScintilla/MiniEditor.py" line="1927" /> - <location filename="../ViewManager/ViewManager.py" line="2837" /> - <location filename="../ViewManager/ViewManager.py" line="2834" /> + <location filename="../ViewManager/ViewManager.py" line="2847" /> + <location filename="../ViewManager/ViewManager.py" line="2844" /> <source>Extend rectangular selection up one line</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1933" /> - <location filename="../ViewManager/ViewManager.py" line="2840" /> + <location filename="../ViewManager/ViewManager.py" line="2850" /> <source>Alt+Ctrl+Up</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1941" /> - <location filename="../ViewManager/ViewManager.py" line="2848" /> + <location filename="../ViewManager/ViewManager.py" line="2858" /> <source>Meta+Alt+Shift+P</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1952" /> <location filename="../QScintilla/MiniEditor.py" line="1949" /> - <location filename="../ViewManager/ViewManager.py" line="2859" /> - <location filename="../ViewManager/ViewManager.py" line="2856" /> + <location filename="../ViewManager/ViewManager.py" line="2869" /> + <location filename="../ViewManager/ViewManager.py" line="2866" /> <source>Extend rectangular selection left one character</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1955" /> - <location filename="../ViewManager/ViewManager.py" line="2862" /> + <location filename="../ViewManager/ViewManager.py" line="2872" /> <source>Alt+Ctrl+Left</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1963" /> - <location filename="../ViewManager/ViewManager.py" line="2870" /> + <location filename="../ViewManager/ViewManager.py" line="2880" /> <source>Meta+Alt+Shift+B</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1974" /> <location filename="../QScintilla/MiniEditor.py" line="1971" /> - <location filename="../ViewManager/ViewManager.py" line="2881" /> - <location filename="../ViewManager/ViewManager.py" line="2878" /> + <location filename="../ViewManager/ViewManager.py" line="2891" /> + <location filename="../ViewManager/ViewManager.py" line="2888" /> <source>Extend rectangular selection right one character</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1977" /> - <location filename="../ViewManager/ViewManager.py" line="2884" /> + <location filename="../ViewManager/ViewManager.py" line="2894" /> <source>Alt+Ctrl+Right</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1985" /> - <location filename="../ViewManager/ViewManager.py" line="2892" /> + <location filename="../ViewManager/ViewManager.py" line="2902" /> <source>Meta+Alt+Shift+F</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1998" /> <location filename="../QScintilla/MiniEditor.py" line="1993" /> - <location filename="../ViewManager/ViewManager.py" line="2905" /> - <location filename="../ViewManager/ViewManager.py" line="2900" /> + <location filename="../ViewManager/ViewManager.py" line="2915" /> + <location filename="../ViewManager/ViewManager.py" line="2910" /> <source>Extend rectangular selection to first visible character in document line</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2011" /> - <location filename="../ViewManager/ViewManager.py" line="2918" /> + <location filename="../ViewManager/ViewManager.py" line="2928" /> <source>Alt+Shift+Home</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2022" /> <location filename="../QScintilla/MiniEditor.py" line="2019" /> - <location filename="../ViewManager/ViewManager.py" line="2929" /> - <location filename="../ViewManager/ViewManager.py" line="2926" /> + <location filename="../ViewManager/ViewManager.py" line="2939" /> + <location filename="../ViewManager/ViewManager.py" line="2936" /> <source>Extend rectangular selection to end of document line</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2033" /> - <location filename="../ViewManager/ViewManager.py" line="2940" /> + <location filename="../ViewManager/ViewManager.py" line="2950" /> <source>Meta+Alt+Shift+E</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2038" /> - <location filename="../ViewManager/ViewManager.py" line="2945" /> + <location filename="../ViewManager/ViewManager.py" line="2955" /> <source>Alt+Shift+End</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2048" /> <location filename="../QScintilla/MiniEditor.py" line="2045" /> - <location filename="../ViewManager/ViewManager.py" line="2955" /> - <location filename="../ViewManager/ViewManager.py" line="2952" /> + <location filename="../ViewManager/ViewManager.py" line="2965" /> + <location filename="../ViewManager/ViewManager.py" line="2962" /> <source>Extend rectangular selection up one page</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2051" /> - <location filename="../ViewManager/ViewManager.py" line="2958" /> + <location filename="../ViewManager/ViewManager.py" line="2968" /> <source>Alt+Shift+PgUp</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2064" /> <location filename="../QScintilla/MiniEditor.py" line="2061" /> - <location filename="../ViewManager/ViewManager.py" line="2971" /> - <location filename="../ViewManager/ViewManager.py" line="2968" /> + <location filename="../ViewManager/ViewManager.py" line="2981" /> + <location filename="../ViewManager/ViewManager.py" line="2978" /> <source>Extend rectangular selection down one page</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2067" /> - <location filename="../ViewManager/ViewManager.py" line="2974" /> + <location filename="../ViewManager/ViewManager.py" line="2984" /> <source>Alt+Shift+PgDown</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2075" /> - <location filename="../ViewManager/ViewManager.py" line="2982" /> + <location filename="../ViewManager/ViewManager.py" line="2992" /> <source>Meta+Alt+Shift+V</source> <translation type="unfinished" /> </message> @@ -96325,299 +96325,299 @@ <location filename="../QScintilla/MiniEditor.py" line="2549" /> <location filename="../QScintilla/MiniEditor.py" line="2084" /> <location filename="../QScintilla/MiniEditor.py" line="2083" /> - <location filename="../ViewManager/ViewManager.py" line="2991" /> - <location filename="../ViewManager/ViewManager.py" line="2990" /> + <location filename="../ViewManager/ViewManager.py" line="3001" /> + <location filename="../ViewManager/ViewManager.py" line="3000" /> <source>Duplicate current selection</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2551" /> <location filename="../QScintilla/MiniEditor.py" line="2085" /> - <location filename="../ViewManager/ViewManager.py" line="2992" /> + <location filename="../ViewManager/ViewManager.py" line="3002" /> <source>Ctrl+Shift+D</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2099" /> <location filename="../QScintilla/MiniEditor.py" line="2096" /> - <location filename="../ViewManager/ViewManager.py" line="3006" /> - <location filename="../ViewManager/ViewManager.py" line="3003" /> + <location filename="../ViewManager/ViewManager.py" line="3016" /> + <location filename="../ViewManager/ViewManager.py" line="3013" /> <source>Scroll to start of document</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2118" /> <location filename="../QScintilla/MiniEditor.py" line="2117" /> - <location filename="../ViewManager/ViewManager.py" line="3025" /> - <location filename="../ViewManager/ViewManager.py" line="3024" /> + <location filename="../ViewManager/ViewManager.py" line="3035" /> + <location filename="../ViewManager/ViewManager.py" line="3034" /> <source>Scroll to end of document</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2137" /> <location filename="../QScintilla/MiniEditor.py" line="2134" /> - <location filename="../ViewManager/ViewManager.py" line="3044" /> - <location filename="../ViewManager/ViewManager.py" line="3041" /> + <location filename="../ViewManager/ViewManager.py" line="3054" /> + <location filename="../ViewManager/ViewManager.py" line="3051" /> <source>Scroll vertically to center current line</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2147" /> - <location filename="../ViewManager/ViewManager.py" line="3054" /> + <location filename="../ViewManager/ViewManager.py" line="3064" /> <source>Meta+L</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2156" /> <location filename="../QScintilla/MiniEditor.py" line="2155" /> - <location filename="../ViewManager/ViewManager.py" line="3063" /> - <location filename="../ViewManager/ViewManager.py" line="3062" /> + <location filename="../ViewManager/ViewManager.py" line="3073" /> + <location filename="../ViewManager/ViewManager.py" line="3072" /> <source>Move to end of next word</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2175" /> <location filename="../QScintilla/MiniEditor.py" line="2172" /> - <location filename="../ViewManager/ViewManager.py" line="3082" /> - <location filename="../ViewManager/ViewManager.py" line="3079" /> + <location filename="../ViewManager/ViewManager.py" line="3092" /> + <location filename="../ViewManager/ViewManager.py" line="3089" /> <source>Extend selection to end of next word</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2198" /> <location filename="../QScintilla/MiniEditor.py" line="2195" /> - <location filename="../ViewManager/ViewManager.py" line="3105" /> - <location filename="../ViewManager/ViewManager.py" line="3102" /> + <location filename="../ViewManager/ViewManager.py" line="3115" /> + <location filename="../ViewManager/ViewManager.py" line="3112" /> <source>Move to end of previous word</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2215" /> <location filename="../QScintilla/MiniEditor.py" line="2212" /> - <location filename="../ViewManager/ViewManager.py" line="3122" /> - <location filename="../ViewManager/ViewManager.py" line="3119" /> + <location filename="../ViewManager/ViewManager.py" line="3132" /> + <location filename="../ViewManager/ViewManager.py" line="3129" /> <source>Extend selection to end of previous word</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2232" /> <location filename="../QScintilla/MiniEditor.py" line="2229" /> - <location filename="../ViewManager/ViewManager.py" line="3139" /> - <location filename="../ViewManager/ViewManager.py" line="3136" /> + <location filename="../ViewManager/ViewManager.py" line="3149" /> + <location filename="../ViewManager/ViewManager.py" line="3146" /> <source>Move to start of document line</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2242" /> - <location filename="../ViewManager/ViewManager.py" line="3149" /> + <location filename="../ViewManager/ViewManager.py" line="3159" /> <source>Meta+A</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2253" /> <location filename="../QScintilla/MiniEditor.py" line="2250" /> - <location filename="../ViewManager/ViewManager.py" line="3160" /> - <location filename="../ViewManager/ViewManager.py" line="3157" /> + <location filename="../ViewManager/ViewManager.py" line="3170" /> + <location filename="../ViewManager/ViewManager.py" line="3167" /> <source>Extend selection to start of document line</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2264" /> - <location filename="../ViewManager/ViewManager.py" line="3171" /> + <location filename="../ViewManager/ViewManager.py" line="3181" /> <source>Meta+Shift+A</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2277" /> <location filename="../QScintilla/MiniEditor.py" line="2273" /> - <location filename="../ViewManager/ViewManager.py" line="3184" /> - <location filename="../ViewManager/ViewManager.py" line="3180" /> + <location filename="../ViewManager/ViewManager.py" line="3194" /> + <location filename="../ViewManager/ViewManager.py" line="3190" /> <source>Extend rectangular selection to start of document line</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2289" /> - <location filename="../ViewManager/ViewManager.py" line="3196" /> + <location filename="../ViewManager/ViewManager.py" line="3206" /> <source>Meta+Alt+Shift+A</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2301" /> <location filename="../QScintilla/MiniEditor.py" line="2298" /> - <location filename="../ViewManager/ViewManager.py" line="3208" /> - <location filename="../ViewManager/ViewManager.py" line="3205" /> + <location filename="../ViewManager/ViewManager.py" line="3218" /> + <location filename="../ViewManager/ViewManager.py" line="3215" /> <source>Extend selection to start of display line</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2324" /> <location filename="../QScintilla/MiniEditor.py" line="2321" /> - <location filename="../ViewManager/ViewManager.py" line="3231" /> - <location filename="../ViewManager/ViewManager.py" line="3228" /> + <location filename="../ViewManager/ViewManager.py" line="3241" /> + <location filename="../ViewManager/ViewManager.py" line="3238" /> <source>Move to start of display or document line</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2342" /> <location filename="../QScintilla/MiniEditor.py" line="2338" /> - <location filename="../ViewManager/ViewManager.py" line="3249" /> - <location filename="../ViewManager/ViewManager.py" line="3245" /> + <location filename="../ViewManager/ViewManager.py" line="3259" /> + <location filename="../ViewManager/ViewManager.py" line="3255" /> <source>Extend selection to start of display or document line</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2361" /> <location filename="../QScintilla/MiniEditor.py" line="2357" /> - <location filename="../ViewManager/ViewManager.py" line="3268" /> - <location filename="../ViewManager/ViewManager.py" line="3264" /> + <location filename="../ViewManager/ViewManager.py" line="3278" /> + <location filename="../ViewManager/ViewManager.py" line="3274" /> <source>Move to first visible character in display or document line</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2381" /> <location filename="../QScintilla/MiniEditor.py" line="2376" /> - <location filename="../ViewManager/ViewManager.py" line="3288" /> - <location filename="../ViewManager/ViewManager.py" line="3283" /> + <location filename="../ViewManager/ViewManager.py" line="3298" /> + <location filename="../ViewManager/ViewManager.py" line="3293" /> <source>Extend selection to first visible character in display or document line</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2400" /> <location filename="../QScintilla/MiniEditor.py" line="2397" /> - <location filename="../ViewManager/ViewManager.py" line="3307" /> - <location filename="../ViewManager/ViewManager.py" line="3304" /> + <location filename="../ViewManager/ViewManager.py" line="3317" /> + <location filename="../ViewManager/ViewManager.py" line="3314" /> <source>Move to end of display or document line</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2417" /> <location filename="../QScintilla/MiniEditor.py" line="2414" /> - <location filename="../ViewManager/ViewManager.py" line="3324" /> - <location filename="../ViewManager/ViewManager.py" line="3321" /> + <location filename="../ViewManager/ViewManager.py" line="3334" /> + <location filename="../ViewManager/ViewManager.py" line="3331" /> <source>Extend selection to end of display or document line</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2432" /> <location filename="../QScintilla/MiniEditor.py" line="2431" /> - <location filename="../ViewManager/ViewManager.py" line="3339" /> - <location filename="../ViewManager/ViewManager.py" line="3338" /> + <location filename="../ViewManager/ViewManager.py" line="3349" /> + <location filename="../ViewManager/ViewManager.py" line="3348" /> <source>Stuttered move up one page</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2447" /> <location filename="../QScintilla/MiniEditor.py" line="2444" /> - <location filename="../ViewManager/ViewManager.py" line="3354" /> - <location filename="../ViewManager/ViewManager.py" line="3351" /> + <location filename="../ViewManager/ViewManager.py" line="3364" /> + <location filename="../ViewManager/ViewManager.py" line="3361" /> <source>Stuttered extend selection up one page</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2464" /> <location filename="../QScintilla/MiniEditor.py" line="2461" /> - <location filename="../ViewManager/ViewManager.py" line="3371" /> - <location filename="../ViewManager/ViewManager.py" line="3368" /> + <location filename="../ViewManager/ViewManager.py" line="3381" /> + <location filename="../ViewManager/ViewManager.py" line="3378" /> <source>Stuttered move down one page</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2481" /> <location filename="../QScintilla/MiniEditor.py" line="2478" /> - <location filename="../ViewManager/ViewManager.py" line="3388" /> - <location filename="../ViewManager/ViewManager.py" line="3385" /> + <location filename="../ViewManager/ViewManager.py" line="3398" /> + <location filename="../ViewManager/ViewManager.py" line="3395" /> <source>Stuttered extend selection down one page</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2498" /> <location filename="../QScintilla/MiniEditor.py" line="2495" /> - <location filename="../ViewManager/ViewManager.py" line="3405" /> - <location filename="../ViewManager/ViewManager.py" line="3402" /> + <location filename="../ViewManager/ViewManager.py" line="3415" /> + <location filename="../ViewManager/ViewManager.py" line="3412" /> <source>Delete right to end of next word</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2508" /> - <location filename="../ViewManager/ViewManager.py" line="3415" /> + <location filename="../ViewManager/ViewManager.py" line="3425" /> <source>Alt+Del</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2519" /> <location filename="../QScintilla/MiniEditor.py" line="2516" /> - <location filename="../ViewManager/ViewManager.py" line="3426" /> - <location filename="../ViewManager/ViewManager.py" line="3423" /> + <location filename="../ViewManager/ViewManager.py" line="3436" /> + <location filename="../ViewManager/ViewManager.py" line="3433" /> <source>Move selected lines up one line</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2536" /> <location filename="../QScintilla/MiniEditor.py" line="2533" /> - <location filename="../ViewManager/ViewManager.py" line="3443" /> - <location filename="../ViewManager/ViewManager.py" line="3440" /> + <location filename="../ViewManager/ViewManager.py" line="3453" /> + <location filename="../ViewManager/ViewManager.py" line="3450" /> <source>Move selected lines down one line</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1810" /> <location filename="../QScintilla/MiniEditor.py" line="1807" /> - <location filename="../ViewManager/ViewManager.py" line="3461" /> - <location filename="../ViewManager/ViewManager.py" line="3458" /> + <location filename="../ViewManager/ViewManager.py" line="3471" /> + <location filename="../ViewManager/ViewManager.py" line="3468" /> <source>Convert selection to lower case</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1813" /> - <location filename="../ViewManager/ViewManager.py" line="3464" /> + <location filename="../ViewManager/ViewManager.py" line="3474" /> <source>Alt+Shift+U</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1826" /> <location filename="../QScintilla/MiniEditor.py" line="1823" /> - <location filename="../ViewManager/ViewManager.py" line="3477" /> - <location filename="../ViewManager/ViewManager.py" line="3474" /> + <location filename="../ViewManager/ViewManager.py" line="3487" /> + <location filename="../ViewManager/ViewManager.py" line="3484" /> <source>Convert selection to upper case</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1829" /> - <location filename="../ViewManager/ViewManager.py" line="3480" /> + <location filename="../ViewManager/ViewManager.py" line="3490" /> <source>Ctrl+Shift+U</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3506" /> + <location filename="../ViewManager/ViewManager.py" line="3516" /> <source>&Edit</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3564" /> - <location filename="../ViewManager/ViewManager.py" line="3562" /> + <location filename="../ViewManager/ViewManager.py" line="3574" /> + <location filename="../ViewManager/ViewManager.py" line="3572" /> <source>Edit</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2568" /> <location filename="../QScintilla/ShellWindow.py" line="927" /> - <location filename="../ViewManager/ViewManager.py" line="4167" /> - <location filename="../ViewManager/ViewManager.py" line="4165" /> - <location filename="../ViewManager/ViewManager.py" line="3598" /> + <location filename="../ViewManager/ViewManager.py" line="4177" /> + <location filename="../ViewManager/ViewManager.py" line="4175" /> + <location filename="../ViewManager/ViewManager.py" line="3608" /> <source>Search</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2570" /> <location filename="../QScintilla/ShellWindow.py" line="929" /> - <location filename="../ViewManager/ViewManager.py" line="3600" /> + <location filename="../ViewManager/ViewManager.py" line="3610" /> <source>&Search...</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2572" /> <location filename="../QScintilla/ShellWindow.py" line="931" /> - <location filename="../ViewManager/ViewManager.py" line="3602" /> + <location filename="../ViewManager/ViewManager.py" line="3612" /> <source>Ctrl+F</source> <comment>Search|Search</comment> <translation type="unfinished" /> @@ -96625,34 +96625,34 @@ <message> <location filename="../QScintilla/MiniEditor.py" line="2579" /> <location filename="../QScintilla/ShellWindow.py" line="938" /> - <location filename="../ViewManager/ViewManager.py" line="3609" /> + <location filename="../ViewManager/ViewManager.py" line="3619" /> <source>Search for a text</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2582" /> - <location filename="../ViewManager/ViewManager.py" line="3612" /> + <location filename="../ViewManager/ViewManager.py" line="3622" /> <source><b>Search</b><p>Search for some text in the current editor. A dialog is shown to enter the searchtext and options for the search.</p></source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2594" /> <location filename="../QScintilla/ShellWindow.py" line="953" /> - <location filename="../ViewManager/ViewManager.py" line="3624" /> + <location filename="../ViewManager/ViewManager.py" line="3634" /> <source>Search next</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2596" /> <location filename="../QScintilla/ShellWindow.py" line="955" /> - <location filename="../ViewManager/ViewManager.py" line="3626" /> + <location filename="../ViewManager/ViewManager.py" line="3636" /> <source>Search &next</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2598" /> <location filename="../QScintilla/ShellWindow.py" line="957" /> - <location filename="../ViewManager/ViewManager.py" line="3628" /> + <location filename="../ViewManager/ViewManager.py" line="3638" /> <source>F3</source> <comment>Search|Search next</comment> <translation type="unfinished" /> @@ -96660,34 +96660,34 @@ <message> <location filename="../QScintilla/MiniEditor.py" line="2605" /> <location filename="../QScintilla/ShellWindow.py" line="964" /> - <location filename="../ViewManager/ViewManager.py" line="3635" /> + <location filename="../ViewManager/ViewManager.py" line="3645" /> <source>Search next occurrence of text</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2608" /> - <location filename="../ViewManager/ViewManager.py" line="3638" /> + <location filename="../ViewManager/ViewManager.py" line="3648" /> <source><b>Search next</b><p>Search the next occurrence of some text in the current editor. The previously entered searchtext and options are reused.</p></source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2620" /> <location filename="../QScintilla/ShellWindow.py" line="981" /> - <location filename="../ViewManager/ViewManager.py" line="3650" /> + <location filename="../ViewManager/ViewManager.py" line="3660" /> <source>Search previous</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2622" /> <location filename="../QScintilla/ShellWindow.py" line="983" /> - <location filename="../ViewManager/ViewManager.py" line="3652" /> + <location filename="../ViewManager/ViewManager.py" line="3662" /> <source>Search &previous</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2624" /> <location filename="../QScintilla/ShellWindow.py" line="985" /> - <location filename="../ViewManager/ViewManager.py" line="3654" /> + <location filename="../ViewManager/ViewManager.py" line="3664" /> <source>Shift+F3</source> <comment>Search|Search previous</comment> <translation type="unfinished" /> @@ -96695,436 +96695,436 @@ <message> <location filename="../QScintilla/MiniEditor.py" line="2633" /> <location filename="../QScintilla/ShellWindow.py" line="994" /> - <location filename="../ViewManager/ViewManager.py" line="3663" /> + <location filename="../ViewManager/ViewManager.py" line="3673" /> <source>Search previous occurrence of text</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2638" /> - <location filename="../ViewManager/ViewManager.py" line="3668" /> + <location filename="../ViewManager/ViewManager.py" line="3678" /> <source><b>Search previous</b><p>Search the previous occurrence of some text in the current editor. The previously entered searchtext and options are reused.</p></source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2652" /> <location filename="../QScintilla/MiniEditor.py" line="2650" /> - <location filename="../ViewManager/ViewManager.py" line="3682" /> - <location filename="../ViewManager/ViewManager.py" line="3680" /> + <location filename="../ViewManager/ViewManager.py" line="3692" /> + <location filename="../ViewManager/ViewManager.py" line="3690" /> <source>Clear search markers</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2654" /> - <location filename="../ViewManager/ViewManager.py" line="3684" /> + <location filename="../ViewManager/ViewManager.py" line="3694" /> <source>Ctrl+3</source> <comment>Search|Clear search markers</comment> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2663" /> - <location filename="../ViewManager/ViewManager.py" line="3693" /> + <location filename="../ViewManager/ViewManager.py" line="3703" /> <source>Clear all displayed search markers</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2668" /> - <location filename="../ViewManager/ViewManager.py" line="3698" /> + <location filename="../ViewManager/ViewManager.py" line="3708" /> <source><b>Clear search markers</b><p>Clear all displayed search markers.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3710" /> - <location filename="../ViewManager/ViewManager.py" line="3708" /> + <location filename="../ViewManager/ViewManager.py" line="3720" /> + <location filename="../ViewManager/ViewManager.py" line="3718" /> <source>Search current word forward</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3712" /> + <location filename="../ViewManager/ViewManager.py" line="3722" /> <source>Ctrl+.</source> <comment>Search|Search current word forward</comment> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3721" /> + <location filename="../ViewManager/ViewManager.py" line="3731" /> <source>Search next occurrence of the current word</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3726" /> + <location filename="../ViewManager/ViewManager.py" line="3736" /> <source><b>Search current word forward</b><p>Search the next occurrence of the current word of the current editor.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3739" /> - <location filename="../ViewManager/ViewManager.py" line="3737" /> + <location filename="../ViewManager/ViewManager.py" line="3749" /> + <location filename="../ViewManager/ViewManager.py" line="3747" /> <source>Search current word backward</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3741" /> + <location filename="../ViewManager/ViewManager.py" line="3751" /> <source>Ctrl+,</source> <comment>Search|Search current word backward</comment> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3750" /> + <location filename="../ViewManager/ViewManager.py" line="3760" /> <source>Search previous occurrence of the current word</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3755" /> + <location filename="../ViewManager/ViewManager.py" line="3765" /> <source><b>Search current word backward</b><p>Search the previous occurrence of the current word of the current editor.</p></source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2678" /> - <location filename="../ViewManager/ViewManager.py" line="3766" /> + <location filename="../ViewManager/ViewManager.py" line="3776" /> <source>Replace</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2679" /> - <location filename="../ViewManager/ViewManager.py" line="3767" /> + <location filename="../ViewManager/ViewManager.py" line="3777" /> <source>&Replace...</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2681" /> - <location filename="../ViewManager/ViewManager.py" line="3769" /> + <location filename="../ViewManager/ViewManager.py" line="3779" /> <source>Ctrl+R</source> <comment>Search|Replace</comment> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2688" /> - <location filename="../ViewManager/ViewManager.py" line="3776" /> + <location filename="../ViewManager/ViewManager.py" line="3786" /> <source>Replace some text</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2691" /> - <location filename="../ViewManager/ViewManager.py" line="3779" /> + <location filename="../ViewManager/ViewManager.py" line="3789" /> <source><b>Replace</b><p>Search for some text in the current editor and replace it. A dialog is shown to enter the searchtext, the replacement text and options for the search and replace.</p></source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2705" /> <location filename="../QScintilla/MiniEditor.py" line="2703" /> - <location filename="../ViewManager/ViewManager.py" line="3793" /> - <location filename="../ViewManager/ViewManager.py" line="3791" /> + <location filename="../ViewManager/ViewManager.py" line="3803" /> + <location filename="../ViewManager/ViewManager.py" line="3801" /> <source>Replace and Search</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2707" /> - <location filename="../ViewManager/ViewManager.py" line="3795" /> + <location filename="../ViewManager/ViewManager.py" line="3805" /> <source>Meta+R</source> <comment>Search|Replace and Search</comment> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2716" /> - <location filename="../ViewManager/ViewManager.py" line="3804" /> + <location filename="../ViewManager/ViewManager.py" line="3814" /> <source>Replace the found text and search the next occurrence</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2721" /> - <location filename="../ViewManager/ViewManager.py" line="3809" /> + <location filename="../ViewManager/ViewManager.py" line="3819" /> <source><b>Replace and Search</b><p>Replace the found occurrence of text in the current editor and search for the next one. The previously entered search text and options are reused.</p></source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2737" /> <location filename="../QScintilla/MiniEditor.py" line="2735" /> - <location filename="../ViewManager/ViewManager.py" line="3825" /> - <location filename="../ViewManager/ViewManager.py" line="3823" /> + <location filename="../ViewManager/ViewManager.py" line="3835" /> + <location filename="../ViewManager/ViewManager.py" line="3833" /> <source>Replace Occurrence</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2739" /> - <location filename="../ViewManager/ViewManager.py" line="3827" /> + <location filename="../ViewManager/ViewManager.py" line="3837" /> <source>Ctrl+Meta+R</source> <comment>Search|Replace Occurrence</comment> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2748" /> - <location filename="../ViewManager/ViewManager.py" line="3836" /> + <location filename="../ViewManager/ViewManager.py" line="3846" /> <source>Replace the found text</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2751" /> - <location filename="../ViewManager/ViewManager.py" line="3839" /> + <location filename="../ViewManager/ViewManager.py" line="3849" /> <source><b>Replace Occurrence</b><p>Replace the found occurrence of the search text in the current editor.</p></source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2764" /> <location filename="../QScintilla/MiniEditor.py" line="2762" /> - <location filename="../ViewManager/ViewManager.py" line="3852" /> - <location filename="../ViewManager/ViewManager.py" line="3850" /> + <location filename="../ViewManager/ViewManager.py" line="3862" /> + <location filename="../ViewManager/ViewManager.py" line="3860" /> <source>Replace All</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2766" /> - <location filename="../ViewManager/ViewManager.py" line="3854" /> + <location filename="../ViewManager/ViewManager.py" line="3864" /> <source>Shift+Meta+R</source> <comment>Search|Replace All</comment> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2775" /> - <location filename="../ViewManager/ViewManager.py" line="3863" /> + <location filename="../ViewManager/ViewManager.py" line="3873" /> <source>Replace search text occurrences</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2778" /> - <location filename="../ViewManager/ViewManager.py" line="3866" /> + <location filename="../ViewManager/ViewManager.py" line="3876" /> <source><b>Replace All</b><p>Replace all occurrences of the search text in the current editor.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3888" /> - <location filename="../ViewManager/ViewManager.py" line="3877" /> + <location filename="../ViewManager/ViewManager.py" line="3898" /> + <location filename="../ViewManager/ViewManager.py" line="3887" /> <source>Goto Line</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3879" /> + <location filename="../ViewManager/ViewManager.py" line="3889" /> <source>&Goto Line...</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3881" /> - <source>Ctrl+G</source> - <comment>Search|Goto Line</comment> - <translation type="unfinished" /> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="3891" /> + <source>Ctrl+G</source> + <comment>Search|Goto Line</comment> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="3901" /> <source><b>Goto Line</b><p>Go to a specific line of text in the current editor. A dialog is shown to enter the linenumber.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3913" /> - <location filename="../ViewManager/ViewManager.py" line="3902" /> + <location filename="../ViewManager/ViewManager.py" line="3923" /> + <location filename="../ViewManager/ViewManager.py" line="3912" /> <source>Goto Brace</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3904" /> + <location filename="../ViewManager/ViewManager.py" line="3914" /> <source>Goto &Brace</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3906" /> - <source>Ctrl+L</source> - <comment>Search|Goto Brace</comment> - <translation type="unfinished" /> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="3916" /> + <source>Ctrl+L</source> + <comment>Search|Goto Brace</comment> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="3926" /> <source><b>Goto Brace</b><p>Go to the matching brace in the current editor.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3939" /> - <location filename="../ViewManager/ViewManager.py" line="3926" /> + <location filename="../ViewManager/ViewManager.py" line="3949" /> + <location filename="../ViewManager/ViewManager.py" line="3936" /> <source>Goto Last Edit Location</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3928" /> + <location filename="../ViewManager/ViewManager.py" line="3938" /> <source>Goto Last &Edit Location</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3930" /> + <location filename="../ViewManager/ViewManager.py" line="3940" /> <source>Ctrl+Shift+G</source> <comment>Search|Goto Last Edit Location</comment> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3942" /> + <location filename="../ViewManager/ViewManager.py" line="3952" /> <source><b>Goto Last Edit Location</b><p>Go to the location of the last edit in the current editor.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3954" /> - <location filename="../ViewManager/ViewManager.py" line="3953" /> + <location filename="../ViewManager/ViewManager.py" line="3964" /> + <location filename="../ViewManager/ViewManager.py" line="3963" /> <source>Goto Previous Method or Class</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3956" /> + <location filename="../ViewManager/ViewManager.py" line="3966" /> <source>Ctrl+Shift+Up</source> <comment>Search|Goto Previous Method or Class</comment> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3967" /> + <location filename="../ViewManager/ViewManager.py" line="3977" /> <source>Go to the previous method or class definition</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3972" /> + <location filename="../ViewManager/ViewManager.py" line="3982" /> <source><b>Goto Previous Method or Class</b><p>Goes to the line of the previous method or class definition and highlights the name.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3984" /> - <location filename="../ViewManager/ViewManager.py" line="3983" /> + <location filename="../ViewManager/ViewManager.py" line="3994" /> + <location filename="../ViewManager/ViewManager.py" line="3993" /> <source>Goto Next Method or Class</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3986" /> + <location filename="../ViewManager/ViewManager.py" line="3996" /> <source>Ctrl+Shift+Down</source> <comment>Search|Goto Next Method or Class</comment> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3995" /> + <location filename="../ViewManager/ViewManager.py" line="4005" /> <source>Go to the next method or class definition</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4000" /> + <location filename="../ViewManager/ViewManager.py" line="4010" /> <source><b>Goto Next Method or Class</b><p>Goes to the line of the next method or class definition and highlights the name.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4013" /> + <location filename="../ViewManager/ViewManager.py" line="4023" /> <source>Search in Files</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4015" /> + <location filename="../ViewManager/ViewManager.py" line="4025" /> <source>Search in &Files...</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4017" /> + <location filename="../ViewManager/ViewManager.py" line="4027" /> <source>Shift+Ctrl+F</source> <comment>Search|Search Files</comment> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4026" /> + <location filename="../ViewManager/ViewManager.py" line="4036" /> <source>Search for a text in files</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4029" /> + <location filename="../ViewManager/ViewManager.py" line="4039" /> <source><b>Search in Files</b><p>Search for some text in the files of a directory tree or the project. A window is shown to enter the searchtext and options for the search and to display the result.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4041" /> + <location filename="../ViewManager/ViewManager.py" line="4051" /> <source>Replace in Files</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4042" /> + <location filename="../ViewManager/ViewManager.py" line="4052" /> <source>Replace in F&iles...</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4044" /> + <location filename="../ViewManager/ViewManager.py" line="4054" /> <source>Shift+Ctrl+R</source> <comment>Search|Replace in Files</comment> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4053" /> + <location filename="../ViewManager/ViewManager.py" line="4063" /> <source>Search for a text in files and replace it</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4058" /> + <location filename="../ViewManager/ViewManager.py" line="4068" /> <source><b>Replace in Files</b><p>Search for some text in the files of a directory tree or the project and replace it. A window is shown to enter the searchtext, the replacement text and options for the search and to display the result.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4071" /> + <location filename="../ViewManager/ViewManager.py" line="4081" /> <source>Search in Open Files</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4073" /> + <location filename="../ViewManager/ViewManager.py" line="4083" /> <source>Search in Open Files...</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4075" /> + <location filename="../ViewManager/ViewManager.py" line="4085" /> <source>Meta+Ctrl+Alt+F</source> <comment>Search|Search Open Files</comment> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4084" /> + <location filename="../ViewManager/ViewManager.py" line="4094" /> <source>Search for a text in open files</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4087" /> + <location filename="../ViewManager/ViewManager.py" line="4097" /> <source><b>Search in Open Files</b><p>Search for some text in the currently opened files. A window is shown to enter the search text and options for the search and to display the result.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4099" /> + <location filename="../ViewManager/ViewManager.py" line="4109" /> <source>Replace in Open Files</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4100" /> + <location filename="../ViewManager/ViewManager.py" line="4110" /> <source>Replace in Open Files...</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4102" /> + <location filename="../ViewManager/ViewManager.py" line="4112" /> <source>Meta+Ctrl+Alt+R</source> <comment>Search|Replace in Open Files</comment> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4111" /> + <location filename="../ViewManager/ViewManager.py" line="4121" /> <source>Search for a text in open files and replace it</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4116" /> + <location filename="../ViewManager/ViewManager.py" line="4126" /> <source><b>Replace in Open Files</b><p>Search for some text in the currently opened files and replace it. A window is shown to enter the search text, the replacement text and options for the search and to display the result.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4137" /> + <location filename="../ViewManager/ViewManager.py" line="4147" /> <source>&Search</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2793" /> <location filename="../QScintilla/ShellWindow.py" line="1020" /> - <location filename="../ViewManager/ViewManager.py" line="4208" /> + <location filename="../ViewManager/ViewManager.py" line="4218" /> <source>Zoom in</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2795" /> <location filename="../QScintilla/ShellWindow.py" line="1022" /> - <location filename="../ViewManager/ViewManager.py" line="4210" /> + <location filename="../ViewManager/ViewManager.py" line="4220" /> <source>Zoom &in</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2797" /> <location filename="../QScintilla/ShellWindow.py" line="1024" /> - <location filename="../ViewManager/ViewManager.py" line="4212" /> + <location filename="../ViewManager/ViewManager.py" line="4222" /> <source>Ctrl++</source> <comment>View|Zoom in</comment> <translation type="unfinished" /> @@ -97132,7 +97132,7 @@ <message> <location filename="../QScintilla/MiniEditor.py" line="2800" /> <location filename="../QScintilla/ShellWindow.py" line="1027" /> - <location filename="../ViewManager/ViewManager.py" line="4215" /> + <location filename="../ViewManager/ViewManager.py" line="4225" /> <source>Zoom In</source> <comment>View|Zoom in</comment> <translation type="unfinished" /> @@ -97140,35 +97140,35 @@ <message> <location filename="../QScintilla/MiniEditor.py" line="2806" /> <location filename="../QScintilla/ShellWindow.py" line="1033" /> - <location filename="../ViewManager/ViewManager.py" line="4221" /> + <location filename="../ViewManager/ViewManager.py" line="4231" /> <source>Zoom in on the text</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2809" /> <location filename="../QScintilla/ShellWindow.py" line="1036" /> - <location filename="../ViewManager/ViewManager.py" line="4224" /> + <location filename="../ViewManager/ViewManager.py" line="4234" /> <source><b>Zoom in</b><p>Zoom in on the text. This makes the text bigger.</p></source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2819" /> <location filename="../QScintilla/ShellWindow.py" line="1046" /> - <location filename="../ViewManager/ViewManager.py" line="4234" /> + <location filename="../ViewManager/ViewManager.py" line="4244" /> <source>Zoom out</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2821" /> <location filename="../QScintilla/ShellWindow.py" line="1048" /> - <location filename="../ViewManager/ViewManager.py" line="4236" /> + <location filename="../ViewManager/ViewManager.py" line="4246" /> <source>Zoom &out</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2823" /> <location filename="../QScintilla/ShellWindow.py" line="1050" /> - <location filename="../ViewManager/ViewManager.py" line="4238" /> + <location filename="../ViewManager/ViewManager.py" line="4248" /> <source>Ctrl+-</source> <comment>View|Zoom out</comment> <translation type="unfinished" /> @@ -97176,7 +97176,7 @@ <message> <location filename="../QScintilla/MiniEditor.py" line="2826" /> <location filename="../QScintilla/ShellWindow.py" line="1053" /> - <location filename="../ViewManager/ViewManager.py" line="4241" /> + <location filename="../ViewManager/ViewManager.py" line="4251" /> <source>Zoom Out</source> <comment>View|Zoom out</comment> <translation type="unfinished" /> @@ -97184,35 +97184,35 @@ <message> <location filename="../QScintilla/MiniEditor.py" line="2832" /> <location filename="../QScintilla/ShellWindow.py" line="1059" /> - <location filename="../ViewManager/ViewManager.py" line="4247" /> + <location filename="../ViewManager/ViewManager.py" line="4257" /> <source>Zoom out on the text</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2835" /> <location filename="../QScintilla/ShellWindow.py" line="1062" /> - <location filename="../ViewManager/ViewManager.py" line="4250" /> + <location filename="../ViewManager/ViewManager.py" line="4260" /> <source><b>Zoom out</b><p>Zoom out on the text. This makes the text smaller.</p></source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2845" /> <location filename="../QScintilla/ShellWindow.py" line="1072" /> - <location filename="../ViewManager/ViewManager.py" line="4260" /> + <location filename="../ViewManager/ViewManager.py" line="4270" /> <source>Zoom reset</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2847" /> <location filename="../QScintilla/ShellWindow.py" line="1074" /> - <location filename="../ViewManager/ViewManager.py" line="4262" /> + <location filename="../ViewManager/ViewManager.py" line="4272" /> <source>Zoom &reset</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2849" /> <location filename="../QScintilla/ShellWindow.py" line="1076" /> - <location filename="../ViewManager/ViewManager.py" line="4264" /> + <location filename="../ViewManager/ViewManager.py" line="4274" /> <source>Ctrl+0</source> <comment>View|Zoom reset</comment> <translation type="unfinished" /> @@ -97220,894 +97220,894 @@ <message> <location filename="../QScintilla/MiniEditor.py" line="2856" /> <location filename="../QScintilla/ShellWindow.py" line="1083" /> - <location filename="../ViewManager/ViewManager.py" line="4271" /> + <location filename="../ViewManager/ViewManager.py" line="4281" /> <source>Reset the zoom of the text</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2859" /> <location filename="../QScintilla/ShellWindow.py" line="1086" /> - <location filename="../ViewManager/ViewManager.py" line="4274" /> + <location filename="../ViewManager/ViewManager.py" line="4284" /> <source><b>Zoom reset</b><p>Reset the zoom of the text. This sets the zoom factor to 100%.</p></source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2870" /> <location filename="../QScintilla/ShellWindow.py" line="1097" /> - <location filename="../ViewManager/ViewManager.py" line="4285" /> + <location filename="../ViewManager/ViewManager.py" line="4295" /> <source>Zoom</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2872" /> <location filename="../QScintilla/ShellWindow.py" line="1099" /> - <location filename="../ViewManager/ViewManager.py" line="4287" /> + <location filename="../ViewManager/ViewManager.py" line="4297" /> <source>&Zoom</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2879" /> <location filename="../QScintilla/ShellWindow.py" line="1106" /> - <location filename="../ViewManager/ViewManager.py" line="4294" /> + <location filename="../ViewManager/ViewManager.py" line="4304" /> <source>Zoom the text</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2882" /> <location filename="../QScintilla/ShellWindow.py" line="1109" /> - <location filename="../ViewManager/ViewManager.py" line="4297" /> + <location filename="../ViewManager/ViewManager.py" line="4307" /> <source><b>Zoom</b><p>Zoom the text. This opens a dialog where the desired size can be entered.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4316" /> - <location filename="../ViewManager/ViewManager.py" line="4308" /> + <location filename="../ViewManager/ViewManager.py" line="4326" /> + <location filename="../ViewManager/ViewManager.py" line="4318" /> <source>Toggle all folds</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4309" /> - <source>&Toggle all folds</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="4319" /> - <source><b>Toggle all folds</b><p>Toggle all folds of the current editor.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="4341" /> + <source>&Toggle all folds</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../ViewManager/ViewManager.py" line="4329" /> + <source><b>Toggle all folds</b><p>Toggle all folds of the current editor.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4351" /> + <location filename="../ViewManager/ViewManager.py" line="4339" /> <source>Toggle all folds (including children)</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4332" /> + <location filename="../ViewManager/ViewManager.py" line="4342" /> <source>Toggle all &folds (including children)</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4346" /> + <location filename="../ViewManager/ViewManager.py" line="4356" /> <source><b>Toggle all folds (including children)</b><p>Toggle all folds of the current editor including all children.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4365" /> - <location filename="../ViewManager/ViewManager.py" line="4357" /> + <location filename="../ViewManager/ViewManager.py" line="4375" /> + <location filename="../ViewManager/ViewManager.py" line="4367" /> <source>Toggle current fold</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4358" /> - <source>Toggle &current fold</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="4368" /> + <source>Toggle &current fold</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4378" /> <source><b>Toggle current fold</b><p>Toggle the folds of the current line of the current editor.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4387" /> - <location filename="../ViewManager/ViewManager.py" line="4379" /> + <location filename="../ViewManager/ViewManager.py" line="4397" /> + <location filename="../ViewManager/ViewManager.py" line="4389" /> <source>Clear all folds</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4380" /> - <source>Clear &all folds</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="4390" /> + <source>Clear &all folds</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4400" /> <source><b>Clear all folds</b><p>Clear all folds of the current editor, i.e. ensure that all lines are displayed unfolded.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4410" /> - <location filename="../ViewManager/ViewManager.py" line="4403" /> - <location filename="../ViewManager/ViewManager.py" line="4401" /> + <location filename="../ViewManager/ViewManager.py" line="4420" /> + <location filename="../ViewManager/ViewManager.py" line="4413" /> + <location filename="../ViewManager/ViewManager.py" line="4411" /> <source>Remove all highlights</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4413" /> - <source><b>Remove all highlights</b><p>Remove the highlights of all editors.</p></source> - <translation type="unfinished" /> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="4423" /> + <source><b>Remove all highlights</b><p>Remove the highlights of all editors.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4433" /> <source>New Document View</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4425" /> + <location filename="../ViewManager/ViewManager.py" line="4435" /> <source>New &Document View</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4432" /> + <location filename="../ViewManager/ViewManager.py" line="4442" /> <source>Open a new view of the current document</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4437" /> + <location filename="../ViewManager/ViewManager.py" line="4447" /> <source><b>New Document View</b><p>Opens a new view of the current document. Both views show the same document. However, the cursors may be positioned independently.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4453" /> - <location filename="../ViewManager/ViewManager.py" line="4449" /> + <location filename="../ViewManager/ViewManager.py" line="4463" /> + <location filename="../ViewManager/ViewManager.py" line="4459" /> <source>New Document View (with new split)</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4462" /> + <location filename="../ViewManager/ViewManager.py" line="4472" /> <source>Open a new view of the current document in a new split</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4467" /> + <location filename="../ViewManager/ViewManager.py" line="4477" /> <source><b>New Document View</b><p>Opens a new view of the current document in a new split. Both views show the same document. However, the cursors may be positioned independently.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4479" /> + <location filename="../ViewManager/ViewManager.py" line="4489" /> <source>Split view</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4481" /> - <source>&Split view</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="4488" /> - <source>Add a split to the view</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="4491" /> - <source><b>Split view</b><p>Add a split to the view.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="4500" /> - <source>Arrange horizontally</source> + <source>&Split view</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4498" /> + <source>Add a split to the view</source> <translation type="unfinished" /> </message> <message> <location filename="../ViewManager/ViewManager.py" line="4501" /> + <source><b>Split view</b><p>Add a split to the view.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4510" /> + <source>Arrange horizontally</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4511" /> <source>Arrange &horizontally</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4509" /> + <location filename="../ViewManager/ViewManager.py" line="4519" /> <source>Arrange the splitted views horizontally</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4514" /> + <location filename="../ViewManager/ViewManager.py" line="4524" /> <source><b>Arrange horizontally</b><p>Arrange the splitted views horizontally.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4525" /> + <location filename="../ViewManager/ViewManager.py" line="4535" /> <source>Remove split</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4527" /> - <source>&Remove split</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="4534" /> - <source>Remove the current split</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="4537" /> - <source><b>Remove split</b><p>Remove the current split.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="4546" /> - <source>Next split</source> + <source>&Remove split</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4544" /> + <source>Remove the current split</source> <translation type="unfinished" /> </message> <message> <location filename="../ViewManager/ViewManager.py" line="4547" /> + <source><b>Remove split</b><p>Remove the current split.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4556" /> + <source>Next split</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4557" /> <source>&Next split</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4549" /> + <location filename="../ViewManager/ViewManager.py" line="4559" /> <source>Ctrl+Alt+N</source> <comment>View|Next split</comment> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4558" /> + <location filename="../ViewManager/ViewManager.py" line="4568" /> <source>Move to the next split</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4561" /> - <source><b>Next split</b><p>Move to the next split.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="4570" /> - <source>Previous split</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="4571" /> + <source><b>Next split</b><p>Move to the next split.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4580" /> + <source>Previous split</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4581" /> <source>&Previous split</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4573" /> + <location filename="../ViewManager/ViewManager.py" line="4583" /> <source>Ctrl+Alt+P</source> <comment>View|Previous split</comment> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4582" /> + <location filename="../ViewManager/ViewManager.py" line="4592" /> <source>Move to the previous split</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4585" /> + <location filename="../ViewManager/ViewManager.py" line="4595" /> <source><b>Previous split</b><p>Move to the previous split.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4596" /> - <location filename="../ViewManager/ViewManager.py" line="4594" /> + <location filename="../ViewManager/ViewManager.py" line="4606" /> + <location filename="../ViewManager/ViewManager.py" line="4604" /> <source>Preview</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4604" /> + <location filename="../ViewManager/ViewManager.py" line="4614" /> <source>Preview the current file in the web browser</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4609" /> + <location filename="../ViewManager/ViewManager.py" line="4619" /> <source><b>Preview</b><p>This opens the web browser with a preview of the current file.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4623" /> - <location filename="../ViewManager/ViewManager.py" line="4621" /> + <location filename="../ViewManager/ViewManager.py" line="4633" /> + <location filename="../ViewManager/ViewManager.py" line="4631" /> <source>Python AST Viewer</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4631" /> + <location filename="../ViewManager/ViewManager.py" line="4641" /> <source>Show the AST for the current Python file</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4636" /> + <location filename="../ViewManager/ViewManager.py" line="4646" /> <source><b>Python AST Viewer</b><p>This opens the a tree view of the AST of the current Python source file.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4650" /> - <location filename="../ViewManager/ViewManager.py" line="4648" /> + <location filename="../ViewManager/ViewManager.py" line="4660" /> + <location filename="../ViewManager/ViewManager.py" line="4658" /> <source>Python Disassembly Viewer</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4658" /> + <location filename="../ViewManager/ViewManager.py" line="4668" /> <source>Show the Disassembly for the current Python file</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4663" /> + <location filename="../ViewManager/ViewManager.py" line="4673" /> <source><b>Python Disassembly Viewer</b><p>This opens the a tree view of the Disassembly of the current Python source file.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4699" /> + <location filename="../ViewManager/ViewManager.py" line="4709" /> <source>&View</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4734" /> - <location filename="../ViewManager/ViewManager.py" line="4732" /> + <location filename="../ViewManager/ViewManager.py" line="4744" /> + <location filename="../ViewManager/ViewManager.py" line="4742" /> <source>View</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4773" /> - <location filename="../ViewManager/ViewManager.py" line="4765" /> + <location filename="../ViewManager/ViewManager.py" line="4783" /> + <location filename="../ViewManager/ViewManager.py" line="4775" /> <source>Start Macro Recording</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4766" /> - <source>S&tart Macro Recording</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="4776" /> - <source><b>Start Macro Recording</b><p>Start recording editor commands into a new macro.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="4794" /> + <source>S&tart Macro Recording</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../ViewManager/ViewManager.py" line="4786" /> + <source><b>Start Macro Recording</b><p>Start recording editor commands into a new macro.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4804" /> + <location filename="../ViewManager/ViewManager.py" line="4796" /> <source>Stop Macro Recording</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4787" /> - <source>Sto&p Macro Recording</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="4797" /> - <source><b>Stop Macro Recording</b><p>Stop recording editor commands into a new macro.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="4815" /> + <source>Sto&p Macro Recording</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../ViewManager/ViewManager.py" line="4807" /> + <source><b>Stop Macro Recording</b><p>Stop recording editor commands into a new macro.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4825" /> + <location filename="../ViewManager/ViewManager.py" line="4817" /> <source>Run Macro</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4808" /> - <source>&Run Macro</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="4818" /> - <source><b>Run Macro</b><p>Run a previously recorded editor macro.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="4836" /> + <source>&Run Macro</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../ViewManager/ViewManager.py" line="4828" /> + <source><b>Run Macro</b><p>Run a previously recorded editor macro.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4846" /> + <location filename="../ViewManager/ViewManager.py" line="4838" /> <source>Delete Macro</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4829" /> - <source>&Delete Macro</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="4839" /> - <source><b>Delete Macro</b><p>Delete a previously recorded editor macro.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="4857" /> + <source>&Delete Macro</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../ViewManager/ViewManager.py" line="4849" /> + <source><b>Delete Macro</b><p>Delete a previously recorded editor macro.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4867" /> + <location filename="../ViewManager/ViewManager.py" line="4859" /> <source>Load Macro</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4850" /> - <source>&Load Macro</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="4860" /> - <source><b>Load Macro</b><p>Load an editor macro from a file.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="4877" /> - <location filename="../ViewManager/ViewManager.py" line="4869" /> - <source>Save Macro</source> + <source>&Load Macro</source> <translation type="unfinished" /> </message> <message> <location filename="../ViewManager/ViewManager.py" line="4870" /> - <source>&Save Macro</source> + <source><b>Load Macro</b><p>Load an editor macro from a file.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4887" /> + <location filename="../ViewManager/ViewManager.py" line="4879" /> + <source>Save Macro</source> <translation type="unfinished" /> </message> <message> <location filename="../ViewManager/ViewManager.py" line="4880" /> + <source>&Save Macro</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4890" /> <source><b>Save Macro</b><p>Save a previously recorded editor macro to a file.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4898" /> + <location filename="../ViewManager/ViewManager.py" line="4908" /> <source>&Macros</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4929" /> - <location filename="../ViewManager/ViewManager.py" line="4916" /> + <location filename="../ViewManager/ViewManager.py" line="4939" /> + <location filename="../ViewManager/ViewManager.py" line="4926" /> <source>Toggle Bookmark</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4918" /> + <location filename="../ViewManager/ViewManager.py" line="4928" /> <source>&Toggle Bookmark</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4920" /> + <location filename="../ViewManager/ViewManager.py" line="4930" /> <source>Alt+Ctrl+T</source> <comment>Bookmark|Toggle</comment> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4932" /> + <location filename="../ViewManager/ViewManager.py" line="4942" /> <source><b>Toggle Bookmark</b><p>Toggle a bookmark at the current line of the current editor.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4956" /> - <location filename="../ViewManager/ViewManager.py" line="4943" /> + <location filename="../ViewManager/ViewManager.py" line="4966" /> + <location filename="../ViewManager/ViewManager.py" line="4953" /> <source>Next Bookmark</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4945" /> + <location filename="../ViewManager/ViewManager.py" line="4955" /> <source>&Next Bookmark</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4947" /> + <location filename="../ViewManager/ViewManager.py" line="4957" /> <source>Ctrl+PgDown</source> <comment>Bookmark|Next</comment> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4959" /> + <location filename="../ViewManager/ViewManager.py" line="4969" /> <source><b>Next Bookmark</b><p>Go to next bookmark of the current editor.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4982" /> - <location filename="../ViewManager/ViewManager.py" line="4969" /> + <location filename="../ViewManager/ViewManager.py" line="4992" /> + <location filename="../ViewManager/ViewManager.py" line="4979" /> <source>Previous Bookmark</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4971" /> + <location filename="../ViewManager/ViewManager.py" line="4981" /> <source>&Previous Bookmark</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4973" /> + <location filename="../ViewManager/ViewManager.py" line="4983" /> <source>Ctrl+PgUp</source> <comment>Bookmark|Previous</comment> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4985" /> + <location filename="../ViewManager/ViewManager.py" line="4995" /> <source><b>Previous Bookmark</b><p>Go to previous bookmark of the current editor.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5007" /> - <location filename="../ViewManager/ViewManager.py" line="4995" /> + <location filename="../ViewManager/ViewManager.py" line="5017" /> + <location filename="../ViewManager/ViewManager.py" line="5005" /> <source>Clear Bookmarks</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4996" /> + <location filename="../ViewManager/ViewManager.py" line="5006" /> <source>&Clear Bookmarks</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4998" /> + <location filename="../ViewManager/ViewManager.py" line="5008" /> <source>Alt+Ctrl+C</source> <comment>Bookmark|Clear</comment> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5010" /> + <location filename="../ViewManager/ViewManager.py" line="5020" /> <source><b>Clear Bookmarks</b><p>Clear bookmarks of all editors.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5029" /> - <location filename="../ViewManager/ViewManager.py" line="5020" /> + <location filename="../ViewManager/ViewManager.py" line="5039" /> + <location filename="../ViewManager/ViewManager.py" line="5030" /> <source>Goto Syntax Error</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5022" /> - <source>&Goto Syntax Error</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="5032" /> - <source><b>Goto Syntax Error</b><p>Go to next syntax error of the current editor.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="5050" /> + <source>&Goto Syntax Error</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../ViewManager/ViewManager.py" line="5042" /> + <source><b>Goto Syntax Error</b><p>Go to next syntax error of the current editor.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="5060" /> + <location filename="../ViewManager/ViewManager.py" line="5052" /> <source>Clear Syntax Errors</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5043" /> - <source>Clear &Syntax Errors</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="5053" /> - <source><b>Clear Syntax Errors</b><p>Clear syntax errors of all editors.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="5072" /> + <source>Clear &Syntax Errors</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../ViewManager/ViewManager.py" line="5063" /> + <source><b>Clear Syntax Errors</b><p>Clear syntax errors of all editors.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="5082" /> + <location filename="../ViewManager/ViewManager.py" line="5073" /> <source>Next warning message</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5065" /> - <source>&Next warning message</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="5075" /> + <source>&Next warning message</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="5085" /> <source><b>Next warning message</b><p>Go to next line of the current editor having a pyflakes warning.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5095" /> - <location filename="../ViewManager/ViewManager.py" line="5086" /> + <location filename="../ViewManager/ViewManager.py" line="5105" /> + <location filename="../ViewManager/ViewManager.py" line="5096" /> <source>Previous warning message</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5088" /> - <source>&Previous warning message</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="5098" /> + <source>&Previous warning message</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="5108" /> <source><b>Previous warning message</b><p>Go to previous line of the current editor having a pyflakes warning.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5117" /> - <location filename="../ViewManager/ViewManager.py" line="5109" /> + <location filename="../ViewManager/ViewManager.py" line="5127" /> + <location filename="../ViewManager/ViewManager.py" line="5119" /> <source>Clear Warning Messages</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5110" /> - <source>Clear &Warning Messages</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="5120" /> - <source><b>Clear Warning Messages</b><p>Clear pyflakes warning messages of all editors.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="5139" /> + <source>Clear &Warning Messages</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../ViewManager/ViewManager.py" line="5130" /> + <source><b>Clear Warning Messages</b><p>Clear pyflakes warning messages of all editors.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="5149" /> + <location filename="../ViewManager/ViewManager.py" line="5140" /> <source>Next uncovered line</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5132" /> - <source>&Next uncovered line</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="5142" /> + <source>&Next uncovered line</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="5152" /> <source><b>Next uncovered line</b><p>Go to next line of the current editor marked as not covered.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5162" /> - <location filename="../ViewManager/ViewManager.py" line="5153" /> + <location filename="../ViewManager/ViewManager.py" line="5172" /> + <location filename="../ViewManager/ViewManager.py" line="5163" /> <source>Previous uncovered line</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5155" /> - <source>&Previous uncovered line</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="5165" /> + <source>&Previous uncovered line</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="5175" /> <source><b>Previous uncovered line</b><p>Go to previous line of the current editor marked as not covered.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5185" /> - <location filename="../ViewManager/ViewManager.py" line="5176" /> + <location filename="../ViewManager/ViewManager.py" line="5195" /> + <location filename="../ViewManager/ViewManager.py" line="5186" /> <source>Next Task</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5178" /> - <source>&Next Task</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="5188" /> - <source><b>Next Task</b><p>Go to next line of the current editor having a task.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="5207" /> + <source>&Next Task</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../ViewManager/ViewManager.py" line="5198" /> + <source><b>Next Task</b><p>Go to next line of the current editor having a task.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="5217" /> + <location filename="../ViewManager/ViewManager.py" line="5208" /> <source>Previous Task</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5200" /> - <source>&Previous Task</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="5210" /> + <source>&Previous Task</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="5220" /> <source><b>Previous Task</b><p>Go to previous line of the current editor having a task.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5230" /> - <location filename="../ViewManager/ViewManager.py" line="5221" /> + <location filename="../ViewManager/ViewManager.py" line="5240" /> + <location filename="../ViewManager/ViewManager.py" line="5231" /> <source>Next Change</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5223" /> - <source>&Next Change</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="5233" /> + <source>&Next Change</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="5243" /> <source><b>Next Change</b><p>Go to next line of the current editor having a change marker.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5253" /> - <location filename="../ViewManager/ViewManager.py" line="5244" /> + <location filename="../ViewManager/ViewManager.py" line="5263" /> + <location filename="../ViewManager/ViewManager.py" line="5254" /> <source>Previous Change</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5246" /> - <source>&Previous Change</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="5256" /> + <source>&Previous Change</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="5266" /> <source><b>Previous Change</b><p>Go to previous line of the current editor having a change marker.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5277" /> - <location filename="../ViewManager/ViewManager.py" line="5275" /> + <location filename="../ViewManager/ViewManager.py" line="5287" /> + <location filename="../ViewManager/ViewManager.py" line="5285" /> <source>&Bookmarks</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5321" /> - <location filename="../ViewManager/ViewManager.py" line="5319" /> + <location filename="../ViewManager/ViewManager.py" line="5331" /> + <location filename="../ViewManager/ViewManager.py" line="5329" /> <source>Bookmarks</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5355" /> + <location filename="../ViewManager/ViewManager.py" line="5365" /> <source>Check spelling</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5357" /> + <location filename="../ViewManager/ViewManager.py" line="5367" /> <source>Check &spelling...</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5359" /> + <location filename="../ViewManager/ViewManager.py" line="5369" /> <source>Shift+F7</source> <comment>Spelling|Spell Check</comment> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5368" /> + <location filename="../ViewManager/ViewManager.py" line="5378" /> <source>Perform spell check of current editor</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5373" /> - <source><b>Check spelling</b><p>Perform a spell check of the current editor.</p></source> - <translation type="unfinished" /> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="5383" /> - <source>Automatic spell checking</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="5385" /> - <source>&Automatic spell checking</source> + <source><b>Check spelling</b><p>Perform a spell check of the current editor.</p></source> <translation type="unfinished" /> </message> <message> <location filename="../ViewManager/ViewManager.py" line="5393" /> + <source>Automatic spell checking</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="5395" /> + <source>&Automatic spell checking</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="5403" /> <source>(De-)Activate automatic spell checking</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5398" /> + <location filename="../ViewManager/ViewManager.py" line="5408" /> <source><b>Automatic spell checking</b><p>Activate or deactivate the automatic spell checking function of all editors.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5432" /> + <location filename="../ViewManager/ViewManager.py" line="5442" /> <source>Edit Dictionary</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5435" /> + <location filename="../ViewManager/ViewManager.py" line="5445" /> <source>Project Word List</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5439" /> + <location filename="../ViewManager/ViewManager.py" line="5449" /> <source>Project Exception List</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5444" /> + <location filename="../ViewManager/ViewManager.py" line="5454" /> <source>User Word List</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5448" /> + <location filename="../ViewManager/ViewManager.py" line="5458" /> <source>User Exception List</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5469" /> - <location filename="../ViewManager/ViewManager.py" line="5467" /> + <location filename="../ViewManager/ViewManager.py" line="5479" /> + <location filename="../ViewManager/ViewManager.py" line="5477" /> <source>Spelling</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5492" /> + <location filename="../ViewManager/ViewManager.py" line="5502" /> <source>Open Files</source> <translation type="unfinished" /> </message> <message> + <location filename="../ViewManager/ViewManager.py" line="5531" /> <location filename="../ViewManager/ViewManager.py" line="5521" /> - <location filename="../ViewManager/ViewManager.py" line="5511" /> <source>Open Remote Files</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5578" /> + <location filename="../ViewManager/ViewManager.py" line="5588" /> <source>File Modified</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5579" /> + <location filename="../ViewManager/ViewManager.py" line="5589" /> <source><p>The file <b>{0}</b> has unsaved changes.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6078" /> + <location filename="../ViewManager/ViewManager.py" line="6090" /> <source>Line: {0:5}</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6084" /> + <location filename="../ViewManager/ViewManager.py" line="6096" /> <source>Pos: {0:5}</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6104" /> + <location filename="../ViewManager/ViewManager.py" line="6116" /> <source>Language: {0}</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6113" /> + <location filename="../ViewManager/ViewManager.py" line="6125" /> <source>EOL Mode: {0}</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6641" /> - <location filename="../ViewManager/ViewManager.py" line="6598" /> + <location filename="../ViewManager/ViewManager.py" line="6668" /> + <location filename="../ViewManager/ViewManager.py" line="6625" /> <source>&Clear</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6635" /> + <location filename="../ViewManager/ViewManager.py" line="6662" /> <source>&Add</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6638" /> + <location filename="../ViewManager/ViewManager.py" line="6665" /> <source>&Edit...</source> <translation type="unfinished" /> </message> <message> + <location filename="../ViewManager/ViewManager.py" line="7735" /> + <location filename="../ViewManager/ViewManager.py" line="7721" /> + <location filename="../ViewManager/ViewManager.py" line="7689" /> + <source>Edit Spelling Dictionary</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="7692" /> + <source><p>The spelling dictionary file <b>{0}</b> could not be read.</p><p>Reason: {1}</p></source> + <translation type="unfinished" /> + </message> + <message> <location filename="../ViewManager/ViewManager.py" line="7708" /> - <location filename="../ViewManager/ViewManager.py" line="7694" /> - <location filename="../ViewManager/ViewManager.py" line="7662" /> - <source>Edit Spelling Dictionary</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="7665" /> - <source><p>The spelling dictionary file <b>{0}</b> could not be read.</p><p>Reason: {1}</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="7681" /> <source>Editing {0}</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="7697" /> + <location filename="../ViewManager/ViewManager.py" line="7724" /> <source><p>The spelling dictionary file <b>{0}</b> could not be written.</p><p>Reason: {1}</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="7711" /> + <location filename="../ViewManager/ViewManager.py" line="7738" /> <source>The spelling dictionary was saved successfully.</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5522" /> + <location filename="../ViewManager/ViewManager.py" line="5532" /> <source>You must be connected to a remote eric-ide server. Aborting...</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6820" /> + <location filename="../ViewManager/ViewManager.py" line="6847" /> <source>Clear Editor</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6821" /> + <location filename="../ViewManager/ViewManager.py" line="6848" /> <source>Do you really want to delete all text of the current editor?</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="8241" /> - <location filename="../ViewManager/ViewManager.py" line="8224" /> + <location filename="../ViewManager/ViewManager.py" line="8268" /> + <location filename="../ViewManager/ViewManager.py" line="8251" /> <source>File System Watcher Error</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="8225" /> + <location filename="../ViewManager/ViewManager.py" line="8252" /> <source><p>The operating system resources for file system watches are exhausted. This limit should be increased. On a Linux system you should <ul><li>sudo nano /etc/sysctl.conf</li><li>add to the bottom "fs.inotify.max_user_instances = 1024"</li><li>save and close the editor</li><li>sudo sysctl -p</li></ul></p><p>Error Message: {0}</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="8242" /> + <location filename="../ViewManager/ViewManager.py" line="8269" /> <source>The file system watcher reported an error with code <b>{0}</b>.</p><p>Error Message: {1}</p></source> <translation type="unfinished" /> </message> @@ -98958,54 +98958,54 @@ <context> <name>VirtualenvManager</name> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="317" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="319" /> <source>Add Virtual Environment</source> <translation type="unfinished" /> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="318" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="320" /> <source>A virtual environment named <b>{0}</b> exists already. Shall it be replaced?</source> <translation type="unfinished" /> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="355" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="357" /> <source>Change Virtual Environment</source> <translation type="unfinished" /> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="388" /> - <location filename="../VirtualEnv/VirtualenvManager.py" line="356" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="390" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="358" /> <source>A virtual environment named <b>{0}</b> does not exist. Aborting!</source> <translation type="unfinished" /> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="387" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="389" /> <source>Rename Virtual Environment</source> <translation type="unfinished" /> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="479" /> - <location filename="../VirtualEnv/VirtualenvManager.py" line="412" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="481" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="414" /> <source>{0} - {1}</source> <translation type="unfinished" /> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="419" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="421" /> <source>Delete Virtual Environments</source> <translation type="unfinished" /> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="420" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="422" /> <source>Do you really want to delete these virtual environments?</source> <translation type="unfinished" /> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="486" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="488" /> <source>Remove Virtual Environments</source> <translation type="unfinished" /> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="487" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="489" /> <source>Do you really want to remove these virtual environments?</source> <translation type="unfinished" /> </message> @@ -99013,7 +99013,7 @@ <context> <name>VirtualenvManagerDialog</name> <message> - <location filename="../VirtualEnv/VirtualenvManagerWidgets.py" line="442" /> + <location filename="../VirtualEnv/VirtualenvManagerWidgets.py" line="448" /> <source>Manage Virtual Environments</source> <translation type="unfinished" /> </message> @@ -99136,7 +99136,7 @@ <context> <name>VirtualenvManagerWindow</name> <message> - <location filename="../VirtualEnv/VirtualenvManagerWidgets.py" line="482" /> + <location filename="../VirtualEnv/VirtualenvManagerWidgets.py" line="488" /> <source>Manage Virtual Environments</source> <translation type="unfinished" /> </message>
--- a/src/eric7/i18n/eric7_en.ts Wed Oct 16 17:38:35 2024 +0200 +++ b/src/eric7/i18n/eric7_en.ts Wed Oct 16 17:39:40 2024 +0200 @@ -1628,27 +1628,27 @@ <context> <name>AssistantJedi</name> <message> - <location filename="../JediInterface/AssistantJedi.py" line="230" /> + <location filename="../JediInterface/AssistantJedi.py" line="236" /> <source>Refactoring</source> <translation type="unfinished" /> </message> <message> - <location filename="../JediInterface/AssistantJedi.py" line="232" /> - <source>Rename Variable</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../JediInterface/AssistantJedi.py" line="235" /> - <source>Extract Variable</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../JediInterface/AssistantJedi.py" line="238" /> + <source>Rename Variable</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../JediInterface/AssistantJedi.py" line="241" /> + <source>Extract Variable</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../JediInterface/AssistantJedi.py" line="244" /> <source>Inline Variable</source> <translation type="unfinished" /> </message> <message> - <location filename="../JediInterface/AssistantJedi.py" line="242" /> + <location filename="../JediInterface/AssistantJedi.py" line="248" /> <source>Extract Function</source> <translation type="unfinished" /> </message> @@ -9179,19 +9179,35 @@ <translation type="unfinished" /> </message> <message> - <location filename="../Debugger/DebugServer.py" line="2109" /> + <location filename="../Debugger/DebugServer.py" line="2110" /> <source>Passive debug connection received </source> <translation type="unfinished" /> </message> <message> - <location filename="../Debugger/DebugServer.py" line="2123" /> + <location filename="../Debugger/DebugServer.py" line="2119" /> + <source>Passive debug connection received while not in passive mode. +</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Debugger/DebugServer.py" line="2125" /> + <source>Debug Client Connection</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Debugger/DebugServer.py" line="2126" /> + <source>Passive debug client connection received while not in passive mode. Enable this mode on the 'Debugger General' configuration page. The connection will be rejected.</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Debugger/DebugServer.py" line="2141" /> <source>Passive debug connection closed </source> <translation type="unfinished" /> </message> <message> - <location filename="../Debugger/DebugServer.py" line="2254" /> + <location filename="../Debugger/DebugServer.py" line="2272" /> <source><project></source> <translation type="unfinished" /> </message> @@ -10142,23 +10158,12 @@ </message> <message> <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" /> - <source>Enables the passive debug mode</source> + <source>Debugger Type:</source> <translation type="unfinished" /> </message> <message> <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" /> - <source><b>Passive Debugger Enabled</b> -<p>This enables the passive debugging mode. In this mode the debug client (the script) connects to the debug server (the IDE). The script is started outside the IDE. This way mod_python or Zope scripts can be debugged.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" /> - <source>Passive Debugger Enabled</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" /> - <source>Debug Server Port:</source> + <source>Select the debugger type of the backend</source> <translation type="unfinished" /> </message> <message> @@ -10174,12 +10179,7 @@ </message> <message> <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" /> - <source>Debugger Type:</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" /> - <source>Select the debugger type of the backend</source> + <source>Debug Server Port:</source> <translation type="unfinished" /> </message> <message> @@ -10512,46 +10512,46 @@ <context> <name>DebuggerInterfacePython</name> <message> - <location filename="../Debugger/DebuggerInterfacePython.py" line="727" /> - <location filename="../Debugger/DebuggerInterfacePython.py" line="704" /> - <location filename="../Debugger/DebuggerInterfacePython.py" line="611" /> - <location filename="../Debugger/DebuggerInterfacePython.py" line="565" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="728" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="705" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="609" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="563" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="445" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="422" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="345" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="321" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="258" /> + <source>Start Debugger</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Debugger/DebuggerInterfacePython.py" line="564" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="259" /> + <source><p>No suitable Python3 environment configured.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Debugger/DebuggerInterfacePython.py" line="729" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="706" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="610" /> <location filename="../Debugger/DebuggerInterfacePython.py" line="446" /> <location filename="../Debugger/DebuggerInterfacePython.py" line="423" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="322" /> + <source><p>The debugger backend could not be started.</p></source> + <translation type="unfinished" /> + </message> + <message> <location filename="../Debugger/DebuggerInterfacePython.py" line="346" /> - <location filename="../Debugger/DebuggerInterfacePython.py" line="322" /> - <location filename="../Debugger/DebuggerInterfacePython.py" line="259" /> - <source>Start Debugger</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Debugger/DebuggerInterfacePython.py" line="566" /> - <location filename="../Debugger/DebuggerInterfacePython.py" line="260" /> - <source><p>No suitable Python3 environment configured.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Debugger/DebuggerInterfacePython.py" line="728" /> - <location filename="../Debugger/DebuggerInterfacePython.py" line="705" /> - <location filename="../Debugger/DebuggerInterfacePython.py" line="612" /> - <location filename="../Debugger/DebuggerInterfacePython.py" line="447" /> - <location filename="../Debugger/DebuggerInterfacePython.py" line="424" /> - <location filename="../Debugger/DebuggerInterfacePython.py" line="323" /> - <source><p>The debugger backend could not be started.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Debugger/DebuggerInterfacePython.py" line="347" /> <source><p>Remote debugging is configured but no command for remote login was given.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Debugger/DebuggerInterfacePython.py" line="1659" /> - <source>Debug Protocol Error</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Debugger/DebuggerInterfacePython.py" line="1660" /> + <source>Debug Protocol Error</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Debugger/DebuggerInterfacePython.py" line="1661" /> <source><p>The response received from the debugger backend 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" /> </message> @@ -61904,7 +61904,7 @@ <context> <name>PreviewModel</name> <message> - <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="478" /> + <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="506" /> <source>Variable Name</source> <translation type="unfinished" /> </message> @@ -62786,8 +62786,8 @@ <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="8058" /> - <location filename="../Project/Project.py" line="3901" /> + <location filename="../Project/Project.py" line="8055" /> + <location filename="../Project/Project.py" line="3898" /> <location filename="../Project/Project.py" line="2398" /> <source><p>The file <b>{0}</b> already exists. Overwrite it?</p></source> <translation type="unfinished" /> @@ -62921,40 +62921,40 @@ <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="8044" /> - <location filename="../Project/Project.py" line="8038" /> - <location filename="../Project/Project.py" line="8028" /> - <location filename="../Project/Project.py" line="3886" /> - <location filename="../Project/Project.py" line="3876" /> + <location filename="../Project/Project.py" line="8041" /> + <location filename="../Project/Project.py" line="8035" /> + <location filename="../Project/Project.py" line="8025" /> + <location filename="../Project/Project.py" line="3883" /> + <location filename="../Project/Project.py" line="3873" /> <location filename="../Project/Project.py" line="3652" /> <source>Project Files (*.epj)</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="3900" /> - <location filename="../Project/Project.py" line="3884" /> + <location filename="../Project/Project.py" line="3897" /> + <location filename="../Project/Project.py" line="3881" /> <source>Save Project</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="3939" /> + <location filename="../Project/Project.py" line="3936" /> <source>Close Project</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="3940" /> + <location filename="../Project/Project.py" line="3937" /> <source>The current project has unsaved changes.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="4140" /> - <location filename="../Project/Project.py" line="4104" /> + <location filename="../Project/Project.py" line="4137" /> + <location filename="../Project/Project.py" line="4101" /> <source>Syntax Errors Detected</source> <translation type="unfinished" /> </message> <message numerus="yes"> - <location filename="../Project/Project.py" line="4141" /> - <location filename="../Project/Project.py" line="4105" /> + <location filename="../Project/Project.py" line="4138" /> + <location filename="../Project/Project.py" line="4102" /> <source>The project contains %n file(s) with syntax errors.</source> <translation> <numerusform>The project contains one file with syntax errors.</numerusform> @@ -62962,1268 +62962,1268 @@ </translation> </message> <message> - <location filename="../Project/Project.py" line="4799" /> + <location filename="../Project/Project.py" line="4796" /> <source>New project</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="4801" /> + <location filename="../Project/Project.py" line="4798" /> <source>&New...</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="4807" /> + <location filename="../Project/Project.py" line="4804" /> <source>Generate a new project</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="4809" /> + <location filename="../Project/Project.py" line="4806" /> <source><b>New...</b><p>This opens a dialog for entering the info for a new project.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="4819" /> + <location filename="../Project/Project.py" line="4816" /> <source>Open project</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="4821" /> + <location filename="../Project/Project.py" line="4818" /> <source>&Open...</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="4827" /> + <location filename="../Project/Project.py" line="4824" /> <source>Open an existing project</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="4829" /> + <location filename="../Project/Project.py" line="4826" /> <source><b>Open...</b><p>This opens an existing project.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="4835" /> + <location filename="../Project/Project.py" line="4832" /> <source>Open remote project</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="4837" /> + <location filename="../Project/Project.py" line="4834" /> <source>Open (Remote)...</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="4843" /> + <location filename="../Project/Project.py" line="4840" /> <source>Open an existing remote project</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="4845" /> + <location filename="../Project/Project.py" line="4842" /> <source><b>Open (Remote)...</b><p>This opens an existing remote project.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="4854" /> + <location filename="../Project/Project.py" line="4851" /> <source>Reload project</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="4856" /> + <location filename="../Project/Project.py" line="4853" /> <source>Re&load</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="4862" /> + <location filename="../Project/Project.py" line="4859" /> <source>Reload the current project</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="4864" /> + <location filename="../Project/Project.py" line="4861" /> <source><b>Reload</b><p>This reloads the current project.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="4870" /> + <location filename="../Project/Project.py" line="4867" /> <source>Close project</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="4872" /> + <location filename="../Project/Project.py" line="4869" /> <source>&Close</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="4878" /> + <location filename="../Project/Project.py" line="4875" /> <source>Close the current project</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="4880" /> + <location filename="../Project/Project.py" line="4877" /> <source><b>Close</b><p>This closes the current project.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="4886" /> + <location filename="../Project/Project.py" line="4883" /> <source>Save project</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5183" /> - <location filename="../Project/Project.py" line="4888" /> + <location filename="../Project/Project.py" line="5180" /> + <location filename="../Project/Project.py" line="4885" /> <source>&Save</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="4894" /> + <location filename="../Project/Project.py" line="4891" /> <source>Save the current project</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="4896" /> + <location filename="../Project/Project.py" line="4893" /> <source><b>Save</b><p>This saves the current project.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="4902" /> + <location filename="../Project/Project.py" line="4899" /> <source>Save project as</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="4904" /> + <location filename="../Project/Project.py" line="4901" /> <source>Save &as...</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="4910" /> + <location filename="../Project/Project.py" line="4907" /> <source>Save the current project to a new file</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="4912" /> + <location filename="../Project/Project.py" line="4909" /> <source><b>Save as</b><p>This saves the current project to a new file.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="4921" /> + <location filename="../Project/Project.py" line="4918" /> <source>Save project as (Remote)</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="4923" /> + <location filename="../Project/Project.py" line="4920" /> <source>Save as (Remote)...</source> <translation type="unfinished" /> </message> <message> + <location filename="../Project/Project.py" line="4927" /> + <source>Save the current project to a new remote file</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../Project/Project.py" line="4930" /> - <source>Save the current project to a new remote file</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="4933" /> <source><b>Save as (Remote)</b><p>This saves the current project to a new remote file.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="4949" /> + <location filename="../Project/Project.py" line="4946" /> <source>Add files to project</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="4951" /> + <location filename="../Project/Project.py" line="4948" /> <source>Add &files...</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="4957" /> + <location filename="../Project/Project.py" line="4954" /> <source>Add files to the current project</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="4959" /> + <location filename="../Project/Project.py" line="4956" /> <source><b>Add files...</b><p>This opens a dialog for adding files to the current project. The place to add is determined by the file extension.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="4970" /> + <location filename="../Project/Project.py" line="4967" /> <source>Add directory to project</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="4972" /> + <location filename="../Project/Project.py" line="4969" /> <source>Add directory...</source> <translation type="unfinished" /> </message> <message> + <location filename="../Project/Project.py" line="4976" /> + <source>Add a directory to the current project</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../Project/Project.py" line="4979" /> - <source>Add a directory to the current project</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="4982" /> <source><b>Add directory...</b><p>This opens a dialog for adding a directory to the current project.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="4992" /> + <location filename="../Project/Project.py" line="4989" /> <source>Add translation to project</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="4994" /> + <location filename="../Project/Project.py" line="4991" /> <source>Add &translation...</source> <translation type="unfinished" /> </message> <message> + <location filename="../Project/Project.py" line="4998" /> + <source>Add a translation to the current project</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../Project/Project.py" line="5001" /> - <source>Add a translation to the current project</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="5004" /> <source><b>Add translation...</b><p>This opens a dialog for add a translation to the current project.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5014" /> + <location filename="../Project/Project.py" line="5011" /> <source>Search new files</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5015" /> + <location filename="../Project/Project.py" line="5012" /> <source>Searc&h new files...</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5021" /> + <location filename="../Project/Project.py" line="5018" /> <source>Search new files in the project directory.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5023" /> + <location filename="../Project/Project.py" line="5020" /> <source><b>Search new files...</b><p>This searches for new files (sources, forms, ...) in the project directory and registered subdirectories.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5033" /> + <location filename="../Project/Project.py" line="5030" /> <source>Search Project File</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5034" /> + <location filename="../Project/Project.py" line="5031" /> <source>Search Project File...</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5035" /> + <location filename="../Project/Project.py" line="5032" /> <source>Alt+Ctrl+P</source> <comment>Project|Search Project File</comment> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5040" /> + <location filename="../Project/Project.py" line="5037" /> <source>Search for a file in the project list of files.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5042" /> + <location filename="../Project/Project.py" line="5039" /> <source><b>Search Project File</b><p>This searches for a file in the project list of files.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5051" /> + <location filename="../Project/Project.py" line="5048" /> <source>Project properties</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5053" /> + <location filename="../Project/Project.py" line="5050" /> <source>&Properties...</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5059" /> + <location filename="../Project/Project.py" line="5056" /> <source>Show the project properties</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5061" /> + <location filename="../Project/Project.py" line="5058" /> <source><b>Properties...</b><p>This shows a dialog to edit the project properties.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5070" /> + <location filename="../Project/Project.py" line="5067" /> <source>User project properties</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5072" /> + <location filename="../Project/Project.py" line="5069" /> <source>&User Properties...</source> <translation type="unfinished" /> </message> <message> + <location filename="../Project/Project.py" line="5076" /> + <source>Show the user specific project properties</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../Project/Project.py" line="5079" /> - <source>Show the user specific project properties</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="5082" /> <source><b>User Properties...</b><p>This shows a dialog to edit the user specific project properties.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5092" /> + <location filename="../Project/Project.py" line="5089" /> <source>Filetype Associations</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5093" /> + <location filename="../Project/Project.py" line="5090" /> <source>Filetype Associations...</source> <translation type="unfinished" /> </message> <message> + <location filename="../Project/Project.py" line="5097" /> + <source>Show the project file type associations</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../Project/Project.py" line="5100" /> - <source>Show the project file type associations</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="5103" /> <source><b>Filetype Associations...</b><p>This shows a dialog to edit the file type associations of the project. These associations determine the type (source, form, interface, protocol or others) with a filename pattern. They are used when adding a file to the project and when performing a search for new files.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5116" /> + <location filename="../Project/Project.py" line="5113" /> <source>Lexer Associations</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5117" /> + <location filename="../Project/Project.py" line="5114" /> <source>Lexer Associations...</source> <translation type="unfinished" /> </message> <message> + <location filename="../Project/Project.py" line="5121" /> + <source>Show the project lexer associations (overriding defaults)</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../Project/Project.py" line="5124" /> - <source>Show the project lexer associations (overriding defaults)</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="5127" /> <source><b>Lexer Associations...</b><p>This shows a dialog to edit the lexer associations of the project. These associations override the global lexer associations. Lexers are used to highlight the editor text.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5145" /> + <location filename="../Project/Project.py" line="5142" /> <source>Debugger Properties</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5146" /> + <location filename="../Project/Project.py" line="5143" /> <source>Debugger &Properties...</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5152" /> + <location filename="../Project/Project.py" line="5149" /> <source>Show the debugger properties</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5154" /> + <location filename="../Project/Project.py" line="5151" /> <source><b>Debugger Properties...</b><p>This shows a dialog to edit project specific debugger settings.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5164" /> + <location filename="../Project/Project.py" line="5161" /> <source>Load</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5165" /> + <location filename="../Project/Project.py" line="5162" /> <source>&Load</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5171" /> + <location filename="../Project/Project.py" line="5168" /> <source>Load the debugger properties</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5173" /> + <location filename="../Project/Project.py" line="5170" /> <source><b>Load Debugger Properties</b><p>This loads the project specific debugger settings.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5182" /> + <location filename="../Project/Project.py" line="5179" /> <source>Save</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5189" /> + <location filename="../Project/Project.py" line="5186" /> <source>Save the debugger properties</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5191" /> + <location filename="../Project/Project.py" line="5188" /> <source><b>Save Debugger Properties</b><p>This saves the project specific debugger settings.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5200" /> + <location filename="../Project/Project.py" line="5197" /> <source>Delete</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5201" /> + <location filename="../Project/Project.py" line="5198" /> <source>&Delete</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5207" /> + <location filename="../Project/Project.py" line="5204" /> <source>Delete the debugger properties</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5209" /> + <location filename="../Project/Project.py" line="5206" /> <source><b>Delete Debugger Properties</b><p>This deletes the file containing the project specific debugger settings.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5219" /> + <location filename="../Project/Project.py" line="5216" /> <source>Reset</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5220" /> + <location filename="../Project/Project.py" line="5217" /> <source>&Reset</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5226" /> + <location filename="../Project/Project.py" line="5223" /> <source>Reset the debugger properties</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5228" /> + <location filename="../Project/Project.py" line="5225" /> <source><b>Reset Debugger Properties</b><p>This resets the project specific debugger settings.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5244" /> - <location filename="../Project/Project.py" line="5243" /> + <location filename="../Project/Project.py" line="5241" /> + <location filename="../Project/Project.py" line="5240" /> <source>Load session</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5250" /> + <location filename="../Project/Project.py" line="5247" /> <source>Load the projects session file.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5252" /> + <location filename="../Project/Project.py" line="5249" /> <source><b>Load session</b><p>This loads the projects session file. The session consists of the following data.<br>- all open source files<br>- all breakpoint<br>- the commandline arguments<br>- the working directory<br>- the exception reporting flag</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5268" /> - <location filename="../Project/Project.py" line="5267" /> + <location filename="../Project/Project.py" line="5265" /> + <location filename="../Project/Project.py" line="5264" /> <source>Save session</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5274" /> + <location filename="../Project/Project.py" line="5271" /> <source>Save the projects session file.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5276" /> + <location filename="../Project/Project.py" line="5273" /> <source><b>Save session</b><p>This saves the projects session file. The session consists of the following data.<br>- all open source files<br>- all breakpoint<br>- the commandline arguments<br>- the working directory<br>- the exception reporting flag</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5292" /> - <location filename="../Project/Project.py" line="5291" /> + <location filename="../Project/Project.py" line="5289" /> + <location filename="../Project/Project.py" line="5288" /> <source>Delete session</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5298" /> + <location filename="../Project/Project.py" line="5295" /> <source>Delete the projects session file.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5300" /> + <location filename="../Project/Project.py" line="5297" /> <source><b>Delete session</b><p>This deletes the projects session file</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5315" /> + <location filename="../Project/Project.py" line="5312" /> <source>Code Metrics</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5316" /> + <location filename="../Project/Project.py" line="5313" /> <source>&Code Metrics...</source> <translation type="unfinished" /> </message> <message> + <location filename="../Project/Project.py" line="5320" /> + <source>Show some code metrics for the project.</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../Project/Project.py" line="5323" /> - <source>Show some code metrics for the project.</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="5326" /> <source><b>Code Metrics...</b><p>This shows some code metrics for all Python files in the project.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5336" /> + <location filename="../Project/Project.py" line="5333" /> <source>Python Code Coverage</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5337" /> + <location filename="../Project/Project.py" line="5334" /> <source>Code Co&verage...</source> <translation type="unfinished" /> </message> <message> + <location filename="../Project/Project.py" line="5341" /> + <source>Show code coverage information for the project.</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../Project/Project.py" line="5344" /> - <source>Show code coverage information for the project.</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="5347" /> <source><b>Code Coverage...</b><p>This shows the code coverage information for all Python files in the project.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6781" /> - <location filename="../Project/Project.py" line="6768" /> - <location filename="../Project/Project.py" line="5357" /> + <location filename="../Project/Project.py" line="6778" /> + <location filename="../Project/Project.py" line="6765" /> + <location filename="../Project/Project.py" line="5354" /> <source>Profile Data</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5358" /> + <location filename="../Project/Project.py" line="5355" /> <source>&Profile Data...</source> <translation type="unfinished" /> </message> <message> + <location filename="../Project/Project.py" line="5362" /> + <source>Show profiling data for the project.</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../Project/Project.py" line="5365" /> - <source>Show profiling data for the project.</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="5368" /> <source><b>Profile Data...</b><p>This shows the profiling data for the project.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6833" /> - <location filename="../Project/Project.py" line="5383" /> + <location filename="../Project/Project.py" line="6830" /> + <location filename="../Project/Project.py" line="5380" /> <source>Application Diagram</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5384" /> + <location filename="../Project/Project.py" line="5381" /> <source>&Application Diagram...</source> <translation type="unfinished" /> </message> <message> + <location filename="../Project/Project.py" line="5388" /> + <source>Show a diagram of the project.</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../Project/Project.py" line="5391" /> - <source>Show a diagram of the project.</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="5394" /> <source><b>Application Diagram...</b><p>This shows a diagram of the project.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5403" /> + <location filename="../Project/Project.py" line="5400" /> <source>Load Diagram</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5404" /> + <location filename="../Project/Project.py" line="5401" /> <source>&Load Diagram...</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5410" /> + <location filename="../Project/Project.py" line="5407" /> <source>Load a diagram from file.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5412" /> + <location filename="../Project/Project.py" line="5409" /> <source><b>Load Diagram...</b><p>This loads a diagram from file.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="7001" /> - <location filename="../Project/Project.py" line="6946" /> - <location filename="../Project/Project.py" line="5427" /> + <location filename="../Project/Project.py" line="6998" /> + <location filename="../Project/Project.py" line="6943" /> + <location filename="../Project/Project.py" line="5424" /> <source>Create Package List</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5429" /> + <location filename="../Project/Project.py" line="5426" /> <source>Create &Package List</source> <translation type="unfinished" /> </message> <message> + <location filename="../Project/Project.py" line="5433" /> + <source>Create an initial PKGLIST file for an eric plugin.</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../Project/Project.py" line="5436" /> - <source>Create an initial PKGLIST file for an eric plugin.</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="5439" /> <source><b>Create Package List</b><p>This creates an initial list of files to include in an eric plugin archive. The list is created from the project file.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="7071" /> - <location filename="../Project/Project.py" line="5450" /> + <location filename="../Project/Project.py" line="7068" /> + <location filename="../Project/Project.py" line="5447" /> <source>Create Plugin Archives</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5452" /> + <location filename="../Project/Project.py" line="5449" /> <source>Create Plugin &Archives</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5458" /> + <location filename="../Project/Project.py" line="5455" /> <source>Create eric plugin archive files.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5460" /> + <location filename="../Project/Project.py" line="5457" /> <source><b>Create Plugin Archives</b><p>This creates eric plugin archive files using the list of files given in a PKGLIST* file. The archive name is built from the main script name if not designated in the package list file.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5472" /> + <location filename="../Project/Project.py" line="5469" /> <source>Create Plugin Archives (Snapshot)</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5474" /> + <location filename="../Project/Project.py" line="5471" /> <source>Create Plugin Archives (&Snapshot)</source> <translation type="unfinished" /> </message> <message> + <location filename="../Project/Project.py" line="5478" /> + <source>Create eric plugin archive files (snapshot releases).</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../Project/Project.py" line="5481" /> - <source>Create eric plugin archive files (snapshot releases).</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="5484" /> <source><b>Create Plugin Archives (Snapshot)</b><p>This creates eric plugin archive files using the list of files given in the PKGLIST* file. The archive name is built from the main script name if not designated in the package list file. The version entry of the main script is modified to reflect a snapshot release.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="7513" /> - <location filename="../Project/Project.py" line="7484" /> - <location filename="../Project/Project.py" line="7438" /> - <location filename="../Project/Project.py" line="7390" /> - <location filename="../Project/Project.py" line="5503" /> + <location filename="../Project/Project.py" line="7510" /> + <location filename="../Project/Project.py" line="7481" /> + <location filename="../Project/Project.py" line="7435" /> + <location filename="../Project/Project.py" line="7387" /> + <location filename="../Project/Project.py" line="5500" /> <source>Execute Make</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5504" /> + <location filename="../Project/Project.py" line="5501" /> <source>&Execute Make</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5510" /> + <location filename="../Project/Project.py" line="5507" /> <source>Perform a 'make' run.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5512" /> + <location filename="../Project/Project.py" line="5509" /> <source><b>Execute Make</b><p>This performs a 'make' run to rebuild the configured target.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="7490" /> - <location filename="../Project/Project.py" line="5522" /> + <location filename="../Project/Project.py" line="7487" /> + <location filename="../Project/Project.py" line="5519" /> <source>Test for Changes</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5523" /> + <location filename="../Project/Project.py" line="5520" /> <source>&Test for Changes</source> <translation type="unfinished" /> </message> <message> + <location filename="../Project/Project.py" line="5527" /> + <source>Question 'make', if a rebuild is needed.</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../Project/Project.py" line="5530" /> - <source>Question 'make', if a rebuild is needed.</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="5533" /> <source><b>Test for Changes</b><p>This questions 'make', if a rebuild of the configured target is necessary.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5551" /> + <location filename="../Project/Project.py" line="5548" /> <source>Create SBOM File</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5552" /> + <location filename="../Project/Project.py" line="5549" /> <source>Create &SBOM File</source> <translation type="unfinished" /> </message> <message> + <location filename="../Project/Project.py" line="5556" /> + <source>Create a SBOM file of the project dependencies.</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../Project/Project.py" line="5559" /> - <source>Create a SBOM file of the project dependencies.</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="5562" /> <source><b>Create SBOM File</b><p>This allows the creation of a SBOM file of the project dependencies. This may be based on various input sources and will be saved as a CycloneDX SBOM file.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5573" /> + <location filename="../Project/Project.py" line="5570" /> <source>Clear Byte Code Caches</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5574" /> + <location filename="../Project/Project.py" line="5571" /> <source>Clear Byte Code &Caches</source> <translation type="unfinished" /> </message> <message> + <location filename="../Project/Project.py" line="5578" /> + <source>Clear the byte code caches of the project.</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../Project/Project.py" line="5581" /> - <source>Clear the byte code caches of the project.</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="5584" /> <source><b>Clear Byte Code Caches</b><p>This deletes all directories containing byte code cache files.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5600" /> + <location filename="../Project/Project.py" line="5597" /> <source>About Black</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5601" /> + <location filename="../Project/Project.py" line="5598" /> <source>&Black</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5607" /> + <location filename="../Project/Project.py" line="5604" /> <source>Show some information about 'Black'.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5609" /> + <location filename="../Project/Project.py" line="5606" /> <source><b>Black</b><p>This shows some information about the installed 'Black' tool.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5621" /> + <location filename="../Project/Project.py" line="5618" /> <source>Format Code</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5622" /> + <location filename="../Project/Project.py" line="5619" /> <source>&Format Code</source> <translation type="unfinished" /> </message> <message> + <location filename="../Project/Project.py" line="5626" /> + <source>Format the project sources with 'Black'.</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../Project/Project.py" line="5629" /> - <source>Format the project sources with 'Black'.</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="5632" /> <source><b>Format Code</b><p>This shows a dialog to enter parameters for the formatting run and reformats the project sources using 'Black'.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5644" /> + <location filename="../Project/Project.py" line="5641" /> <source>Check Code Formatting</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5645" /> + <location filename="../Project/Project.py" line="5642" /> <source>&Check Code Formatting</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5652" /> + <location filename="../Project/Project.py" line="5649" /> <source>Check, if the project sources need to be reformatted with 'Black'.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5657" /> + <location filename="../Project/Project.py" line="5654" /> <source><b>Check Code Formatting</b><p>This shows a dialog to enter parameters for the format check run and performs a check, if the project sources need to be reformatted using 'Black'.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5670" /> + <location filename="../Project/Project.py" line="5667" /> <source>Code Formatting Diff</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5671" /> + <location filename="../Project/Project.py" line="5668" /> <source>Code Formatting &Diff</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5678" /> + <location filename="../Project/Project.py" line="5675" /> <source>Generate a unified diff of potential project source reformatting with 'Black'.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5684" /> + <location filename="../Project/Project.py" line="5681" /> <source><b>Diff Code Formatting</b><p>This shows a dialog to enter parameters for the format diff run and generates a unified diff of potential project source reformatting using 'Black'.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5849" /> - <location filename="../Project/Project.py" line="5799" /> - <location filename="../Project/Project.py" line="5798" /> - <location filename="../Project/Project.py" line="5698" /> - <location filename="../Project/Project.py" line="5697" /> + <location filename="../Project/Project.py" line="5846" /> + <location filename="../Project/Project.py" line="5796" /> + <location filename="../Project/Project.py" line="5795" /> + <location filename="../Project/Project.py" line="5695" /> + <location filename="../Project/Project.py" line="5694" /> <source>Configure</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5705" /> + <location filename="../Project/Project.py" line="5702" /> <source>Enter the parameters for formatting the project sources with 'Black'.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5710" /> + <location filename="../Project/Project.py" line="5707" /> <source><b>Configure</b><p>This shows a dialog to enter the parameters for formatting the project sources with 'Black'.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5726" /> + <location filename="../Project/Project.py" line="5723" /> <source>About isort</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5727" /> + <location filename="../Project/Project.py" line="5724" /> <source>&isort</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5733" /> + <location filename="../Project/Project.py" line="5730" /> <source>Show some information about 'isort'.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5735" /> + <location filename="../Project/Project.py" line="5732" /> <source><b>isort</b><p>This shows some information about the installed 'isort' tool.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5748" /> - <location filename="../Project/Project.py" line="5747" /> + <location filename="../Project/Project.py" line="5745" /> + <location filename="../Project/Project.py" line="5744" /> <source>Sort Imports</source> <translation type="unfinished" /> </message> <message> + <location filename="../Project/Project.py" line="5752" /> + <source>Sort the import statements of the project sources with 'isort'.</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../Project/Project.py" line="5755" /> - <source>Sort the import statements of the project sources with 'isort'.</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="5758" /> <source><b>Sort Imports</b><p>This shows a dialog to enter parameters for the imports sorting run and sorts the import statements of the project sources using 'isort'.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5772" /> - <location filename="../Project/Project.py" line="5771" /> + <location filename="../Project/Project.py" line="5769" /> + <location filename="../Project/Project.py" line="5768" /> <source>Imports Sorting Diff</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5779" /> + <location filename="../Project/Project.py" line="5776" /> <source>Generate a unified diff of potential project source imports resorting with 'isort'.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5785" /> + <location filename="../Project/Project.py" line="5782" /> <source><b>Imports Sorting Diff</b><p>This shows a dialog to enter parameters for the imports sorting diff run and generates a unified diff of potential project source changes using 'isort'.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5806" /> + <location filename="../Project/Project.py" line="5803" /> <source>Enter the parameters for resorting the project sources import statements with 'isort'.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5812" /> + <location filename="../Project/Project.py" line="5809" /> <source><b>Configure</b><p>This shows a dialog to enter the parameters for resorting the import statements of the project sources with 'isort'.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5828" /> + <location filename="../Project/Project.py" line="5825" /> <source>Install Project</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5829" /> + <location filename="../Project/Project.py" line="5826" /> <source>&Install Project</source> <translation type="unfinished" /> </message> <message> + <location filename="../Project/Project.py" line="5833" /> + <source>Install the project into the embedded environment.</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../Project/Project.py" line="5836" /> - <source>Install the project into the embedded environment.</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="5839" /> <source><b>Install Project</b><p>This installs the project into the embedded virtual environment in editable mode (i.e. development mode).</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5850" /> + <location filename="../Project/Project.py" line="5847" /> <source>&Configure</source> <translation type="unfinished" /> </message> <message> + <location filename="../Project/Project.py" line="5854" /> + <source>Configure the embedded environment.</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../Project/Project.py" line="5857" /> - <source>Configure the embedded environment.</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="5860" /> <source><b>Configure</b><p>This opens a dialog to configure the embedded virtual environment of the project.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5870" /> + <location filename="../Project/Project.py" line="5867" /> <source>Upgrade</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5871" /> + <location filename="../Project/Project.py" line="5868" /> <source>&Upgrade</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5877" /> + <location filename="../Project/Project.py" line="5874" /> <source>Upgrade the embedded environment.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5879" /> + <location filename="../Project/Project.py" line="5876" /> <source><b>Upgrade</b><p>This opens a dialog to enter the parameters to upgrade the embedded virtual environment of the project.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5891" /> + <location filename="../Project/Project.py" line="5888" /> <source>Recreate</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5892" /> + <location filename="../Project/Project.py" line="5889" /> <source>&Recreate</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5898" /> + <location filename="../Project/Project.py" line="5895" /> <source>Recreate the embedded environment.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5900" /> + <location filename="../Project/Project.py" line="5897" /> <source><b>Recreate</b><p>This opens a dialog to enter the parameters to recreate the embedded virtual environment of the project. The existing environment is cleared first.</p></source> <translation type="unfinished" /> </message> <message> + <location filename="../Project/Project.py" line="5929" /> + <source>&Project</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Project/Project.py" line="5930" /> + <source>Open &Recent Projects</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../Project/Project.py" line="5932" /> - <source>&Project</source> + <source>Session</source> <translation type="unfinished" /> </message> <message> <location filename="../Project/Project.py" line="5933" /> - <source>Open &Recent Projects</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="5935" /> - <source>Session</source> + <source>Debugger</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Project/Project.py" line="5934" /> + <source>Embedded Environment</source> <translation type="unfinished" /> </message> <message> <location filename="../Project/Project.py" line="5936" /> - <source>Debugger</source> + <source>Project-T&ools</source> <translation type="unfinished" /> </message> <message> <location filename="../Project/Project.py" line="5937" /> - <source>Embedded Environment</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="5939" /> - <source>Project-T&ools</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="5940" /> <source>&Version Control</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5944" /> + <location filename="../Project/Project.py" line="5941" /> <source>Chec&k</source> <translation type="unfinished" /> </message> <message> + <location filename="../Project/Project.py" line="5943" /> + <source>Code &Formatting</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Project/Project.py" line="5945" /> + <source>Sho&w</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../Project/Project.py" line="5946" /> - <source>Code &Formatting</source> + <source>&Diagrams</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Project/Project.py" line="5947" /> + <source>Pac&kagers</source> <translation type="unfinished" /> </message> <message> <location filename="../Project/Project.py" line="5948" /> - <source>Sho&w</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="5949" /> - <source>&Diagrams</source> + <source>Source &Documentation</source> <translation type="unfinished" /> </message> <message> <location filename="../Project/Project.py" line="5950" /> - <source>Pac&kagers</source> + <source>Make</source> <translation type="unfinished" /> </message> <message> <location filename="../Project/Project.py" line="5951" /> - <source>Source &Documentation</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="5953" /> - <source>Make</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="5954" /> <source>Other Tools</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6116" /> - <location filename="../Project/Project.py" line="6114" /> + <location filename="../Project/Project.py" line="6113" /> + <location filename="../Project/Project.py" line="6111" /> <source>Project</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6198" /> + <location filename="../Project/Project.py" line="6195" /> <source>&Clear</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6395" /> + <location filename="../Project/Project.py" line="6392" /> <source>Search New Files</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6396" /> + <location filename="../Project/Project.py" line="6393" /> <source>There were no new files found to be added.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6557" /> - <location filename="../Project/Project.py" line="6544" /> + <location filename="../Project/Project.py" line="6554" /> + <location filename="../Project/Project.py" line="6541" /> <source>Version Control System</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6545" /> + <location filename="../Project/Project.py" line="6542" /> <source><p>The selected VCS <b>{0}</b> could not be found. <br/>Reverting override.</p><p>{1}</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6558" /> + <location filename="../Project/Project.py" line="6555" /> <source><p>The selected VCS <b>{0}</b> could not be found.<br/>Disabling version control.</p><p>{1}</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6715" /> + <location filename="../Project/Project.py" line="6712" /> <source>Coverage Data</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6769" /> - <location filename="../Project/Project.py" line="6716" /> + <location filename="../Project/Project.py" line="6766" /> + <location filename="../Project/Project.py" line="6713" /> <source>There is no main script defined for the current project. Aborting</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6728" /> + <location filename="../Project/Project.py" line="6725" /> <source>Code Coverage</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6729" /> + <location filename="../Project/Project.py" line="6726" /> <source>Please select a coverage file</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6782" /> + <location filename="../Project/Project.py" line="6779" /> <source>Please select a profile file</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6834" /> + <location filename="../Project/Project.py" line="6831" /> <source>Include module names?</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6947" /> + <location filename="../Project/Project.py" line="6944" /> <source><p>The file <b>PKGLIST</b> already exists.</p><p>Overwrite it?</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="7002" /> + <location filename="../Project/Project.py" line="6999" /> <source><p>The file <b>PKGLIST</b> could not be created.</p><p>Reason: {0}</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="7298" /> - <location filename="../Project/Project.py" line="7254" /> - <location filename="../Project/Project.py" line="7204" /> - <location filename="../Project/Project.py" line="7193" /> - <location filename="../Project/Project.py" line="7175" /> - <location filename="../Project/Project.py" line="7142" /> - <location filename="../Project/Project.py" line="7112" /> - <location filename="../Project/Project.py" line="7084" /> - <location filename="../Project/Project.py" line="7054" /> - <location filename="../Project/Project.py" line="7040" /> - <location filename="../Project/Project.py" line="7023" /> + <location filename="../Project/Project.py" line="7295" /> + <location filename="../Project/Project.py" line="7251" /> + <location filename="../Project/Project.py" line="7201" /> + <location filename="../Project/Project.py" line="7190" /> + <location filename="../Project/Project.py" line="7172" /> + <location filename="../Project/Project.py" line="7139" /> + <location filename="../Project/Project.py" line="7109" /> + <location filename="../Project/Project.py" line="7081" /> + <location filename="../Project/Project.py" line="7051" /> + <location filename="../Project/Project.py" line="7037" /> + <location filename="../Project/Project.py" line="7020" /> <source>Create Plugin Archive</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="7024" /> + <location filename="../Project/Project.py" line="7021" /> <source>The project does not have a main script defined. Aborting...</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="7041" /> + <location filename="../Project/Project.py" line="7038" /> <source>Select package lists:</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="7055" /> + <location filename="../Project/Project.py" line="7052" /> <source><p>No package list files (PKGLIST*) available or selected. Aborting...</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="7063" /> + <location filename="../Project/Project.py" line="7060" /> <source>Creating plugin archives...</source> <translation type="unfinished" /> </message> <message> + <location filename="../Project/Project.py" line="7061" /> + <source>Abort</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../Project/Project.py" line="7064" /> - <source>Abort</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="7067" /> <source>%v/%m Archives</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="7085" /> + <location filename="../Project/Project.py" line="7082" /> <source><p>The file <b>{0}</b> could not be read.</p><p>Reason: {1}</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="7113" /> + <location filename="../Project/Project.py" line="7110" /> <source><p>The file <b>{0}</b> is not ready yet.</p><p>Please rework it and delete the'; initial_list' line of the header.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="7143" /> + <location filename="../Project/Project.py" line="7140" /> <source><p>The eric plugin archive file <b>{0}</b> could not be created.</p><p>Reason: {1}</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="7176" /> + <location filename="../Project/Project.py" line="7173" /> <source><p>The file <b>{0}</b> could not be stored in the archive. Ignoring it.</p><p>Reason: {1}</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="7194" /> + <location filename="../Project/Project.py" line="7191" /> <source><p>The eric plugin archive files were created with some errors.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="7205" /> + <location filename="../Project/Project.py" line="7202" /> <source><p>The eric plugin archive files were created successfully.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="7255" /> + <location filename="../Project/Project.py" line="7252" /> <source><p>The plugin file <b>{0}</b> could not be read.</p><p>Reason: {1}</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="7299" /> + <location filename="../Project/Project.py" line="7296" /> <source><p>The plugin file <b>{0}</b> could not be read.</p> <p>Reason: {1}</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="7391" /> + <location filename="../Project/Project.py" line="7388" /> <source>'Make' is not supported for remote projects. Aborting...</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="7439" /> + <location filename="../Project/Project.py" line="7436" /> <source>The make process did not start.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="7485" /> + <location filename="../Project/Project.py" line="7482" /> <source>The make process crashed.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="7493" /> + <location filename="../Project/Project.py" line="7490" /> <source><p>There are changes that require the configured make target <b>{0}</b> to be rebuilt.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="7498" /> + <location filename="../Project/Project.py" line="7495" /> <source><p>There are changes that require the default make target to be rebuilt.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="7514" /> + <location filename="../Project/Project.py" line="7511" /> <source>The makefile contains errors.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="7944" /> + <location filename="../Project/Project.py" line="7941" /> <source>Interpreter Missing</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="7945" /> + <location filename="../Project/Project.py" line="7942" /> <source>The configured interpreter of the embedded environment does not exist anymore. Shall the environment be upgraded?</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="8026" /> + <location filename="../Project/Project.py" line="8023" /> <source>Open Remote Project</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="8057" /> - <location filename="../Project/Project.py" line="8042" /> + <location filename="../Project/Project.py" line="8054" /> + <location filename="../Project/Project.py" line="8039" /> <source>Save Remote Project</source> <translation type="unfinished" /> </message> @@ -64350,8 +64350,8 @@ <translation type="unfinished" /> </message> <message> - <location filename="../Project/ProjectBrowserModel.py" line="922" /> - <location filename="../Project/ProjectBrowserModel.py" line="900" /> + <location filename="../Project/ProjectBrowserModel.py" line="926" /> + <location filename="../Project/ProjectBrowserModel.py" line="904" /> <location filename="../Project/ProjectBrowserModel.py" line="548" /> <location filename="../Project/ProjectBrowserModel.py" line="418" /> <source>local</source> @@ -68779,7 +68779,7 @@ <context> <name>PythonDisViewer</name> <message> - <location filename="../UI/PythonDisViewer.py" line="61" /> + <location filename="../UI/PythonDisViewer.py" line="62" /> <location filename="../UI/PythonDisViewer.ui" line="0" /> <source>Disassembly</source> <translation type="unfinished" /> @@ -68795,160 +68795,160 @@ <translation type="unfinished" /> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="73" /> + <location filename="../UI/PythonDisViewer.py" line="74" /> <source>Line</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="74" /> - <source>Offset</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../UI/PythonDisViewer.py" line="75" /> - <source>Operation</source> + <source>Offset</source> <translation type="unfinished" /> </message> <message> <location filename="../UI/PythonDisViewer.py" line="76" /> - <source>Parameters</source> + <source>Operation</source> <translation type="unfinished" /> </message> <message> <location filename="../UI/PythonDisViewer.py" line="77" /> + <source>Parameters</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/PythonDisViewer.py" line="78" /> <source>Interpreted Parameters</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="80" /> + <location filename="../UI/PythonDisViewer.py" line="81" /> <source>Key</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="80" /> + <location filename="../UI/PythonDisViewer.py" line="81" /> <source>Value</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="85" /> + <location filename="../UI/PythonDisViewer.py" line="86" /> <source>Show Code Info</source> <translation type="unfinished" /> </message> <message> + <location filename="../UI/PythonDisViewer.py" line="97" /> + <location filename="../UI/PythonDisViewer.py" line="89" /> + <source>Expand All</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/PythonDisViewer.py" line="99" /> + <location filename="../UI/PythonDisViewer.py" line="90" /> + <source>Collapse All</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/PythonDisViewer.py" line="102" /> + <location filename="../UI/PythonDisViewer.py" line="92" /> + <source>Configure...</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../UI/PythonDisViewer.py" line="96" /> - <location filename="../UI/PythonDisViewer.py" line="88" /> - <source>Expand All</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/PythonDisViewer.py" line="98" /> - <location filename="../UI/PythonDisViewer.py" line="89" /> - <source>Collapse All</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/PythonDisViewer.py" line="101" /> - <location filename="../UI/PythonDisViewer.py" line="91" /> - <source>Configure...</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/PythonDisViewer.py" line="95" /> <source>Hide</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="448" /> + <location filename="../UI/PythonDisViewer.py" line="455" /> <source>No editor has been opened.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="459" /> + <location filename="../UI/PythonDisViewer.py" line="466" /> <source>The current editor does not contain any source code.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="465" /> + <location filename="../UI/PythonDisViewer.py" line="472" /> <source>The current editor does not contain Python source code.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="509" /> + <location filename="../UI/PythonDisViewer.py" line="516" /> <source>Disassembly of last traceback</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="672" /> + <location filename="../UI/PythonDisViewer.py" line="694" /> <source>Code Object '{0}'</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="784" /> + <location filename="../UI/PythonDisViewer.py" line="806" /> <source>Name</source> <translation>Name</translation> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="786" /> + <location filename="../UI/PythonDisViewer.py" line="808" /> <source>Filename</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="790" /> - <source>First Line</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/PythonDisViewer.py" line="794" /> - <source>Argument Count</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/PythonDisViewer.py" line="799" /> - <source>Positional-only Arguments</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/PythonDisViewer.py" line="805" /> - <source>Keyword-only Arguments</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/PythonDisViewer.py" line="809" /> - <source>Number of Locals</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../UI/PythonDisViewer.py" line="812" /> - <source>Stack Size</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/PythonDisViewer.py" line="814" /> - <source>Flags</source> + <source>First Line</source> <translation type="unfinished" /> </message> <message> <location filename="../UI/PythonDisViewer.py" line="816" /> + <source>Argument Count</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/PythonDisViewer.py" line="821" /> + <source>Positional-only Arguments</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/PythonDisViewer.py" line="827" /> + <source>Keyword-only Arguments</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/PythonDisViewer.py" line="831" /> + <source>Number of Locals</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/PythonDisViewer.py" line="834" /> + <source>Stack Size</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/PythonDisViewer.py" line="836" /> + <source>Flags</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/PythonDisViewer.py" line="838" /> <source>Constants</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="818" /> + <location filename="../UI/PythonDisViewer.py" line="840" /> <source>Names</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="820" /> + <location filename="../UI/PythonDisViewer.py" line="842" /> <source>Variable Names</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="822" /> + <location filename="../UI/PythonDisViewer.py" line="844" /> <source>Free Variables</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="824" /> + <location filename="../UI/PythonDisViewer.py" line="846" /> <source>Cell Variables</source> <translation type="unfinished" /> </message> @@ -74027,32 +74027,32 @@ <context> <name>SessionFile</name> <message> - <location filename="../Sessions/SessionFile.py" line="247" /> + <location filename="../Sessions/SessionFile.py" line="249" /> <source>Save Remote Session</source> <translation type="unfinished" /> </message> <message> - <location filename="../Sessions/SessionFile.py" line="250" /> + <location filename="../Sessions/SessionFile.py" line="252" /> <source>Save Session</source> <translation type="unfinished" /> </message> <message> - <location filename="../Sessions/SessionFile.py" line="258" /> + <location filename="../Sessions/SessionFile.py" line="260" /> <source><p>The session file <b>{0}</b> could not be written.</p><p>Reason: {1}</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Sessions/SessionFile.py" line="282" /> + <location filename="../Sessions/SessionFile.py" line="284" /> <source>Read Remote Session</source> <translation type="unfinished" /> </message> <message> - <location filename="../Sessions/SessionFile.py" line="285" /> + <location filename="../Sessions/SessionFile.py" line="287" /> <source>Read Session</source> <translation type="unfinished" /> </message> <message> - <location filename="../Sessions/SessionFile.py" line="293" /> + <location filename="../Sessions/SessionFile.py" line="295" /> <source><p>The session file <b>{0}</b> could not be read.</p><p>Reason: {1}</p></source> <translation type="unfinished" /> </message> @@ -94164,1052 +94164,1052 @@ <context> <name>ViewManager</name> <message> - <location filename="../ViewManager/ViewManager.py" line="615" /> + <location filename="../ViewManager/ViewManager.py" line="625" /> <source>New</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="617" /> + <location filename="../ViewManager/ViewManager.py" line="627" /> <source>&New</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="619" /> - <source>Ctrl+N</source> - <comment>File|New</comment> - <translation type="unfinished" /> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="626" /> - <source>Open an empty editor window</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="629" /> + <source>Ctrl+N</source> + <comment>File|New</comment> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="636" /> + <source>Open an empty editor window</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="639" /> <source><b>New</b><p>An empty editor window will be created.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="638" /> + <location filename="../ViewManager/ViewManager.py" line="648" /> <source>Open</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="640" /> + <location filename="../ViewManager/ViewManager.py" line="650" /> <source>&Open...</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="642" /> - <source>Ctrl+O</source> - <comment>File|Open</comment> - <translation type="unfinished" /> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="649" /> - <source>Open a file</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="652" /> + <source>Ctrl+O</source> + <comment>File|Open</comment> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="659" /> + <source>Open a file</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="662" /> <source><b>Open a file</b><p>You will be asked for the name of a file to be opened in an editor window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="663" /> + <location filename="../ViewManager/ViewManager.py" line="673" /> <source>Open (Remote)</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="665" /> - <source>Open (Remote)...</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="672" /> - <source>Open a remote file</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="675" /> + <source>Open (Remote)...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="682" /> + <source>Open a remote file</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="685" /> <source><b>Open a remote file</b><p>You will be asked for the name of a remote file to be opened in an editor window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="689" /> - <location filename="../ViewManager/ViewManager.py" line="687" /> - <source>Reload</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="696" /> - <source>Reload the current file</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="699" /> + <location filename="../ViewManager/ViewManager.py" line="697" /> + <source>Reload</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="706" /> + <source>Reload the current file</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="709" /> <source><b>Reload</b><p>Reload the contents of current editor window. If the editor contents was modified, a warning will be issued.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="712" /> + <location filename="../ViewManager/ViewManager.py" line="722" /> <source>Close</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="714" /> + <location filename="../ViewManager/ViewManager.py" line="724" /> <source>&Close</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="716" /> - <source>Ctrl+W</source> - <comment>File|Close</comment> - <translation type="unfinished" /> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="723" /> - <source>Close the current window</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="726" /> - <source><b>Close Window</b><p>Close the current window.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="735" /> - <source>Close All</source> + <source>Ctrl+W</source> + <comment>File|Close</comment> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="733" /> + <source>Close the current window</source> <translation type="unfinished" /> </message> <message> <location filename="../ViewManager/ViewManager.py" line="736" /> - <source>Clos&e All</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="743" /> - <source>Close all editor windows</source> + <source><b>Close Window</b><p>Close the current window.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="745" /> + <source>Close All</source> <translation type="unfinished" /> </message> <message> <location filename="../ViewManager/ViewManager.py" line="746" /> + <source>Clos&e All</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="753" /> + <source>Close all editor windows</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="756" /> <source><b>Close All Windows</b><p>Close all editor windows.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="759" /> + <location filename="../ViewManager/ViewManager.py" line="769" /> <source>Save</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="761" /> + <location filename="../ViewManager/ViewManager.py" line="771" /> <source>&Save</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="316" /> - <location filename="../ViewManager/ViewManager.py" line="763" /> + <location filename="../ViewManager/ViewManager.py" line="773" /> <source>Ctrl+S</source> <comment>File|Save</comment> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="770" /> + <location filename="../ViewManager/ViewManager.py" line="780" /> <source>Save the current file</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="773" /> - <source><b>Save File</b><p>Save the contents of current editor window.</p></source> - <translation type="unfinished" /> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="783" /> + <source><b>Save File</b><p>Save the contents of current editor window.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="793" /> <source>Save as</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="785" /> + <location filename="../ViewManager/ViewManager.py" line="795" /> <source>Save &as...</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="787" /> + <location filename="../ViewManager/ViewManager.py" line="797" /> <source>Shift+Ctrl+S</source> <comment>File|Save As</comment> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="796" /> + <location filename="../ViewManager/ViewManager.py" line="806" /> <source>Save the current file to a new one</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="801" /> + <location filename="../ViewManager/ViewManager.py" line="811" /> <source><b>Save File as</b><p>Save the contents of the current editor window to a new file. The file can be entered in a file selection dialog.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="812" /> + <location filename="../ViewManager/ViewManager.py" line="822" /> <source>Save as (Remote)</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="814" /> + <location filename="../ViewManager/ViewManager.py" line="824" /> <source>Save as (Remote)...</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="821" /> + <location filename="../ViewManager/ViewManager.py" line="831" /> <source>Save the current file to a new one on an eric-ide server</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="827" /> + <location filename="../ViewManager/ViewManager.py" line="837" /> <source><b>Save File as (Remote)</b><p>Save the contents of the current editor window to a new file on the connected eric-ide server. The file can be entered in a file selection dialog.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="839" /> + <location filename="../ViewManager/ViewManager.py" line="849" /> <source>Save Copy</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="841" /> - <source>Save &Copy...</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="848" /> - <source>Save a copy of the current file</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="851" /> + <source>Save &Copy...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="858" /> + <source>Save a copy of the current file</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="861" /> <source><b>Save Copy</b><p>Save a copy of the contents of current editor window. The file can be entered in a file selection dialog.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="862" /> + <location filename="../ViewManager/ViewManager.py" line="872" /> <source>Save all</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="864" /> - <source>Save a&ll</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="871" /> - <source>Save all files</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="874" /> + <source>Save a&ll</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="881" /> + <source>Save all files</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="884" /> <source><b>Save All Files</b><p>Save the contents of all editor windows.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="886" /> + <location filename="../ViewManager/ViewManager.py" line="896" /> <source>Print</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="888" /> + <location filename="../ViewManager/ViewManager.py" line="898" /> <source>&Print</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="890" /> - <source>Ctrl+P</source> - <comment>File|Print</comment> - <translation type="unfinished" /> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="897" /> - <source>Print the current file</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="900" /> + <source>Ctrl+P</source> + <comment>File|Print</comment> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="907" /> + <source>Print the current file</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="910" /> <source><b>Print File</b><p>Print the contents of current editor window.</p></source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="780" /> - <location filename="../ViewManager/ViewManager.py" line="913" /> - <location filename="../ViewManager/ViewManager.py" line="911" /> + <location filename="../ViewManager/ViewManager.py" line="923" /> + <location filename="../ViewManager/ViewManager.py" line="921" /> <source>Print Preview</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="920" /> + <location filename="../ViewManager/ViewManager.py" line="930" /> <source>Print preview of the current file</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="925" /> + <location filename="../ViewManager/ViewManager.py" line="935" /> <source><b>Print Preview</b><p>Print preview of the current editor window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="936" /> + <location filename="../ViewManager/ViewManager.py" line="946" /> <source>Find File</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="938" /> + <location filename="../ViewManager/ViewManager.py" line="948" /> <source>Find &File...</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="940" /> + <location filename="../ViewManager/ViewManager.py" line="950" /> <source>Alt+Ctrl+F</source> <comment>File|Find File</comment> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="949" /> + <location filename="../ViewManager/ViewManager.py" line="959" /> <source>Search for a file by entering a search pattern</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="954" /> + <location filename="../ViewManager/ViewManager.py" line="964" /> <source><b>Find File</b><p>This searches for a file by entering a search pattern.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="970" /> + <location filename="../ViewManager/ViewManager.py" line="980" /> <source>&File</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="972" /> + <location filename="../ViewManager/ViewManager.py" line="982" /> <source>Open &Recent Files</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="976" /> + <location filename="../ViewManager/ViewManager.py" line="986" /> <source>Open &Bookmarked Files</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1024" /> - <location filename="../ViewManager/ViewManager.py" line="1022" /> + <location filename="../ViewManager/ViewManager.py" line="1034" /> + <location filename="../ViewManager/ViewManager.py" line="1032" /> <source>File</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1051" /> + <location filename="../ViewManager/ViewManager.py" line="1061" /> <source>Export as</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1074" /> + <location filename="../ViewManager/ViewManager.py" line="1084" /> <source>Undo</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1076" /> + <location filename="../ViewManager/ViewManager.py" line="1086" /> <source>&Undo</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1078" /> + <location filename="../ViewManager/ViewManager.py" line="1088" /> <source>Ctrl+Z</source> <comment>Edit|Undo</comment> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1081" /> + <location filename="../ViewManager/ViewManager.py" line="1091" /> <source>Alt+Backspace</source> <comment>Edit|Undo</comment> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1087" /> + <location filename="../ViewManager/ViewManager.py" line="1097" /> <source>Undo the last change</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1090" /> - <source><b>Undo</b><p>Undo the last change done in the current editor.</p></source> - <translation type="unfinished" /> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="1100" /> + <source><b>Undo</b><p>Undo the last change done in the current editor.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="1110" /> <source>Redo</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1102" /> + <location filename="../ViewManager/ViewManager.py" line="1112" /> <source>&Redo</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1104" /> - <source>Ctrl+Shift+Z</source> - <comment>Edit|Redo</comment> - <translation type="unfinished" /> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="1111" /> - <source>Redo the last change</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="1114" /> + <source>Ctrl+Shift+Z</source> + <comment>Edit|Redo</comment> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="1121" /> + <source>Redo the last change</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="1124" /> <source><b>Redo</b><p>Redo the last change done in the current editor.</p></source> <translation type="unfinished" /> </message> <message> + <location filename="../ViewManager/ViewManager.py" line="1144" /> <location filename="../ViewManager/ViewManager.py" line="1134" /> - <location filename="../ViewManager/ViewManager.py" line="1124" /> <source>Revert to last saved state</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1125" /> + <location filename="../ViewManager/ViewManager.py" line="1135" /> <source>Re&vert to last saved state</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1127" /> - <source>Ctrl+Y</source> - <comment>Edit|Revert</comment> - <translation type="unfinished" /> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="1137" /> + <source>Ctrl+Y</source> + <comment>Edit|Revert</comment> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="1147" /> <source><b>Revert to last saved state</b><p>Undo all changes up to the last saved state of the current editor.</p></source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="343" /> - <location filename="../ViewManager/ViewManager.py" line="1150" /> + <location filename="../ViewManager/ViewManager.py" line="1160" /> <source>Cut</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="345" /> - <location filename="../ViewManager/ViewManager.py" line="1152" /> + <location filename="../ViewManager/ViewManager.py" line="1162" /> <source>Cu&t</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="347" /> - <location filename="../ViewManager/ViewManager.py" line="1154" /> + <location filename="../ViewManager/ViewManager.py" line="1164" /> <source>Ctrl+X</source> <comment>Edit|Cut</comment> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="350" /> - <location filename="../ViewManager/ViewManager.py" line="1157" /> + <location filename="../ViewManager/ViewManager.py" line="1167" /> <source>Shift+Del</source> <comment>Edit|Cut</comment> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="356" /> - <location filename="../ViewManager/ViewManager.py" line="1163" /> + <location filename="../ViewManager/ViewManager.py" line="1173" /> <source>Cut the selection</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1166" /> + <location filename="../ViewManager/ViewManager.py" line="1176" /> <source><b>Cut</b><p>Cut the selected text of the current editor to the clipboard.</p></source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="365" /> - <location filename="../ViewManager/ViewManager.py" line="1177" /> + <location filename="../ViewManager/ViewManager.py" line="1187" /> <source>Copy</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="367" /> - <location filename="../ViewManager/ViewManager.py" line="1179" /> + <location filename="../ViewManager/ViewManager.py" line="1189" /> <source>&Copy</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="369" /> - <location filename="../ViewManager/ViewManager.py" line="1181" /> + <location filename="../ViewManager/ViewManager.py" line="1191" /> <source>Ctrl+C</source> <comment>Edit|Copy</comment> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="372" /> - <location filename="../ViewManager/ViewManager.py" line="1184" /> + <location filename="../ViewManager/ViewManager.py" line="1194" /> <source>Ctrl+Ins</source> <comment>Edit|Copy</comment> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="378" /> - <location filename="../ViewManager/ViewManager.py" line="1190" /> + <location filename="../ViewManager/ViewManager.py" line="1200" /> <source>Copy the selection</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1193" /> + <location filename="../ViewManager/ViewManager.py" line="1203" /> <source><b>Copy</b><p>Copy the selected text of the current editor to the clipboard.</p></source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="387" /> - <location filename="../ViewManager/ViewManager.py" line="1204" /> + <location filename="../ViewManager/ViewManager.py" line="1214" /> <source>Paste</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="389" /> - <location filename="../ViewManager/ViewManager.py" line="1206" /> + <location filename="../ViewManager/ViewManager.py" line="1216" /> <source>&Paste</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="391" /> - <location filename="../ViewManager/ViewManager.py" line="1208" /> + <location filename="../ViewManager/ViewManager.py" line="1218" /> <source>Ctrl+V</source> <comment>Edit|Paste</comment> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="394" /> - <location filename="../ViewManager/ViewManager.py" line="1211" /> + <location filename="../ViewManager/ViewManager.py" line="1221" /> <source>Shift+Ins</source> <comment>Edit|Paste</comment> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="400" /> - <location filename="../ViewManager/ViewManager.py" line="1217" /> + <location filename="../ViewManager/ViewManager.py" line="1227" /> <source>Paste the last cut/copied text</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1220" /> + <location filename="../ViewManager/ViewManager.py" line="1230" /> <source><b>Paste</b><p>Paste the last cut/copied text from the clipboard to the current editor.</p></source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="414" /> <location filename="../QScintilla/ShellWindow.py" line="412" /> - <location filename="../ViewManager/ViewManager.py" line="1233" /> - <location filename="../ViewManager/ViewManager.py" line="1231" /> + <location filename="../ViewManager/ViewManager.py" line="1243" /> + <location filename="../ViewManager/ViewManager.py" line="1241" /> <source>Clear</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="416" /> - <location filename="../ViewManager/ViewManager.py" line="1235" /> + <location filename="../ViewManager/ViewManager.py" line="1245" /> <source>Alt+Shift+C</source> <comment>Edit|Clear</comment> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="423" /> - <location filename="../ViewManager/ViewManager.py" line="1242" /> + <location filename="../ViewManager/ViewManager.py" line="1252" /> <source>Clear all text</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1245" /> + <location filename="../ViewManager/ViewManager.py" line="1255" /> <source><b>Clear</b><p>Delete all text of the current editor.</p></source> <translation type="unfinished" /> </message> <message> + <location filename="../ViewManager/ViewManager.py" line="1274" /> + <location filename="../ViewManager/ViewManager.py" line="1265" /> <location filename="../ViewManager/ViewManager.py" line="1264" /> - <location filename="../ViewManager/ViewManager.py" line="1255" /> - <location filename="../ViewManager/ViewManager.py" line="1254" /> <source>Join Lines</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1257" /> - <source>Ctrl+J</source> - <comment>Edit|Join Lines</comment> - <translation type="unfinished" /> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="1267" /> - <source><b>Join Lines</b><p>Join the current and the next lines.</p></source> + <source>Ctrl+J</source> + <comment>Edit|Join Lines</comment> <translation type="unfinished" /> </message> <message> <location filename="../ViewManager/ViewManager.py" line="1277" /> + <source><b>Join Lines</b><p>Join the current and the next lines.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="1287" /> <source>Indent</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1279" /> + <location filename="../ViewManager/ViewManager.py" line="1289" /> <source>&Indent</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1281" /> - <source>Ctrl+I</source> - <comment>Edit|Indent</comment> - <translation type="unfinished" /> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="1288" /> - <source>Indent line</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="1291" /> + <source>Ctrl+I</source> + <comment>Edit|Indent</comment> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="1298" /> + <source>Indent line</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="1301" /> <source><b>Indent</b><p>Indents the current line or the lines of the selection by one level.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1302" /> + <location filename="../ViewManager/ViewManager.py" line="1312" /> <source>Unindent</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1304" /> + <location filename="../ViewManager/ViewManager.py" line="1314" /> <source>U&nindent</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1306" /> + <location filename="../ViewManager/ViewManager.py" line="1316" /> <source>Ctrl+Shift+I</source> <comment>Edit|Unindent</comment> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1315" /> + <location filename="../ViewManager/ViewManager.py" line="1325" /> <source>Unindent line</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1318" /> + <location filename="../ViewManager/ViewManager.py" line="1328" /> <source><b>Unindent</b><p>Unindents the current line or the lines of the selection by one level.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1331" /> - <location filename="../ViewManager/ViewManager.py" line="1329" /> - <source>Smart indent</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="1338" /> - <source>Smart indent Line or Selection</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="1341" /> + <location filename="../ViewManager/ViewManager.py" line="1339" /> + <source>Smart indent</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="1348" /> + <source>Smart indent Line or Selection</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="1351" /> <source><b>Smart indent</b><p>Indents the current line or the lines of the current selection smartly.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1352" /> + <location filename="../ViewManager/ViewManager.py" line="1362" /> <source>Comment</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1354" /> + <location filename="../ViewManager/ViewManager.py" line="1364" /> <source>C&omment</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1356" /> - <source>Ctrl+M</source> - <comment>Edit|Comment</comment> - <translation type="unfinished" /> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="1363" /> - <source>Comment Line or Selection</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="1366" /> + <source>Ctrl+M</source> + <comment>Edit|Comment</comment> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="1373" /> + <source>Comment Line or Selection</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="1376" /> <source><b>Comment</b><p>Comments the current line or the lines of the current selection.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1377" /> + <location filename="../ViewManager/ViewManager.py" line="1387" /> <source>Uncomment</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1379" /> + <location filename="../ViewManager/ViewManager.py" line="1389" /> <source>Unco&mment</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1381" /> + <location filename="../ViewManager/ViewManager.py" line="1391" /> <source>Ctrl+Shift+M</source> <comment>Edit|Uncomment</comment> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1390" /> + <location filename="../ViewManager/ViewManager.py" line="1400" /> <source>Uncomment Line or Selection</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1393" /> + <location filename="../ViewManager/ViewManager.py" line="1403" /> <source><b>Uncomment</b><p>Uncomments the current line or the lines of the current selection.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1406" /> - <location filename="../ViewManager/ViewManager.py" line="1404" /> + <location filename="../ViewManager/ViewManager.py" line="1416" /> + <location filename="../ViewManager/ViewManager.py" line="1414" /> <source>Toggle Comment</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1408" /> + <location filename="../ViewManager/ViewManager.py" line="1418" /> <source>Ctrl+#</source> <comment>Edit|Toggle Comment</comment> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1417" /> + <location filename="../ViewManager/ViewManager.py" line="1427" /> <source>Toggle the comment of the current line, selection or comment block</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1423" /> + <location filename="../ViewManager/ViewManager.py" line="1433" /> <source><b>Toggle Comment</b><p>If the current line does not start with a block comment, the current line or selection is commented. If it is already commented, this comment block is uncommented. </p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1436" /> - <location filename="../ViewManager/ViewManager.py" line="1435" /> + <location filename="../ViewManager/ViewManager.py" line="1446" /> + <location filename="../ViewManager/ViewManager.py" line="1445" /> <source>Stream Comment</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1443" /> + <location filename="../ViewManager/ViewManager.py" line="1453" /> <source>Stream Comment Line or Selection</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1448" /> + <location filename="../ViewManager/ViewManager.py" line="1458" /> <source><b>Stream Comment</b><p>Stream comments the current line or the current selection.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1460" /> - <location filename="../ViewManager/ViewManager.py" line="1459" /> - <source>Box Comment</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="1467" /> - <source>Box Comment Line or Selection</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="1470" /> + <location filename="../ViewManager/ViewManager.py" line="1469" /> + <source>Box Comment</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="1477" /> + <source>Box Comment Line or Selection</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="1480" /> <source><b>Box Comment</b><p>Box comments the current line or the lines of the current selection.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1481" /> + <location filename="../ViewManager/ViewManager.py" line="1491" /> <source>Select to brace</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1482" /> + <location filename="../ViewManager/ViewManager.py" line="1492" /> <source>Select to &brace</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1484" /> + <location filename="../ViewManager/ViewManager.py" line="1494" /> <source>Ctrl+E</source> <comment>Edit|Select to brace</comment> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1493" /> + <location filename="../ViewManager/ViewManager.py" line="1503" /> <source>Select text to the matching brace</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1498" /> + <location filename="../ViewManager/ViewManager.py" line="1508" /> <source><b>Select to brace</b><p>Select text of the current editor to the matching brace.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1509" /> + <location filename="../ViewManager/ViewManager.py" line="1519" /> <source>Select all</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1511" /> + <location filename="../ViewManager/ViewManager.py" line="1521" /> <source>&Select all</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1513" /> - <source>Ctrl+A</source> - <comment>Edit|Select all</comment> - <translation type="unfinished" /> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="1520" /> - <source>Select all text</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="1523" /> - <source><b>Select All</b><p>Select all text of the current editor.</p></source> + <source>Ctrl+A</source> + <comment>Edit|Select all</comment> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="1530" /> + <source>Select all text</source> <translation type="unfinished" /> </message> <message> <location filename="../ViewManager/ViewManager.py" line="1533" /> + <source><b>Select All</b><p>Select all text of the current editor.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="1543" /> <source>Deselect all</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1534" /> + <location filename="../ViewManager/ViewManager.py" line="1544" /> <source>&Deselect all</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1536" /> + <location filename="../ViewManager/ViewManager.py" line="1546" /> <source>Alt+Ctrl+A</source> <comment>Edit|Deselect all</comment> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1545" /> + <location filename="../ViewManager/ViewManager.py" line="1555" /> <source>Deselect all text</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1548" /> + <location filename="../ViewManager/ViewManager.py" line="1558" /> <source><b>Deselect All</b><p>Deselect all text of the current editor.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1566" /> - <location filename="../ViewManager/ViewManager.py" line="1559" /> - <location filename="../ViewManager/ViewManager.py" line="1558" /> + <location filename="../ViewManager/ViewManager.py" line="1576" /> + <location filename="../ViewManager/ViewManager.py" line="1569" /> + <location filename="../ViewManager/ViewManager.py" line="1568" /> <source>Convert Line End Characters</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1569" /> + <location filename="../ViewManager/ViewManager.py" line="1579" /> <source><b>Convert Line End Characters</b><p>Convert the line end characters to the currently set type.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1588" /> - <location filename="../ViewManager/ViewManager.py" line="1581" /> - <location filename="../ViewManager/ViewManager.py" line="1580" /> + <location filename="../ViewManager/ViewManager.py" line="1598" /> + <location filename="../ViewManager/ViewManager.py" line="1591" /> + <location filename="../ViewManager/ViewManager.py" line="1590" /> <source>Convert Tabs to Spaces</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1591" /> + <location filename="../ViewManager/ViewManager.py" line="1601" /> <source><b>Convert Tabs to Spaces</b><p>Convert tabulators to the configured amount of space characters.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1610" /> - <location filename="../ViewManager/ViewManager.py" line="1603" /> - <location filename="../ViewManager/ViewManager.py" line="1602" /> + <location filename="../ViewManager/ViewManager.py" line="1620" /> + <location filename="../ViewManager/ViewManager.py" line="1613" /> + <location filename="../ViewManager/ViewManager.py" line="1612" /> <source>Shorten empty lines</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1613" /> + <location filename="../ViewManager/ViewManager.py" line="1623" /> <source><b>Shorten empty lines</b><p>Shorten lines consisting solely of whitespace characters.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3497" /> - <location filename="../ViewManager/ViewManager.py" line="1624" /> + <location filename="../ViewManager/ViewManager.py" line="3507" /> + <location filename="../ViewManager/ViewManager.py" line="1634" /> <source>Complete</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1625" /> + <location filename="../ViewManager/ViewManager.py" line="1635" /> <source>&Complete</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1627" /> - <source>Ctrl+Space</source> - <comment>Edit|Complete</comment> - <translation type="unfinished" /> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="1634" /> - <source>Complete current word</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="1637" /> + <source>Ctrl+Space</source> + <comment>Edit|Complete</comment> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="1644" /> + <source>Complete current word</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="1647" /> <source><b>Complete</b><p>Performs a completion of the word containing the cursor.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1649" /> - <location filename="../ViewManager/ViewManager.py" line="1648" /> + <location filename="../ViewManager/ViewManager.py" line="1659" /> + <location filename="../ViewManager/ViewManager.py" line="1658" /> <source>Complete from Document</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1651" /> + <location filename="../ViewManager/ViewManager.py" line="1661" /> <source>Ctrl+Shift+Space</source> <comment>Edit|Complete from Document</comment> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1660" /> + <location filename="../ViewManager/ViewManager.py" line="1670" /> <source>Complete current word from Document</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1665" /> + <location filename="../ViewManager/ViewManager.py" line="1675" /> <source><b>Complete from Document</b><p>Performs a completion from document of the word containing the cursor.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1677" /> - <location filename="../ViewManager/ViewManager.py" line="1676" /> + <location filename="../ViewManager/ViewManager.py" line="1687" /> + <location filename="../ViewManager/ViewManager.py" line="1686" /> <source>Complete from APIs</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1679" /> + <location filename="../ViewManager/ViewManager.py" line="1689" /> <source>Ctrl+Alt+Space</source> <comment>Edit|Complete from APIs</comment> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1688" /> + <location filename="../ViewManager/ViewManager.py" line="1698" /> <source>Complete current word from APIs</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1691" /> + <location filename="../ViewManager/ViewManager.py" line="1701" /> <source><b>Complete from APIs</b><p>Performs a completion from APIs of the word containing the cursor.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1705" /> - <location filename="../ViewManager/ViewManager.py" line="1702" /> + <location filename="../ViewManager/ViewManager.py" line="1715" /> + <location filename="../ViewManager/ViewManager.py" line="1712" /> <source>Complete from Document and APIs</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1709" /> + <location filename="../ViewManager/ViewManager.py" line="1719" /> <source>Alt+Shift+Space</source> <comment>Edit|Complete from Document and APIs</comment> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1720" /> + <location filename="../ViewManager/ViewManager.py" line="1730" /> <source>Complete current word from Document and APIs</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1725" /> + <location filename="../ViewManager/ViewManager.py" line="1735" /> <source><b>Complete from Document and APIs</b><p>Performs a completion from document and APIs of the word containing the cursor.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1736" /> + <location filename="../ViewManager/ViewManager.py" line="1746" /> <source>Calltip</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1737" /> + <location filename="../ViewManager/ViewManager.py" line="1747" /> <source>&Calltip</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1739" /> + <location filename="../ViewManager/ViewManager.py" line="1749" /> <source>Meta+Alt+Space</source> <comment>Edit|Calltip</comment> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1748" /> + <location filename="../ViewManager/ViewManager.py" line="1758" /> <source>Show Calltips</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1751" /> + <location filename="../ViewManager/ViewManager.py" line="1761" /> <source><b>Calltip</b><p>Show calltips based on the characters immediately to the left of the cursor.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1764" /> - <location filename="../ViewManager/ViewManager.py" line="1762" /> + <location filename="../ViewManager/ViewManager.py" line="1774" /> + <location filename="../ViewManager/ViewManager.py" line="1772" /> <source>Code Info</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1766" /> + <location filename="../ViewManager/ViewManager.py" line="1776" /> <source>Ctrl+Alt+I</source> <comment>Edit|Code Info</comment> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1775" /> + <location filename="../ViewManager/ViewManager.py" line="1785" /> <source>Show Code Info</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1778" /> + <location filename="../ViewManager/ViewManager.py" line="1788" /> <source><b>Code Info</b><p>Show code information based on the cursor position.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1789" /> - <location filename="../ViewManager/ViewManager.py" line="1788" /> + <location filename="../ViewManager/ViewManager.py" line="1799" /> + <location filename="../ViewManager/ViewManager.py" line="1798" /> <source>Sort</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1791" /> + <location filename="../ViewManager/ViewManager.py" line="1801" /> <source>Ctrl+Alt+S</source> <comment>Edit|Sort</comment> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1798" /> + <location filename="../ViewManager/ViewManager.py" line="1808" /> <source>Sort the lines containing the rectangular selection</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1803" /> + <location filename="../ViewManager/ViewManager.py" line="1813" /> <source><b>Sort</b><p>Sort the lines spanned by a rectangular selection based on the selection ignoring leading and trailing whitespace.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1815" /> - <location filename="../ViewManager/ViewManager.py" line="1814" /> + <location filename="../ViewManager/ViewManager.py" line="1825" /> + <location filename="../ViewManager/ViewManager.py" line="1824" /> <source>Generate Docstring</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1817" /> + <location filename="../ViewManager/ViewManager.py" line="1827" /> <source>Ctrl+Alt+D</source> <comment>Edit|Generate Docstring</comment> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1826" /> + <location filename="../ViewManager/ViewManager.py" line="1836" /> <source>Generate a docstring for the current function/method</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1831" /> + <location filename="../ViewManager/ViewManager.py" line="1841" /> <source><b>Generate Docstring</b><p>Generate a docstring for the current function/method if the cursor is placed on the line starting the function definition or on the line thereafter. The docstring is inserted at the appropriate position and the cursor is placed at the end of the description line.</p></source> <translation type="unfinished" /> </message> @@ -95218,22 +95218,22 @@ <location filename="../QScintilla/MiniEditor.py" line="929" /> <location filename="../QScintilla/ShellWindow.py" line="579" /> <location filename="../QScintilla/ShellWindow.py" line="578" /> - <location filename="../ViewManager/ViewManager.py" line="1858" /> - <location filename="../ViewManager/ViewManager.py" line="1857" /> + <location filename="../ViewManager/ViewManager.py" line="1868" /> + <location filename="../ViewManager/ViewManager.py" line="1867" /> <source>Move left one character</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="931" /> <location filename="../QScintilla/ShellWindow.py" line="580" /> - <location filename="../ViewManager/ViewManager.py" line="1859" /> + <location filename="../ViewManager/ViewManager.py" line="1869" /> <source>Left</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="939" /> <location filename="../QScintilla/ShellWindow.py" line="588" /> - <location filename="../ViewManager/ViewManager.py" line="1867" /> + <location filename="../ViewManager/ViewManager.py" line="1877" /> <source>Meta+B</source> <translation type="unfinished" /> </message> @@ -95242,22 +95242,22 @@ <location filename="../QScintilla/MiniEditor.py" line="945" /> <location filename="../QScintilla/ShellWindow.py" line="595" /> <location filename="../QScintilla/ShellWindow.py" line="594" /> - <location filename="../ViewManager/ViewManager.py" line="1874" /> - <location filename="../ViewManager/ViewManager.py" line="1873" /> + <location filename="../ViewManager/ViewManager.py" line="1884" /> + <location filename="../ViewManager/ViewManager.py" line="1883" /> <source>Move right one character</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="947" /> <location filename="../QScintilla/ShellWindow.py" line="596" /> - <location filename="../ViewManager/ViewManager.py" line="1875" /> + <location filename="../ViewManager/ViewManager.py" line="1885" /> <source>Right</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="954" /> <location filename="../QScintilla/ShellWindow.py" line="603" /> - <location filename="../ViewManager/ViewManager.py" line="1882" /> + <location filename="../ViewManager/ViewManager.py" line="1892" /> <source>Meta+F</source> <translation type="unfinished" /> </message> @@ -95266,22 +95266,22 @@ <location filename="../QScintilla/MiniEditor.py" line="961" /> <location filename="../QScintilla/ShellWindow.py" line="687" /> <location filename="../QScintilla/ShellWindow.py" line="686" /> - <location filename="../ViewManager/ViewManager.py" line="1890" /> - <location filename="../ViewManager/ViewManager.py" line="1889" /> + <location filename="../ViewManager/ViewManager.py" line="1900" /> + <location filename="../ViewManager/ViewManager.py" line="1899" /> <source>Move up one line</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="963" /> <location filename="../QScintilla/ShellWindow.py" line="688" /> - <location filename="../ViewManager/ViewManager.py" line="1891" /> + <location filename="../ViewManager/ViewManager.py" line="1901" /> <source>Up</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="970" /> <location filename="../QScintilla/ShellWindow.py" line="695" /> - <location filename="../ViewManager/ViewManager.py" line="1898" /> + <location filename="../ViewManager/ViewManager.py" line="1908" /> <source>Meta+P</source> <translation type="unfinished" /> </message> @@ -95290,30 +95290,30 @@ <location filename="../QScintilla/MiniEditor.py" line="977" /> <location filename="../QScintilla/ShellWindow.py" line="703" /> <location filename="../QScintilla/ShellWindow.py" line="702" /> - <location filename="../ViewManager/ViewManager.py" line="1906" /> - <location filename="../ViewManager/ViewManager.py" line="1905" /> + <location filename="../ViewManager/ViewManager.py" line="1916" /> + <location filename="../ViewManager/ViewManager.py" line="1915" /> <source>Move down one line</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="979" /> <location filename="../QScintilla/ShellWindow.py" line="704" /> - <location filename="../ViewManager/ViewManager.py" line="1907" /> + <location filename="../ViewManager/ViewManager.py" line="1917" /> <source>Down</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="986" /> <location filename="../QScintilla/ShellWindow.py" line="711" /> - <location filename="../ViewManager/ViewManager.py" line="1914" /> + <location filename="../ViewManager/ViewManager.py" line="1924" /> <source>Meta+N</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="994" /> <location filename="../QScintilla/MiniEditor.py" line="993" /> - <location filename="../ViewManager/ViewManager.py" line="1922" /> - <location filename="../ViewManager/ViewManager.py" line="1921" /> + <location filename="../ViewManager/ViewManager.py" line="1932" /> + <location filename="../ViewManager/ViewManager.py" line="1931" /> <source>Move left one word part</source> <translation type="unfinished" /> </message> @@ -95321,16 +95321,16 @@ <location filename="../QScintilla/MiniEditor.py" line="1034" /> <location filename="../QScintilla/MiniEditor.py" line="1002" /> <location filename="../QScintilla/ShellWindow.py" line="619" /> - <location filename="../ViewManager/ViewManager.py" line="1962" /> - <location filename="../ViewManager/ViewManager.py" line="1930" /> + <location filename="../ViewManager/ViewManager.py" line="1972" /> + <location filename="../ViewManager/ViewManager.py" line="1940" /> <source>Alt+Left</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1010" /> <location filename="../QScintilla/MiniEditor.py" line="1009" /> - <location filename="../ViewManager/ViewManager.py" line="1938" /> - <location filename="../ViewManager/ViewManager.py" line="1937" /> + <location filename="../ViewManager/ViewManager.py" line="1948" /> + <location filename="../ViewManager/ViewManager.py" line="1947" /> <source>Move right one word part</source> <translation type="unfinished" /> </message> @@ -95338,8 +95338,8 @@ <location filename="../QScintilla/MiniEditor.py" line="2164" /> <location filename="../QScintilla/MiniEditor.py" line="1054" /> <location filename="../QScintilla/MiniEditor.py" line="1018" /> - <location filename="../ViewManager/ViewManager.py" line="3071" /> - <location filename="../ViewManager/ViewManager.py" line="1946" /> + <location filename="../ViewManager/ViewManager.py" line="3081" /> + <location filename="../ViewManager/ViewManager.py" line="1956" /> <source>Alt+Right</source> <translation type="unfinished" /> </message> @@ -95348,8 +95348,8 @@ <location filename="../QScintilla/MiniEditor.py" line="1025" /> <location filename="../QScintilla/ShellWindow.py" line="611" /> <location filename="../QScintilla/ShellWindow.py" line="610" /> - <location filename="../ViewManager/ViewManager.py" line="1954" /> - <location filename="../ViewManager/ViewManager.py" line="1953" /> + <location filename="../ViewManager/ViewManager.py" line="1964" /> + <location filename="../ViewManager/ViewManager.py" line="1963" /> <source>Move left one word</source> <translation type="unfinished" /> </message> @@ -95357,8 +95357,8 @@ <location filename="../QScintilla/MiniEditor.py" line="1094" /> <location filename="../QScintilla/MiniEditor.py" line="1038" /> <location filename="../QScintilla/ShellWindow.py" line="623" /> - <location filename="../ViewManager/ViewManager.py" line="2018" /> - <location filename="../ViewManager/ViewManager.py" line="1966" /> + <location filename="../ViewManager/ViewManager.py" line="2028" /> + <location filename="../ViewManager/ViewManager.py" line="1976" /> <source>Ctrl+Left</source> <translation type="unfinished" /> </message> @@ -95367,8 +95367,8 @@ <location filename="../QScintilla/MiniEditor.py" line="1045" /> <location filename="../QScintilla/ShellWindow.py" line="631" /> <location filename="../QScintilla/ShellWindow.py" line="630" /> - <location filename="../ViewManager/ViewManager.py" line="1974" /> - <location filename="../ViewManager/ViewManager.py" line="1973" /> + <location filename="../ViewManager/ViewManager.py" line="1984" /> + <location filename="../ViewManager/ViewManager.py" line="1983" /> <source>Move right one word</source> <translation type="unfinished" /> </message> @@ -95376,8 +95376,8 @@ <location filename="../QScintilla/MiniEditor.py" line="1848" /> <location filename="../QScintilla/MiniEditor.py" line="1058" /> <location filename="../QScintilla/ShellWindow.py" line="639" /> - <location filename="../ViewManager/ViewManager.py" line="2755" /> - <location filename="../ViewManager/ViewManager.py" line="1982" /> + <location filename="../ViewManager/ViewManager.py" line="2765" /> + <location filename="../ViewManager/ViewManager.py" line="1992" /> <source>Ctrl+Right</source> <translation type="unfinished" /> </message> @@ -95386,8 +95386,8 @@ <location filename="../QScintilla/MiniEditor.py" line="1065" /> <location filename="../QScintilla/ShellWindow.py" line="649" /> <location filename="../QScintilla/ShellWindow.py" line="646" /> - <location filename="../ViewManager/ViewManager.py" line="1992" /> - <location filename="../ViewManager/ViewManager.py" line="1989" /> + <location filename="../ViewManager/ViewManager.py" line="2002" /> + <location filename="../ViewManager/ViewManager.py" line="1999" /> <source>Move to first visible character in document line</source> <translation type="unfinished" /> </message> @@ -95395,22 +95395,22 @@ <location filename="../QScintilla/MiniEditor.py" line="2109" /> <location filename="../QScintilla/MiniEditor.py" line="1078" /> <location filename="../QScintilla/ShellWindow.py" line="659" /> - <location filename="../ViewManager/ViewManager.py" line="3016" /> - <location filename="../ViewManager/ViewManager.py" line="2002" /> + <location filename="../ViewManager/ViewManager.py" line="3026" /> + <location filename="../ViewManager/ViewManager.py" line="2012" /> <source>Home</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1086" /> <location filename="../QScintilla/MiniEditor.py" line="1085" /> - <location filename="../ViewManager/ViewManager.py" line="2010" /> - <location filename="../ViewManager/ViewManager.py" line="2009" /> + <location filename="../ViewManager/ViewManager.py" line="2020" /> + <location filename="../ViewManager/ViewManager.py" line="2019" /> <source>Move to start of display line</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1098" /> - <location filename="../ViewManager/ViewManager.py" line="2022" /> + <location filename="../ViewManager/ViewManager.py" line="2032" /> <source>Alt+Home</source> <translation type="unfinished" /> </message> @@ -95419,15 +95419,15 @@ <location filename="../QScintilla/MiniEditor.py" line="1105" /> <location filename="../QScintilla/ShellWindow.py" line="667" /> <location filename="../QScintilla/ShellWindow.py" line="666" /> - <location filename="../ViewManager/ViewManager.py" line="2030" /> - <location filename="../ViewManager/ViewManager.py" line="2029" /> + <location filename="../ViewManager/ViewManager.py" line="2040" /> + <location filename="../ViewManager/ViewManager.py" line="2039" /> <source>Move to end of document line</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1114" /> <location filename="../QScintilla/ShellWindow.py" line="675" /> - <location filename="../ViewManager/ViewManager.py" line="2038" /> + <location filename="../ViewManager/ViewManager.py" line="2048" /> <source>Meta+E</source> <translation type="unfinished" /> </message> @@ -95435,16 +95435,16 @@ <location filename="../QScintilla/MiniEditor.py" line="2126" /> <location filename="../QScintilla/MiniEditor.py" line="1118" /> <location filename="../QScintilla/ShellWindow.py" line="679" /> - <location filename="../ViewManager/ViewManager.py" line="3033" /> - <location filename="../ViewManager/ViewManager.py" line="2042" /> + <location filename="../ViewManager/ViewManager.py" line="3043" /> + <location filename="../ViewManager/ViewManager.py" line="2052" /> <source>End</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1126" /> <location filename="../QScintilla/MiniEditor.py" line="1125" /> - <location filename="../ViewManager/ViewManager.py" line="2050" /> - <location filename="../ViewManager/ViewManager.py" line="2049" /> + <location filename="../ViewManager/ViewManager.py" line="2060" /> + <location filename="../ViewManager/ViewManager.py" line="2059" /> <source>Scroll view down one line</source> <translation type="unfinished" /> </message> @@ -95452,16 +95452,16 @@ <location filename="../QScintilla/MiniEditor.py" line="1230" /> <location filename="../QScintilla/MiniEditor.py" line="1127" /> <location filename="../QScintilla/ShellWindow.py" line="720" /> - <location filename="../ViewManager/ViewManager.py" line="2154" /> - <location filename="../ViewManager/ViewManager.py" line="2051" /> + <location filename="../ViewManager/ViewManager.py" line="2164" /> + <location filename="../ViewManager/ViewManager.py" line="2061" /> <source>Ctrl+Down</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1138" /> <location filename="../QScintilla/MiniEditor.py" line="1137" /> - <location filename="../ViewManager/ViewManager.py" line="2062" /> - <location filename="../ViewManager/ViewManager.py" line="2061" /> + <location filename="../ViewManager/ViewManager.py" line="2072" /> + <location filename="../ViewManager/ViewManager.py" line="2071" /> <source>Scroll view up one line</source> <translation type="unfinished" /> </message> @@ -95469,36 +95469,36 @@ <location filename="../QScintilla/MiniEditor.py" line="1210" /> <location filename="../QScintilla/MiniEditor.py" line="1139" /> <location filename="../QScintilla/ShellWindow.py" line="732" /> - <location filename="../ViewManager/ViewManager.py" line="2134" /> - <location filename="../ViewManager/ViewManager.py" line="2063" /> + <location filename="../ViewManager/ViewManager.py" line="2144" /> + <location filename="../ViewManager/ViewManager.py" line="2073" /> <source>Ctrl+Up</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1150" /> <location filename="../QScintilla/MiniEditor.py" line="1149" /> - <location filename="../ViewManager/ViewManager.py" line="2074" /> - <location filename="../ViewManager/ViewManager.py" line="2073" /> + <location filename="../ViewManager/ViewManager.py" line="2084" /> + <location filename="../ViewManager/ViewManager.py" line="2083" /> <source>Move up one paragraph</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1151" /> - <location filename="../ViewManager/ViewManager.py" line="2075" /> + <location filename="../ViewManager/ViewManager.py" line="2085" /> <source>Alt+Up</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1162" /> <location filename="../QScintilla/MiniEditor.py" line="1161" /> - <location filename="../ViewManager/ViewManager.py" line="2086" /> - <location filename="../ViewManager/ViewManager.py" line="2085" /> + <location filename="../ViewManager/ViewManager.py" line="2096" /> + <location filename="../ViewManager/ViewManager.py" line="2095" /> <source>Move down one paragraph</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1163" /> - <location filename="../ViewManager/ViewManager.py" line="2087" /> + <location filename="../ViewManager/ViewManager.py" line="2097" /> <source>Alt+Down</source> <translation type="unfinished" /> </message> @@ -95507,15 +95507,15 @@ <location filename="../QScintilla/MiniEditor.py" line="1173" /> <location filename="../QScintilla/ShellWindow.py" line="743" /> <location filename="../QScintilla/ShellWindow.py" line="742" /> - <location filename="../ViewManager/ViewManager.py" line="2098" /> - <location filename="../ViewManager/ViewManager.py" line="2097" /> + <location filename="../ViewManager/ViewManager.py" line="2108" /> + <location filename="../ViewManager/ViewManager.py" line="2107" /> <source>Move up one page</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1175" /> <location filename="../QScintilla/ShellWindow.py" line="744" /> - <location filename="../ViewManager/ViewManager.py" line="2099" /> + <location filename="../ViewManager/ViewManager.py" line="2109" /> <source>PgUp</source> <translation type="unfinished" /> </message> @@ -95524,50 +95524,50 @@ <location filename="../QScintilla/MiniEditor.py" line="1185" /> <location filename="../QScintilla/ShellWindow.py" line="755" /> <location filename="../QScintilla/ShellWindow.py" line="754" /> - <location filename="../ViewManager/ViewManager.py" line="2110" /> - <location filename="../ViewManager/ViewManager.py" line="2109" /> + <location filename="../ViewManager/ViewManager.py" line="2120" /> + <location filename="../ViewManager/ViewManager.py" line="2119" /> <source>Move down one page</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1187" /> <location filename="../QScintilla/ShellWindow.py" line="756" /> - <location filename="../ViewManager/ViewManager.py" line="2111" /> + <location filename="../ViewManager/ViewManager.py" line="2121" /> <source>PgDown</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1194" /> <location filename="../QScintilla/ShellWindow.py" line="763" /> - <location filename="../ViewManager/ViewManager.py" line="2118" /> + <location filename="../ViewManager/ViewManager.py" line="2128" /> <source>Meta+V</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1202" /> <location filename="../QScintilla/MiniEditor.py" line="1201" /> - <location filename="../ViewManager/ViewManager.py" line="2126" /> - <location filename="../ViewManager/ViewManager.py" line="2125" /> + <location filename="../ViewManager/ViewManager.py" line="2136" /> + <location filename="../ViewManager/ViewManager.py" line="2135" /> <source>Move to start of document</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1214" /> - <location filename="../ViewManager/ViewManager.py" line="2138" /> + <location filename="../ViewManager/ViewManager.py" line="2148" /> <source>Ctrl+Home</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1222" /> <location filename="../QScintilla/MiniEditor.py" line="1221" /> - <location filename="../ViewManager/ViewManager.py" line="2146" /> - <location filename="../ViewManager/ViewManager.py" line="2145" /> + <location filename="../ViewManager/ViewManager.py" line="2156" /> + <location filename="../ViewManager/ViewManager.py" line="2155" /> <source>Move to end of document</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1234" /> - <location filename="../ViewManager/ViewManager.py" line="2158" /> + <location filename="../ViewManager/ViewManager.py" line="2168" /> <source>Ctrl+End</source> <translation type="unfinished" /> </message> @@ -95576,29 +95576,29 @@ <location filename="../QScintilla/MiniEditor.py" line="1241" /> <location filename="../QScintilla/ShellWindow.py" line="457" /> <location filename="../QScintilla/ShellWindow.py" line="456" /> - <location filename="../ViewManager/ViewManager.py" line="2166" /> - <location filename="../ViewManager/ViewManager.py" line="2165" /> + <location filename="../ViewManager/ViewManager.py" line="2176" /> + <location filename="../ViewManager/ViewManager.py" line="2175" /> <source>Indent one level</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1243" /> <location filename="../QScintilla/ShellWindow.py" line="458" /> - <location filename="../ViewManager/ViewManager.py" line="2167" /> + <location filename="../ViewManager/ViewManager.py" line="2177" /> <source>Tab</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1254" /> <location filename="../QScintilla/MiniEditor.py" line="1253" /> - <location filename="../ViewManager/ViewManager.py" line="2178" /> - <location filename="../ViewManager/ViewManager.py" line="2177" /> + <location filename="../ViewManager/ViewManager.py" line="2188" /> + <location filename="../ViewManager/ViewManager.py" line="2187" /> <source>Unindent one level</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1255" /> - <location filename="../ViewManager/ViewManager.py" line="2179" /> + <location filename="../ViewManager/ViewManager.py" line="2189" /> <source>Shift+Tab</source> <translation type="unfinished" /> </message> @@ -95607,22 +95607,22 @@ <location filename="../QScintilla/MiniEditor.py" line="1265" /> <location filename="../QScintilla/ShellWindow.py" line="785" /> <location filename="../QScintilla/ShellWindow.py" line="782" /> - <location filename="../ViewManager/ViewManager.py" line="2192" /> - <location filename="../ViewManager/ViewManager.py" line="2189" /> + <location filename="../ViewManager/ViewManager.py" line="2202" /> + <location filename="../ViewManager/ViewManager.py" line="2199" /> <source>Extend selection left one character</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1271" /> <location filename="../QScintilla/ShellWindow.py" line="788" /> - <location filename="../ViewManager/ViewManager.py" line="2195" /> + <location filename="../ViewManager/ViewManager.py" line="2205" /> <source>Shift+Left</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1278" /> <location filename="../QScintilla/ShellWindow.py" line="795" /> - <location filename="../ViewManager/ViewManager.py" line="2202" /> + <location filename="../ViewManager/ViewManager.py" line="2212" /> <source>Meta+Shift+B</source> <translation type="unfinished" /> </message> @@ -95631,70 +95631,70 @@ <location filename="../QScintilla/MiniEditor.py" line="1285" /> <location filename="../QScintilla/ShellWindow.py" line="805" /> <location filename="../QScintilla/ShellWindow.py" line="802" /> - <location filename="../ViewManager/ViewManager.py" line="2212" /> - <location filename="../ViewManager/ViewManager.py" line="2209" /> + <location filename="../ViewManager/ViewManager.py" line="2222" /> + <location filename="../ViewManager/ViewManager.py" line="2219" /> <source>Extend selection right one character</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1291" /> <location filename="../QScintilla/ShellWindow.py" line="808" /> - <location filename="../ViewManager/ViewManager.py" line="2215" /> + <location filename="../ViewManager/ViewManager.py" line="2225" /> <source>Shift+Right</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1298" /> <location filename="../QScintilla/ShellWindow.py" line="815" /> - <location filename="../ViewManager/ViewManager.py" line="2222" /> + <location filename="../ViewManager/ViewManager.py" line="2232" /> <source>Meta+Shift+F</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1306" /> <location filename="../QScintilla/MiniEditor.py" line="1305" /> - <location filename="../ViewManager/ViewManager.py" line="2230" /> - <location filename="../ViewManager/ViewManager.py" line="2229" /> + <location filename="../ViewManager/ViewManager.py" line="2240" /> + <location filename="../ViewManager/ViewManager.py" line="2239" /> <source>Extend selection up one line</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1307" /> - <location filename="../ViewManager/ViewManager.py" line="2231" /> + <location filename="../ViewManager/ViewManager.py" line="2241" /> <source>Shift+Up</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1314" /> - <location filename="../ViewManager/ViewManager.py" line="2238" /> + <location filename="../ViewManager/ViewManager.py" line="2248" /> <source>Meta+Shift+P</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1322" /> <location filename="../QScintilla/MiniEditor.py" line="1321" /> - <location filename="../ViewManager/ViewManager.py" line="2246" /> - <location filename="../ViewManager/ViewManager.py" line="2245" /> + <location filename="../ViewManager/ViewManager.py" line="2256" /> + <location filename="../ViewManager/ViewManager.py" line="2255" /> <source>Extend selection down one line</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1323" /> - <location filename="../ViewManager/ViewManager.py" line="2247" /> + <location filename="../ViewManager/ViewManager.py" line="2257" /> <source>Shift+Down</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1330" /> - <location filename="../ViewManager/ViewManager.py" line="2254" /> + <location filename="../ViewManager/ViewManager.py" line="2264" /> <source>Meta+Shift+N</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1340" /> <location filename="../QScintilla/MiniEditor.py" line="1337" /> - <location filename="../ViewManager/ViewManager.py" line="2264" /> - <location filename="../ViewManager/ViewManager.py" line="2261" /> + <location filename="../ViewManager/ViewManager.py" line="2274" /> + <location filename="../ViewManager/ViewManager.py" line="2271" /> <source>Extend selection left one word part</source> <translation type="unfinished" /> </message> @@ -95702,16 +95702,16 @@ <location filename="../QScintilla/MiniEditor.py" line="1391" /> <location filename="../QScintilla/MiniEditor.py" line="1351" /> <location filename="../QScintilla/ShellWindow.py" line="832" /> - <location filename="../ViewManager/ViewManager.py" line="2315" /> - <location filename="../ViewManager/ViewManager.py" line="2275" /> + <location filename="../ViewManager/ViewManager.py" line="2325" /> + <location filename="../ViewManager/ViewManager.py" line="2285" /> <source>Alt+Shift+Left</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1362" /> <location filename="../QScintilla/MiniEditor.py" line="1359" /> - <location filename="../ViewManager/ViewManager.py" line="2286" /> - <location filename="../ViewManager/ViewManager.py" line="2283" /> + <location filename="../ViewManager/ViewManager.py" line="2296" /> + <location filename="../ViewManager/ViewManager.py" line="2293" /> <source>Extend selection right one word part</source> <translation type="unfinished" /> </message> @@ -95720,9 +95720,9 @@ <location filename="../QScintilla/MiniEditor.py" line="1419" /> <location filename="../QScintilla/MiniEditor.py" line="1373" /> <location filename="../QScintilla/ShellWindow.py" line="860" /> - <location filename="../ViewManager/ViewManager.py" line="3093" /> - <location filename="../ViewManager/ViewManager.py" line="2343" /> - <location filename="../ViewManager/ViewManager.py" line="2297" /> + <location filename="../ViewManager/ViewManager.py" line="3103" /> + <location filename="../ViewManager/ViewManager.py" line="2353" /> + <location filename="../ViewManager/ViewManager.py" line="2307" /> <source>Alt+Shift+Right</source> <translation type="unfinished" /> </message> @@ -95731,8 +95731,8 @@ <location filename="../QScintilla/MiniEditor.py" line="1381" /> <location filename="../QScintilla/ShellWindow.py" line="823" /> <location filename="../QScintilla/ShellWindow.py" line="822" /> - <location filename="../ViewManager/ViewManager.py" line="2306" /> - <location filename="../ViewManager/ViewManager.py" line="2305" /> + <location filename="../ViewManager/ViewManager.py" line="2316" /> + <location filename="../ViewManager/ViewManager.py" line="2315" /> <source>Extend selection left one word</source> <translation type="unfinished" /> </message> @@ -95740,8 +95740,8 @@ <location filename="../QScintilla/MiniEditor.py" line="2312" /> <location filename="../QScintilla/MiniEditor.py" line="1397" /> <location filename="../QScintilla/ShellWindow.py" line="838" /> - <location filename="../ViewManager/ViewManager.py" line="3219" /> - <location filename="../ViewManager/ViewManager.py" line="2321" /> + <location filename="../ViewManager/ViewManager.py" line="3229" /> + <location filename="../ViewManager/ViewManager.py" line="2331" /> <source>Ctrl+Shift+Left</source> <translation type="unfinished" /> </message> @@ -95750,8 +95750,8 @@ <location filename="../QScintilla/MiniEditor.py" line="1405" /> <location filename="../QScintilla/ShellWindow.py" line="849" /> <location filename="../QScintilla/ShellWindow.py" line="846" /> - <location filename="../ViewManager/ViewManager.py" line="2332" /> - <location filename="../ViewManager/ViewManager.py" line="2329" /> + <location filename="../ViewManager/ViewManager.py" line="2342" /> + <location filename="../ViewManager/ViewManager.py" line="2339" /> <source>Extend selection right one word</source> <translation type="unfinished" /> </message> @@ -95759,8 +95759,8 @@ <location filename="../QScintilla/MiniEditor.py" line="1873" /> <location filename="../QScintilla/MiniEditor.py" line="1425" /> <location filename="../QScintilla/ShellWindow.py" line="866" /> - <location filename="../ViewManager/ViewManager.py" line="2780" /> - <location filename="../ViewManager/ViewManager.py" line="2349" /> + <location filename="../ViewManager/ViewManager.py" line="2790" /> + <location filename="../ViewManager/ViewManager.py" line="2359" /> <source>Ctrl+Shift+Right</source> <translation type="unfinished" /> </message> @@ -95769,15 +95769,15 @@ <location filename="../QScintilla/MiniEditor.py" line="1433" /> <location filename="../QScintilla/ShellWindow.py" line="878" /> <location filename="../QScintilla/ShellWindow.py" line="874" /> - <location filename="../ViewManager/ViewManager.py" line="2361" /> - <location filename="../ViewManager/ViewManager.py" line="2357" /> + <location filename="../ViewManager/ViewManager.py" line="2371" /> + <location filename="../ViewManager/ViewManager.py" line="2367" /> <source>Extend selection to first visible character in document line</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1448" /> <location filename="../QScintilla/ShellWindow.py" line="889" /> - <location filename="../ViewManager/ViewManager.py" line="2372" /> + <location filename="../ViewManager/ViewManager.py" line="2382" /> <source>Shift+Home</source> <translation type="unfinished" /> </message> @@ -95786,124 +95786,124 @@ <location filename="../QScintilla/MiniEditor.py" line="1455" /> <location filename="../QScintilla/ShellWindow.py" line="899" /> <location filename="../QScintilla/ShellWindow.py" line="896" /> - <location filename="../ViewManager/ViewManager.py" line="2382" /> - <location filename="../ViewManager/ViewManager.py" line="2379" /> + <location filename="../ViewManager/ViewManager.py" line="2392" /> + <location filename="../ViewManager/ViewManager.py" line="2389" /> <source>Extend selection to end of document line</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1468" /> <location filename="../QScintilla/ShellWindow.py" line="909" /> - <location filename="../ViewManager/ViewManager.py" line="2392" /> + <location filename="../ViewManager/ViewManager.py" line="2402" /> <source>Meta+Shift+E</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1472" /> <location filename="../QScintilla/ShellWindow.py" line="913" /> - <location filename="../ViewManager/ViewManager.py" line="2396" /> + <location filename="../ViewManager/ViewManager.py" line="2406" /> <source>Shift+End</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1482" /> <location filename="../QScintilla/MiniEditor.py" line="1479" /> - <location filename="../ViewManager/ViewManager.py" line="2406" /> - <location filename="../ViewManager/ViewManager.py" line="2403" /> + <location filename="../ViewManager/ViewManager.py" line="2416" /> + <location filename="../ViewManager/ViewManager.py" line="2413" /> <source>Extend selection up one paragraph</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1485" /> - <location filename="../ViewManager/ViewManager.py" line="2409" /> + <location filename="../ViewManager/ViewManager.py" line="2419" /> <source>Alt+Shift+Up</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1498" /> <location filename="../QScintilla/MiniEditor.py" line="1495" /> - <location filename="../ViewManager/ViewManager.py" line="2422" /> - <location filename="../ViewManager/ViewManager.py" line="2419" /> + <location filename="../ViewManager/ViewManager.py" line="2432" /> + <location filename="../ViewManager/ViewManager.py" line="2429" /> <source>Extend selection down one paragraph</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1501" /> - <location filename="../ViewManager/ViewManager.py" line="2425" /> + <location filename="../ViewManager/ViewManager.py" line="2435" /> <source>Alt+Shift+Down</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1512" /> <location filename="../QScintilla/MiniEditor.py" line="1511" /> - <location filename="../ViewManager/ViewManager.py" line="2436" /> - <location filename="../ViewManager/ViewManager.py" line="2435" /> + <location filename="../ViewManager/ViewManager.py" line="2446" /> + <location filename="../ViewManager/ViewManager.py" line="2445" /> <source>Extend selection up one page</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1513" /> - <location filename="../ViewManager/ViewManager.py" line="2437" /> + <location filename="../ViewManager/ViewManager.py" line="2447" /> <source>Shift+PgUp</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1524" /> <location filename="../QScintilla/MiniEditor.py" line="1523" /> - <location filename="../ViewManager/ViewManager.py" line="2448" /> - <location filename="../ViewManager/ViewManager.py" line="2447" /> + <location filename="../ViewManager/ViewManager.py" line="2458" /> + <location filename="../ViewManager/ViewManager.py" line="2457" /> <source>Extend selection down one page</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1525" /> - <location filename="../ViewManager/ViewManager.py" line="2449" /> + <location filename="../ViewManager/ViewManager.py" line="2459" /> <source>Shift+PgDown</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1532" /> - <location filename="../ViewManager/ViewManager.py" line="2456" /> + <location filename="../ViewManager/ViewManager.py" line="2466" /> <source>Meta+Shift+V</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1542" /> <location filename="../QScintilla/MiniEditor.py" line="1539" /> - <location filename="../ViewManager/ViewManager.py" line="2466" /> - <location filename="../ViewManager/ViewManager.py" line="2463" /> + <location filename="../ViewManager/ViewManager.py" line="2476" /> + <location filename="../ViewManager/ViewManager.py" line="2473" /> <source>Extend selection to start of document</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1552" /> - <location filename="../ViewManager/ViewManager.py" line="2476" /> + <location filename="../ViewManager/ViewManager.py" line="2486" /> <source>Ctrl+Shift+Up</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1557" /> - <location filename="../ViewManager/ViewManager.py" line="2481" /> + <location filename="../ViewManager/ViewManager.py" line="2491" /> <source>Ctrl+Shift+Home</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1568" /> <location filename="../QScintilla/MiniEditor.py" line="1565" /> - <location filename="../ViewManager/ViewManager.py" line="2492" /> - <location filename="../ViewManager/ViewManager.py" line="2489" /> + <location filename="../ViewManager/ViewManager.py" line="2502" /> + <location filename="../ViewManager/ViewManager.py" line="2499" /> <source>Extend selection to end of document</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1579" /> - <location filename="../ViewManager/ViewManager.py" line="2503" /> + <location filename="../ViewManager/ViewManager.py" line="2513" /> <source>Ctrl+Shift+Down</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1585" /> - <location filename="../ViewManager/ViewManager.py" line="2509" /> + <location filename="../ViewManager/ViewManager.py" line="2519" /> <source>Ctrl+Shift+End</source> <translation type="unfinished" /> </message> @@ -95912,37 +95912,37 @@ <location filename="../QScintilla/MiniEditor.py" line="1593" /> <location filename="../QScintilla/ShellWindow.py" line="481" /> <location filename="../QScintilla/ShellWindow.py" line="480" /> - <location filename="../ViewManager/ViewManager.py" line="2518" /> - <location filename="../ViewManager/ViewManager.py" line="2517" /> + <location filename="../ViewManager/ViewManager.py" line="2528" /> + <location filename="../ViewManager/ViewManager.py" line="2527" /> <source>Delete previous character</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1595" /> <location filename="../QScintilla/ShellWindow.py" line="482" /> - <location filename="../ViewManager/ViewManager.py" line="2519" /> + <location filename="../ViewManager/ViewManager.py" line="2529" /> <source>Backspace</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1602" /> <location filename="../QScintilla/ShellWindow.py" line="489" /> - <location filename="../ViewManager/ViewManager.py" line="2526" /> + <location filename="../ViewManager/ViewManager.py" line="2536" /> <source>Meta+H</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1607" /> <location filename="../QScintilla/ShellWindow.py" line="494" /> - <location filename="../ViewManager/ViewManager.py" line="2531" /> + <location filename="../ViewManager/ViewManager.py" line="2541" /> <source>Shift+Backspace</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1618" /> <location filename="../QScintilla/MiniEditor.py" line="1615" /> - <location filename="../ViewManager/ViewManager.py" line="2542" /> - <location filename="../ViewManager/ViewManager.py" line="2539" /> + <location filename="../ViewManager/ViewManager.py" line="2552" /> + <location filename="../ViewManager/ViewManager.py" line="2549" /> <source>Delete previous character if not at start of line</source> <translation type="unfinished" /> </message> @@ -95951,22 +95951,22 @@ <location filename="../QScintilla/MiniEditor.py" line="1631" /> <location filename="../QScintilla/ShellWindow.py" line="503" /> <location filename="../QScintilla/ShellWindow.py" line="502" /> - <location filename="../ViewManager/ViewManager.py" line="2556" /> - <location filename="../ViewManager/ViewManager.py" line="2555" /> + <location filename="../ViewManager/ViewManager.py" line="2566" /> + <location filename="../ViewManager/ViewManager.py" line="2565" /> <source>Delete current character</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1633" /> <location filename="../QScintilla/ShellWindow.py" line="504" /> - <location filename="../ViewManager/ViewManager.py" line="2557" /> + <location filename="../ViewManager/ViewManager.py" line="2567" /> <source>Del</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1640" /> <location filename="../QScintilla/ShellWindow.py" line="511" /> - <location filename="../ViewManager/ViewManager.py" line="2564" /> + <location filename="../ViewManager/ViewManager.py" line="2574" /> <source>Meta+D</source> <translation type="unfinished" /> </message> @@ -95975,15 +95975,15 @@ <location filename="../QScintilla/MiniEditor.py" line="1647" /> <location filename="../QScintilla/ShellWindow.py" line="519" /> <location filename="../QScintilla/ShellWindow.py" line="518" /> - <location filename="../ViewManager/ViewManager.py" line="2572" /> - <location filename="../ViewManager/ViewManager.py" line="2571" /> + <location filename="../ViewManager/ViewManager.py" line="2582" /> + <location filename="../ViewManager/ViewManager.py" line="2581" /> <source>Delete word to left</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1649" /> <location filename="../QScintilla/ShellWindow.py" line="520" /> - <location filename="../ViewManager/ViewManager.py" line="2573" /> + <location filename="../ViewManager/ViewManager.py" line="2583" /> <source>Ctrl+Backspace</source> <translation type="unfinished" /> </message> @@ -95992,15 +95992,15 @@ <location filename="../QScintilla/MiniEditor.py" line="1659" /> <location filename="../QScintilla/ShellWindow.py" line="531" /> <location filename="../QScintilla/ShellWindow.py" line="530" /> - <location filename="../ViewManager/ViewManager.py" line="2584" /> - <location filename="../ViewManager/ViewManager.py" line="2583" /> + <location filename="../ViewManager/ViewManager.py" line="2594" /> + <location filename="../ViewManager/ViewManager.py" line="2593" /> <source>Delete word to right</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1661" /> <location filename="../QScintilla/ShellWindow.py" line="532" /> - <location filename="../ViewManager/ViewManager.py" line="2585" /> + <location filename="../ViewManager/ViewManager.py" line="2595" /> <source>Ctrl+Del</source> <translation type="unfinished" /> </message> @@ -96009,15 +96009,15 @@ <location filename="../QScintilla/MiniEditor.py" line="1671" /> <location filename="../QScintilla/ShellWindow.py" line="543" /> <location filename="../QScintilla/ShellWindow.py" line="542" /> - <location filename="../ViewManager/ViewManager.py" line="2596" /> - <location filename="../ViewManager/ViewManager.py" line="2595" /> + <location filename="../ViewManager/ViewManager.py" line="2606" /> + <location filename="../ViewManager/ViewManager.py" line="2605" /> <source>Delete line to left</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1674" /> <location filename="../QScintilla/ShellWindow.py" line="545" /> - <location filename="../ViewManager/ViewManager.py" line="2598" /> + <location filename="../ViewManager/ViewManager.py" line="2608" /> <source>Ctrl+Shift+Backspace</source> <translation type="unfinished" /> </message> @@ -96026,22 +96026,22 @@ <location filename="../QScintilla/MiniEditor.py" line="1685" /> <location filename="../QScintilla/ShellWindow.py" line="557" /> <location filename="../QScintilla/ShellWindow.py" line="556" /> - <location filename="../ViewManager/ViewManager.py" line="2610" /> - <location filename="../ViewManager/ViewManager.py" line="2609" /> + <location filename="../ViewManager/ViewManager.py" line="2620" /> + <location filename="../ViewManager/ViewManager.py" line="2619" /> <source>Delete line to right</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1694" /> <location filename="../QScintilla/ShellWindow.py" line="565" /> - <location filename="../ViewManager/ViewManager.py" line="2618" /> + <location filename="../ViewManager/ViewManager.py" line="2628" /> <source>Meta+K</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1699" /> <location filename="../QScintilla/ShellWindow.py" line="570" /> - <location filename="../ViewManager/ViewManager.py" line="2623" /> + <location filename="../ViewManager/ViewManager.py" line="2633" /> <source>Ctrl+Shift+Del</source> <translation type="unfinished" /> </message> @@ -96050,38 +96050,38 @@ <location filename="../QScintilla/MiniEditor.py" line="1707" /> <location filename="../QScintilla/ShellWindow.py" line="469" /> <location filename="../QScintilla/ShellWindow.py" line="468" /> - <location filename="../ViewManager/ViewManager.py" line="2632" /> - <location filename="../ViewManager/ViewManager.py" line="2631" /> + <location filename="../ViewManager/ViewManager.py" line="2642" /> + <location filename="../ViewManager/ViewManager.py" line="2641" /> <source>Insert new line</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1709" /> <location filename="../QScintilla/ShellWindow.py" line="470" /> - <location filename="../ViewManager/ViewManager.py" line="2633" /> + <location filename="../ViewManager/ViewManager.py" line="2643" /> <source>Return</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1710" /> <location filename="../QScintilla/ShellWindow.py" line="471" /> - <location filename="../ViewManager/ViewManager.py" line="2634" /> + <location filename="../ViewManager/ViewManager.py" line="2644" /> <source>Enter</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="2646" /> - <location filename="../ViewManager/ViewManager.py" line="2643" /> + <location filename="../ViewManager/ViewManager.py" line="2656" /> + <location filename="../ViewManager/ViewManager.py" line="2653" /> <source>Insert new line below current line</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="2649" /> + <location filename="../ViewManager/ViewManager.py" line="2659" /> <source>Shift+Return</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="2650" /> + <location filename="../ViewManager/ViewManager.py" line="2660" /> <source>Shift+Enter</source> <translation type="unfinished" /> </message> @@ -96090,129 +96090,129 @@ <location filename="../QScintilla/MiniEditor.py" line="1719" /> <location filename="../QScintilla/ShellWindow.py" line="445" /> <location filename="../QScintilla/ShellWindow.py" line="444" /> - <location filename="../ViewManager/ViewManager.py" line="2659" /> - <location filename="../ViewManager/ViewManager.py" line="2658" /> + <location filename="../ViewManager/ViewManager.py" line="2669" /> + <location filename="../ViewManager/ViewManager.py" line="2668" /> <source>Delete current line</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1721" /> <location filename="../QScintilla/ShellWindow.py" line="446" /> - <location filename="../ViewManager/ViewManager.py" line="2660" /> + <location filename="../ViewManager/ViewManager.py" line="2670" /> <source>Ctrl+Shift+L</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1732" /> <location filename="../QScintilla/MiniEditor.py" line="1731" /> - <location filename="../ViewManager/ViewManager.py" line="2671" /> - <location filename="../ViewManager/ViewManager.py" line="2670" /> + <location filename="../ViewManager/ViewManager.py" line="2681" /> + <location filename="../ViewManager/ViewManager.py" line="2680" /> <source>Duplicate current line</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1733" /> - <location filename="../ViewManager/ViewManager.py" line="2672" /> + <location filename="../ViewManager/ViewManager.py" line="2682" /> <source>Ctrl+D</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1746" /> <location filename="../QScintilla/MiniEditor.py" line="1743" /> - <location filename="../ViewManager/ViewManager.py" line="2685" /> - <location filename="../ViewManager/ViewManager.py" line="2682" /> + <location filename="../ViewManager/ViewManager.py" line="2695" /> + <location filename="../ViewManager/ViewManager.py" line="2692" /> <source>Swap current and previous lines</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1749" /> - <location filename="../ViewManager/ViewManager.py" line="2688" /> + <location filename="../ViewManager/ViewManager.py" line="2698" /> <source>Ctrl+T</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1760" /> <location filename="../QScintilla/MiniEditor.py" line="1759" /> - <location filename="../ViewManager/ViewManager.py" line="2699" /> - <location filename="../ViewManager/ViewManager.py" line="2698" /> + <location filename="../ViewManager/ViewManager.py" line="2709" /> + <location filename="../ViewManager/ViewManager.py" line="2708" /> <source>Reverse selected lines</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1761" /> - <location filename="../ViewManager/ViewManager.py" line="2700" /> + <location filename="../ViewManager/ViewManager.py" line="2710" /> <source>Meta+Alt+R</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1772" /> <location filename="../QScintilla/MiniEditor.py" line="1771" /> - <location filename="../ViewManager/ViewManager.py" line="2711" /> - <location filename="../ViewManager/ViewManager.py" line="2710" /> + <location filename="../ViewManager/ViewManager.py" line="2721" /> + <location filename="../ViewManager/ViewManager.py" line="2720" /> <source>Cut current line</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1773" /> - <location filename="../ViewManager/ViewManager.py" line="2712" /> + <location filename="../ViewManager/ViewManager.py" line="2722" /> <source>Alt+Shift+L</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1784" /> <location filename="../QScintilla/MiniEditor.py" line="1783" /> - <location filename="../ViewManager/ViewManager.py" line="2723" /> - <location filename="../ViewManager/ViewManager.py" line="2722" /> + <location filename="../ViewManager/ViewManager.py" line="2733" /> + <location filename="../ViewManager/ViewManager.py" line="2732" /> <source>Copy current line</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1785" /> - <location filename="../ViewManager/ViewManager.py" line="2724" /> + <location filename="../ViewManager/ViewManager.py" line="2734" /> <source>Ctrl+Shift+T</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1796" /> <location filename="../QScintilla/MiniEditor.py" line="1795" /> - <location filename="../ViewManager/ViewManager.py" line="2735" /> - <location filename="../ViewManager/ViewManager.py" line="2734" /> + <location filename="../ViewManager/ViewManager.py" line="2745" /> + <location filename="../ViewManager/ViewManager.py" line="2744" /> <source>Toggle insert/overtype</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1797" /> - <location filename="../ViewManager/ViewManager.py" line="2736" /> + <location filename="../ViewManager/ViewManager.py" line="2746" /> <source>Ins</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1840" /> <location filename="../QScintilla/MiniEditor.py" line="1839" /> - <location filename="../ViewManager/ViewManager.py" line="2747" /> - <location filename="../ViewManager/ViewManager.py" line="2746" /> + <location filename="../ViewManager/ViewManager.py" line="2757" /> + <location filename="../ViewManager/ViewManager.py" line="2756" /> <source>Move to end of display line</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1852" /> - <location filename="../ViewManager/ViewManager.py" line="2759" /> + <location filename="../ViewManager/ViewManager.py" line="2769" /> <source>Alt+End</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1862" /> <location filename="../QScintilla/MiniEditor.py" line="1859" /> - <location filename="../ViewManager/ViewManager.py" line="2769" /> - <location filename="../ViewManager/ViewManager.py" line="2766" /> + <location filename="../ViewManager/ViewManager.py" line="2779" /> + <location filename="../ViewManager/ViewManager.py" line="2776" /> <source>Extend selection to end of display line</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1882" /> <location filename="../QScintilla/MiniEditor.py" line="1881" /> - <location filename="../ViewManager/ViewManager.py" line="2789" /> - <location filename="../ViewManager/ViewManager.py" line="2788" /> + <location filename="../ViewManager/ViewManager.py" line="2799" /> + <location filename="../ViewManager/ViewManager.py" line="2798" /> <source>Formfeed</source> <translation type="unfinished" /> </message> @@ -96221,163 +96221,163 @@ <location filename="../QScintilla/MiniEditor.py" line="1893" /> <location filename="../QScintilla/ShellWindow.py" line="771" /> <location filename="../QScintilla/ShellWindow.py" line="770" /> - <location filename="../ViewManager/ViewManager.py" line="2801" /> - <location filename="../ViewManager/ViewManager.py" line="2800" /> + <location filename="../ViewManager/ViewManager.py" line="2811" /> + <location filename="../ViewManager/ViewManager.py" line="2810" /> <source>Escape</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1895" /> <location filename="../QScintilla/ShellWindow.py" line="772" /> - <location filename="../ViewManager/ViewManager.py" line="2802" /> + <location filename="../ViewManager/ViewManager.py" line="2812" /> <source>Esc</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1908" /> <location filename="../QScintilla/MiniEditor.py" line="1905" /> - <location filename="../ViewManager/ViewManager.py" line="2815" /> - <location filename="../ViewManager/ViewManager.py" line="2812" /> + <location filename="../ViewManager/ViewManager.py" line="2825" /> + <location filename="../ViewManager/ViewManager.py" line="2822" /> <source>Extend rectangular selection down one line</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1911" /> - <location filename="../ViewManager/ViewManager.py" line="2818" /> + <location filename="../ViewManager/ViewManager.py" line="2828" /> <source>Alt+Ctrl+Down</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1919" /> - <location filename="../ViewManager/ViewManager.py" line="2826" /> + <location filename="../ViewManager/ViewManager.py" line="2836" /> <source>Meta+Alt+Shift+N</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1930" /> <location filename="../QScintilla/MiniEditor.py" line="1927" /> - <location filename="../ViewManager/ViewManager.py" line="2837" /> - <location filename="../ViewManager/ViewManager.py" line="2834" /> + <location filename="../ViewManager/ViewManager.py" line="2847" /> + <location filename="../ViewManager/ViewManager.py" line="2844" /> <source>Extend rectangular selection up one line</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1933" /> - <location filename="../ViewManager/ViewManager.py" line="2840" /> + <location filename="../ViewManager/ViewManager.py" line="2850" /> <source>Alt+Ctrl+Up</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1941" /> - <location filename="../ViewManager/ViewManager.py" line="2848" /> + <location filename="../ViewManager/ViewManager.py" line="2858" /> <source>Meta+Alt+Shift+P</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1952" /> <location filename="../QScintilla/MiniEditor.py" line="1949" /> - <location filename="../ViewManager/ViewManager.py" line="2859" /> - <location filename="../ViewManager/ViewManager.py" line="2856" /> + <location filename="../ViewManager/ViewManager.py" line="2869" /> + <location filename="../ViewManager/ViewManager.py" line="2866" /> <source>Extend rectangular selection left one character</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1955" /> - <location filename="../ViewManager/ViewManager.py" line="2862" /> + <location filename="../ViewManager/ViewManager.py" line="2872" /> <source>Alt+Ctrl+Left</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1963" /> - <location filename="../ViewManager/ViewManager.py" line="2870" /> + <location filename="../ViewManager/ViewManager.py" line="2880" /> <source>Meta+Alt+Shift+B</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1974" /> <location filename="../QScintilla/MiniEditor.py" line="1971" /> - <location filename="../ViewManager/ViewManager.py" line="2881" /> - <location filename="../ViewManager/ViewManager.py" line="2878" /> + <location filename="../ViewManager/ViewManager.py" line="2891" /> + <location filename="../ViewManager/ViewManager.py" line="2888" /> <source>Extend rectangular selection right one character</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1977" /> - <location filename="../ViewManager/ViewManager.py" line="2884" /> + <location filename="../ViewManager/ViewManager.py" line="2894" /> <source>Alt+Ctrl+Right</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1985" /> - <location filename="../ViewManager/ViewManager.py" line="2892" /> + <location filename="../ViewManager/ViewManager.py" line="2902" /> <source>Meta+Alt+Shift+F</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1998" /> <location filename="../QScintilla/MiniEditor.py" line="1993" /> - <location filename="../ViewManager/ViewManager.py" line="2905" /> - <location filename="../ViewManager/ViewManager.py" line="2900" /> + <location filename="../ViewManager/ViewManager.py" line="2915" /> + <location filename="../ViewManager/ViewManager.py" line="2910" /> <source>Extend rectangular selection to first visible character in document line</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2011" /> - <location filename="../ViewManager/ViewManager.py" line="2918" /> + <location filename="../ViewManager/ViewManager.py" line="2928" /> <source>Alt+Shift+Home</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2022" /> <location filename="../QScintilla/MiniEditor.py" line="2019" /> - <location filename="../ViewManager/ViewManager.py" line="2929" /> - <location filename="../ViewManager/ViewManager.py" line="2926" /> + <location filename="../ViewManager/ViewManager.py" line="2939" /> + <location filename="../ViewManager/ViewManager.py" line="2936" /> <source>Extend rectangular selection to end of document line</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2033" /> - <location filename="../ViewManager/ViewManager.py" line="2940" /> + <location filename="../ViewManager/ViewManager.py" line="2950" /> <source>Meta+Alt+Shift+E</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2038" /> - <location filename="../ViewManager/ViewManager.py" line="2945" /> + <location filename="../ViewManager/ViewManager.py" line="2955" /> <source>Alt+Shift+End</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2048" /> <location filename="../QScintilla/MiniEditor.py" line="2045" /> - <location filename="../ViewManager/ViewManager.py" line="2955" /> - <location filename="../ViewManager/ViewManager.py" line="2952" /> + <location filename="../ViewManager/ViewManager.py" line="2965" /> + <location filename="../ViewManager/ViewManager.py" line="2962" /> <source>Extend rectangular selection up one page</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2051" /> - <location filename="../ViewManager/ViewManager.py" line="2958" /> + <location filename="../ViewManager/ViewManager.py" line="2968" /> <source>Alt+Shift+PgUp</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2064" /> <location filename="../QScintilla/MiniEditor.py" line="2061" /> - <location filename="../ViewManager/ViewManager.py" line="2971" /> - <location filename="../ViewManager/ViewManager.py" line="2968" /> + <location filename="../ViewManager/ViewManager.py" line="2981" /> + <location filename="../ViewManager/ViewManager.py" line="2978" /> <source>Extend rectangular selection down one page</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2067" /> - <location filename="../ViewManager/ViewManager.py" line="2974" /> + <location filename="../ViewManager/ViewManager.py" line="2984" /> <source>Alt+Shift+PgDown</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2075" /> - <location filename="../ViewManager/ViewManager.py" line="2982" /> + <location filename="../ViewManager/ViewManager.py" line="2992" /> <source>Meta+Alt+Shift+V</source> <translation type="unfinished" /> </message> @@ -96386,299 +96386,299 @@ <location filename="../QScintilla/MiniEditor.py" line="2549" /> <location filename="../QScintilla/MiniEditor.py" line="2084" /> <location filename="../QScintilla/MiniEditor.py" line="2083" /> - <location filename="../ViewManager/ViewManager.py" line="2991" /> - <location filename="../ViewManager/ViewManager.py" line="2990" /> + <location filename="../ViewManager/ViewManager.py" line="3001" /> + <location filename="../ViewManager/ViewManager.py" line="3000" /> <source>Duplicate current selection</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2551" /> <location filename="../QScintilla/MiniEditor.py" line="2085" /> - <location filename="../ViewManager/ViewManager.py" line="2992" /> + <location filename="../ViewManager/ViewManager.py" line="3002" /> <source>Ctrl+Shift+D</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2099" /> <location filename="../QScintilla/MiniEditor.py" line="2096" /> - <location filename="../ViewManager/ViewManager.py" line="3006" /> - <location filename="../ViewManager/ViewManager.py" line="3003" /> + <location filename="../ViewManager/ViewManager.py" line="3016" /> + <location filename="../ViewManager/ViewManager.py" line="3013" /> <source>Scroll to start of document</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2118" /> <location filename="../QScintilla/MiniEditor.py" line="2117" /> - <location filename="../ViewManager/ViewManager.py" line="3025" /> - <location filename="../ViewManager/ViewManager.py" line="3024" /> + <location filename="../ViewManager/ViewManager.py" line="3035" /> + <location filename="../ViewManager/ViewManager.py" line="3034" /> <source>Scroll to end of document</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2137" /> <location filename="../QScintilla/MiniEditor.py" line="2134" /> - <location filename="../ViewManager/ViewManager.py" line="3044" /> - <location filename="../ViewManager/ViewManager.py" line="3041" /> + <location filename="../ViewManager/ViewManager.py" line="3054" /> + <location filename="../ViewManager/ViewManager.py" line="3051" /> <source>Scroll vertically to center current line</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2147" /> - <location filename="../ViewManager/ViewManager.py" line="3054" /> + <location filename="../ViewManager/ViewManager.py" line="3064" /> <source>Meta+L</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2156" /> <location filename="../QScintilla/MiniEditor.py" line="2155" /> - <location filename="../ViewManager/ViewManager.py" line="3063" /> - <location filename="../ViewManager/ViewManager.py" line="3062" /> + <location filename="../ViewManager/ViewManager.py" line="3073" /> + <location filename="../ViewManager/ViewManager.py" line="3072" /> <source>Move to end of next word</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2175" /> <location filename="../QScintilla/MiniEditor.py" line="2172" /> - <location filename="../ViewManager/ViewManager.py" line="3082" /> - <location filename="../ViewManager/ViewManager.py" line="3079" /> + <location filename="../ViewManager/ViewManager.py" line="3092" /> + <location filename="../ViewManager/ViewManager.py" line="3089" /> <source>Extend selection to end of next word</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2198" /> <location filename="../QScintilla/MiniEditor.py" line="2195" /> - <location filename="../ViewManager/ViewManager.py" line="3105" /> - <location filename="../ViewManager/ViewManager.py" line="3102" /> + <location filename="../ViewManager/ViewManager.py" line="3115" /> + <location filename="../ViewManager/ViewManager.py" line="3112" /> <source>Move to end of previous word</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2215" /> <location filename="../QScintilla/MiniEditor.py" line="2212" /> - <location filename="../ViewManager/ViewManager.py" line="3122" /> - <location filename="../ViewManager/ViewManager.py" line="3119" /> + <location filename="../ViewManager/ViewManager.py" line="3132" /> + <location filename="../ViewManager/ViewManager.py" line="3129" /> <source>Extend selection to end of previous word</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2232" /> <location filename="../QScintilla/MiniEditor.py" line="2229" /> - <location filename="../ViewManager/ViewManager.py" line="3139" /> - <location filename="../ViewManager/ViewManager.py" line="3136" /> + <location filename="../ViewManager/ViewManager.py" line="3149" /> + <location filename="../ViewManager/ViewManager.py" line="3146" /> <source>Move to start of document line</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2242" /> - <location filename="../ViewManager/ViewManager.py" line="3149" /> + <location filename="../ViewManager/ViewManager.py" line="3159" /> <source>Meta+A</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2253" /> <location filename="../QScintilla/MiniEditor.py" line="2250" /> - <location filename="../ViewManager/ViewManager.py" line="3160" /> - <location filename="../ViewManager/ViewManager.py" line="3157" /> + <location filename="../ViewManager/ViewManager.py" line="3170" /> + <location filename="../ViewManager/ViewManager.py" line="3167" /> <source>Extend selection to start of document line</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2264" /> - <location filename="../ViewManager/ViewManager.py" line="3171" /> + <location filename="../ViewManager/ViewManager.py" line="3181" /> <source>Meta+Shift+A</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2277" /> <location filename="../QScintilla/MiniEditor.py" line="2273" /> - <location filename="../ViewManager/ViewManager.py" line="3184" /> - <location filename="../ViewManager/ViewManager.py" line="3180" /> + <location filename="../ViewManager/ViewManager.py" line="3194" /> + <location filename="../ViewManager/ViewManager.py" line="3190" /> <source>Extend rectangular selection to start of document line</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2289" /> - <location filename="../ViewManager/ViewManager.py" line="3196" /> + <location filename="../ViewManager/ViewManager.py" line="3206" /> <source>Meta+Alt+Shift+A</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2301" /> <location filename="../QScintilla/MiniEditor.py" line="2298" /> - <location filename="../ViewManager/ViewManager.py" line="3208" /> - <location filename="../ViewManager/ViewManager.py" line="3205" /> + <location filename="../ViewManager/ViewManager.py" line="3218" /> + <location filename="../ViewManager/ViewManager.py" line="3215" /> <source>Extend selection to start of display line</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2324" /> <location filename="../QScintilla/MiniEditor.py" line="2321" /> - <location filename="../ViewManager/ViewManager.py" line="3231" /> - <location filename="../ViewManager/ViewManager.py" line="3228" /> + <location filename="../ViewManager/ViewManager.py" line="3241" /> + <location filename="../ViewManager/ViewManager.py" line="3238" /> <source>Move to start of display or document line</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2342" /> <location filename="../QScintilla/MiniEditor.py" line="2338" /> - <location filename="../ViewManager/ViewManager.py" line="3249" /> - <location filename="../ViewManager/ViewManager.py" line="3245" /> + <location filename="../ViewManager/ViewManager.py" line="3259" /> + <location filename="../ViewManager/ViewManager.py" line="3255" /> <source>Extend selection to start of display or document line</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2361" /> <location filename="../QScintilla/MiniEditor.py" line="2357" /> - <location filename="../ViewManager/ViewManager.py" line="3268" /> - <location filename="../ViewManager/ViewManager.py" line="3264" /> + <location filename="../ViewManager/ViewManager.py" line="3278" /> + <location filename="../ViewManager/ViewManager.py" line="3274" /> <source>Move to first visible character in display or document line</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2381" /> <location filename="../QScintilla/MiniEditor.py" line="2376" /> - <location filename="../ViewManager/ViewManager.py" line="3288" /> - <location filename="../ViewManager/ViewManager.py" line="3283" /> + <location filename="../ViewManager/ViewManager.py" line="3298" /> + <location filename="../ViewManager/ViewManager.py" line="3293" /> <source>Extend selection to first visible character in display or document line</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2400" /> <location filename="../QScintilla/MiniEditor.py" line="2397" /> - <location filename="../ViewManager/ViewManager.py" line="3307" /> - <location filename="../ViewManager/ViewManager.py" line="3304" /> + <location filename="../ViewManager/ViewManager.py" line="3317" /> + <location filename="../ViewManager/ViewManager.py" line="3314" /> <source>Move to end of display or document line</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2417" /> <location filename="../QScintilla/MiniEditor.py" line="2414" /> - <location filename="../ViewManager/ViewManager.py" line="3324" /> - <location filename="../ViewManager/ViewManager.py" line="3321" /> + <location filename="../ViewManager/ViewManager.py" line="3334" /> + <location filename="../ViewManager/ViewManager.py" line="3331" /> <source>Extend selection to end of display or document line</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2432" /> <location filename="../QScintilla/MiniEditor.py" line="2431" /> - <location filename="../ViewManager/ViewManager.py" line="3339" /> - <location filename="../ViewManager/ViewManager.py" line="3338" /> + <location filename="../ViewManager/ViewManager.py" line="3349" /> + <location filename="../ViewManager/ViewManager.py" line="3348" /> <source>Stuttered move up one page</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2447" /> <location filename="../QScintilla/MiniEditor.py" line="2444" /> - <location filename="../ViewManager/ViewManager.py" line="3354" /> - <location filename="../ViewManager/ViewManager.py" line="3351" /> + <location filename="../ViewManager/ViewManager.py" line="3364" /> + <location filename="../ViewManager/ViewManager.py" line="3361" /> <source>Stuttered extend selection up one page</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2464" /> <location filename="../QScintilla/MiniEditor.py" line="2461" /> - <location filename="../ViewManager/ViewManager.py" line="3371" /> - <location filename="../ViewManager/ViewManager.py" line="3368" /> + <location filename="../ViewManager/ViewManager.py" line="3381" /> + <location filename="../ViewManager/ViewManager.py" line="3378" /> <source>Stuttered move down one page</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2481" /> <location filename="../QScintilla/MiniEditor.py" line="2478" /> - <location filename="../ViewManager/ViewManager.py" line="3388" /> - <location filename="../ViewManager/ViewManager.py" line="3385" /> + <location filename="../ViewManager/ViewManager.py" line="3398" /> + <location filename="../ViewManager/ViewManager.py" line="3395" /> <source>Stuttered extend selection down one page</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2498" /> <location filename="../QScintilla/MiniEditor.py" line="2495" /> - <location filename="../ViewManager/ViewManager.py" line="3405" /> - <location filename="../ViewManager/ViewManager.py" line="3402" /> + <location filename="../ViewManager/ViewManager.py" line="3415" /> + <location filename="../ViewManager/ViewManager.py" line="3412" /> <source>Delete right to end of next word</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2508" /> - <location filename="../ViewManager/ViewManager.py" line="3415" /> + <location filename="../ViewManager/ViewManager.py" line="3425" /> <source>Alt+Del</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2519" /> <location filename="../QScintilla/MiniEditor.py" line="2516" /> - <location filename="../ViewManager/ViewManager.py" line="3426" /> - <location filename="../ViewManager/ViewManager.py" line="3423" /> + <location filename="../ViewManager/ViewManager.py" line="3436" /> + <location filename="../ViewManager/ViewManager.py" line="3433" /> <source>Move selected lines up one line</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2536" /> <location filename="../QScintilla/MiniEditor.py" line="2533" /> - <location filename="../ViewManager/ViewManager.py" line="3443" /> - <location filename="../ViewManager/ViewManager.py" line="3440" /> + <location filename="../ViewManager/ViewManager.py" line="3453" /> + <location filename="../ViewManager/ViewManager.py" line="3450" /> <source>Move selected lines down one line</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1810" /> <location filename="../QScintilla/MiniEditor.py" line="1807" /> - <location filename="../ViewManager/ViewManager.py" line="3461" /> - <location filename="../ViewManager/ViewManager.py" line="3458" /> + <location filename="../ViewManager/ViewManager.py" line="3471" /> + <location filename="../ViewManager/ViewManager.py" line="3468" /> <source>Convert selection to lower case</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1813" /> - <location filename="../ViewManager/ViewManager.py" line="3464" /> + <location filename="../ViewManager/ViewManager.py" line="3474" /> <source>Alt+Shift+U</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1826" /> <location filename="../QScintilla/MiniEditor.py" line="1823" /> - <location filename="../ViewManager/ViewManager.py" line="3477" /> - <location filename="../ViewManager/ViewManager.py" line="3474" /> + <location filename="../ViewManager/ViewManager.py" line="3487" /> + <location filename="../ViewManager/ViewManager.py" line="3484" /> <source>Convert selection to upper case</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1829" /> - <location filename="../ViewManager/ViewManager.py" line="3480" /> + <location filename="../ViewManager/ViewManager.py" line="3490" /> <source>Ctrl+Shift+U</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3506" /> + <location filename="../ViewManager/ViewManager.py" line="3516" /> <source>&Edit</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3564" /> - <location filename="../ViewManager/ViewManager.py" line="3562" /> + <location filename="../ViewManager/ViewManager.py" line="3574" /> + <location filename="../ViewManager/ViewManager.py" line="3572" /> <source>Edit</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2568" /> <location filename="../QScintilla/ShellWindow.py" line="927" /> - <location filename="../ViewManager/ViewManager.py" line="4167" /> - <location filename="../ViewManager/ViewManager.py" line="4165" /> - <location filename="../ViewManager/ViewManager.py" line="3598" /> + <location filename="../ViewManager/ViewManager.py" line="4177" /> + <location filename="../ViewManager/ViewManager.py" line="4175" /> + <location filename="../ViewManager/ViewManager.py" line="3608" /> <source>Search</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2570" /> <location filename="../QScintilla/ShellWindow.py" line="929" /> - <location filename="../ViewManager/ViewManager.py" line="3600" /> + <location filename="../ViewManager/ViewManager.py" line="3610" /> <source>&Search...</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2572" /> <location filename="../QScintilla/ShellWindow.py" line="931" /> - <location filename="../ViewManager/ViewManager.py" line="3602" /> + <location filename="../ViewManager/ViewManager.py" line="3612" /> <source>Ctrl+F</source> <comment>Search|Search</comment> <translation type="unfinished" /> @@ -96686,34 +96686,34 @@ <message> <location filename="../QScintilla/MiniEditor.py" line="2579" /> <location filename="../QScintilla/ShellWindow.py" line="938" /> - <location filename="../ViewManager/ViewManager.py" line="3609" /> + <location filename="../ViewManager/ViewManager.py" line="3619" /> <source>Search for a text</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2582" /> - <location filename="../ViewManager/ViewManager.py" line="3612" /> + <location filename="../ViewManager/ViewManager.py" line="3622" /> <source><b>Search</b><p>Search for some text in the current editor. A dialog is shown to enter the searchtext and options for the search.</p></source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2594" /> <location filename="../QScintilla/ShellWindow.py" line="953" /> - <location filename="../ViewManager/ViewManager.py" line="3624" /> + <location filename="../ViewManager/ViewManager.py" line="3634" /> <source>Search next</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2596" /> <location filename="../QScintilla/ShellWindow.py" line="955" /> - <location filename="../ViewManager/ViewManager.py" line="3626" /> + <location filename="../ViewManager/ViewManager.py" line="3636" /> <source>Search &next</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2598" /> <location filename="../QScintilla/ShellWindow.py" line="957" /> - <location filename="../ViewManager/ViewManager.py" line="3628" /> + <location filename="../ViewManager/ViewManager.py" line="3638" /> <source>F3</source> <comment>Search|Search next</comment> <translation type="unfinished" /> @@ -96721,34 +96721,34 @@ <message> <location filename="../QScintilla/MiniEditor.py" line="2605" /> <location filename="../QScintilla/ShellWindow.py" line="964" /> - <location filename="../ViewManager/ViewManager.py" line="3635" /> + <location filename="../ViewManager/ViewManager.py" line="3645" /> <source>Search next occurrence of text</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2608" /> - <location filename="../ViewManager/ViewManager.py" line="3638" /> + <location filename="../ViewManager/ViewManager.py" line="3648" /> <source><b>Search next</b><p>Search the next occurrence of some text in the current editor. The previously entered searchtext and options are reused.</p></source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2620" /> <location filename="../QScintilla/ShellWindow.py" line="981" /> - <location filename="../ViewManager/ViewManager.py" line="3650" /> + <location filename="../ViewManager/ViewManager.py" line="3660" /> <source>Search previous</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2622" /> <location filename="../QScintilla/ShellWindow.py" line="983" /> - <location filename="../ViewManager/ViewManager.py" line="3652" /> + <location filename="../ViewManager/ViewManager.py" line="3662" /> <source>Search &previous</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2624" /> <location filename="../QScintilla/ShellWindow.py" line="985" /> - <location filename="../ViewManager/ViewManager.py" line="3654" /> + <location filename="../ViewManager/ViewManager.py" line="3664" /> <source>Shift+F3</source> <comment>Search|Search previous</comment> <translation type="unfinished" /> @@ -96756,436 +96756,436 @@ <message> <location filename="../QScintilla/MiniEditor.py" line="2633" /> <location filename="../QScintilla/ShellWindow.py" line="994" /> - <location filename="../ViewManager/ViewManager.py" line="3663" /> + <location filename="../ViewManager/ViewManager.py" line="3673" /> <source>Search previous occurrence of text</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2638" /> - <location filename="../ViewManager/ViewManager.py" line="3668" /> + <location filename="../ViewManager/ViewManager.py" line="3678" /> <source><b>Search previous</b><p>Search the previous occurrence of some text in the current editor. The previously entered searchtext and options are reused.</p></source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2652" /> <location filename="../QScintilla/MiniEditor.py" line="2650" /> - <location filename="../ViewManager/ViewManager.py" line="3682" /> - <location filename="../ViewManager/ViewManager.py" line="3680" /> + <location filename="../ViewManager/ViewManager.py" line="3692" /> + <location filename="../ViewManager/ViewManager.py" line="3690" /> <source>Clear search markers</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2654" /> - <location filename="../ViewManager/ViewManager.py" line="3684" /> + <location filename="../ViewManager/ViewManager.py" line="3694" /> <source>Ctrl+3</source> <comment>Search|Clear search markers</comment> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2663" /> - <location filename="../ViewManager/ViewManager.py" line="3693" /> + <location filename="../ViewManager/ViewManager.py" line="3703" /> <source>Clear all displayed search markers</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2668" /> - <location filename="../ViewManager/ViewManager.py" line="3698" /> + <location filename="../ViewManager/ViewManager.py" line="3708" /> <source><b>Clear search markers</b><p>Clear all displayed search markers.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3710" /> - <location filename="../ViewManager/ViewManager.py" line="3708" /> + <location filename="../ViewManager/ViewManager.py" line="3720" /> + <location filename="../ViewManager/ViewManager.py" line="3718" /> <source>Search current word forward</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3712" /> + <location filename="../ViewManager/ViewManager.py" line="3722" /> <source>Ctrl+.</source> <comment>Search|Search current word forward</comment> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3721" /> + <location filename="../ViewManager/ViewManager.py" line="3731" /> <source>Search next occurrence of the current word</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3726" /> + <location filename="../ViewManager/ViewManager.py" line="3736" /> <source><b>Search current word forward</b><p>Search the next occurrence of the current word of the current editor.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3739" /> - <location filename="../ViewManager/ViewManager.py" line="3737" /> + <location filename="../ViewManager/ViewManager.py" line="3749" /> + <location filename="../ViewManager/ViewManager.py" line="3747" /> <source>Search current word backward</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3741" /> + <location filename="../ViewManager/ViewManager.py" line="3751" /> <source>Ctrl+,</source> <comment>Search|Search current word backward</comment> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3750" /> + <location filename="../ViewManager/ViewManager.py" line="3760" /> <source>Search previous occurrence of the current word</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3755" /> + <location filename="../ViewManager/ViewManager.py" line="3765" /> <source><b>Search current word backward</b><p>Search the previous occurrence of the current word of the current editor.</p></source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2678" /> - <location filename="../ViewManager/ViewManager.py" line="3766" /> + <location filename="../ViewManager/ViewManager.py" line="3776" /> <source>Replace</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2679" /> - <location filename="../ViewManager/ViewManager.py" line="3767" /> + <location filename="../ViewManager/ViewManager.py" line="3777" /> <source>&Replace...</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2681" /> - <location filename="../ViewManager/ViewManager.py" line="3769" /> + <location filename="../ViewManager/ViewManager.py" line="3779" /> <source>Ctrl+R</source> <comment>Search|Replace</comment> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2688" /> - <location filename="../ViewManager/ViewManager.py" line="3776" /> + <location filename="../ViewManager/ViewManager.py" line="3786" /> <source>Replace some text</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2691" /> - <location filename="../ViewManager/ViewManager.py" line="3779" /> + <location filename="../ViewManager/ViewManager.py" line="3789" /> <source><b>Replace</b><p>Search for some text in the current editor and replace it. A dialog is shown to enter the searchtext, the replacement text and options for the search and replace.</p></source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2705" /> <location filename="../QScintilla/MiniEditor.py" line="2703" /> - <location filename="../ViewManager/ViewManager.py" line="3793" /> - <location filename="../ViewManager/ViewManager.py" line="3791" /> + <location filename="../ViewManager/ViewManager.py" line="3803" /> + <location filename="../ViewManager/ViewManager.py" line="3801" /> <source>Replace and Search</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2707" /> - <location filename="../ViewManager/ViewManager.py" line="3795" /> + <location filename="../ViewManager/ViewManager.py" line="3805" /> <source>Meta+R</source> <comment>Search|Replace and Search</comment> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2716" /> - <location filename="../ViewManager/ViewManager.py" line="3804" /> + <location filename="../ViewManager/ViewManager.py" line="3814" /> <source>Replace the found text and search the next occurrence</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2721" /> - <location filename="../ViewManager/ViewManager.py" line="3809" /> + <location filename="../ViewManager/ViewManager.py" line="3819" /> <source><b>Replace and Search</b><p>Replace the found occurrence of text in the current editor and search for the next one. The previously entered search text and options are reused.</p></source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2737" /> <location filename="../QScintilla/MiniEditor.py" line="2735" /> - <location filename="../ViewManager/ViewManager.py" line="3825" /> - <location filename="../ViewManager/ViewManager.py" line="3823" /> + <location filename="../ViewManager/ViewManager.py" line="3835" /> + <location filename="../ViewManager/ViewManager.py" line="3833" /> <source>Replace Occurrence</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2739" /> - <location filename="../ViewManager/ViewManager.py" line="3827" /> + <location filename="../ViewManager/ViewManager.py" line="3837" /> <source>Ctrl+Meta+R</source> <comment>Search|Replace Occurrence</comment> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2748" /> - <location filename="../ViewManager/ViewManager.py" line="3836" /> + <location filename="../ViewManager/ViewManager.py" line="3846" /> <source>Replace the found text</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2751" /> - <location filename="../ViewManager/ViewManager.py" line="3839" /> + <location filename="../ViewManager/ViewManager.py" line="3849" /> <source><b>Replace Occurrence</b><p>Replace the found occurrence of the search text in the current editor.</p></source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2764" /> <location filename="../QScintilla/MiniEditor.py" line="2762" /> - <location filename="../ViewManager/ViewManager.py" line="3852" /> - <location filename="../ViewManager/ViewManager.py" line="3850" /> + <location filename="../ViewManager/ViewManager.py" line="3862" /> + <location filename="../ViewManager/ViewManager.py" line="3860" /> <source>Replace All</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2766" /> - <location filename="../ViewManager/ViewManager.py" line="3854" /> + <location filename="../ViewManager/ViewManager.py" line="3864" /> <source>Shift+Meta+R</source> <comment>Search|Replace All</comment> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2775" /> - <location filename="../ViewManager/ViewManager.py" line="3863" /> + <location filename="../ViewManager/ViewManager.py" line="3873" /> <source>Replace search text occurrences</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2778" /> - <location filename="../ViewManager/ViewManager.py" line="3866" /> + <location filename="../ViewManager/ViewManager.py" line="3876" /> <source><b>Replace All</b><p>Replace all occurrences of the search text in the current editor.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3888" /> - <location filename="../ViewManager/ViewManager.py" line="3877" /> + <location filename="../ViewManager/ViewManager.py" line="3898" /> + <location filename="../ViewManager/ViewManager.py" line="3887" /> <source>Goto Line</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3879" /> + <location filename="../ViewManager/ViewManager.py" line="3889" /> <source>&Goto Line...</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3881" /> - <source>Ctrl+G</source> - <comment>Search|Goto Line</comment> - <translation type="unfinished" /> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="3891" /> + <source>Ctrl+G</source> + <comment>Search|Goto Line</comment> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="3901" /> <source><b>Goto Line</b><p>Go to a specific line of text in the current editor. A dialog is shown to enter the linenumber.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3913" /> - <location filename="../ViewManager/ViewManager.py" line="3902" /> + <location filename="../ViewManager/ViewManager.py" line="3923" /> + <location filename="../ViewManager/ViewManager.py" line="3912" /> <source>Goto Brace</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3904" /> + <location filename="../ViewManager/ViewManager.py" line="3914" /> <source>Goto &Brace</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3906" /> - <source>Ctrl+L</source> - <comment>Search|Goto Brace</comment> - <translation type="unfinished" /> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="3916" /> + <source>Ctrl+L</source> + <comment>Search|Goto Brace</comment> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="3926" /> <source><b>Goto Brace</b><p>Go to the matching brace in the current editor.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3939" /> - <location filename="../ViewManager/ViewManager.py" line="3926" /> + <location filename="../ViewManager/ViewManager.py" line="3949" /> + <location filename="../ViewManager/ViewManager.py" line="3936" /> <source>Goto Last Edit Location</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3928" /> + <location filename="../ViewManager/ViewManager.py" line="3938" /> <source>Goto Last &Edit Location</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3930" /> + <location filename="../ViewManager/ViewManager.py" line="3940" /> <source>Ctrl+Shift+G</source> <comment>Search|Goto Last Edit Location</comment> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3942" /> + <location filename="../ViewManager/ViewManager.py" line="3952" /> <source><b>Goto Last Edit Location</b><p>Go to the location of the last edit in the current editor.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3954" /> - <location filename="../ViewManager/ViewManager.py" line="3953" /> + <location filename="../ViewManager/ViewManager.py" line="3964" /> + <location filename="../ViewManager/ViewManager.py" line="3963" /> <source>Goto Previous Method or Class</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3956" /> + <location filename="../ViewManager/ViewManager.py" line="3966" /> <source>Ctrl+Shift+Up</source> <comment>Search|Goto Previous Method or Class</comment> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3967" /> + <location filename="../ViewManager/ViewManager.py" line="3977" /> <source>Go to the previous method or class definition</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3972" /> + <location filename="../ViewManager/ViewManager.py" line="3982" /> <source><b>Goto Previous Method or Class</b><p>Goes to the line of the previous method or class definition and highlights the name.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3984" /> - <location filename="../ViewManager/ViewManager.py" line="3983" /> + <location filename="../ViewManager/ViewManager.py" line="3994" /> + <location filename="../ViewManager/ViewManager.py" line="3993" /> <source>Goto Next Method or Class</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3986" /> + <location filename="../ViewManager/ViewManager.py" line="3996" /> <source>Ctrl+Shift+Down</source> <comment>Search|Goto Next Method or Class</comment> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3995" /> + <location filename="../ViewManager/ViewManager.py" line="4005" /> <source>Go to the next method or class definition</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4000" /> + <location filename="../ViewManager/ViewManager.py" line="4010" /> <source><b>Goto Next Method or Class</b><p>Goes to the line of the next method or class definition and highlights the name.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4013" /> + <location filename="../ViewManager/ViewManager.py" line="4023" /> <source>Search in Files</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4015" /> + <location filename="../ViewManager/ViewManager.py" line="4025" /> <source>Search in &Files...</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4017" /> + <location filename="../ViewManager/ViewManager.py" line="4027" /> <source>Shift+Ctrl+F</source> <comment>Search|Search Files</comment> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4026" /> + <location filename="../ViewManager/ViewManager.py" line="4036" /> <source>Search for a text in files</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4029" /> + <location filename="../ViewManager/ViewManager.py" line="4039" /> <source><b>Search in Files</b><p>Search for some text in the files of a directory tree or the project. A window is shown to enter the searchtext and options for the search and to display the result.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4041" /> + <location filename="../ViewManager/ViewManager.py" line="4051" /> <source>Replace in Files</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4042" /> + <location filename="../ViewManager/ViewManager.py" line="4052" /> <source>Replace in F&iles...</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4044" /> + <location filename="../ViewManager/ViewManager.py" line="4054" /> <source>Shift+Ctrl+R</source> <comment>Search|Replace in Files</comment> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4053" /> + <location filename="../ViewManager/ViewManager.py" line="4063" /> <source>Search for a text in files and replace it</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4058" /> + <location filename="../ViewManager/ViewManager.py" line="4068" /> <source><b>Replace in Files</b><p>Search for some text in the files of a directory tree or the project and replace it. A window is shown to enter the searchtext, the replacement text and options for the search and to display the result.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4071" /> + <location filename="../ViewManager/ViewManager.py" line="4081" /> <source>Search in Open Files</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4073" /> + <location filename="../ViewManager/ViewManager.py" line="4083" /> <source>Search in Open Files...</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4075" /> + <location filename="../ViewManager/ViewManager.py" line="4085" /> <source>Meta+Ctrl+Alt+F</source> <comment>Search|Search Open Files</comment> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4084" /> + <location filename="../ViewManager/ViewManager.py" line="4094" /> <source>Search for a text in open files</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4087" /> + <location filename="../ViewManager/ViewManager.py" line="4097" /> <source><b>Search in Open Files</b><p>Search for some text in the currently opened files. A window is shown to enter the search text and options for the search and to display the result.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4099" /> + <location filename="../ViewManager/ViewManager.py" line="4109" /> <source>Replace in Open Files</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4100" /> + <location filename="../ViewManager/ViewManager.py" line="4110" /> <source>Replace in Open Files...</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4102" /> + <location filename="../ViewManager/ViewManager.py" line="4112" /> <source>Meta+Ctrl+Alt+R</source> <comment>Search|Replace in Open Files</comment> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4111" /> + <location filename="../ViewManager/ViewManager.py" line="4121" /> <source>Search for a text in open files and replace it</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4116" /> + <location filename="../ViewManager/ViewManager.py" line="4126" /> <source><b>Replace in Open Files</b><p>Search for some text in the currently opened files and replace it. A window is shown to enter the search text, the replacement text and options for the search and to display the result.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4137" /> + <location filename="../ViewManager/ViewManager.py" line="4147" /> <source>&Search</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2793" /> <location filename="../QScintilla/ShellWindow.py" line="1020" /> - <location filename="../ViewManager/ViewManager.py" line="4208" /> + <location filename="../ViewManager/ViewManager.py" line="4218" /> <source>Zoom in</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2795" /> <location filename="../QScintilla/ShellWindow.py" line="1022" /> - <location filename="../ViewManager/ViewManager.py" line="4210" /> + <location filename="../ViewManager/ViewManager.py" line="4220" /> <source>Zoom &in</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2797" /> <location filename="../QScintilla/ShellWindow.py" line="1024" /> - <location filename="../ViewManager/ViewManager.py" line="4212" /> + <location filename="../ViewManager/ViewManager.py" line="4222" /> <source>Ctrl++</source> <comment>View|Zoom in</comment> <translation type="unfinished" /> @@ -97193,7 +97193,7 @@ <message> <location filename="../QScintilla/MiniEditor.py" line="2800" /> <location filename="../QScintilla/ShellWindow.py" line="1027" /> - <location filename="../ViewManager/ViewManager.py" line="4215" /> + <location filename="../ViewManager/ViewManager.py" line="4225" /> <source>Zoom In</source> <comment>View|Zoom in</comment> <translation type="unfinished" /> @@ -97201,35 +97201,35 @@ <message> <location filename="../QScintilla/MiniEditor.py" line="2806" /> <location filename="../QScintilla/ShellWindow.py" line="1033" /> - <location filename="../ViewManager/ViewManager.py" line="4221" /> + <location filename="../ViewManager/ViewManager.py" line="4231" /> <source>Zoom in on the text</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2809" /> <location filename="../QScintilla/ShellWindow.py" line="1036" /> - <location filename="../ViewManager/ViewManager.py" line="4224" /> + <location filename="../ViewManager/ViewManager.py" line="4234" /> <source><b>Zoom in</b><p>Zoom in on the text. This makes the text bigger.</p></source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2819" /> <location filename="../QScintilla/ShellWindow.py" line="1046" /> - <location filename="../ViewManager/ViewManager.py" line="4234" /> + <location filename="../ViewManager/ViewManager.py" line="4244" /> <source>Zoom out</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2821" /> <location filename="../QScintilla/ShellWindow.py" line="1048" /> - <location filename="../ViewManager/ViewManager.py" line="4236" /> + <location filename="../ViewManager/ViewManager.py" line="4246" /> <source>Zoom &out</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2823" /> <location filename="../QScintilla/ShellWindow.py" line="1050" /> - <location filename="../ViewManager/ViewManager.py" line="4238" /> + <location filename="../ViewManager/ViewManager.py" line="4248" /> <source>Ctrl+-</source> <comment>View|Zoom out</comment> <translation type="unfinished" /> @@ -97237,7 +97237,7 @@ <message> <location filename="../QScintilla/MiniEditor.py" line="2826" /> <location filename="../QScintilla/ShellWindow.py" line="1053" /> - <location filename="../ViewManager/ViewManager.py" line="4241" /> + <location filename="../ViewManager/ViewManager.py" line="4251" /> <source>Zoom Out</source> <comment>View|Zoom out</comment> <translation type="unfinished" /> @@ -97245,35 +97245,35 @@ <message> <location filename="../QScintilla/MiniEditor.py" line="2832" /> <location filename="../QScintilla/ShellWindow.py" line="1059" /> - <location filename="../ViewManager/ViewManager.py" line="4247" /> + <location filename="../ViewManager/ViewManager.py" line="4257" /> <source>Zoom out on the text</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2835" /> <location filename="../QScintilla/ShellWindow.py" line="1062" /> - <location filename="../ViewManager/ViewManager.py" line="4250" /> + <location filename="../ViewManager/ViewManager.py" line="4260" /> <source><b>Zoom out</b><p>Zoom out on the text. This makes the text smaller.</p></source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2845" /> <location filename="../QScintilla/ShellWindow.py" line="1072" /> - <location filename="../ViewManager/ViewManager.py" line="4260" /> + <location filename="../ViewManager/ViewManager.py" line="4270" /> <source>Zoom reset</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2847" /> <location filename="../QScintilla/ShellWindow.py" line="1074" /> - <location filename="../ViewManager/ViewManager.py" line="4262" /> + <location filename="../ViewManager/ViewManager.py" line="4272" /> <source>Zoom &reset</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2849" /> <location filename="../QScintilla/ShellWindow.py" line="1076" /> - <location filename="../ViewManager/ViewManager.py" line="4264" /> + <location filename="../ViewManager/ViewManager.py" line="4274" /> <source>Ctrl+0</source> <comment>View|Zoom reset</comment> <translation type="unfinished" /> @@ -97281,894 +97281,894 @@ <message> <location filename="../QScintilla/MiniEditor.py" line="2856" /> <location filename="../QScintilla/ShellWindow.py" line="1083" /> - <location filename="../ViewManager/ViewManager.py" line="4271" /> + <location filename="../ViewManager/ViewManager.py" line="4281" /> <source>Reset the zoom of the text</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2859" /> <location filename="../QScintilla/ShellWindow.py" line="1086" /> - <location filename="../ViewManager/ViewManager.py" line="4274" /> + <location filename="../ViewManager/ViewManager.py" line="4284" /> <source><b>Zoom reset</b><p>Reset the zoom of the text. This sets the zoom factor to 100%.</p></source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2870" /> <location filename="../QScintilla/ShellWindow.py" line="1097" /> - <location filename="../ViewManager/ViewManager.py" line="4285" /> + <location filename="../ViewManager/ViewManager.py" line="4295" /> <source>Zoom</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2872" /> <location filename="../QScintilla/ShellWindow.py" line="1099" /> - <location filename="../ViewManager/ViewManager.py" line="4287" /> + <location filename="../ViewManager/ViewManager.py" line="4297" /> <source>&Zoom</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2879" /> <location filename="../QScintilla/ShellWindow.py" line="1106" /> - <location filename="../ViewManager/ViewManager.py" line="4294" /> + <location filename="../ViewManager/ViewManager.py" line="4304" /> <source>Zoom the text</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2882" /> <location filename="../QScintilla/ShellWindow.py" line="1109" /> - <location filename="../ViewManager/ViewManager.py" line="4297" /> + <location filename="../ViewManager/ViewManager.py" line="4307" /> <source><b>Zoom</b><p>Zoom the text. This opens a dialog where the desired size can be entered.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4316" /> - <location filename="../ViewManager/ViewManager.py" line="4308" /> + <location filename="../ViewManager/ViewManager.py" line="4326" /> + <location filename="../ViewManager/ViewManager.py" line="4318" /> <source>Toggle all folds</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4309" /> - <source>&Toggle all folds</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="4319" /> - <source><b>Toggle all folds</b><p>Toggle all folds of the current editor.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="4341" /> + <source>&Toggle all folds</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../ViewManager/ViewManager.py" line="4329" /> + <source><b>Toggle all folds</b><p>Toggle all folds of the current editor.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4351" /> + <location filename="../ViewManager/ViewManager.py" line="4339" /> <source>Toggle all folds (including children)</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4332" /> + <location filename="../ViewManager/ViewManager.py" line="4342" /> <source>Toggle all &folds (including children)</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4346" /> + <location filename="../ViewManager/ViewManager.py" line="4356" /> <source><b>Toggle all folds (including children)</b><p>Toggle all folds of the current editor including all children.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4365" /> - <location filename="../ViewManager/ViewManager.py" line="4357" /> + <location filename="../ViewManager/ViewManager.py" line="4375" /> + <location filename="../ViewManager/ViewManager.py" line="4367" /> <source>Toggle current fold</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4358" /> - <source>Toggle &current fold</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="4368" /> + <source>Toggle &current fold</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4378" /> <source><b>Toggle current fold</b><p>Toggle the folds of the current line of the current editor.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4387" /> - <location filename="../ViewManager/ViewManager.py" line="4379" /> + <location filename="../ViewManager/ViewManager.py" line="4397" /> + <location filename="../ViewManager/ViewManager.py" line="4389" /> <source>Clear all folds</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4380" /> - <source>Clear &all folds</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="4390" /> + <source>Clear &all folds</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4400" /> <source><b>Clear all folds</b><p>Clear all folds of the current editor, i.e. ensure that all lines are displayed unfolded.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4410" /> - <location filename="../ViewManager/ViewManager.py" line="4403" /> - <location filename="../ViewManager/ViewManager.py" line="4401" /> + <location filename="../ViewManager/ViewManager.py" line="4420" /> + <location filename="../ViewManager/ViewManager.py" line="4413" /> + <location filename="../ViewManager/ViewManager.py" line="4411" /> <source>Remove all highlights</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4413" /> - <source><b>Remove all highlights</b><p>Remove the highlights of all editors.</p></source> - <translation type="unfinished" /> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="4423" /> + <source><b>Remove all highlights</b><p>Remove the highlights of all editors.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4433" /> <source>New Document View</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4425" /> + <location filename="../ViewManager/ViewManager.py" line="4435" /> <source>New &Document View</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4432" /> + <location filename="../ViewManager/ViewManager.py" line="4442" /> <source>Open a new view of the current document</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4437" /> + <location filename="../ViewManager/ViewManager.py" line="4447" /> <source><b>New Document View</b><p>Opens a new view of the current document. Both views show the same document. However, the cursors may be positioned independently.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4453" /> - <location filename="../ViewManager/ViewManager.py" line="4449" /> + <location filename="../ViewManager/ViewManager.py" line="4463" /> + <location filename="../ViewManager/ViewManager.py" line="4459" /> <source>New Document View (with new split)</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4462" /> + <location filename="../ViewManager/ViewManager.py" line="4472" /> <source>Open a new view of the current document in a new split</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4467" /> + <location filename="../ViewManager/ViewManager.py" line="4477" /> <source><b>New Document View</b><p>Opens a new view of the current document in a new split. Both views show the same document. However, the cursors may be positioned independently.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4479" /> + <location filename="../ViewManager/ViewManager.py" line="4489" /> <source>Split view</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4481" /> - <source>&Split view</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="4488" /> - <source>Add a split to the view</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="4491" /> - <source><b>Split view</b><p>Add a split to the view.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="4500" /> - <source>Arrange horizontally</source> + <source>&Split view</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4498" /> + <source>Add a split to the view</source> <translation type="unfinished" /> </message> <message> <location filename="../ViewManager/ViewManager.py" line="4501" /> + <source><b>Split view</b><p>Add a split to the view.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4510" /> + <source>Arrange horizontally</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4511" /> <source>Arrange &horizontally</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4509" /> + <location filename="../ViewManager/ViewManager.py" line="4519" /> <source>Arrange the splitted views horizontally</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4514" /> + <location filename="../ViewManager/ViewManager.py" line="4524" /> <source><b>Arrange horizontally</b><p>Arrange the splitted views horizontally.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4525" /> + <location filename="../ViewManager/ViewManager.py" line="4535" /> <source>Remove split</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4527" /> - <source>&Remove split</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="4534" /> - <source>Remove the current split</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="4537" /> - <source><b>Remove split</b><p>Remove the current split.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="4546" /> - <source>Next split</source> + <source>&Remove split</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4544" /> + <source>Remove the current split</source> <translation type="unfinished" /> </message> <message> <location filename="../ViewManager/ViewManager.py" line="4547" /> + <source><b>Remove split</b><p>Remove the current split.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4556" /> + <source>Next split</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4557" /> <source>&Next split</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4549" /> + <location filename="../ViewManager/ViewManager.py" line="4559" /> <source>Ctrl+Alt+N</source> <comment>View|Next split</comment> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4558" /> + <location filename="../ViewManager/ViewManager.py" line="4568" /> <source>Move to the next split</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4561" /> - <source><b>Next split</b><p>Move to the next split.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="4570" /> - <source>Previous split</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="4571" /> + <source><b>Next split</b><p>Move to the next split.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4580" /> + <source>Previous split</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4581" /> <source>&Previous split</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4573" /> + <location filename="../ViewManager/ViewManager.py" line="4583" /> <source>Ctrl+Alt+P</source> <comment>View|Previous split</comment> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4582" /> + <location filename="../ViewManager/ViewManager.py" line="4592" /> <source>Move to the previous split</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4585" /> + <location filename="../ViewManager/ViewManager.py" line="4595" /> <source><b>Previous split</b><p>Move to the previous split.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4596" /> - <location filename="../ViewManager/ViewManager.py" line="4594" /> + <location filename="../ViewManager/ViewManager.py" line="4606" /> + <location filename="../ViewManager/ViewManager.py" line="4604" /> <source>Preview</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4604" /> + <location filename="../ViewManager/ViewManager.py" line="4614" /> <source>Preview the current file in the web browser</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4609" /> + <location filename="../ViewManager/ViewManager.py" line="4619" /> <source><b>Preview</b><p>This opens the web browser with a preview of the current file.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4623" /> - <location filename="../ViewManager/ViewManager.py" line="4621" /> + <location filename="../ViewManager/ViewManager.py" line="4633" /> + <location filename="../ViewManager/ViewManager.py" line="4631" /> <source>Python AST Viewer</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4631" /> + <location filename="../ViewManager/ViewManager.py" line="4641" /> <source>Show the AST for the current Python file</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4636" /> + <location filename="../ViewManager/ViewManager.py" line="4646" /> <source><b>Python AST Viewer</b><p>This opens the a tree view of the AST of the current Python source file.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4650" /> - <location filename="../ViewManager/ViewManager.py" line="4648" /> + <location filename="../ViewManager/ViewManager.py" line="4660" /> + <location filename="../ViewManager/ViewManager.py" line="4658" /> <source>Python Disassembly Viewer</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4658" /> + <location filename="../ViewManager/ViewManager.py" line="4668" /> <source>Show the Disassembly for the current Python file</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4663" /> + <location filename="../ViewManager/ViewManager.py" line="4673" /> <source><b>Python Disassembly Viewer</b><p>This opens the a tree view of the Disassembly of the current Python source file.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4699" /> + <location filename="../ViewManager/ViewManager.py" line="4709" /> <source>&View</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4734" /> - <location filename="../ViewManager/ViewManager.py" line="4732" /> + <location filename="../ViewManager/ViewManager.py" line="4744" /> + <location filename="../ViewManager/ViewManager.py" line="4742" /> <source>View</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4773" /> - <location filename="../ViewManager/ViewManager.py" line="4765" /> + <location filename="../ViewManager/ViewManager.py" line="4783" /> + <location filename="../ViewManager/ViewManager.py" line="4775" /> <source>Start Macro Recording</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4766" /> - <source>S&tart Macro Recording</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="4776" /> - <source><b>Start Macro Recording</b><p>Start recording editor commands into a new macro.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="4794" /> + <source>S&tart Macro Recording</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../ViewManager/ViewManager.py" line="4786" /> + <source><b>Start Macro Recording</b><p>Start recording editor commands into a new macro.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4804" /> + <location filename="../ViewManager/ViewManager.py" line="4796" /> <source>Stop Macro Recording</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4787" /> - <source>Sto&p Macro Recording</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="4797" /> - <source><b>Stop Macro Recording</b><p>Stop recording editor commands into a new macro.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="4815" /> + <source>Sto&p Macro Recording</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../ViewManager/ViewManager.py" line="4807" /> + <source><b>Stop Macro Recording</b><p>Stop recording editor commands into a new macro.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4825" /> + <location filename="../ViewManager/ViewManager.py" line="4817" /> <source>Run Macro</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4808" /> - <source>&Run Macro</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="4818" /> - <source><b>Run Macro</b><p>Run a previously recorded editor macro.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="4836" /> + <source>&Run Macro</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../ViewManager/ViewManager.py" line="4828" /> + <source><b>Run Macro</b><p>Run a previously recorded editor macro.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4846" /> + <location filename="../ViewManager/ViewManager.py" line="4838" /> <source>Delete Macro</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4829" /> - <source>&Delete Macro</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="4839" /> - <source><b>Delete Macro</b><p>Delete a previously recorded editor macro.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="4857" /> + <source>&Delete Macro</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../ViewManager/ViewManager.py" line="4849" /> + <source><b>Delete Macro</b><p>Delete a previously recorded editor macro.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4867" /> + <location filename="../ViewManager/ViewManager.py" line="4859" /> <source>Load Macro</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4850" /> - <source>&Load Macro</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="4860" /> - <source><b>Load Macro</b><p>Load an editor macro from a file.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="4877" /> - <location filename="../ViewManager/ViewManager.py" line="4869" /> - <source>Save Macro</source> + <source>&Load Macro</source> <translation type="unfinished" /> </message> <message> <location filename="../ViewManager/ViewManager.py" line="4870" /> - <source>&Save Macro</source> + <source><b>Load Macro</b><p>Load an editor macro from a file.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4887" /> + <location filename="../ViewManager/ViewManager.py" line="4879" /> + <source>Save Macro</source> <translation type="unfinished" /> </message> <message> <location filename="../ViewManager/ViewManager.py" line="4880" /> + <source>&Save Macro</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4890" /> <source><b>Save Macro</b><p>Save a previously recorded editor macro to a file.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4898" /> + <location filename="../ViewManager/ViewManager.py" line="4908" /> <source>&Macros</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4929" /> - <location filename="../ViewManager/ViewManager.py" line="4916" /> + <location filename="../ViewManager/ViewManager.py" line="4939" /> + <location filename="../ViewManager/ViewManager.py" line="4926" /> <source>Toggle Bookmark</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4918" /> + <location filename="../ViewManager/ViewManager.py" line="4928" /> <source>&Toggle Bookmark</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4920" /> + <location filename="../ViewManager/ViewManager.py" line="4930" /> <source>Alt+Ctrl+T</source> <comment>Bookmark|Toggle</comment> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4932" /> + <location filename="../ViewManager/ViewManager.py" line="4942" /> <source><b>Toggle Bookmark</b><p>Toggle a bookmark at the current line of the current editor.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4956" /> - <location filename="../ViewManager/ViewManager.py" line="4943" /> + <location filename="../ViewManager/ViewManager.py" line="4966" /> + <location filename="../ViewManager/ViewManager.py" line="4953" /> <source>Next Bookmark</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4945" /> + <location filename="../ViewManager/ViewManager.py" line="4955" /> <source>&Next Bookmark</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4947" /> + <location filename="../ViewManager/ViewManager.py" line="4957" /> <source>Ctrl+PgDown</source> <comment>Bookmark|Next</comment> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4959" /> + <location filename="../ViewManager/ViewManager.py" line="4969" /> <source><b>Next Bookmark</b><p>Go to next bookmark of the current editor.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4982" /> - <location filename="../ViewManager/ViewManager.py" line="4969" /> + <location filename="../ViewManager/ViewManager.py" line="4992" /> + <location filename="../ViewManager/ViewManager.py" line="4979" /> <source>Previous Bookmark</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4971" /> + <location filename="../ViewManager/ViewManager.py" line="4981" /> <source>&Previous Bookmark</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4973" /> + <location filename="../ViewManager/ViewManager.py" line="4983" /> <source>Ctrl+PgUp</source> <comment>Bookmark|Previous</comment> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4985" /> + <location filename="../ViewManager/ViewManager.py" line="4995" /> <source><b>Previous Bookmark</b><p>Go to previous bookmark of the current editor.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5007" /> - <location filename="../ViewManager/ViewManager.py" line="4995" /> + <location filename="../ViewManager/ViewManager.py" line="5017" /> + <location filename="../ViewManager/ViewManager.py" line="5005" /> <source>Clear Bookmarks</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4996" /> + <location filename="../ViewManager/ViewManager.py" line="5006" /> <source>&Clear Bookmarks</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4998" /> + <location filename="../ViewManager/ViewManager.py" line="5008" /> <source>Alt+Ctrl+C</source> <comment>Bookmark|Clear</comment> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5010" /> + <location filename="../ViewManager/ViewManager.py" line="5020" /> <source><b>Clear Bookmarks</b><p>Clear bookmarks of all editors.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5029" /> - <location filename="../ViewManager/ViewManager.py" line="5020" /> + <location filename="../ViewManager/ViewManager.py" line="5039" /> + <location filename="../ViewManager/ViewManager.py" line="5030" /> <source>Goto Syntax Error</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5022" /> - <source>&Goto Syntax Error</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="5032" /> - <source><b>Goto Syntax Error</b><p>Go to next syntax error of the current editor.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="5050" /> + <source>&Goto Syntax Error</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../ViewManager/ViewManager.py" line="5042" /> + <source><b>Goto Syntax Error</b><p>Go to next syntax error of the current editor.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="5060" /> + <location filename="../ViewManager/ViewManager.py" line="5052" /> <source>Clear Syntax Errors</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5043" /> - <source>Clear &Syntax Errors</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="5053" /> - <source><b>Clear Syntax Errors</b><p>Clear syntax errors of all editors.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="5072" /> + <source>Clear &Syntax Errors</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../ViewManager/ViewManager.py" line="5063" /> + <source><b>Clear Syntax Errors</b><p>Clear syntax errors of all editors.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="5082" /> + <location filename="../ViewManager/ViewManager.py" line="5073" /> <source>Next warning message</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5065" /> - <source>&Next warning message</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="5075" /> + <source>&Next warning message</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="5085" /> <source><b>Next warning message</b><p>Go to next line of the current editor having a pyflakes warning.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5095" /> - <location filename="../ViewManager/ViewManager.py" line="5086" /> + <location filename="../ViewManager/ViewManager.py" line="5105" /> + <location filename="../ViewManager/ViewManager.py" line="5096" /> <source>Previous warning message</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5088" /> - <source>&Previous warning message</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="5098" /> + <source>&Previous warning message</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="5108" /> <source><b>Previous warning message</b><p>Go to previous line of the current editor having a pyflakes warning.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5117" /> - <location filename="../ViewManager/ViewManager.py" line="5109" /> + <location filename="../ViewManager/ViewManager.py" line="5127" /> + <location filename="../ViewManager/ViewManager.py" line="5119" /> <source>Clear Warning Messages</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5110" /> - <source>Clear &Warning Messages</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="5120" /> - <source><b>Clear Warning Messages</b><p>Clear pyflakes warning messages of all editors.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="5139" /> + <source>Clear &Warning Messages</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../ViewManager/ViewManager.py" line="5130" /> + <source><b>Clear Warning Messages</b><p>Clear pyflakes warning messages of all editors.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="5149" /> + <location filename="../ViewManager/ViewManager.py" line="5140" /> <source>Next uncovered line</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5132" /> - <source>&Next uncovered line</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="5142" /> + <source>&Next uncovered line</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="5152" /> <source><b>Next uncovered line</b><p>Go to next line of the current editor marked as not covered.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5162" /> - <location filename="../ViewManager/ViewManager.py" line="5153" /> + <location filename="../ViewManager/ViewManager.py" line="5172" /> + <location filename="../ViewManager/ViewManager.py" line="5163" /> <source>Previous uncovered line</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5155" /> - <source>&Previous uncovered line</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="5165" /> + <source>&Previous uncovered line</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="5175" /> <source><b>Previous uncovered line</b><p>Go to previous line of the current editor marked as not covered.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5185" /> - <location filename="../ViewManager/ViewManager.py" line="5176" /> + <location filename="../ViewManager/ViewManager.py" line="5195" /> + <location filename="../ViewManager/ViewManager.py" line="5186" /> <source>Next Task</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5178" /> - <source>&Next Task</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="5188" /> - <source><b>Next Task</b><p>Go to next line of the current editor having a task.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="5207" /> + <source>&Next Task</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../ViewManager/ViewManager.py" line="5198" /> + <source><b>Next Task</b><p>Go to next line of the current editor having a task.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="5217" /> + <location filename="../ViewManager/ViewManager.py" line="5208" /> <source>Previous Task</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5200" /> - <source>&Previous Task</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="5210" /> + <source>&Previous Task</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="5220" /> <source><b>Previous Task</b><p>Go to previous line of the current editor having a task.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5230" /> - <location filename="../ViewManager/ViewManager.py" line="5221" /> + <location filename="../ViewManager/ViewManager.py" line="5240" /> + <location filename="../ViewManager/ViewManager.py" line="5231" /> <source>Next Change</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5223" /> - <source>&Next Change</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="5233" /> + <source>&Next Change</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="5243" /> <source><b>Next Change</b><p>Go to next line of the current editor having a change marker.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5253" /> - <location filename="../ViewManager/ViewManager.py" line="5244" /> + <location filename="../ViewManager/ViewManager.py" line="5263" /> + <location filename="../ViewManager/ViewManager.py" line="5254" /> <source>Previous Change</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5246" /> - <source>&Previous Change</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="5256" /> + <source>&Previous Change</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="5266" /> <source><b>Previous Change</b><p>Go to previous line of the current editor having a change marker.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5277" /> - <location filename="../ViewManager/ViewManager.py" line="5275" /> + <location filename="../ViewManager/ViewManager.py" line="5287" /> + <location filename="../ViewManager/ViewManager.py" line="5285" /> <source>&Bookmarks</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5321" /> - <location filename="../ViewManager/ViewManager.py" line="5319" /> + <location filename="../ViewManager/ViewManager.py" line="5331" /> + <location filename="../ViewManager/ViewManager.py" line="5329" /> <source>Bookmarks</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5355" /> + <location filename="../ViewManager/ViewManager.py" line="5365" /> <source>Check spelling</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5357" /> + <location filename="../ViewManager/ViewManager.py" line="5367" /> <source>Check &spelling...</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5359" /> + <location filename="../ViewManager/ViewManager.py" line="5369" /> <source>Shift+F7</source> <comment>Spelling|Spell Check</comment> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5368" /> + <location filename="../ViewManager/ViewManager.py" line="5378" /> <source>Perform spell check of current editor</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5373" /> - <source><b>Check spelling</b><p>Perform a spell check of the current editor.</p></source> - <translation type="unfinished" /> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="5383" /> - <source>Automatic spell checking</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="5385" /> - <source>&Automatic spell checking</source> + <source><b>Check spelling</b><p>Perform a spell check of the current editor.</p></source> <translation type="unfinished" /> </message> <message> <location filename="../ViewManager/ViewManager.py" line="5393" /> + <source>Automatic spell checking</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="5395" /> + <source>&Automatic spell checking</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="5403" /> <source>(De-)Activate automatic spell checking</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5398" /> + <location filename="../ViewManager/ViewManager.py" line="5408" /> <source><b>Automatic spell checking</b><p>Activate or deactivate the automatic spell checking function of all editors.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5432" /> + <location filename="../ViewManager/ViewManager.py" line="5442" /> <source>Edit Dictionary</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5435" /> + <location filename="../ViewManager/ViewManager.py" line="5445" /> <source>Project Word List</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5439" /> + <location filename="../ViewManager/ViewManager.py" line="5449" /> <source>Project Exception List</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5444" /> + <location filename="../ViewManager/ViewManager.py" line="5454" /> <source>User Word List</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5448" /> + <location filename="../ViewManager/ViewManager.py" line="5458" /> <source>User Exception List</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5469" /> - <location filename="../ViewManager/ViewManager.py" line="5467" /> + <location filename="../ViewManager/ViewManager.py" line="5479" /> + <location filename="../ViewManager/ViewManager.py" line="5477" /> <source>Spelling</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5492" /> + <location filename="../ViewManager/ViewManager.py" line="5502" /> <source>Open Files</source> <translation type="unfinished" /> </message> <message> + <location filename="../ViewManager/ViewManager.py" line="5531" /> <location filename="../ViewManager/ViewManager.py" line="5521" /> - <location filename="../ViewManager/ViewManager.py" line="5511" /> <source>Open Remote Files</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5578" /> + <location filename="../ViewManager/ViewManager.py" line="5588" /> <source>File Modified</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5579" /> + <location filename="../ViewManager/ViewManager.py" line="5589" /> <source><p>The file <b>{0}</b> has unsaved changes.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6078" /> + <location filename="../ViewManager/ViewManager.py" line="6090" /> <source>Line: {0:5}</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6084" /> + <location filename="../ViewManager/ViewManager.py" line="6096" /> <source>Pos: {0:5}</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6104" /> + <location filename="../ViewManager/ViewManager.py" line="6116" /> <source>Language: {0}</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6113" /> + <location filename="../ViewManager/ViewManager.py" line="6125" /> <source>EOL Mode: {0}</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6641" /> - <location filename="../ViewManager/ViewManager.py" line="6598" /> + <location filename="../ViewManager/ViewManager.py" line="6668" /> + <location filename="../ViewManager/ViewManager.py" line="6625" /> <source>&Clear</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6635" /> + <location filename="../ViewManager/ViewManager.py" line="6662" /> <source>&Add</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6638" /> + <location filename="../ViewManager/ViewManager.py" line="6665" /> <source>&Edit...</source> <translation type="unfinished" /> </message> <message> + <location filename="../ViewManager/ViewManager.py" line="7735" /> + <location filename="../ViewManager/ViewManager.py" line="7721" /> + <location filename="../ViewManager/ViewManager.py" line="7689" /> + <source>Edit Spelling Dictionary</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="7692" /> + <source><p>The spelling dictionary file <b>{0}</b> could not be read.</p><p>Reason: {1}</p></source> + <translation type="unfinished" /> + </message> + <message> <location filename="../ViewManager/ViewManager.py" line="7708" /> - <location filename="../ViewManager/ViewManager.py" line="7694" /> - <location filename="../ViewManager/ViewManager.py" line="7662" /> - <source>Edit Spelling Dictionary</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="7665" /> - <source><p>The spelling dictionary file <b>{0}</b> could not be read.</p><p>Reason: {1}</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="7681" /> <source>Editing {0}</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="7697" /> + <location filename="../ViewManager/ViewManager.py" line="7724" /> <source><p>The spelling dictionary file <b>{0}</b> could not be written.</p><p>Reason: {1}</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="7711" /> + <location filename="../ViewManager/ViewManager.py" line="7738" /> <source>The spelling dictionary was saved successfully.</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5522" /> + <location filename="../ViewManager/ViewManager.py" line="5532" /> <source>You must be connected to a remote eric-ide server. Aborting...</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6820" /> + <location filename="../ViewManager/ViewManager.py" line="6847" /> <source>Clear Editor</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6821" /> + <location filename="../ViewManager/ViewManager.py" line="6848" /> <source>Do you really want to delete all text of the current editor?</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="8241" /> - <location filename="../ViewManager/ViewManager.py" line="8224" /> + <location filename="../ViewManager/ViewManager.py" line="8268" /> + <location filename="../ViewManager/ViewManager.py" line="8251" /> <source>File System Watcher Error</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="8225" /> + <location filename="../ViewManager/ViewManager.py" line="8252" /> <source><p>The operating system resources for file system watches are exhausted. This limit should be increased. On a Linux system you should <ul><li>sudo nano /etc/sysctl.conf</li><li>add to the bottom "fs.inotify.max_user_instances = 1024"</li><li>save and close the editor</li><li>sudo sysctl -p</li></ul></p><p>Error Message: {0}</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="8242" /> + <location filename="../ViewManager/ViewManager.py" line="8269" /> <source>The file system watcher reported an error with code <b>{0}</b>.</p><p>Error Message: {1}</p></source> <translation type="unfinished" /> </message> @@ -99019,54 +99019,54 @@ <context> <name>VirtualenvManager</name> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="317" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="319" /> <source>Add Virtual Environment</source> <translation type="unfinished" /> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="318" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="320" /> <source>A virtual environment named <b>{0}</b> exists already. Shall it be replaced?</source> <translation type="unfinished" /> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="355" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="357" /> <source>Change Virtual Environment</source> <translation type="unfinished" /> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="388" /> - <location filename="../VirtualEnv/VirtualenvManager.py" line="356" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="390" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="358" /> <source>A virtual environment named <b>{0}</b> does not exist. Aborting!</source> <translation type="unfinished" /> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="387" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="389" /> <source>Rename Virtual Environment</source> <translation type="unfinished" /> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="479" /> - <location filename="../VirtualEnv/VirtualenvManager.py" line="412" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="481" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="414" /> <source>{0} - {1}</source> <translation type="unfinished" /> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="419" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="421" /> <source>Delete Virtual Environments</source> <translation type="unfinished" /> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="420" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="422" /> <source>Do you really want to delete these virtual environments?</source> <translation type="unfinished" /> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="486" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="488" /> <source>Remove Virtual Environments</source> <translation type="unfinished" /> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="487" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="489" /> <source>Do you really want to remove these virtual environments?</source> <translation type="unfinished" /> </message> @@ -99074,7 +99074,7 @@ <context> <name>VirtualenvManagerDialog</name> <message> - <location filename="../VirtualEnv/VirtualenvManagerWidgets.py" line="442" /> + <location filename="../VirtualEnv/VirtualenvManagerWidgets.py" line="448" /> <source>Manage Virtual Environments</source> <translation type="unfinished" /> </message> @@ -99197,7 +99197,7 @@ <context> <name>VirtualenvManagerWindow</name> <message> - <location filename="../VirtualEnv/VirtualenvManagerWidgets.py" line="482" /> + <location filename="../VirtualEnv/VirtualenvManagerWidgets.py" line="488" /> <source>Manage Virtual Environments</source> <translation type="unfinished" /> </message>
--- a/src/eric7/i18n/eric7_es.ts Wed Oct 16 17:38:35 2024 +0200 +++ b/src/eric7/i18n/eric7_es.ts Wed Oct 16 17:39:40 2024 +0200 @@ -1642,27 +1642,27 @@ <context> <name>AssistantJedi</name> <message> - <location filename="../JediInterface/AssistantJedi.py" line="230" /> + <location filename="../JediInterface/AssistantJedi.py" line="236" /> <source>Refactoring</source> <translation>Refactoring</translation> </message> <message> - <location filename="../JediInterface/AssistantJedi.py" line="232" /> - <source>Rename Variable</source> - <translation>Renombrar Variable</translation> - </message> - <message> - <location filename="../JediInterface/AssistantJedi.py" line="235" /> - <source>Extract Variable</source> - <translation>Extraer Variable</translation> - </message> - <message> <location filename="../JediInterface/AssistantJedi.py" line="238" /> + <source>Rename Variable</source> + <translation>Renombrar Variable</translation> + </message> + <message> + <location filename="../JediInterface/AssistantJedi.py" line="241" /> + <source>Extract Variable</source> + <translation>Extraer Variable</translation> + </message> + <message> + <location filename="../JediInterface/AssistantJedi.py" line="244" /> <source>Inline Variable</source> <translation>Variable Inline</translation> </message> <message> - <location filename="../JediInterface/AssistantJedi.py" line="242" /> + <location filename="../JediInterface/AssistantJedi.py" line="248" /> <source>Extract Function</source> <translation>Extraer Función</translation> </message> @@ -9229,21 +9229,37 @@ </translation> </message> <message> - <location filename="../Debugger/DebugServer.py" line="2109" /> + <location filename="../Debugger/DebugServer.py" line="2110" /> <source>Passive debug connection received </source> <translation>Recibida conexión pasiva de depuración </translation> </message> <message> - <location filename="../Debugger/DebugServer.py" line="2123" /> + <location filename="../Debugger/DebugServer.py" line="2119" /> + <source>Passive debug connection received while not in passive mode. +</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Debugger/DebugServer.py" line="2125" /> + <source>Debug Client Connection</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Debugger/DebugServer.py" line="2126" /> + <source>Passive debug client connection received while not in passive mode. Enable this mode on the 'Debugger General' configuration page. The connection will be rejected.</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Debugger/DebugServer.py" line="2141" /> <source>Passive debug connection closed </source> <translation>Cerrada conexión pasiva de depuración </translation> </message> <message> - <location filename="../Debugger/DebugServer.py" line="2254" /> + <location filename="../Debugger/DebugServer.py" line="2272" /> <source><project></source> <translation><project></translation> </message> @@ -10194,25 +10210,13 @@ </message> <message> <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" /> - <source>Enables the passive debug mode</source> - <translation>Habilita el modo pasivo de depuración</translation> + <source>Debugger Type:</source> + <translation>Tipo de depurador:</translation> </message> <message> <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" /> - <source><b>Passive Debugger Enabled</b> -<p>This enables the passive debugging mode. In this mode the debug client (the script) connects to the debug server (the IDE). The script is started outside the IDE. This way mod_python or Zope scripts can be debugged.</p></source> - <translation><b>Depuración Pasiva Habilitada</b> -<p>Habilita el modo pasivo de depuración. En este modo, el cliente de depuración (el script) se conecta al servidor de depuración (la IDE). El script es ejecutado fuera de la IDE. De este modo se pueden depurar scripts mod_python o Zope.</p></translation> - </message> - <message> - <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" /> - <source>Passive Debugger Enabled</source> - <translation>Depuración Pasiva Habilitada</translation> - </message> - <message> - <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" /> - <source>Debug Server Port:</source> - <translation>Puerto del Servidor de Depuración:</translation> + <source>Select the debugger type of the backend</source> + <translation>Seleccione el tipo de depurador en el extremo</translation> </message> <message> <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" /> @@ -10228,13 +10232,8 @@ </message> <message> <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" /> - <source>Debugger Type:</source> - <translation>Tipo de depurador:</translation> - </message> - <message> - <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" /> - <source>Select the debugger type of the backend</source> - <translation>Seleccione el tipo de depurador en el extremo</translation> + <source>Debug Server Port:</source> + <translation>Puerto del Servidor de Depuración:</translation> </message> <message> <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" /> @@ -10568,50 +10567,64 @@ <source>Automatically view source code</source> <translation>Automaticamente ver código fuente</translation> </message> + <message> + <source>Enables the passive debug mode</source> + <translation type="vanished">Habilita el modo pasivo de depuración</translation> + </message> + <message> + <source><b>Passive Debugger Enabled</b> +<p>This enables the passive debugging mode. In this mode the debug client (the script) connects to the debug server (the IDE). The script is started outside the IDE. This way mod_python or Zope scripts can be debugged.</p></source> + <translation type="vanished"><b>Depuración Pasiva Habilitada</b> +<p>Habilita el modo pasivo de depuración. En este modo, el cliente de depuración (el script) se conecta al servidor de depuración (la IDE). El script es ejecutado fuera de la IDE. De este modo se pueden depurar scripts mod_python o Zope.</p></translation> + </message> + <message> + <source>Passive Debugger Enabled</source> + <translation type="vanished">Depuración Pasiva Habilitada</translation> + </message> </context> <context> <name>DebuggerInterfacePython</name> <message> - <location filename="../Debugger/DebuggerInterfacePython.py" line="727" /> - <location filename="../Debugger/DebuggerInterfacePython.py" line="704" /> - <location filename="../Debugger/DebuggerInterfacePython.py" line="611" /> - <location filename="../Debugger/DebuggerInterfacePython.py" line="565" /> - <location filename="../Debugger/DebuggerInterfacePython.py" line="446" /> - <location filename="../Debugger/DebuggerInterfacePython.py" line="423" /> - <location filename="../Debugger/DebuggerInterfacePython.py" line="346" /> - <location filename="../Debugger/DebuggerInterfacePython.py" line="322" /> - <location filename="../Debugger/DebuggerInterfacePython.py" line="259" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="728" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="705" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="609" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="563" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="445" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="422" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="345" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="321" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="258" /> <source>Start Debugger</source> <translation>Iniciar Depurador</translation> </message> <message> - <location filename="../Debugger/DebuggerInterfacePython.py" line="566" /> - <location filename="../Debugger/DebuggerInterfacePython.py" line="260" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="564" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="259" /> <source><p>No suitable Python3 environment configured.</p></source> <translation><p>No hay configurado un entorno de Python3 adecuado.</p></translation> </message> <message> - <location filename="../Debugger/DebuggerInterfacePython.py" line="728" /> - <location filename="../Debugger/DebuggerInterfacePython.py" line="705" /> - <location filename="../Debugger/DebuggerInterfacePython.py" line="612" /> - <location filename="../Debugger/DebuggerInterfacePython.py" line="447" /> - <location filename="../Debugger/DebuggerInterfacePython.py" line="424" /> - <location filename="../Debugger/DebuggerInterfacePython.py" line="323" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="729" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="706" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="610" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="446" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="423" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="322" /> <source><p>The debugger backend could not be started.</p></source> <translation><p>No ha sido posible lanzar el extremo del depurador.</p></translation> </message> <message> - <location filename="../Debugger/DebuggerInterfacePython.py" line="347" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="346" /> <source><p>Remote debugging is configured but no command for remote login was given.</p></source> <translation><p>La depuración remota está configurada pero no se ha proporcionado comando para login remoto.</p></translation> </message> <message> - <location filename="../Debugger/DebuggerInterfacePython.py" line="1659" /> - <source>Debug Protocol Error</source> - <translation>Error de Protocolo de Depuración</translation> - </message> - <message> <location filename="../Debugger/DebuggerInterfacePython.py" line="1660" /> + <source>Debug Protocol Error</source> + <translation>Error de Protocolo de Depuración</translation> + </message> + <message> + <location filename="../Debugger/DebuggerInterfacePython.py" line="1661" /> <source><p>The response received from the debugger backend 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>La respuesta recibida desde el backend del depurador no se ha podido descodificar. Por favor, informar de este problema junto con los datos recibidos a la dirección de email para bugs de eric.</p><p>Error: {0}</p><p>Datos:<br/>{1}</p></translation> </message> @@ -62140,7 +62153,7 @@ <context> <name>PreviewModel</name> <message> - <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="478" /> + <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="506" /> <source>Variable Name</source> <translation>Nombre de Variable</translation> </message> @@ -63023,8 +63036,8 @@ <translation>Renombrar Archivo</translation> </message> <message> - <location filename="../Project/Project.py" line="8058" /> - <location filename="../Project/Project.py" line="3901" /> + <location filename="../Project/Project.py" line="8055" /> + <location filename="../Project/Project.py" line="3898" /> <location filename="../Project/Project.py" line="2398" /> <source><p>The file <b>{0}</b> already exists. Overwrite it?</p></source> <translation><p>El archivo <b>{0}</b> ya existe.</p><p>¿Desea sobreescribirlo?</p></translation> @@ -63158,40 +63171,40 @@ <translation>Abrir proyecto</translation> </message> <message> - <location filename="../Project/Project.py" line="8044" /> - <location filename="../Project/Project.py" line="8038" /> - <location filename="../Project/Project.py" line="8028" /> - <location filename="../Project/Project.py" line="3886" /> - <location filename="../Project/Project.py" line="3876" /> + <location filename="../Project/Project.py" line="8041" /> + <location filename="../Project/Project.py" line="8035" /> + <location filename="../Project/Project.py" line="8025" /> + <location filename="../Project/Project.py" line="3883" /> + <location filename="../Project/Project.py" line="3873" /> <location filename="../Project/Project.py" line="3652" /> <source>Project Files (*.epj)</source> <translation>Archivos de proyecto (*.epj)</translation> </message> <message> - <location filename="../Project/Project.py" line="3900" /> - <location filename="../Project/Project.py" line="3884" /> + <location filename="../Project/Project.py" line="3897" /> + <location filename="../Project/Project.py" line="3881" /> <source>Save Project</source> <translation>Guardar Proyecto</translation> </message> <message> - <location filename="../Project/Project.py" line="3939" /> + <location filename="../Project/Project.py" line="3936" /> <source>Close Project</source> <translation>Cerrar Proyecto</translation> </message> <message> - <location filename="../Project/Project.py" line="3940" /> + <location filename="../Project/Project.py" line="3937" /> <source>The current project has unsaved changes.</source> <translation>El proyecto actual tiene cambios sin guardar.</translation> </message> <message> - <location filename="../Project/Project.py" line="4140" /> - <location filename="../Project/Project.py" line="4104" /> + <location filename="../Project/Project.py" line="4137" /> + <location filename="../Project/Project.py" line="4101" /> <source>Syntax Errors Detected</source> <translation>Detectados Errores Sintácticos</translation> </message> <message numerus="yes"> - <location filename="../Project/Project.py" line="4141" /> - <location filename="../Project/Project.py" line="4105" /> + <location filename="../Project/Project.py" line="4138" /> + <location filename="../Project/Project.py" line="4102" /> <source>The project contains %n file(s) with syntax errors.</source> <translation> <numerusform>El archivo contiene %n archivo(s) con errores de sintaxis.</numerusform> @@ -63199,1268 +63212,1268 @@ </translation> </message> <message> - <location filename="../Project/Project.py" line="4799" /> + <location filename="../Project/Project.py" line="4796" /> <source>New project</source> <translation>Proyecto nuevo</translation> </message> <message> - <location filename="../Project/Project.py" line="4801" /> + <location filename="../Project/Project.py" line="4798" /> <source>&New...</source> <translation>&Nuevo...</translation> </message> <message> - <location filename="../Project/Project.py" line="4807" /> + <location filename="../Project/Project.py" line="4804" /> <source>Generate a new project</source> <translation>Generar un nuevo proyecto</translation> </message> <message> - <location filename="../Project/Project.py" line="4809" /> + <location filename="../Project/Project.py" line="4806" /> <source><b>New...</b><p>This opens a dialog for entering the info for a new project.</p></source> <translation><b>Nuevo...</b><p>Abre un diálogo para introducir la información para un nuevo proyecto.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4819" /> + <location filename="../Project/Project.py" line="4816" /> <source>Open project</source> <translation>Abrir proyecto</translation> </message> <message> - <location filename="../Project/Project.py" line="4821" /> + <location filename="../Project/Project.py" line="4818" /> <source>&Open...</source> <translation>&Abrir...</translation> </message> <message> - <location filename="../Project/Project.py" line="4827" /> + <location filename="../Project/Project.py" line="4824" /> <source>Open an existing project</source> <translation>Abrir un proyecto existente</translation> </message> <message> - <location filename="../Project/Project.py" line="4829" /> + <location filename="../Project/Project.py" line="4826" /> <source><b>Open...</b><p>This opens an existing project.</p></source> <translation><b>Abrir...</b><p>Abre un proyecto existente..</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4835" /> + <location filename="../Project/Project.py" line="4832" /> <source>Open remote project</source> <translation>Abrir proyecto remoto</translation> </message> <message> - <location filename="../Project/Project.py" line="4837" /> + <location filename="../Project/Project.py" line="4834" /> <source>Open (Remote)...</source> <translation>Abrir (Remoto)...</translation> </message> <message> - <location filename="../Project/Project.py" line="4843" /> + <location filename="../Project/Project.py" line="4840" /> <source>Open an existing remote project</source> <translation>Abrir un proyecto remoto existente</translation> </message> <message> - <location filename="../Project/Project.py" line="4845" /> + <location filename="../Project/Project.py" line="4842" /> <source><b>Open (Remote)...</b><p>This opens an existing remote project.</p></source> <translation><b>Abrir (Remoto)...</b><p>Esto abre un proyecto remoto existente..</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4854" /> + <location filename="../Project/Project.py" line="4851" /> <source>Reload project</source> <translation>Recargar proyecto</translation> </message> <message> - <location filename="../Project/Project.py" line="4856" /> + <location filename="../Project/Project.py" line="4853" /> <source>Re&load</source> <translation>Re&cargar</translation> </message> <message> - <location filename="../Project/Project.py" line="4862" /> + <location filename="../Project/Project.py" line="4859" /> <source>Reload the current project</source> <translation>Regargar el proyecto actual</translation> </message> <message> - <location filename="../Project/Project.py" line="4864" /> + <location filename="../Project/Project.py" line="4861" /> <source><b>Reload</b><p>This reloads the current project.</p></source> <translation><b>Recargar</b><p>Esto recarga el proyecto actual.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4870" /> + <location filename="../Project/Project.py" line="4867" /> <source>Close project</source> <translation>Cerrar proyecto</translation> </message> <message> - <location filename="../Project/Project.py" line="4872" /> + <location filename="../Project/Project.py" line="4869" /> <source>&Close</source> <translation>&Cerrar</translation> </message> <message> - <location filename="../Project/Project.py" line="4878" /> + <location filename="../Project/Project.py" line="4875" /> <source>Close the current project</source> <translation>Cierra el proyecto actual</translation> </message> <message> - <location filename="../Project/Project.py" line="4880" /> + <location filename="../Project/Project.py" line="4877" /> <source><b>Close</b><p>This closes the current project.</p></source> <translation><b>Cerrar</b><p>Cierra el proyecto actualt.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4886" /> + <location filename="../Project/Project.py" line="4883" /> <source>Save project</source> <translation>Guardar proyecto</translation> </message> <message> - <location filename="../Project/Project.py" line="5183" /> - <location filename="../Project/Project.py" line="4888" /> + <location filename="../Project/Project.py" line="5180" /> + <location filename="../Project/Project.py" line="4885" /> <source>&Save</source> <translation>&Guardar</translation> </message> <message> - <location filename="../Project/Project.py" line="4894" /> + <location filename="../Project/Project.py" line="4891" /> <source>Save the current project</source> <translation>Guarda el proyecto actual</translation> </message> <message> - <location filename="../Project/Project.py" line="4896" /> + <location filename="../Project/Project.py" line="4893" /> <source><b>Save</b><p>This saves the current project.</p></source> <translation><b>Guardar</b><p>Guarda el proyecto actual.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4902" /> + <location filename="../Project/Project.py" line="4899" /> <source>Save project as</source> <translation>Guardar proyecto como</translation> </message> <message> - <location filename="../Project/Project.py" line="4904" /> + <location filename="../Project/Project.py" line="4901" /> <source>Save &as...</source> <translation>Guardar co&mo...</translation> </message> <message> - <location filename="../Project/Project.py" line="4910" /> + <location filename="../Project/Project.py" line="4907" /> <source>Save the current project to a new file</source> <translation>Guardar el proyecto actual en un nuevo archivo</translation> </message> <message> - <location filename="../Project/Project.py" line="4912" /> + <location filename="../Project/Project.py" line="4909" /> <source><b>Save as</b><p>This saves the current project to a new file.</p></source> <translation><b>Guardar como</b><p>Guarda el proyecto en otro archivo.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4921" /> + <location filename="../Project/Project.py" line="4918" /> <source>Save project as (Remote)</source> <translation>Guardar proyecto como (Remoto)</translation> </message> <message> - <location filename="../Project/Project.py" line="4923" /> + <location filename="../Project/Project.py" line="4920" /> <source>Save as (Remote)...</source> <translation>Guardar como (Remoto)...</translation> </message> <message> + <location filename="../Project/Project.py" line="4927" /> + <source>Save the current project to a new remote file</source> + <translation>Guardar el proyecto actual a un nuevo archivo remoto</translation> + </message> + <message> <location filename="../Project/Project.py" line="4930" /> - <source>Save the current project to a new remote file</source> - <translation>Guardar el proyecto actual a un nuevo archivo remoto</translation> - </message> - <message> - <location filename="../Project/Project.py" line="4933" /> <source><b>Save as (Remote)</b><p>This saves the current project to a new remote file.</p></source> <translation><b>Guardar como (Remoto)</b><p>Esto guarda el proyecto actual en un nuevo archivo remoto.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4949" /> + <location filename="../Project/Project.py" line="4946" /> <source>Add files to project</source> <translation>Agregar archivos al proyecto</translation> </message> <message> - <location filename="../Project/Project.py" line="4951" /> + <location filename="../Project/Project.py" line="4948" /> <source>Add &files...</source> <translation>&Agregar archivos...</translation> </message> <message> - <location filename="../Project/Project.py" line="4957" /> + <location filename="../Project/Project.py" line="4954" /> <source>Add files to the current project</source> <translation>Añadir archivos al proyecto actual</translation> </message> <message> - <location filename="../Project/Project.py" line="4959" /> + <location filename="../Project/Project.py" line="4956" /> <source><b>Add files...</b><p>This opens a dialog for adding files to the current project. The place to add is determined by the file extension.</p></source> <translation><b>Añadir archivos...</b><p>Abre un diálogo para añadir archivos al proyecto actual. El lugar donde se van a añadir es determinado por la extensión del nombre de archivo.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4970" /> + <location filename="../Project/Project.py" line="4967" /> <source>Add directory to project</source> <translation>Agregar directorio al proyecto</translation> </message> <message> - <location filename="../Project/Project.py" line="4972" /> + <location filename="../Project/Project.py" line="4969" /> <source>Add directory...</source> <translation>Agregar directorio...</translation> </message> <message> + <location filename="../Project/Project.py" line="4976" /> + <source>Add a directory to the current project</source> + <translation>Agregar directorio al proyecto actual</translation> + </message> + <message> <location filename="../Project/Project.py" line="4979" /> - <source>Add a directory to the current project</source> - <translation>Agregar directorio al proyecto actual</translation> - </message> - <message> - <location filename="../Project/Project.py" line="4982" /> <source><b>Add directory...</b><p>This opens a dialog for adding a directory to the current project.</p></source> <translation><b>Añadir directorio...</b><p>Abre un diálogo para añadir un directorio al proyecto actual.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4992" /> + <location filename="../Project/Project.py" line="4989" /> <source>Add translation to project</source> <translation>Añadir traducción al proyecto</translation> </message> <message> - <location filename="../Project/Project.py" line="4994" /> + <location filename="../Project/Project.py" line="4991" /> <source>Add &translation...</source> <translation>Añadir &Traducción...</translation> </message> <message> + <location filename="../Project/Project.py" line="4998" /> + <source>Add a translation to the current project</source> + <translation>Añadir una traducción al proyecto actual</translation> + </message> + <message> <location filename="../Project/Project.py" line="5001" /> - <source>Add a translation to the current project</source> - <translation>Añadir una traducción al proyecto actual</translation> - </message> - <message> - <location filename="../Project/Project.py" line="5004" /> <source><b>Add translation...</b><p>This opens a dialog for add a translation to the current project.</p></source> <translation><b>Añadir traducción...</b><p>Abre un diálogo para añadir una traducción al proyecto actual.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5014" /> + <location filename="../Project/Project.py" line="5011" /> <source>Search new files</source> <translation>Buscar archivos nuevos</translation> </message> <message> - <location filename="../Project/Project.py" line="5015" /> + <location filename="../Project/Project.py" line="5012" /> <source>Searc&h new files...</source> <translation>Bus&car archivos nuevos...</translation> </message> <message> - <location filename="../Project/Project.py" line="5021" /> + <location filename="../Project/Project.py" line="5018" /> <source>Search new files in the project directory.</source> <translation>Bucar nuevos archivos en el directorio de proyecto.</translation> </message> <message> - <location filename="../Project/Project.py" line="5023" /> + <location filename="../Project/Project.py" line="5020" /> <source><b>Search new files...</b><p>This searches for new files (sources, forms, ...) in the project directory and registered subdirectories.</p></source> <translation><b>Buscar nuevos archivos...</b><p>Busca nuevos archivos (fuentes, forms, ...) en el directorio del proyecto y en los subdirectorios registrados.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5033" /> + <location filename="../Project/Project.py" line="5030" /> <source>Search Project File</source> <translation>Buscar Archivo en Proyecto</translation> </message> <message> - <location filename="../Project/Project.py" line="5034" /> + <location filename="../Project/Project.py" line="5031" /> <source>Search Project File...</source> <translation>Buscar Archivo en Proyecto...</translation> </message> <message> - <location filename="../Project/Project.py" line="5035" /> + <location filename="../Project/Project.py" line="5032" /> <source>Alt+Ctrl+P</source> <comment>Project|Search Project File</comment> <translation>Alt+Ctrl+P</translation> </message> <message> - <location filename="../Project/Project.py" line="5040" /> + <location filename="../Project/Project.py" line="5037" /> <source>Search for a file in the project list of files.</source> <translation>Bucar un archivo en el listado de archivos del proyecto.</translation> </message> <message> - <location filename="../Project/Project.py" line="5042" /> + <location filename="../Project/Project.py" line="5039" /> <source><b>Search Project File</b><p>This searches for a file in the project list of files.</p></source> <translation><b>Buscar Archivo en el Proyecto</b><p>Busca un archivo en el listado de archivos del proyecto.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5051" /> + <location filename="../Project/Project.py" line="5048" /> <source>Project properties</source> <translation>Propiedades del proyecto</translation> </message> <message> - <location filename="../Project/Project.py" line="5053" /> + <location filename="../Project/Project.py" line="5050" /> <source>&Properties...</source> <translation>&Propiedades...</translation> </message> <message> - <location filename="../Project/Project.py" line="5059" /> + <location filename="../Project/Project.py" line="5056" /> <source>Show the project properties</source> <translation>Ver las propiedades del proyecto</translation> </message> <message> - <location filename="../Project/Project.py" line="5061" /> + <location filename="../Project/Project.py" line="5058" /> <source><b>Properties...</b><p>This shows a dialog to edit the project properties.</p></source> <translation><b>Propiedades...</b><p>Muestra un diálogo para editar las propiedades del proyecto.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5070" /> + <location filename="../Project/Project.py" line="5067" /> <source>User project properties</source> <translation>Propiedades del usuario del proyecto</translation> </message> <message> - <location filename="../Project/Project.py" line="5072" /> + <location filename="../Project/Project.py" line="5069" /> <source>&User Properties...</source> <translation>Propiedades del &Usuario...</translation> </message> <message> + <location filename="../Project/Project.py" line="5076" /> + <source>Show the user specific project properties</source> + <translation>Muestra propiedades del proyecto específicas del usuario</translation> + </message> + <message> <location filename="../Project/Project.py" line="5079" /> - <source>Show the user specific project properties</source> - <translation>Muestra propiedades del proyecto específicas del usuario</translation> - </message> - <message> - <location filename="../Project/Project.py" line="5082" /> <source><b>User Properties...</b><p>This shows a dialog to edit the user specific project properties.</p></source> <translation><b>Propiedades del Usuario...</b><p>Abre un diálogo par editar las propiedades del proyecto específicas del usuario.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5092" /> + <location filename="../Project/Project.py" line="5089" /> <source>Filetype Associations</source> <translation>Asociación de tipos de archivo</translation> </message> <message> - <location filename="../Project/Project.py" line="5093" /> + <location filename="../Project/Project.py" line="5090" /> <source>Filetype Associations...</source> <translation>Asociación de tipos de archivo...</translation> </message> <message> + <location filename="../Project/Project.py" line="5097" /> + <source>Show the project file type associations</source> + <translation>Mostrar asociaciones de tipo de archivo del proyecto</translation> + </message> + <message> <location filename="../Project/Project.py" line="5100" /> - <source>Show the project file type associations</source> - <translation>Mostrar asociaciones de tipo de archivo del proyecto</translation> - </message> - <message> - <location filename="../Project/Project.py" line="5103" /> <source><b>Filetype Associations...</b><p>This shows a dialog to edit the file type associations of the project. These associations determine the type (source, form, interface, protocol or others) with a filename pattern. They are used when adding a file to the project and when performing a search for new files.</p></source> <translation><b>Asociaciones de tipos de archivo...</b><p>Muestra un diálogo para editar asociaciones de tipos de archivo del proyecto. Estas asociaciones determinan el tipo (fuentes, formulario, interfaces, protocolos u otros) con un patrón de nombre de archivo. Se usan al añadir archivos al proyecto y al realizar una búsqueda de nuevos archivos.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5116" /> + <location filename="../Project/Project.py" line="5113" /> <source>Lexer Associations</source> <translation>Asociaciones de Analizador Léxico</translation> </message> <message> - <location filename="../Project/Project.py" line="5117" /> + <location filename="../Project/Project.py" line="5114" /> <source>Lexer Associations...</source> <translation>Asociaciones de Analizador Léxico...</translation> </message> <message> + <location filename="../Project/Project.py" line="5121" /> + <source>Show the project lexer associations (overriding defaults)</source> + <translation>Ver las asociaciones de analizador léxico del proyecto (sobreescribiendo valores por defecto)</translation> + </message> + <message> <location filename="../Project/Project.py" line="5124" /> - <source>Show the project lexer associations (overriding defaults)</source> - <translation>Ver las asociaciones de analizador léxico del proyecto (sobreescribiendo valores por defecto)</translation> - </message> - <message> - <location filename="../Project/Project.py" line="5127" /> <source><b>Lexer Associations...</b><p>This shows a dialog to edit the lexer associations of the project. These associations override the global lexer associations. Lexers are used to highlight the editor text.</p></source> <translation><b>Asociaciones de Analizador Léxico ...</b><p>Muestra un diálogo para editar las asociaciones de analizador léxico del proyecto. Estas asociaciones sobreescriben las asociaciones de analizador léxico globales. Los analizadores léxicos se utilizan para resaltar el texto en el editor.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5145" /> + <location filename="../Project/Project.py" line="5142" /> <source>Debugger Properties</source> <translation>Propiedades del depurador</translation> </message> <message> - <location filename="../Project/Project.py" line="5146" /> + <location filename="../Project/Project.py" line="5143" /> <source>Debugger &Properties...</source> <translation>&Propiedades del depurador...</translation> </message> <message> - <location filename="../Project/Project.py" line="5152" /> + <location filename="../Project/Project.py" line="5149" /> <source>Show the debugger properties</source> <translation>Muestra las propiedades del depurador</translation> </message> <message> - <location filename="../Project/Project.py" line="5154" /> + <location filename="../Project/Project.py" line="5151" /> <source><b>Debugger Properties...</b><p>This shows a dialog to edit project specific debugger settings.</p></source> <translation><b>Propiedades del Depurador...</b><p>Abre un diálogo par editar las propiedades del depurador específicas del proyecto.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5164" /> + <location filename="../Project/Project.py" line="5161" /> <source>Load</source> <translation>Cargar</translation> </message> <message> - <location filename="../Project/Project.py" line="5165" /> + <location filename="../Project/Project.py" line="5162" /> <source>&Load</source> <translation>&Cargar</translation> </message> <message> - <location filename="../Project/Project.py" line="5171" /> + <location filename="../Project/Project.py" line="5168" /> <source>Load the debugger properties</source> <translation>Cargar las propiedades del depurador</translation> </message> <message> - <location filename="../Project/Project.py" line="5173" /> + <location filename="../Project/Project.py" line="5170" /> <source><b>Load Debugger Properties</b><p>This loads the project specific debugger settings.</p></source> <translation><b>Cargar Propiedades del Depurador</b><p>Carga las opciones de configuración del depurador específicas del proyecto.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5182" /> + <location filename="../Project/Project.py" line="5179" /> <source>Save</source> <translation>Guardar</translation> </message> <message> - <location filename="../Project/Project.py" line="5189" /> + <location filename="../Project/Project.py" line="5186" /> <source>Save the debugger properties</source> <translation>Guardar propiedades del depurador</translation> </message> <message> - <location filename="../Project/Project.py" line="5191" /> + <location filename="../Project/Project.py" line="5188" /> <source><b>Save Debugger Properties</b><p>This saves the project specific debugger settings.</p></source> <translation><b>Guardar Propiedades del Depurador</b><p>Guarda las opciones de configuración del depurador específicas del proyecto.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5200" /> + <location filename="../Project/Project.py" line="5197" /> <source>Delete</source> <translation>Borrar</translation> </message> <message> - <location filename="../Project/Project.py" line="5201" /> + <location filename="../Project/Project.py" line="5198" /> <source>&Delete</source> <translation>&Borrar</translation> </message> <message> - <location filename="../Project/Project.py" line="5207" /> + <location filename="../Project/Project.py" line="5204" /> <source>Delete the debugger properties</source> <translation>Borrar las propiedades del depurador</translation> </message> <message> - <location filename="../Project/Project.py" line="5209" /> + <location filename="../Project/Project.py" line="5206" /> <source><b>Delete Debugger Properties</b><p>This deletes the file containing the project specific debugger settings.</p></source> <translation><b>Borrar Propiedades del Depurador</b><p>Borra el archivo que contiene las opciones de configuración del depurador específicas del proyecto.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5219" /> + <location filename="../Project/Project.py" line="5216" /> <source>Reset</source> <translation>Reiniciar</translation> </message> <message> - <location filename="../Project/Project.py" line="5220" /> + <location filename="../Project/Project.py" line="5217" /> <source>&Reset</source> <translation>&Reiniciar</translation> </message> <message> - <location filename="../Project/Project.py" line="5226" /> + <location filename="../Project/Project.py" line="5223" /> <source>Reset the debugger properties</source> <translation>Restablecer las propiedades del depurador</translation> </message> <message> - <location filename="../Project/Project.py" line="5228" /> + <location filename="../Project/Project.py" line="5225" /> <source><b>Reset Debugger Properties</b><p>This resets the project specific debugger settings.</p></source> <translation><b>Restablecer Propiedades del Depurador</b><p>Restablece las opciones de configuración del depurador específicas del proyecto.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5244" /> - <location filename="../Project/Project.py" line="5243" /> + <location filename="../Project/Project.py" line="5241" /> + <location filename="../Project/Project.py" line="5240" /> <source>Load session</source> <translation>Cargar sesión</translation> </message> <message> - <location filename="../Project/Project.py" line="5250" /> + <location filename="../Project/Project.py" line="5247" /> <source>Load the projects session file.</source> <translation>Cargar archivo de sesión de proyectos.</translation> </message> <message> - <location filename="../Project/Project.py" line="5252" /> + <location filename="../Project/Project.py" line="5249" /> <source><b>Load session</b><p>This loads the projects session file. The session consists of the following data.<br>- all open source files<br>- all breakpoint<br>- the commandline arguments<br>- the working directory<br>- the exception reporting flag</p></source> <translation><b>Cargar sesión</b><p>Carga el archivo de sesión de proyecto. La sesión consiste en los datos siguientes.<br>- todos los archivos de fuentes abiertos<br>- todos los puntos de interrupción<br>- todos los argumentos de línea de comandos<br>- el directorio de trabajo<br>- el flag de reporte de excepciones</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5268" /> - <location filename="../Project/Project.py" line="5267" /> + <location filename="../Project/Project.py" line="5265" /> + <location filename="../Project/Project.py" line="5264" /> <source>Save session</source> <translation>Guardar sesión</translation> </message> <message> - <location filename="../Project/Project.py" line="5274" /> + <location filename="../Project/Project.py" line="5271" /> <source>Save the projects session file.</source> <translation>Guardar archivos de sessión de proyecto.</translation> </message> <message> - <location filename="../Project/Project.py" line="5276" /> + <location filename="../Project/Project.py" line="5273" /> <source><b>Save session</b><p>This saves the projects session file. The session consists of the following data.<br>- all open source files<br>- all breakpoint<br>- the commandline arguments<br>- the working directory<br>- the exception reporting flag</p></source> <translation><b>Guardar sesión</b><p>Guarda el archivo de sesión de proyecto. La sesión consiste en los datos siguientes.<br>- todos los archivos de fuentes abiertos<br>- todos los puntos de interrupción<br>- todos los argumentos de línea de comandos<br>- el directorio de trabajo<br>- el flag de reporte de excepciones</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5292" /> - <location filename="../Project/Project.py" line="5291" /> + <location filename="../Project/Project.py" line="5289" /> + <location filename="../Project/Project.py" line="5288" /> <source>Delete session</source> <translation>Borrar sesión</translation> </message> <message> - <location filename="../Project/Project.py" line="5298" /> + <location filename="../Project/Project.py" line="5295" /> <source>Delete the projects session file.</source> <translation>Borrar el archivo de sesión de proyecto.</translation> </message> <message> - <location filename="../Project/Project.py" line="5300" /> + <location filename="../Project/Project.py" line="5297" /> <source><b>Delete session</b><p>This deletes the projects session file</p></source> <translation><b>Borrar sesión</b><p>Borra el archivo de sesión del proyecto</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5315" /> + <location filename="../Project/Project.py" line="5312" /> <source>Code Metrics</source> <translation>Métricas de código</translation> </message> <message> - <location filename="../Project/Project.py" line="5316" /> + <location filename="../Project/Project.py" line="5313" /> <source>&Code Metrics...</source> <translation>Métricas de &código...</translation> </message> <message> + <location filename="../Project/Project.py" line="5320" /> + <source>Show some code metrics for the project.</source> + <translation>Muestra algunas métricas del código para este proyecto.</translation> + </message> + <message> <location filename="../Project/Project.py" line="5323" /> - <source>Show some code metrics for the project.</source> - <translation>Muestra algunas métricas del código para este proyecto.</translation> - </message> - <message> - <location filename="../Project/Project.py" line="5326" /> <source><b>Code Metrics...</b><p>This shows some code metrics for all Python files in the project.</p></source> <translation><b>Métricas de Código...</b><p>Muestra algunas métricas de código para todos los archivos Python en el proyecto.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5336" /> + <location filename="../Project/Project.py" line="5333" /> <source>Python Code Coverage</source> <translation>Cobertura de Código Python</translation> </message> <message> - <location filename="../Project/Project.py" line="5337" /> + <location filename="../Project/Project.py" line="5334" /> <source>Code Co&verage...</source> <translation>Co&bertura de código...</translation> </message> <message> + <location filename="../Project/Project.py" line="5341" /> + <source>Show code coverage information for the project.</source> + <translation>Muestra información de cobertura de código para el proyecto.</translation> + </message> + <message> <location filename="../Project/Project.py" line="5344" /> - <source>Show code coverage information for the project.</source> - <translation>Muestra información de cobertura de código para el proyecto.</translation> - </message> - <message> - <location filename="../Project/Project.py" line="5347" /> <source><b>Code Coverage...</b><p>This shows the code coverage information for all Python files in the project.</p></source> <translation><b>Cobertura de Código...</b><p>Muestra la información de cobertura de código para todos los archivos Python en el proyecto.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="6781" /> - <location filename="../Project/Project.py" line="6768" /> - <location filename="../Project/Project.py" line="5357" /> + <location filename="../Project/Project.py" line="6778" /> + <location filename="../Project/Project.py" line="6765" /> + <location filename="../Project/Project.py" line="5354" /> <source>Profile Data</source> <translation>Datos de perfil</translation> </message> <message> - <location filename="../Project/Project.py" line="5358" /> + <location filename="../Project/Project.py" line="5355" /> <source>&Profile Data...</source> <translation>Datos de &pefil...</translation> </message> <message> + <location filename="../Project/Project.py" line="5362" /> + <source>Show profiling data for the project.</source> + <translation>Mostrar datos de profiling para el proyecto.</translation> + </message> + <message> <location filename="../Project/Project.py" line="5365" /> - <source>Show profiling data for the project.</source> - <translation>Mostrar datos de profiling para el proyecto.</translation> - </message> - <message> - <location filename="../Project/Project.py" line="5368" /> <source><b>Profile Data...</b><p>This shows the profiling data for the project.</p></source> <translation><b>Datos de Profiling...</b><p>Muestra datos de profiling para el proyecto.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="6833" /> - <location filename="../Project/Project.py" line="5383" /> + <location filename="../Project/Project.py" line="6830" /> + <location filename="../Project/Project.py" line="5380" /> <source>Application Diagram</source> <translation>Diagrama de Aplicación</translation> </message> <message> - <location filename="../Project/Project.py" line="5384" /> + <location filename="../Project/Project.py" line="5381" /> <source>&Application Diagram...</source> <translation>Diagrama de &Aplicación...</translation> </message> <message> + <location filename="../Project/Project.py" line="5388" /> + <source>Show a diagram of the project.</source> + <translation>Mostrar diagrama del proyecto.</translation> + </message> + <message> <location filename="../Project/Project.py" line="5391" /> - <source>Show a diagram of the project.</source> - <translation>Mostrar diagrama del proyecto.</translation> - </message> - <message> - <location filename="../Project/Project.py" line="5394" /> <source><b>Application Diagram...</b><p>This shows a diagram of the project.</p></source> <translation><b>Diagrama de Aplicación...</b><p>Muestra un diagrama del proyecto.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5403" /> + <location filename="../Project/Project.py" line="5400" /> <source>Load Diagram</source> <translation>Cargar Diagrama</translation> </message> <message> - <location filename="../Project/Project.py" line="5404" /> + <location filename="../Project/Project.py" line="5401" /> <source>&Load Diagram...</source> <translation>&Cargar Diagrama...</translation> </message> <message> - <location filename="../Project/Project.py" line="5410" /> + <location filename="../Project/Project.py" line="5407" /> <source>Load a diagram from file.</source> <translation>CArgar diagrama desde archivo.</translation> </message> <message> - <location filename="../Project/Project.py" line="5412" /> + <location filename="../Project/Project.py" line="5409" /> <source><b>Load Diagram...</b><p>This loads a diagram from file.</p></source> <translation><b>Cargar Diagrama...</b><p>Carga un diagrama desde un archivo.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="7001" /> - <location filename="../Project/Project.py" line="6946" /> - <location filename="../Project/Project.py" line="5427" /> + <location filename="../Project/Project.py" line="6998" /> + <location filename="../Project/Project.py" line="6943" /> + <location filename="../Project/Project.py" line="5424" /> <source>Create Package List</source> <translation>Crear Lista del Paquete</translation> </message> <message> - <location filename="../Project/Project.py" line="5429" /> + <location filename="../Project/Project.py" line="5426" /> <source>Create &Package List</source> <translation>Crear &Package List</translation> </message> <message> + <location filename="../Project/Project.py" line="5433" /> + <source>Create an initial PKGLIST file for an eric plugin.</source> + <translation>Crear un archivo inicial PKGLIST para un plugin para eric.</translation> + </message> + <message> <location filename="../Project/Project.py" line="5436" /> - <source>Create an initial PKGLIST file for an eric plugin.</source> - <translation>Crear un archivo inicial PKGLIST para un plugin para eric.</translation> - </message> - <message> - <location filename="../Project/Project.py" line="5439" /> <source><b>Create Package List</b><p>This creates an initial list of files to include in an eric plugin archive. The list is created from the project file.</p></source> <translation><b>Crear Package List</b><p>Crea una lista inicial de archivos para incluir en un archivo de plugin para eric. Esta lista se crea a partir del archivo de proyecto.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="7071" /> - <location filename="../Project/Project.py" line="5450" /> + <location filename="../Project/Project.py" line="7068" /> + <location filename="../Project/Project.py" line="5447" /> <source>Create Plugin Archives</source> <translation>Crear Archivos de Plugin</translation> </message> <message> - <location filename="../Project/Project.py" line="5452" /> + <location filename="../Project/Project.py" line="5449" /> <source>Create Plugin &Archives</source> <translation>Crear &Archivos de Plugin</translation> </message> <message> - <location filename="../Project/Project.py" line="5458" /> + <location filename="../Project/Project.py" line="5455" /> <source>Create eric plugin archive files.</source> <translation>Crear ficheros para archivo de plugin de eric.</translation> </message> <message> - <location filename="../Project/Project.py" line="5460" /> + <location filename="../Project/Project.py" line="5457" /> <source><b>Create Plugin Archives</b><p>This creates eric plugin archive files using the list of files given in a PKGLIST* file. The archive name is built from the main script name if not designated in the package list file.</p></source> <translation><b>Crear Archivo de Plugin</b><p>Crea ficheros para archivo de plugin de eric utilizando el listado de ficheros proporcionados en un archivo PKGLIST*. El nombre de archivo se crea a partir del nombre del script principal si no se desinga uno en el archivo de lista de package.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5472" /> + <location filename="../Project/Project.py" line="5469" /> <source>Create Plugin Archives (Snapshot)</source> <translation>Crear Archivos de Plugin (Snapshot)</translation> </message> <message> - <location filename="../Project/Project.py" line="5474" /> + <location filename="../Project/Project.py" line="5471" /> <source>Create Plugin Archives (&Snapshot)</source> <translation>Crear Archivos de Plugin (&Snapshot)</translation> </message> <message> + <location filename="../Project/Project.py" line="5478" /> + <source>Create eric plugin archive files (snapshot releases).</source> + <translation>Crear ficheros para archivo de plugin de eric (snapshot releases).</translation> + </message> + <message> <location filename="../Project/Project.py" line="5481" /> - <source>Create eric plugin archive files (snapshot releases).</source> - <translation>Crear ficheros para archivo de plugin de eric (snapshot releases).</translation> - </message> - <message> - <location filename="../Project/Project.py" line="5484" /> <source><b>Create Plugin Archives (Snapshot)</b><p>This creates eric plugin archive files using the list of files given in the PKGLIST* file. The archive name is built from the main script name if not designated in the package list file. The version entry of the main script is modified to reflect a snapshot release.</p></source> <translation><b>Crear Archivos de Plugin (Snapshot)</b><p>Crea ficheros para archivo de plugin de eric usando el listado de ficheros dado en un archivo PKGLIST*. El nombre del archivo se construye a partir del nombre del script principal si no se designa uno en el archivo de package list. La entrada de versión del script principal se modifica para reflejar una snapshot release.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="7513" /> - <location filename="../Project/Project.py" line="7484" /> - <location filename="../Project/Project.py" line="7438" /> - <location filename="../Project/Project.py" line="7390" /> - <location filename="../Project/Project.py" line="5503" /> + <location filename="../Project/Project.py" line="7510" /> + <location filename="../Project/Project.py" line="7481" /> + <location filename="../Project/Project.py" line="7435" /> + <location filename="../Project/Project.py" line="7387" /> + <location filename="../Project/Project.py" line="5500" /> <source>Execute Make</source> <translation>Ejecutar Make</translation> </message> <message> - <location filename="../Project/Project.py" line="5504" /> + <location filename="../Project/Project.py" line="5501" /> <source>&Execute Make</source> <translation>&Ejecutar Make</translation> </message> <message> - <location filename="../Project/Project.py" line="5510" /> + <location filename="../Project/Project.py" line="5507" /> <source>Perform a 'make' run.</source> <translation>Ejecutar un 'make'.</translation> </message> <message> - <location filename="../Project/Project.py" line="5512" /> + <location filename="../Project/Project.py" line="5509" /> <source><b>Execute Make</b><p>This performs a 'make' run to rebuild the configured target.</p></source> <translation><b>Ejecutar Make</b><p>Ejecuta un 'make' para reconstruir el target configurado.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="7490" /> - <location filename="../Project/Project.py" line="5522" /> + <location filename="../Project/Project.py" line="7487" /> + <location filename="../Project/Project.py" line="5519" /> <source>Test for Changes</source> <translation>Comprobar Cambios</translation> </message> <message> - <location filename="../Project/Project.py" line="5523" /> + <location filename="../Project/Project.py" line="5520" /> <source>&Test for Changes</source> <translation>&Comprobar Cambios</translation> </message> <message> + <location filename="../Project/Project.py" line="5527" /> + <source>Question 'make', if a rebuild is needed.</source> + <translation>Preguntar a 'make' si es necesario reconstruir.</translation> + </message> + <message> <location filename="../Project/Project.py" line="5530" /> - <source>Question 'make', if a rebuild is needed.</source> - <translation>Preguntar a 'make' si es necesario reconstruir.</translation> - </message> - <message> - <location filename="../Project/Project.py" line="5533" /> <source><b>Test for Changes</b><p>This questions 'make', if a rebuild of the configured target is necessary.</p></source> <translation><b>Comprobar Cambios</b><p>Pregunta a 'make si es necesario reconstruir el target configurado.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5551" /> + <location filename="../Project/Project.py" line="5548" /> <source>Create SBOM File</source> <translation>Crear Archivo SBOM</translation> </message> <message> - <location filename="../Project/Project.py" line="5552" /> + <location filename="../Project/Project.py" line="5549" /> <source>Create &SBOM File</source> <translation>Crear Archivo &SBOM</translation> </message> <message> + <location filename="../Project/Project.py" line="5556" /> + <source>Create a SBOM file of the project dependencies.</source> + <translation>Crear un archivo SBOM de dependencias del proyecto.</translation> + </message> + <message> <location filename="../Project/Project.py" line="5559" /> - <source>Create a SBOM file of the project dependencies.</source> - <translation>Crear un archivo SBOM de dependencias del proyecto.</translation> - </message> - <message> - <location filename="../Project/Project.py" line="5562" /> <source><b>Create SBOM File</b><p>This allows the creation of a SBOM file of the project dependencies. This may be based on various input sources and will be saved as a CycloneDX SBOM file.</p></source> <translation><b>Crear Archivo SBOM</b><p>Esto permite la creación de un archivo SBOM de las dependencias del proyecto. Puede basarse en varias fuentes de input y se guardará como un archivo CycloneDX SBOM.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5573" /> + <location filename="../Project/Project.py" line="5570" /> <source>Clear Byte Code Caches</source> <translation>Limpiar Cachés de Byte Code</translation> </message> <message> - <location filename="../Project/Project.py" line="5574" /> + <location filename="../Project/Project.py" line="5571" /> <source>Clear Byte Code &Caches</source> <translation>Limpiar &Cachés de Byte Code</translation> </message> <message> + <location filename="../Project/Project.py" line="5578" /> + <source>Clear the byte code caches of the project.</source> + <translation>Limpiar las cachés de byte code del proyecto.</translation> + </message> + <message> <location filename="../Project/Project.py" line="5581" /> - <source>Clear the byte code caches of the project.</source> - <translation>Limpiar las cachés de byte code del proyecto.</translation> - </message> - <message> - <location filename="../Project/Project.py" line="5584" /> <source><b>Clear Byte Code Caches</b><p>This deletes all directories containing byte code cache files.</p></source> <translation><b>Limpiar Cachés de Byte Code</b><p>Esto borra todos los directorios que contienen archivos de caché de byte code cache.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5600" /> + <location filename="../Project/Project.py" line="5597" /> <source>About Black</source> <translation>Acerca de Black</translation> </message> <message> - <location filename="../Project/Project.py" line="5601" /> + <location filename="../Project/Project.py" line="5598" /> <source>&Black</source> <translation>&Black</translation> </message> <message> - <location filename="../Project/Project.py" line="5607" /> + <location filename="../Project/Project.py" line="5604" /> <source>Show some information about 'Black'.</source> <translation>Mostrar información acerca de 'Black'.</translation> </message> <message> - <location filename="../Project/Project.py" line="5609" /> + <location filename="../Project/Project.py" line="5606" /> <source><b>Black</b><p>This shows some information about the installed 'Black' tool.</p></source> <translation><b>Black</b><p>Esto muestra información acerca de la herramienta 'Black' instalada.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5621" /> + <location filename="../Project/Project.py" line="5618" /> <source>Format Code</source> <translation>Formatear Código</translation> </message> <message> - <location filename="../Project/Project.py" line="5622" /> + <location filename="../Project/Project.py" line="5619" /> <source>&Format Code</source> <translation>&Formatear Código</translation> </message> <message> + <location filename="../Project/Project.py" line="5626" /> + <source>Format the project sources with 'Black'.</source> + <translation>Formatear las fuentes del proyecto con 'Black'.</translation> + </message> + <message> <location filename="../Project/Project.py" line="5629" /> - <source>Format the project sources with 'Black'.</source> - <translation>Formatear las fuentes del proyecto con 'Black'.</translation> - </message> - <message> - <location filename="../Project/Project.py" line="5632" /> <source><b>Format Code</b><p>This shows a dialog to enter parameters for the formatting run and reformats the project sources using 'Black'.</p></source> <translation><b>Formatear Código</b><p>Muestra un díalogo para introducir parámetros para ejecutar el formato y reformatea las fuentes del proyecto usando 'Black'.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5644" /> + <location filename="../Project/Project.py" line="5641" /> <source>Check Code Formatting</source> <translation>Comprobar Formato de Código</translation> </message> <message> - <location filename="../Project/Project.py" line="5645" /> + <location filename="../Project/Project.py" line="5642" /> <source>&Check Code Formatting</source> <translation>&Comprobar Formato de Código</translation> </message> <message> - <location filename="../Project/Project.py" line="5652" /> + <location filename="../Project/Project.py" line="5649" /> <source>Check, if the project sources need to be reformatted with 'Black'.</source> <translation>Comprobar si se necesita reformatear las fuentes del proyecto con 'Black'.</translation> </message> <message> - <location filename="../Project/Project.py" line="5657" /> + <location filename="../Project/Project.py" line="5654" /> <source><b>Check Code Formatting</b><p>This shows a dialog to enter parameters for the format check run and performs a check, if the project sources need to be reformatted using 'Black'.</p></source> <translation><b>Comprobar Formato de Código</b><p>Muestra un diálogo para introducir parámetros de comprobación de formato y lleva a cabo una comprobación, si las fuentes del proyecto necesitan ser reformateadas utilizando 'Black'.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5670" /> + <location filename="../Project/Project.py" line="5667" /> <source>Code Formatting Diff</source> <translation>Diff de Formato de Código</translation> </message> <message> - <location filename="../Project/Project.py" line="5671" /> + <location filename="../Project/Project.py" line="5668" /> <source>Code Formatting &Diff</source> <translation>&Diff de Formato de Código</translation> </message> <message> - <location filename="../Project/Project.py" line="5678" /> + <location filename="../Project/Project.py" line="5675" /> <source>Generate a unified diff of potential project source reformatting with 'Black'.</source> <translation>Generar un diff unificado de reformateo potencial de fuentes del proyecto con 'Black'.</translation> </message> <message> - <location filename="../Project/Project.py" line="5684" /> + <location filename="../Project/Project.py" line="5681" /> <source><b>Diff Code Formatting</b><p>This shows a dialog to enter parameters for the format diff run and generates a unified diff of potential project source reformatting using 'Black'.</p></source> <translation><b>Diff de Formato de Código</b><p>Muestra un diálogo para introducir parámetros de diff de formato y genera un diff unificado de reformateo de fuentes del proyecto utilizando 'Black'.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5849" /> - <location filename="../Project/Project.py" line="5799" /> - <location filename="../Project/Project.py" line="5798" /> - <location filename="../Project/Project.py" line="5698" /> - <location filename="../Project/Project.py" line="5697" /> + <location filename="../Project/Project.py" line="5846" /> + <location filename="../Project/Project.py" line="5796" /> + <location filename="../Project/Project.py" line="5795" /> + <location filename="../Project/Project.py" line="5695" /> + <location filename="../Project/Project.py" line="5694" /> <source>Configure</source> <translation>Configurar</translation> </message> <message> - <location filename="../Project/Project.py" line="5705" /> + <location filename="../Project/Project.py" line="5702" /> <source>Enter the parameters for formatting the project sources with 'Black'.</source> <translation>Introducir los parámetros para el formateo de las fuentes del proyecto con 'Black'.</translation> </message> <message> - <location filename="../Project/Project.py" line="5710" /> + <location filename="../Project/Project.py" line="5707" /> <source><b>Configure</b><p>This shows a dialog to enter the parameters for formatting the project sources with 'Black'.</p></source> <translation><b>Configurar</b><p>Muestra un diálogo para introducir los parámetros de formateo de las fuentes del proyecto con 'Black'.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5726" /> + <location filename="../Project/Project.py" line="5723" /> <source>About isort</source> <translation>Acerca de isort</translation> </message> <message> - <location filename="../Project/Project.py" line="5727" /> + <location filename="../Project/Project.py" line="5724" /> <source>&isort</source> <translation>&isort</translation> </message> <message> - <location filename="../Project/Project.py" line="5733" /> + <location filename="../Project/Project.py" line="5730" /> <source>Show some information about 'isort'.</source> <translation>Mostrar información acerca de 'isort'.</translation> </message> <message> - <location filename="../Project/Project.py" line="5735" /> + <location filename="../Project/Project.py" line="5732" /> <source><b>isort</b><p>This shows some information about the installed 'isort' tool.</p></source> <translation><b>isort</b><p>Esto mustra información acerade la herramienta instalada 'isort'.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5748" /> - <location filename="../Project/Project.py" line="5747" /> + <location filename="../Project/Project.py" line="5745" /> + <location filename="../Project/Project.py" line="5744" /> <source>Sort Imports</source> <translation>Ordenar Imports</translation> </message> <message> + <location filename="../Project/Project.py" line="5752" /> + <source>Sort the import statements of the project sources with 'isort'.</source> + <translation>Ordenar las declaraciones import de las fuentes del proyecto con 'isort'.</translation> + </message> + <message> <location filename="../Project/Project.py" line="5755" /> - <source>Sort the import statements of the project sources with 'isort'.</source> - <translation>Ordenar las declaraciones import de las fuentes del proyecto con 'isort'.</translation> - </message> - <message> - <location filename="../Project/Project.py" line="5758" /> <source><b>Sort Imports</b><p>This shows a dialog to enter parameters for the imports sorting run and sorts the import statements of the project sources using 'isort'.</p></source> <translation><b>Ordenar Imports</b><p>Esto muestra un diálogo para introducir parámetros para ejecutar la ordenación de imports y ordena las declaraciones import del proyecto utilizando 'isort'.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5772" /> - <location filename="../Project/Project.py" line="5771" /> + <location filename="../Project/Project.py" line="5769" /> + <location filename="../Project/Project.py" line="5768" /> <source>Imports Sorting Diff</source> <translation>Diff de Ordenacion de Imports</translation> </message> <message> - <location filename="../Project/Project.py" line="5779" /> + <location filename="../Project/Project.py" line="5776" /> <source>Generate a unified diff of potential project source imports resorting with 'isort'.</source> <translation>Generar un diff unificado de reordenación potencial de imports con 'isort' de las fuentes del proyecto.</translation> </message> <message> - <location filename="../Project/Project.py" line="5785" /> + <location filename="../Project/Project.py" line="5782" /> <source><b>Imports Sorting Diff</b><p>This shows a dialog to enter parameters for the imports sorting diff run and generates a unified diff of potential project source changes using 'isort'.</p></source> <translation><b>Diff de Ordenación de Imports</b><p>Esto muestra un diálogo para introducir los parámetros para ejecutar un diff de ordenación de imports y genera un diff unificado de cambios potenciales en las fuentes del proyecto utilizando 'isort'.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5806" /> + <location filename="../Project/Project.py" line="5803" /> <source>Enter the parameters for resorting the project sources import statements with 'isort'.</source> <translation>Introducir los parámetros para reordenar las declaraciones import en las fuentes del proyecto con 'isort'.</translation> </message> <message> - <location filename="../Project/Project.py" line="5812" /> + <location filename="../Project/Project.py" line="5809" /> <source><b>Configure</b><p>This shows a dialog to enter the parameters for resorting the import statements of the project sources with 'isort'.</p></source> <translation><b>Configurar</b><p>Esto muestra un diálogo para introducir los parámetros para reordenar las declaraciones import de las fuetnes del proyecto con 'isort'.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5828" /> + <location filename="../Project/Project.py" line="5825" /> <source>Install Project</source> <translation>Instalar Proyecto</translation> </message> <message> - <location filename="../Project/Project.py" line="5829" /> + <location filename="../Project/Project.py" line="5826" /> <source>&Install Project</source> <translation>&Instalar Proyecto</translation> </message> <message> + <location filename="../Project/Project.py" line="5833" /> + <source>Install the project into the embedded environment.</source> + <translation>Instalar el proyecto en el entorno embebido.</translation> + </message> + <message> <location filename="../Project/Project.py" line="5836" /> - <source>Install the project into the embedded environment.</source> - <translation>Instalar el proyecto en el entorno embebido.</translation> - </message> - <message> - <location filename="../Project/Project.py" line="5839" /> <source><b>Install Project</b><p>This installs the project into the embedded virtual environment in editable mode (i.e. development mode).</p></source> <translation><b>Instalar Proyecto</b><p>Esto instala el proyecto en el entorno virtual embebido en modo de edición (es decir, en modo de desarrollo).</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5850" /> + <location filename="../Project/Project.py" line="5847" /> <source>&Configure</source> <translation>&Configurar</translation> </message> <message> + <location filename="../Project/Project.py" line="5854" /> + <source>Configure the embedded environment.</source> + <translation>Configurar el entorno embebido.</translation> + </message> + <message> <location filename="../Project/Project.py" line="5857" /> - <source>Configure the embedded environment.</source> - <translation>Configurar el entorno embebido.</translation> - </message> - <message> - <location filename="../Project/Project.py" line="5860" /> <source><b>Configure</b><p>This opens a dialog to configure the embedded virtual environment of the project.</p></source> <translation><b>Configurar</b><p>Esto abre un diálogo para configurar el entorno virtual embebido del proyecto.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5870" /> + <location filename="../Project/Project.py" line="5867" /> <source>Upgrade</source> <translation>Actualizar</translation> </message> <message> - <location filename="../Project/Project.py" line="5871" /> + <location filename="../Project/Project.py" line="5868" /> <source>&Upgrade</source> <translation>Act&ualizar</translation> </message> <message> - <location filename="../Project/Project.py" line="5877" /> + <location filename="../Project/Project.py" line="5874" /> <source>Upgrade the embedded environment.</source> <translation>Actualizar el entorno embebido.</translation> </message> <message> - <location filename="../Project/Project.py" line="5879" /> + <location filename="../Project/Project.py" line="5876" /> <source><b>Upgrade</b><p>This opens a dialog to enter the parameters to upgrade the embedded virtual environment of the project.</p></source> <translation><b>Actualizar</b><p>Esto abre un dialogo para introducir los parametros para la actualizacion del entorno embebido del proyecto.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5891" /> + <location filename="../Project/Project.py" line="5888" /> <source>Recreate</source> <translation>Recrear</translation> </message> <message> - <location filename="../Project/Project.py" line="5892" /> + <location filename="../Project/Project.py" line="5889" /> <source>&Recreate</source> <translation>&Recrear</translation> </message> <message> - <location filename="../Project/Project.py" line="5898" /> + <location filename="../Project/Project.py" line="5895" /> <source>Recreate the embedded environment.</source> <translation>Recrear el entorno embebido.</translation> </message> <message> - <location filename="../Project/Project.py" line="5900" /> + <location filename="../Project/Project.py" line="5897" /> <source><b>Recreate</b><p>This opens a dialog to enter the parameters to recreate the embedded virtual environment of the project. The existing environment is cleared first.</p></source> <translation><b>Recrear</b><p>Esto abre un dialogo para introducir los parametros para recrear el entorno virtual embebido del proyecto. Se limpia previamente el entorno existente.</p></translation> </message> <message> + <location filename="../Project/Project.py" line="5929" /> + <source>&Project</source> + <translation>&Proyecto</translation> + </message> + <message> + <location filename="../Project/Project.py" line="5930" /> + <source>Open &Recent Projects</source> + <translation>Abrir Proyectos &Recientes</translation> + </message> + <message> <location filename="../Project/Project.py" line="5932" /> - <source>&Project</source> - <translation>&Proyecto</translation> + <source>Session</source> + <translation>Sesión</translation> </message> <message> <location filename="../Project/Project.py" line="5933" /> - <source>Open &Recent Projects</source> - <translation>Abrir Proyectos &Recientes</translation> - </message> - <message> - <location filename="../Project/Project.py" line="5935" /> - <source>Session</source> - <translation>Sesión</translation> + <source>Debugger</source> + <translation>Depurador</translation> + </message> + <message> + <location filename="../Project/Project.py" line="5934" /> + <source>Embedded Environment</source> + <translation>Entorno Embebido</translation> </message> <message> <location filename="../Project/Project.py" line="5936" /> - <source>Debugger</source> - <translation>Depurador</translation> + <source>Project-T&ools</source> + <translation>Herramientas de Pr&ojecto</translation> </message> <message> <location filename="../Project/Project.py" line="5937" /> - <source>Embedded Environment</source> - <translation>Entorno Embebido</translation> - </message> - <message> - <location filename="../Project/Project.py" line="5939" /> - <source>Project-T&ools</source> - <translation>Herramientas de Pr&ojecto</translation> - </message> - <message> - <location filename="../Project/Project.py" line="5940" /> <source>&Version Control</source> <translation>Control de &Versiones</translation> </message> <message> - <location filename="../Project/Project.py" line="5944" /> + <location filename="../Project/Project.py" line="5941" /> <source>Chec&k</source> <translation>Veri&ficar</translation> </message> <message> + <location filename="../Project/Project.py" line="5943" /> + <source>Code &Formatting</source> + <translation>&Formato de Código</translation> + </message> + <message> + <location filename="../Project/Project.py" line="5945" /> + <source>Sho&w</source> + <translation>V&er</translation> + </message> + <message> <location filename="../Project/Project.py" line="5946" /> - <source>Code &Formatting</source> - <translation>&Formato de Código</translation> + <source>&Diagrams</source> + <translation>&Diagramas</translation> + </message> + <message> + <location filename="../Project/Project.py" line="5947" /> + <source>Pac&kagers</source> + <translation>Empa&quetadores</translation> </message> <message> <location filename="../Project/Project.py" line="5948" /> - <source>Sho&w</source> - <translation>V&er</translation> - </message> - <message> - <location filename="../Project/Project.py" line="5949" /> - <source>&Diagrams</source> - <translation>&Diagramas</translation> + <source>Source &Documentation</source> + <translation>Origen de &Documentación</translation> </message> <message> <location filename="../Project/Project.py" line="5950" /> - <source>Pac&kagers</source> - <translation>Empa&quetadores</translation> + <source>Make</source> + <translation>Make</translation> </message> <message> <location filename="../Project/Project.py" line="5951" /> - <source>Source &Documentation</source> - <translation>Origen de &Documentación</translation> - </message> - <message> - <location filename="../Project/Project.py" line="5953" /> - <source>Make</source> - <translation>Make</translation> - </message> - <message> - <location filename="../Project/Project.py" line="5954" /> <source>Other Tools</source> <translation>Otras Herramientas</translation> </message> <message> - <location filename="../Project/Project.py" line="6116" /> - <location filename="../Project/Project.py" line="6114" /> + <location filename="../Project/Project.py" line="6113" /> + <location filename="../Project/Project.py" line="6111" /> <source>Project</source> <translation>Proyecto</translation> </message> <message> - <location filename="../Project/Project.py" line="6198" /> + <location filename="../Project/Project.py" line="6195" /> <source>&Clear</source> <translation>&Borrar</translation> </message> <message> - <location filename="../Project/Project.py" line="6395" /> + <location filename="../Project/Project.py" line="6392" /> <source>Search New Files</source> <translation>Buscar nuevos archivos</translation> </message> <message> - <location filename="../Project/Project.py" line="6396" /> + <location filename="../Project/Project.py" line="6393" /> <source>There were no new files found to be added.</source> <translation>No se han encontrado nuevos archivos para ser añadidos.</translation> </message> <message> - <location filename="../Project/Project.py" line="6557" /> - <location filename="../Project/Project.py" line="6544" /> + <location filename="../Project/Project.py" line="6554" /> + <location filename="../Project/Project.py" line="6541" /> <source>Version Control System</source> <translation>Sistema de control de versiones</translation> </message> <message> - <location filename="../Project/Project.py" line="6545" /> + <location filename="../Project/Project.py" line="6542" /> <source><p>The selected VCS <b>{0}</b> could not be found. <br/>Reverting override.</p><p>{1}</p></source> <translation><p>El VCS seleccionado <b>{0}</b> no ha sido encontrado.<br>Revirtiendo sobreescritura.</p><p>{1}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="6558" /> + <location filename="../Project/Project.py" line="6555" /> <source><p>The selected VCS <b>{0}</b> could not be found.<br/>Disabling version control.</p><p>{1}</p></source> <translation><p>El VCS seleccionado <b>{0}</b> no ha sido encontrado.<br>Deshabilitando control de versiones.</p><p>{1}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="6715" /> + <location filename="../Project/Project.py" line="6712" /> <source>Coverage Data</source> <translation>Datos de Cobertura</translation> </message> <message> - <location filename="../Project/Project.py" line="6769" /> - <location filename="../Project/Project.py" line="6716" /> + <location filename="../Project/Project.py" line="6766" /> + <location filename="../Project/Project.py" line="6713" /> <source>There is no main script defined for the current project. Aborting</source> <translation>No hay script principal definido para el proyecto actual. Abortando</translation> </message> <message> - <location filename="../Project/Project.py" line="6728" /> + <location filename="../Project/Project.py" line="6725" /> <source>Code Coverage</source> <translation>Cobertura de codigo</translation> </message> <message> - <location filename="../Project/Project.py" line="6729" /> + <location filename="../Project/Project.py" line="6726" /> <source>Please select a coverage file</source> <translation>Por favor seleccione un archivo de cobertura</translation> </message> <message> - <location filename="../Project/Project.py" line="6782" /> + <location filename="../Project/Project.py" line="6779" /> <source>Please select a profile file</source> <translation>Por favor seleccione un archivo de profiling</translation> </message> <message> - <location filename="../Project/Project.py" line="6834" /> + <location filename="../Project/Project.py" line="6831" /> <source>Include module names?</source> <translation>¿Incluir nombres de módulos?</translation> </message> <message> - <location filename="../Project/Project.py" line="6947" /> + <location filename="../Project/Project.py" line="6944" /> <source><p>The file <b>PKGLIST</b> already exists.</p><p>Overwrite it?</p></source> <translation><p>El archivo <b>PKGLIST</b> ya existe.</p><p>¿Desea sobreescribirlo?</p></translation> </message> <message> - <location filename="../Project/Project.py" line="7002" /> + <location filename="../Project/Project.py" line="6999" /> <source><p>The file <b>PKGLIST</b> could not be created.</p><p>Reason: {0}</p></source> <translation><p>El archivo <b>PKGLIST</b> no puede ser creado.</p><p>Causa: {0}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="7298" /> - <location filename="../Project/Project.py" line="7254" /> - <location filename="../Project/Project.py" line="7204" /> - <location filename="../Project/Project.py" line="7193" /> - <location filename="../Project/Project.py" line="7175" /> - <location filename="../Project/Project.py" line="7142" /> - <location filename="../Project/Project.py" line="7112" /> - <location filename="../Project/Project.py" line="7084" /> - <location filename="../Project/Project.py" line="7054" /> - <location filename="../Project/Project.py" line="7040" /> - <location filename="../Project/Project.py" line="7023" /> + <location filename="../Project/Project.py" line="7295" /> + <location filename="../Project/Project.py" line="7251" /> + <location filename="../Project/Project.py" line="7201" /> + <location filename="../Project/Project.py" line="7190" /> + <location filename="../Project/Project.py" line="7172" /> + <location filename="../Project/Project.py" line="7139" /> + <location filename="../Project/Project.py" line="7109" /> + <location filename="../Project/Project.py" line="7081" /> + <location filename="../Project/Project.py" line="7051" /> + <location filename="../Project/Project.py" line="7037" /> + <location filename="../Project/Project.py" line="7020" /> <source>Create Plugin Archive</source> <translation>Crear Archivo de Plugin</translation> </message> <message> - <location filename="../Project/Project.py" line="7024" /> + <location filename="../Project/Project.py" line="7021" /> <source>The project does not have a main script defined. Aborting...</source> <translation>No hay script principal definido para el proyecto actual. Abortando...</translation> </message> <message> - <location filename="../Project/Project.py" line="7041" /> + <location filename="../Project/Project.py" line="7038" /> <source>Select package lists:</source> <translation>Seleccionar package lists:</translation> </message> <message> - <location filename="../Project/Project.py" line="7055" /> + <location filename="../Project/Project.py" line="7052" /> <source><p>No package list files (PKGLIST*) available or selected. Aborting...</p></source> <translation><p>No hay archivo de package list (PKGLIST*) disponible o seleccionado. Abortando...</p></translation> </message> <message> - <location filename="../Project/Project.py" line="7063" /> + <location filename="../Project/Project.py" line="7060" /> <source>Creating plugin archives...</source> <translation>Creando archivos de plugin...</translation> </message> <message> + <location filename="../Project/Project.py" line="7061" /> + <source>Abort</source> + <translation>Abortar</translation> + </message> + <message> <location filename="../Project/Project.py" line="7064" /> - <source>Abort</source> - <translation>Abortar</translation> - </message> - <message> - <location filename="../Project/Project.py" line="7067" /> <source>%v/%m Archives</source> <translation>%v/%m Archivos</translation> </message> <message> - <location filename="../Project/Project.py" line="7085" /> + <location filename="../Project/Project.py" line="7082" /> <source><p>The file <b>{0}</b> could not be read.</p><p>Reason: {1}</p></source> <translation><p>El archivo<b>{0}</b> no puede ser leído.</p><p>Causa: {1}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="7113" /> + <location filename="../Project/Project.py" line="7110" /> <source><p>The file <b>{0}</b> is not ready yet.</p><p>Please rework it and delete the'; initial_list' line of the header.</p></source> <translation><p>El archivo <b>{0}</b> todavía no está listo.</p><p>Por favor, revíselo y borre la línea '; initial_list' del encabezado.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="7143" /> + <location filename="../Project/Project.py" line="7140" /> <source><p>The eric plugin archive file <b>{0}</b> could not be created.</p><p>Reason: {1}</p></source> <translation><p>El archivo de plugin de eric <b>{0}</b> no ha podido ser creado.</p><p>Razón: {1}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="7176" /> + <location filename="../Project/Project.py" line="7173" /> <source><p>The file <b>{0}</b> could not be stored in the archive. Ignoring it.</p><p>Reason: {1}</p></source> <translation><p>El fichero<b>{0}</b> no ha podido ser almacenado en el archivo. Va a ser ignorado.</p><p>Causa: {1}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="7194" /> + <location filename="../Project/Project.py" line="7191" /> <source><p>The eric plugin archive files were created with some errors.</p></source> <translation><p>Los ficheros para archivo de plugin de eric se han creado con errores.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="7205" /> + <location filename="../Project/Project.py" line="7202" /> <source><p>The eric plugin archive files were created successfully.</p></source> <translation><p>Los ficheros para archivo de plugin de eric se han creado correctamente.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="7255" /> + <location filename="../Project/Project.py" line="7252" /> <source><p>The plugin file <b>{0}</b> could not be read.</p><p>Reason: {1}</p></source> <translation><p>El archivo de plugin<b>{0}</b> no puede ser leido.</p><p>Causa: {1}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="7299" /> + <location filename="../Project/Project.py" line="7296" /> <source><p>The plugin file <b>{0}</b> could not be read.</p> <p>Reason: {1}</p></source> <translation><p>El archivo de plugin<b>{0}</b> no puede ser leido.</p><p>Causa: {1}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="7391" /> + <location filename="../Project/Project.py" line="7388" /> <source>'Make' is not supported for remote projects. Aborting...</source> <translation>'Make' no está soportado para proyectos remotos. Abortando...</translation> </message> <message> - <location filename="../Project/Project.py" line="7439" /> + <location filename="../Project/Project.py" line="7436" /> <source>The make process did not start.</source> <translation>El proceso make no ha comenzado.</translation> </message> <message> - <location filename="../Project/Project.py" line="7485" /> + <location filename="../Project/Project.py" line="7482" /> <source>The make process crashed.</source> <translation>El proceso make ha fallado.</translation> </message> <message> - <location filename="../Project/Project.py" line="7493" /> + <location filename="../Project/Project.py" line="7490" /> <source><p>There are changes that require the configured make target <b>{0}</b> to be rebuilt.</p></source> <translation><p>Hay cambios que requieren que el target make configurado <b>{0}</b> se reconstruya.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="7498" /> + <location filename="../Project/Project.py" line="7495" /> <source><p>There are changes that require the default make target to be rebuilt.</p></source> <translation><p>Hay cambios que requieren que el target make por defecto se reconstruya.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="7514" /> + <location filename="../Project/Project.py" line="7511" /> <source>The makefile contains errors.</source> <translation>El makefile contiene errores.</translation> </message> <message> - <location filename="../Project/Project.py" line="7944" /> + <location filename="../Project/Project.py" line="7941" /> <source>Interpreter Missing</source> <translation>No se encuentra el Intérprete</translation> </message> <message> - <location filename="../Project/Project.py" line="7945" /> + <location filename="../Project/Project.py" line="7942" /> <source>The configured interpreter of the embedded environment does not exist anymore. Shall the environment be upgraded?</source> <translation>El intérprete configurado para el entorno embebido ya no existe. ¿Actualizar el entorno?</translation> </message> <message> - <location filename="../Project/Project.py" line="8026" /> + <location filename="../Project/Project.py" line="8023" /> <source>Open Remote Project</source> <translation>Abrir Proyecto Remoto</translation> </message> <message> - <location filename="../Project/Project.py" line="8057" /> - <location filename="../Project/Project.py" line="8042" /> + <location filename="../Project/Project.py" line="8054" /> + <location filename="../Project/Project.py" line="8039" /> <source>Save Remote Project</source> <translation>Guardar Proyecto Remoto</translation> </message> @@ -64587,8 +64600,8 @@ <translation>Estatus de VCS</translation> </message> <message> - <location filename="../Project/ProjectBrowserModel.py" line="922" /> - <location filename="../Project/ProjectBrowserModel.py" line="900" /> + <location filename="../Project/ProjectBrowserModel.py" line="926" /> + <location filename="../Project/ProjectBrowserModel.py" line="904" /> <location filename="../Project/ProjectBrowserModel.py" line="548" /> <location filename="../Project/ProjectBrowserModel.py" line="418" /> <source>local</source> @@ -69069,7 +69082,7 @@ <context> <name>PythonDisViewer</name> <message> - <location filename="../UI/PythonDisViewer.py" line="61" /> + <location filename="../UI/PythonDisViewer.py" line="62" /> <location filename="../UI/PythonDisViewer.ui" line="0" /> <source>Disassembly</source> <translation>Desensamblado</translation> @@ -69085,160 +69098,160 @@ <translation>Negrita: instrucción etiquetada</translation> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="73" /> + <location filename="../UI/PythonDisViewer.py" line="74" /> <source>Line</source> <translation>Línea</translation> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="74" /> - <source>Offset</source> - <translation>Desplazamiento</translation> - </message> - <message> <location filename="../UI/PythonDisViewer.py" line="75" /> - <source>Operation</source> - <translation>Operación</translation> + <source>Offset</source> + <translation>Desplazamiento</translation> </message> <message> <location filename="../UI/PythonDisViewer.py" line="76" /> - <source>Parameters</source> - <translation>Parámetros</translation> + <source>Operation</source> + <translation>Operación</translation> </message> <message> <location filename="../UI/PythonDisViewer.py" line="77" /> + <source>Parameters</source> + <translation>Parámetros</translation> + </message> + <message> + <location filename="../UI/PythonDisViewer.py" line="78" /> <source>Interpreted Parameters</source> <translation>Parámetros interpretados</translation> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="80" /> + <location filename="../UI/PythonDisViewer.py" line="81" /> <source>Key</source> <translation>Clave</translation> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="80" /> + <location filename="../UI/PythonDisViewer.py" line="81" /> <source>Value</source> <translation>Valor</translation> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="85" /> + <location filename="../UI/PythonDisViewer.py" line="86" /> <source>Show Code Info</source> <translation>Mostrar Info del Código</translation> </message> <message> + <location filename="../UI/PythonDisViewer.py" line="97" /> + <location filename="../UI/PythonDisViewer.py" line="89" /> + <source>Expand All</source> + <translation>Expandir Todo</translation> + </message> + <message> + <location filename="../UI/PythonDisViewer.py" line="99" /> + <location filename="../UI/PythonDisViewer.py" line="90" /> + <source>Collapse All</source> + <translation>Contraer Todo</translation> + </message> + <message> + <location filename="../UI/PythonDisViewer.py" line="102" /> + <location filename="../UI/PythonDisViewer.py" line="92" /> + <source>Configure...</source> + <translation>Configurar...</translation> + </message> + <message> <location filename="../UI/PythonDisViewer.py" line="96" /> - <location filename="../UI/PythonDisViewer.py" line="88" /> - <source>Expand All</source> - <translation>Expandir Todo</translation> - </message> - <message> - <location filename="../UI/PythonDisViewer.py" line="98" /> - <location filename="../UI/PythonDisViewer.py" line="89" /> - <source>Collapse All</source> - <translation>Contraer Todo</translation> - </message> - <message> - <location filename="../UI/PythonDisViewer.py" line="101" /> - <location filename="../UI/PythonDisViewer.py" line="91" /> - <source>Configure...</source> - <translation>Configurar...</translation> - </message> - <message> - <location filename="../UI/PythonDisViewer.py" line="95" /> <source>Hide</source> <translation>Ocultar</translation> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="448" /> + <location filename="../UI/PythonDisViewer.py" line="455" /> <source>No editor has been opened.</source> <translation>No se ha abierto ningún editor.</translation> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="459" /> + <location filename="../UI/PythonDisViewer.py" line="466" /> <source>The current editor does not contain any source code.</source> <translation>El editor actual no contiene código fuente.</translation> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="465" /> + <location filename="../UI/PythonDisViewer.py" line="472" /> <source>The current editor does not contain Python source code.</source> <translation>El editor actual no contiene código fuente Python.</translation> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="509" /> + <location filename="../UI/PythonDisViewer.py" line="516" /> <source>Disassembly of last traceback</source> <translation>Desensamblado del último traceback</translation> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="672" /> + <location filename="../UI/PythonDisViewer.py" line="694" /> <source>Code Object '{0}'</source> <translation>Código Objeto '{0}'</translation> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="784" /> + <location filename="../UI/PythonDisViewer.py" line="806" /> <source>Name</source> <translation>Nombre</translation> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="786" /> + <location filename="../UI/PythonDisViewer.py" line="808" /> <source>Filename</source> <translation>Nombre de archivo</translation> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="790" /> - <source>First Line</source> - <translation>Primera Línea</translation> - </message> - <message> - <location filename="../UI/PythonDisViewer.py" line="794" /> - <source>Argument Count</source> - <translation>Número de Argumentos</translation> - </message> - <message> - <location filename="../UI/PythonDisViewer.py" line="799" /> - <source>Positional-only Arguments</source> - <translation>Solamente Argumentos Posicionales</translation> - </message> - <message> - <location filename="../UI/PythonDisViewer.py" line="805" /> - <source>Keyword-only Arguments</source> - <translation>Solamente Argumentos Palabra Clave</translation> - </message> - <message> - <location filename="../UI/PythonDisViewer.py" line="809" /> - <source>Number of Locals</source> - <translation>Número de Locales</translation> - </message> - <message> <location filename="../UI/PythonDisViewer.py" line="812" /> - <source>Stack Size</source> - <translation>Tamaño de Stack</translation> - </message> - <message> - <location filename="../UI/PythonDisViewer.py" line="814" /> - <source>Flags</source> - <translation>Flags</translation> + <source>First Line</source> + <translation>Primera Línea</translation> </message> <message> <location filename="../UI/PythonDisViewer.py" line="816" /> + <source>Argument Count</source> + <translation>Número de Argumentos</translation> + </message> + <message> + <location filename="../UI/PythonDisViewer.py" line="821" /> + <source>Positional-only Arguments</source> + <translation>Solamente Argumentos Posicionales</translation> + </message> + <message> + <location filename="../UI/PythonDisViewer.py" line="827" /> + <source>Keyword-only Arguments</source> + <translation>Solamente Argumentos Palabra Clave</translation> + </message> + <message> + <location filename="../UI/PythonDisViewer.py" line="831" /> + <source>Number of Locals</source> + <translation>Número de Locales</translation> + </message> + <message> + <location filename="../UI/PythonDisViewer.py" line="834" /> + <source>Stack Size</source> + <translation>Tamaño de Stack</translation> + </message> + <message> + <location filename="../UI/PythonDisViewer.py" line="836" /> + <source>Flags</source> + <translation>Flags</translation> + </message> + <message> + <location filename="../UI/PythonDisViewer.py" line="838" /> <source>Constants</source> <translation>Constantes</translation> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="818" /> + <location filename="../UI/PythonDisViewer.py" line="840" /> <source>Names</source> <translation>Nombres</translation> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="820" /> + <location filename="../UI/PythonDisViewer.py" line="842" /> <source>Variable Names</source> <translation>Nombres de Variable</translation> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="822" /> + <location filename="../UI/PythonDisViewer.py" line="844" /> <source>Free Variables</source> <translation>Variables Libres</translation> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="824" /> + <location filename="../UI/PythonDisViewer.py" line="846" /> <source>Cell Variables</source> <translation>Variables Celda</translation> </message> @@ -74423,32 +74436,32 @@ <context> <name>SessionFile</name> <message> - <location filename="../Sessions/SessionFile.py" line="247" /> + <location filename="../Sessions/SessionFile.py" line="249" /> <source>Save Remote Session</source> <translation>Guardar Sesión Remota</translation> </message> <message> - <location filename="../Sessions/SessionFile.py" line="250" /> + <location filename="../Sessions/SessionFile.py" line="252" /> <source>Save Session</source> <translation>Guardar Sesión</translation> </message> <message> - <location filename="../Sessions/SessionFile.py" line="258" /> + <location filename="../Sessions/SessionFile.py" line="260" /> <source><p>The session file <b>{0}</b> could not be written.</p><p>Reason: {1}</p></source> <translation><p>El archivo de sesión <b>{0}</b> no se puede escribir.</p><p>Razón: {1}</p></translation> </message> <message> - <location filename="../Sessions/SessionFile.py" line="282" /> + <location filename="../Sessions/SessionFile.py" line="284" /> <source>Read Remote Session</source> <translation>Leer Sesión Remota</translation> </message> <message> - <location filename="../Sessions/SessionFile.py" line="285" /> + <location filename="../Sessions/SessionFile.py" line="287" /> <source>Read Session</source> <translation>Leer sesión</translation> </message> <message> - <location filename="../Sessions/SessionFile.py" line="293" /> + <location filename="../Sessions/SessionFile.py" line="295" /> <source><p>The session file <b>{0}</b> could not be read.</p><p>Reason: {1}</p></source> <translation><p>El archivo de sesión<b>{0}</b> no se puede leer.</p><p>Razón: {1}</p></translation> </message> @@ -94692,1052 +94705,1052 @@ <context> <name>ViewManager</name> <message> - <location filename="../ViewManager/ViewManager.py" line="615" /> + <location filename="../ViewManager/ViewManager.py" line="625" /> <source>New</source> <translation>Nuevo</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="617" /> + <location filename="../ViewManager/ViewManager.py" line="627" /> <source>&New</source> <translation>&Nuevo</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="619" /> - <source>Ctrl+N</source> - <comment>File|New</comment> - <translation>Ctrl+N</translation> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="626" /> - <source>Open an empty editor window</source> - <translation>Abre una ventana vacia en el editor</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="629" /> + <source>Ctrl+N</source> + <comment>File|New</comment> + <translation>Ctrl+N</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="636" /> + <source>Open an empty editor window</source> + <translation>Abre una ventana vacia en el editor</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="639" /> <source><b>New</b><p>An empty editor window will be created.</p></source> <translation><b>Nuevo</b><p>Se creará una ventana vacia en el editor.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="638" /> + <location filename="../ViewManager/ViewManager.py" line="648" /> <source>Open</source> <translation>Abrir</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="640" /> + <location filename="../ViewManager/ViewManager.py" line="650" /> <source>&Open...</source> <translation>&Abrir...</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="642" /> + <location filename="../ViewManager/ViewManager.py" line="652" /> <source>Ctrl+O</source> <comment>File|Open</comment> <translation>Ctrl+O</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="649" /> + <location filename="../ViewManager/ViewManager.py" line="659" /> <source>Open a file</source> <translation>Abrir un archivo</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="652" /> + <location filename="../ViewManager/ViewManager.py" line="662" /> <source><b>Open a file</b><p>You will be asked for the name of a file to be opened in an editor window.</p></source> <translation><b>Abrir un archivo</b><p>Le preguntará el nombre del archivo para ser abierto en el editor.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="663" /> + <location filename="../ViewManager/ViewManager.py" line="673" /> <source>Open (Remote)</source> <translation>Abrir (Remoto)</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="665" /> - <source>Open (Remote)...</source> - <translation>Abrir (Remoto)...</translation> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="672" /> - <source>Open a remote file</source> - <translation>Abrir un archivo remoto</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="675" /> + <source>Open (Remote)...</source> + <translation>Abrir (Remoto)...</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="682" /> + <source>Open a remote file</source> + <translation>Abrir un archivo remoto</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="685" /> <source><b>Open a remote file</b><p>You will be asked for the name of a remote file to be opened in an editor window.</p></source> <translation><b>Abrir un archivo remoto</b><p>Se le preguntará por el nombre de un archivo remoto para abrir en la ventana de editor.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="689" /> - <location filename="../ViewManager/ViewManager.py" line="687" /> - <source>Reload</source> - <translation>Recargar</translation> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="696" /> - <source>Reload the current file</source> - <translation>Recargar el archivo actual</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="699" /> + <location filename="../ViewManager/ViewManager.py" line="697" /> + <source>Reload</source> + <translation>Recargar</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="706" /> + <source>Reload the current file</source> + <translation>Recargar el archivo actual</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="709" /> <source><b>Reload</b><p>Reload the contents of current editor window. If the editor contents was modified, a warning will be issued.</p></source> <translation><b>Recargar</b><p>Recargar el contenido de la ventana de editor actual. Si el contenido del editor presenta modificaciones, se mostrará una advertencia.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="712" /> + <location filename="../ViewManager/ViewManager.py" line="722" /> <source>Close</source> <translation>Cerrar</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="714" /> + <location filename="../ViewManager/ViewManager.py" line="724" /> <source>&Close</source> <translation>&Cerrar</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="716" /> + <location filename="../ViewManager/ViewManager.py" line="726" /> <source>Ctrl+W</source> <comment>File|Close</comment> <translation>Ctrl+W</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="723" /> + <location filename="../ViewManager/ViewManager.py" line="733" /> <source>Close the current window</source> <translation>Cierra la ventana actual</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="726" /> - <source><b>Close Window</b><p>Close the current window.</p></source> - <translation><b>Cierra la ventana</b><p>Cierra la ventana actual.</p></translation> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="735" /> - <source>Close All</source> - <translation>Cerrar todo</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="736" /> - <source>Clos&e All</source> - <translation>Cerrar &Todo</translation> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="743" /> - <source>Close all editor windows</source> - <translation>Cerrar todas las ventanas del editor</translation> + <source><b>Close Window</b><p>Close the current window.</p></source> + <translation><b>Cierra la ventana</b><p>Cierra la ventana actual.</p></translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="745" /> + <source>Close All</source> + <translation>Cerrar todo</translation> </message> <message> <location filename="../ViewManager/ViewManager.py" line="746" /> + <source>Clos&e All</source> + <translation>Cerrar &Todo</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="753" /> + <source>Close all editor windows</source> + <translation>Cerrar todas las ventanas del editor</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="756" /> <source><b>Close All Windows</b><p>Close all editor windows.</p></source> <translation><b>Cerrar todas las ventanas</b><p>Cierra todas las ventanas del editor.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="759" /> + <location filename="../ViewManager/ViewManager.py" line="769" /> <source>Save</source> <translation>Guardar</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="761" /> + <location filename="../ViewManager/ViewManager.py" line="771" /> <source>&Save</source> <translation>&Guardar</translation> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="316" /> - <location filename="../ViewManager/ViewManager.py" line="763" /> + <location filename="../ViewManager/ViewManager.py" line="773" /> <source>Ctrl+S</source> <comment>File|Save</comment> <translation>Ctrl+S</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="770" /> + <location filename="../ViewManager/ViewManager.py" line="780" /> <source>Save the current file</source> <translation>Guarda el archivo actual</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="773" /> - <source><b>Save File</b><p>Save the contents of current editor window.</p></source> - <translation><b>Guardar archivo</b><p>Almacena el contenido de la ventana de edición actual.</p></translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="783" /> + <source><b>Save File</b><p>Save the contents of current editor window.</p></source> + <translation><b>Guardar archivo</b><p>Almacena el contenido de la ventana de edición actual.</p></translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="793" /> <source>Save as</source> <translation>Guardar como</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="785" /> + <location filename="../ViewManager/ViewManager.py" line="795" /> <source>Save &as...</source> <translation>Guardar &como...</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="787" /> + <location filename="../ViewManager/ViewManager.py" line="797" /> <source>Shift+Ctrl+S</source> <comment>File|Save As</comment> <translation>Shift+Ctrl+S</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="796" /> + <location filename="../ViewManager/ViewManager.py" line="806" /> <source>Save the current file to a new one</source> <translation>Guarda el archivo actual en uno nuevo</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="801" /> + <location filename="../ViewManager/ViewManager.py" line="811" /> <source><b>Save File as</b><p>Save the contents of the current editor window to a new file. The file can be entered in a file selection dialog.</p></source> <translation><b>Guardar archivo como</b><p>Guarda el contenido de la ventana de editor actual en un nuevo archivo. El archivo puede ser introducido en un diálogo de selección de archivo.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="812" /> + <location filename="../ViewManager/ViewManager.py" line="822" /> <source>Save as (Remote)</source> <translation>Guardar como (Remoto)</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="814" /> + <location filename="../ViewManager/ViewManager.py" line="824" /> <source>Save as (Remote)...</source> <translation>Guardar como (Remoto)...</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="821" /> + <location filename="../ViewManager/ViewManager.py" line="831" /> <source>Save the current file to a new one on an eric-ide server</source> <translation>Guarda el archivo actual a uno nuevo en un servidor de eric-ide</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="827" /> + <location filename="../ViewManager/ViewManager.py" line="837" /> <source><b>Save File as (Remote)</b><p>Save the contents of the current editor window to a new file on the connected eric-ide server. The file can be entered in a file selection dialog.</p></source> <translation><b>Guardar archivo como (Remoto)</b><p>Guarda el contenido de la ventana de editor actual en un nuevo archivo en el servidor de eric-ide conectado. El archivo puede ser introducido en un diálogo de selección de archivo.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="839" /> + <location filename="../ViewManager/ViewManager.py" line="849" /> <source>Save Copy</source> <translation>Guardar Copia</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="841" /> - <source>Save &Copy...</source> - <translation>Guardar &Copia...</translation> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="848" /> - <source>Save a copy of the current file</source> - <translation>Guardar una copia del archivo actual</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="851" /> + <source>Save &Copy...</source> + <translation>Guardar &Copia...</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="858" /> + <source>Save a copy of the current file</source> + <translation>Guardar una copia del archivo actual</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="861" /> <source><b>Save Copy</b><p>Save a copy of the contents of current editor window. The file can be entered in a file selection dialog.</p></source> <translation><b>Guardar Copia</b><p>Guardar una copia del contenido de la ventana de editor actual. El archivo puede ser introducido usando un diálogo de selección de archivo.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="862" /> + <location filename="../ViewManager/ViewManager.py" line="872" /> <source>Save all</source> <translation>Guardar todo</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="864" /> - <source>Save a&ll</source> - <translation>Guardar a&ll</translation> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="871" /> - <source>Save all files</source> - <translation>Guardar todos los archivos</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="874" /> + <source>Save a&ll</source> + <translation>Guardar a&ll</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="881" /> + <source>Save all files</source> + <translation>Guardar todos los archivos</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="884" /> <source><b>Save All Files</b><p>Save the contents of all editor windows.</p></source> <translation><b>Guardar todos los archivos</b><p>Guarda el contenido de todas las ventanas del editor.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="886" /> + <location filename="../ViewManager/ViewManager.py" line="896" /> <source>Print</source> <translation>Imprimir</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="888" /> + <location filename="../ViewManager/ViewManager.py" line="898" /> <source>&Print</source> <translation>Im&primir</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="890" /> + <location filename="../ViewManager/ViewManager.py" line="900" /> <source>Ctrl+P</source> <comment>File|Print</comment> <translation>Ctrl+P</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="897" /> + <location filename="../ViewManager/ViewManager.py" line="907" /> <source>Print the current file</source> <translation>Imprime el archivo actual</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="900" /> + <location filename="../ViewManager/ViewManager.py" line="910" /> <source><b>Print File</b><p>Print the contents of current editor window.</p></source> <translation><b>Imprimir Archivo</b><p>Imprime el contenido del archivo en edición.</p></translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="780" /> - <location filename="../ViewManager/ViewManager.py" line="913" /> - <location filename="../ViewManager/ViewManager.py" line="911" /> + <location filename="../ViewManager/ViewManager.py" line="923" /> + <location filename="../ViewManager/ViewManager.py" line="921" /> <source>Print Preview</source> <translation>Presentación preliminar</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="920" /> + <location filename="../ViewManager/ViewManager.py" line="930" /> <source>Print preview of the current file</source> <translation>Presentación preliminar del archivo actual</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="925" /> + <location filename="../ViewManager/ViewManager.py" line="935" /> <source><b>Print Preview</b><p>Print preview of the current editor window.</p></source> <translation><b>Presentación Preliminar</b><p>Presentación preliminar de la ventana del editor actual.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="936" /> + <location filename="../ViewManager/ViewManager.py" line="946" /> <source>Find File</source> <translation>Buscar archivo</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="938" /> + <location filename="../ViewManager/ViewManager.py" line="948" /> <source>Find &File...</source> <translation>Buscar &Archivo...</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="940" /> + <location filename="../ViewManager/ViewManager.py" line="950" /> <source>Alt+Ctrl+F</source> <comment>File|Find File</comment> <translation>Alt+Ctrl+F</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="949" /> + <location filename="../ViewManager/ViewManager.py" line="959" /> <source>Search for a file by entering a search pattern</source> <translation>Buscar un archivo entrando un patrón de búsqueda</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="954" /> + <location filename="../ViewManager/ViewManager.py" line="964" /> <source><b>Find File</b><p>This searches for a file by entering a search pattern.</p></source> <translation><b>Buscar Archivo</b><p>Busca un archivo entrando un patrón de búsqueda.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="970" /> + <location filename="../ViewManager/ViewManager.py" line="980" /> <source>&File</source> <translation>&Archivo</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="972" /> + <location filename="../ViewManager/ViewManager.py" line="982" /> <source>Open &Recent Files</source> <translation>Abrir Archivos &Recientes</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="976" /> + <location filename="../ViewManager/ViewManager.py" line="986" /> <source>Open &Bookmarked Files</source> <translation>Abrir Archivos &Marcados</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1024" /> - <location filename="../ViewManager/ViewManager.py" line="1022" /> + <location filename="../ViewManager/ViewManager.py" line="1034" /> + <location filename="../ViewManager/ViewManager.py" line="1032" /> <source>File</source> <translation>Archivo</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1051" /> + <location filename="../ViewManager/ViewManager.py" line="1061" /> <source>Export as</source> <translation>Exportar como</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1074" /> + <location filename="../ViewManager/ViewManager.py" line="1084" /> <source>Undo</source> <translation>Deshacer</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1076" /> + <location filename="../ViewManager/ViewManager.py" line="1086" /> <source>&Undo</source> <translation>&Deshacer</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1078" /> + <location filename="../ViewManager/ViewManager.py" line="1088" /> <source>Ctrl+Z</source> <comment>Edit|Undo</comment> <translation>Ctrl+Z</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1081" /> + <location filename="../ViewManager/ViewManager.py" line="1091" /> <source>Alt+Backspace</source> <comment>Edit|Undo</comment> <translation>Alt+Backspace</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1087" /> + <location filename="../ViewManager/ViewManager.py" line="1097" /> <source>Undo the last change</source> <translation>Revierte el último cambio</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1090" /> - <source><b>Undo</b><p>Undo the last change done in the current editor.</p></source> - <translation><b>Deshacer</b><p>Deshace el último cambio hecho en el editor.</p></translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="1100" /> + <source><b>Undo</b><p>Undo the last change done in the current editor.</p></source> + <translation><b>Deshacer</b><p>Deshace el último cambio hecho en el editor.</p></translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="1110" /> <source>Redo</source> <translation>Rehacer</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1102" /> + <location filename="../ViewManager/ViewManager.py" line="1112" /> <source>&Redo</source> <translation>&Rehacer</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1104" /> + <location filename="../ViewManager/ViewManager.py" line="1114" /> <source>Ctrl+Shift+Z</source> <comment>Edit|Redo</comment> <translation>Ctrl+Shift+Z</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1111" /> + <location filename="../ViewManager/ViewManager.py" line="1121" /> <source>Redo the last change</source> <translation>Rehace el último cambio</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1114" /> + <location filename="../ViewManager/ViewManager.py" line="1124" /> <source><b>Redo</b><p>Redo the last change done in the current editor.</p></source> <translation><b>Rehacer</b><p>Rehace el último cambio hecho en el editor.</p></translation> </message> <message> + <location filename="../ViewManager/ViewManager.py" line="1144" /> <location filename="../ViewManager/ViewManager.py" line="1134" /> - <location filename="../ViewManager/ViewManager.py" line="1124" /> <source>Revert to last saved state</source> <translation>Volver al último estado grabado</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1125" /> + <location filename="../ViewManager/ViewManager.py" line="1135" /> <source>Re&vert to last saved state</source> <translation>&Volver al último estado grabado</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1127" /> + <location filename="../ViewManager/ViewManager.py" line="1137" /> <source>Ctrl+Y</source> <comment>Edit|Revert</comment> <translation>Ctrl+Y</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1137" /> + <location filename="../ViewManager/ViewManager.py" line="1147" /> <source><b>Revert to last saved state</b><p>Undo all changes up to the last saved state of the current editor.</p></source> <translation><b>Volver al último estado grabado</b><p>Deshace todos los cambios desde la útlima grabación del archivo en edición.</p></translation> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="343" /> - <location filename="../ViewManager/ViewManager.py" line="1150" /> + <location filename="../ViewManager/ViewManager.py" line="1160" /> <source>Cut</source> <translation>Cortar</translation> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="345" /> - <location filename="../ViewManager/ViewManager.py" line="1152" /> + <location filename="../ViewManager/ViewManager.py" line="1162" /> <source>Cu&t</source> <translation>Cor&tar</translation> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="347" /> - <location filename="../ViewManager/ViewManager.py" line="1154" /> + <location filename="../ViewManager/ViewManager.py" line="1164" /> <source>Ctrl+X</source> <comment>Edit|Cut</comment> <translation>Ctrl+X</translation> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="350" /> - <location filename="../ViewManager/ViewManager.py" line="1157" /> + <location filename="../ViewManager/ViewManager.py" line="1167" /> <source>Shift+Del</source> <comment>Edit|Cut</comment> <translation>Shift+Del</translation> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="356" /> - <location filename="../ViewManager/ViewManager.py" line="1163" /> + <location filename="../ViewManager/ViewManager.py" line="1173" /> <source>Cut the selection</source> <translation>Corta lo seleccionado</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1166" /> + <location filename="../ViewManager/ViewManager.py" line="1176" /> <source><b>Cut</b><p>Cut the selected text of the current editor to the clipboard.</p></source> <translation><b>Cortar</b><p>Cortar el texto seleccionado y lo envia al portapapeles.</p></translation> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="365" /> - <location filename="../ViewManager/ViewManager.py" line="1177" /> + <location filename="../ViewManager/ViewManager.py" line="1187" /> <source>Copy</source> <translation>Copiar</translation> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="367" /> - <location filename="../ViewManager/ViewManager.py" line="1179" /> + <location filename="../ViewManager/ViewManager.py" line="1189" /> <source>&Copy</source> <translation>&Copiar</translation> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="369" /> - <location filename="../ViewManager/ViewManager.py" line="1181" /> + <location filename="../ViewManager/ViewManager.py" line="1191" /> <source>Ctrl+C</source> <comment>Edit|Copy</comment> <translation>Ctrl+C</translation> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="372" /> - <location filename="../ViewManager/ViewManager.py" line="1184" /> + <location filename="../ViewManager/ViewManager.py" line="1194" /> <source>Ctrl+Ins</source> <comment>Edit|Copy</comment> <translation>Ctrl+Ins</translation> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="378" /> - <location filename="../ViewManager/ViewManager.py" line="1190" /> + <location filename="../ViewManager/ViewManager.py" line="1200" /> <source>Copy the selection</source> <translation>Copia lo seleccionao</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1193" /> + <location filename="../ViewManager/ViewManager.py" line="1203" /> <source><b>Copy</b><p>Copy the selected text of the current editor to the clipboard.</p></source> <translation><b>Copiar</b><p>Copiar el texto seleccionado al portapapeles.</p></translation> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="387" /> - <location filename="../ViewManager/ViewManager.py" line="1204" /> + <location filename="../ViewManager/ViewManager.py" line="1214" /> <source>Paste</source> <translation>Pegar</translation> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="389" /> - <location filename="../ViewManager/ViewManager.py" line="1206" /> + <location filename="../ViewManager/ViewManager.py" line="1216" /> <source>&Paste</source> <translation>&Pegar</translation> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="391" /> - <location filename="../ViewManager/ViewManager.py" line="1208" /> + <location filename="../ViewManager/ViewManager.py" line="1218" /> <source>Ctrl+V</source> <comment>Edit|Paste</comment> <translation>Ctrl+V</translation> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="394" /> - <location filename="../ViewManager/ViewManager.py" line="1211" /> + <location filename="../ViewManager/ViewManager.py" line="1221" /> <source>Shift+Ins</source> <comment>Edit|Paste</comment> <translation>Shift+Ins</translation> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="400" /> - <location filename="../ViewManager/ViewManager.py" line="1217" /> + <location filename="../ViewManager/ViewManager.py" line="1227" /> <source>Paste the last cut/copied text</source> <translation>Pega el último texto copiado/cortado</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1220" /> + <location filename="../ViewManager/ViewManager.py" line="1230" /> <source><b>Paste</b><p>Paste the last cut/copied text from the clipboard to the current editor.</p></source> <translation><b>Pegar</b><p>Pegar el contenido del portapapeles en el editor.</p></translation> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="414" /> <location filename="../QScintilla/ShellWindow.py" line="412" /> - <location filename="../ViewManager/ViewManager.py" line="1233" /> - <location filename="../ViewManager/ViewManager.py" line="1231" /> + <location filename="../ViewManager/ViewManager.py" line="1243" /> + <location filename="../ViewManager/ViewManager.py" line="1241" /> <source>Clear</source> <translation>Borrar</translation> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="416" /> - <location filename="../ViewManager/ViewManager.py" line="1235" /> + <location filename="../ViewManager/ViewManager.py" line="1245" /> <source>Alt+Shift+C</source> <comment>Edit|Clear</comment> <translation>Alt+Shift+C</translation> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="423" /> - <location filename="../ViewManager/ViewManager.py" line="1242" /> + <location filename="../ViewManager/ViewManager.py" line="1252" /> <source>Clear all text</source> <translation>Borra todo el texto</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1245" /> + <location filename="../ViewManager/ViewManager.py" line="1255" /> <source><b>Clear</b><p>Delete all text of the current editor.</p></source> <translation><b>Borrar</b><p>Borra todo el texto del editor.</p></translation> </message> <message> + <location filename="../ViewManager/ViewManager.py" line="1274" /> + <location filename="../ViewManager/ViewManager.py" line="1265" /> <location filename="../ViewManager/ViewManager.py" line="1264" /> - <location filename="../ViewManager/ViewManager.py" line="1255" /> - <location filename="../ViewManager/ViewManager.py" line="1254" /> <source>Join Lines</source> <translation>Unir Líneas</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1257" /> - <source>Ctrl+J</source> - <comment>Edit|Join Lines</comment> - <translation>Ctrl+J</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="1267" /> - <source><b>Join Lines</b><p>Join the current and the next lines.</p></source> - <translation><b>Unir Lineas</b><p>Unir las líneas actual y siguiente.</p></translation> + <source>Ctrl+J</source> + <comment>Edit|Join Lines</comment> + <translation>Ctrl+J</translation> </message> <message> <location filename="../ViewManager/ViewManager.py" line="1277" /> + <source><b>Join Lines</b><p>Join the current and the next lines.</p></source> + <translation><b>Unir Lineas</b><p>Unir las líneas actual y siguiente.</p></translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="1287" /> <source>Indent</source> <translation>Sangrar</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1279" /> + <location filename="../ViewManager/ViewManager.py" line="1289" /> <source>&Indent</source> <translation>&Sangrar</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1281" /> - <source>Ctrl+I</source> - <comment>Edit|Indent</comment> - <translation>Ctrl+I</translation> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="1288" /> - <source>Indent line</source> - <translation>Sangrar línea</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="1291" /> + <source>Ctrl+I</source> + <comment>Edit|Indent</comment> + <translation>Ctrl+I</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="1298" /> + <source>Indent line</source> + <translation>Sangrar línea</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="1301" /> <source><b>Indent</b><p>Indents the current line or the lines of the selection by one level.</p></source> <translation><b>Sangrar</b><p>Aumenta el sangrado de la línea actual o de la selección de a un nivel.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1302" /> + <location filename="../ViewManager/ViewManager.py" line="1312" /> <source>Unindent</source> <translation>Quitar sangrado</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1304" /> + <location filename="../ViewManager/ViewManager.py" line="1314" /> <source>U&nindent</source> <translation>&Quitar sangrado</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1306" /> + <location filename="../ViewManager/ViewManager.py" line="1316" /> <source>Ctrl+Shift+I</source> <comment>Edit|Unindent</comment> <translation>Ctrl+Shift+I</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1315" /> + <location filename="../ViewManager/ViewManager.py" line="1325" /> <source>Unindent line</source> <translation>Quitar sangrado de línea</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1318" /> + <location filename="../ViewManager/ViewManager.py" line="1328" /> <source><b>Unindent</b><p>Unindents the current line or the lines of the selection by one level.</p></source> <translation><b>Quitar sangrado</b><p>Quita el sangrado de la línea actual o de la selección de a un nivel.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1331" /> - <location filename="../ViewManager/ViewManager.py" line="1329" /> - <source>Smart indent</source> - <translation>Sangrado inteligente</translation> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="1338" /> - <source>Smart indent Line or Selection</source> - <translation>Sangrado inteligente de Linea o Selección</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="1341" /> + <location filename="../ViewManager/ViewManager.py" line="1339" /> + <source>Smart indent</source> + <translation>Sangrado inteligente</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="1348" /> + <source>Smart indent Line or Selection</source> + <translation>Sangrado inteligente de Linea o Selección</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="1351" /> <source><b>Smart indent</b><p>Indents the current line or the lines of the current selection smartly.</p></source> <translation><b>Sangrado Inteligente</b><p>Sangra inteligentemente la línea actual o las lineas de la selección.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1352" /> + <location filename="../ViewManager/ViewManager.py" line="1362" /> <source>Comment</source> <translation>Comentario</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1354" /> + <location filename="../ViewManager/ViewManager.py" line="1364" /> <source>C&omment</source> <translation>Co&mentario</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1356" /> - <source>Ctrl+M</source> - <comment>Edit|Comment</comment> - <translation>Ctrl+M</translation> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="1363" /> - <source>Comment Line or Selection</source> - <translation>Comentar línea o selección</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="1366" /> + <source>Ctrl+M</source> + <comment>Edit|Comment</comment> + <translation>Ctrl+M</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="1373" /> + <source>Comment Line or Selection</source> + <translation>Comentar línea o selección</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="1376" /> <source><b>Comment</b><p>Comments the current line or the lines of the current selection.</p></source> <translation><b>Comentario</b><p>Pasa a comentario la línea actual o las lineas de la selección.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1377" /> + <location filename="../ViewManager/ViewManager.py" line="1387" /> <source>Uncomment</source> <translation>Descomentar</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1379" /> + <location filename="../ViewManager/ViewManager.py" line="1389" /> <source>Unco&mment</source> <translation>Desc&omentar</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1381" /> + <location filename="../ViewManager/ViewManager.py" line="1391" /> <source>Ctrl+Shift+M</source> <comment>Edit|Uncomment</comment> <translation>Ctrl+Shift+M</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1390" /> + <location filename="../ViewManager/ViewManager.py" line="1400" /> <source>Uncomment Line or Selection</source> <translation>Descomentar Línea o Selección</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1393" /> + <location filename="../ViewManager/ViewManager.py" line="1403" /> <source><b>Uncomment</b><p>Uncomments the current line or the lines of the current selection.</p></source> <translation><b>Descomentar</b><p>Descomentar la linea actual o la selección.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1406" /> - <location filename="../ViewManager/ViewManager.py" line="1404" /> + <location filename="../ViewManager/ViewManager.py" line="1416" /> + <location filename="../ViewManager/ViewManager.py" line="1414" /> <source>Toggle Comment</source> <translation>Alternar Comentario</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1408" /> + <location filename="../ViewManager/ViewManager.py" line="1418" /> <source>Ctrl+#</source> <comment>Edit|Toggle Comment</comment> <translation>Ctrl+#</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1417" /> + <location filename="../ViewManager/ViewManager.py" line="1427" /> <source>Toggle the comment of the current line, selection or comment block</source> <translation>Alternar el comentario de la línea actual, selección o bloque de comentario</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1423" /> + <location filename="../ViewManager/ViewManager.py" line="1433" /> <source><b>Toggle Comment</b><p>If the current line does not start with a block comment, the current line or selection is commented. If it is already commented, this comment block is uncommented. </p></source> <translation><b>Alternar Comentario</b><p>Si la línea actual no empieza con un bloque de comentario, la línea actual o la selección se comenta. Si ya está comentada, este bloque de comentario se descomenta.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1436" /> - <location filename="../ViewManager/ViewManager.py" line="1435" /> + <location filename="../ViewManager/ViewManager.py" line="1446" /> + <location filename="../ViewManager/ViewManager.py" line="1445" /> <source>Stream Comment</source> <translation>Bloque de comentarios</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1443" /> + <location filename="../ViewManager/ViewManager.py" line="1453" /> <source>Stream Comment Line or Selection</source> <translation>Pasar a bloque de comentarios la Línea o la Selección</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1448" /> + <location filename="../ViewManager/ViewManager.py" line="1458" /> <source><b>Stream Comment</b><p>Stream comments the current line or the current selection.</p></source> <translation><b>Comentario Simple</b><p>Convierte la línea actual o selección actual en un comentario simple.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1460" /> - <location filename="../ViewManager/ViewManager.py" line="1459" /> - <source>Box Comment</source> - <translation>Caja de comentario</translation> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="1467" /> - <source>Box Comment Line or Selection</source> - <translation>Línea o Selección a Caja de Comentario</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="1470" /> + <location filename="../ViewManager/ViewManager.py" line="1469" /> + <source>Box Comment</source> + <translation>Caja de comentario</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="1477" /> + <source>Box Comment Line or Selection</source> + <translation>Línea o Selección a Caja de Comentario</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="1480" /> <source><b>Box Comment</b><p>Box comments the current line or the lines of the current selection.</p></source> <translation><b>Caja de Comentario</b><p>Lleva la línea actual o líneas en la selección actual a una caja de comentario.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1481" /> + <location filename="../ViewManager/ViewManager.py" line="1491" /> <source>Select to brace</source> <translation>Seleccionar hasta la llave ( '{' o '}' )</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1482" /> + <location filename="../ViewManager/ViewManager.py" line="1492" /> <source>Select to &brace</source> <translation>Seleccionar hasta la &llave ( '{' o '}' )</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1484" /> + <location filename="../ViewManager/ViewManager.py" line="1494" /> <source>Ctrl+E</source> <comment>Edit|Select to brace</comment> <translation>Ctrl+E</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1493" /> + <location filename="../ViewManager/ViewManager.py" line="1503" /> <source>Select text to the matching brace</source> <translation>Seleccionar texto hasta la llave ( '{' o '}' ) correspondiente</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1498" /> + <location filename="../ViewManager/ViewManager.py" line="1508" /> <source><b>Select to brace</b><p>Select text of the current editor to the matching brace.</p></source> <translation><b> Seleccionar hasta la llave ( '{' o '}' )</b><p>Selecciona el texto del editor actual hasta la llave correspondiente.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1509" /> + <location filename="../ViewManager/ViewManager.py" line="1519" /> <source>Select all</source> <translation>Seleccionar todo</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1511" /> + <location filename="../ViewManager/ViewManager.py" line="1521" /> <source>&Select all</source> <translation>Seleccionar &todo</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1513" /> + <location filename="../ViewManager/ViewManager.py" line="1523" /> <source>Ctrl+A</source> <comment>Edit|Select all</comment> <translation>Ctrl+A</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1520" /> + <location filename="../ViewManager/ViewManager.py" line="1530" /> <source>Select all text</source> <translation>Seleccionar todo el texto</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1523" /> - <source><b>Select All</b><p>Select all text of the current editor.</p></source> - <translation><b>Seleccionar todo</b><p>Selecciona todo el texto del editor actual.</p></translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="1533" /> + <source><b>Select All</b><p>Select all text of the current editor.</p></source> + <translation><b>Seleccionar todo</b><p>Selecciona todo el texto del editor actual.</p></translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="1543" /> <source>Deselect all</source> <translation>Deseleccionar todo</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1534" /> + <location filename="../ViewManager/ViewManager.py" line="1544" /> <source>&Deselect all</source> <translation>&Deseleccionar todo</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1536" /> + <location filename="../ViewManager/ViewManager.py" line="1546" /> <source>Alt+Ctrl+A</source> <comment>Edit|Deselect all</comment> <translation>Alt+Ctrl+A</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1545" /> + <location filename="../ViewManager/ViewManager.py" line="1555" /> <source>Deselect all text</source> <translation>Deseleccionar todo el texto</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1548" /> + <location filename="../ViewManager/ViewManager.py" line="1558" /> <source><b>Deselect All</b><p>Deselect all text of the current editor.</p></source> <translation><b>Deseleccionar todo</b><p>Deselecciona todo el texto del editor actual.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1566" /> - <location filename="../ViewManager/ViewManager.py" line="1559" /> - <location filename="../ViewManager/ViewManager.py" line="1558" /> + <location filename="../ViewManager/ViewManager.py" line="1576" /> + <location filename="../ViewManager/ViewManager.py" line="1569" /> + <location filename="../ViewManager/ViewManager.py" line="1568" /> <source>Convert Line End Characters</source> <translation>Convertir caracteres de Fin de Línea</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1569" /> + <location filename="../ViewManager/ViewManager.py" line="1579" /> <source><b>Convert Line End Characters</b><p>Convert the line end characters to the currently set type.</p></source> <translation><b>Convertir Caracteres de fin de Línea</b><p>Convierte los caracteres de fin de línea al tipo establecido actualmente.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1588" /> - <location filename="../ViewManager/ViewManager.py" line="1581" /> - <location filename="../ViewManager/ViewManager.py" line="1580" /> + <location filename="../ViewManager/ViewManager.py" line="1598" /> + <location filename="../ViewManager/ViewManager.py" line="1591" /> + <location filename="../ViewManager/ViewManager.py" line="1590" /> <source>Convert Tabs to Spaces</source> <translation>Convertir Tabulaciones a Espacios</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1591" /> + <location filename="../ViewManager/ViewManager.py" line="1601" /> <source><b>Convert Tabs to Spaces</b><p>Convert tabulators to the configured amount of space characters.</p></source> <translation><b>Convertir Tabulaciones a Espacios</b><p>Convertir tabulaciones al número configurado de carácteres de espacio.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1610" /> - <location filename="../ViewManager/ViewManager.py" line="1603" /> - <location filename="../ViewManager/ViewManager.py" line="1602" /> + <location filename="../ViewManager/ViewManager.py" line="1620" /> + <location filename="../ViewManager/ViewManager.py" line="1613" /> + <location filename="../ViewManager/ViewManager.py" line="1612" /> <source>Shorten empty lines</source> <translation>Convertir lineas vacías</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1613" /> + <location filename="../ViewManager/ViewManager.py" line="1623" /> <source><b>Shorten empty lines</b><p>Shorten lines consisting solely of whitespace characters.</p></source> <translation><b>Convertir lineas vacías</b><p>Convierte líneas que contienen solamente espacios a un caracter de salto de línea.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3497" /> - <location filename="../ViewManager/ViewManager.py" line="1624" /> + <location filename="../ViewManager/ViewManager.py" line="3507" /> + <location filename="../ViewManager/ViewManager.py" line="1634" /> <source>Complete</source> <translation>Completar</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1625" /> + <location filename="../ViewManager/ViewManager.py" line="1635" /> <source>&Complete</source> <translation>&Completar</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1627" /> + <location filename="../ViewManager/ViewManager.py" line="1637" /> <source>Ctrl+Space</source> <comment>Edit|Complete</comment> <translation>Ctrl+Space</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1634" /> + <location filename="../ViewManager/ViewManager.py" line="1644" /> <source>Complete current word</source> <translation>Completar la palabra actual</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1637" /> + <location filename="../ViewManager/ViewManager.py" line="1647" /> <source><b>Complete</b><p>Performs a completion of the word containing the cursor.</p></source> <translation><b>Completar</b><p>Lleva a cabo un completado de la palabra que contiene el cursor.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1649" /> - <location filename="../ViewManager/ViewManager.py" line="1648" /> + <location filename="../ViewManager/ViewManager.py" line="1659" /> + <location filename="../ViewManager/ViewManager.py" line="1658" /> <source>Complete from Document</source> <translation>Completar desde documento</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1651" /> + <location filename="../ViewManager/ViewManager.py" line="1661" /> <source>Ctrl+Shift+Space</source> <comment>Edit|Complete from Document</comment> <translation>Ctrl+Shift+Space</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1660" /> + <location filename="../ViewManager/ViewManager.py" line="1670" /> <source>Complete current word from Document</source> <translation>Completar palabra actual desde Documento</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1665" /> + <location filename="../ViewManager/ViewManager.py" line="1675" /> <source><b>Complete from Document</b><p>Performs a completion from document of the word containing the cursor.</p></source> <translation><b>Completar desde Documento</b><p>Lleva a cabo un completado de la palabra que contiene el cursor a partir del documento.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1677" /> - <location filename="../ViewManager/ViewManager.py" line="1676" /> + <location filename="../ViewManager/ViewManager.py" line="1687" /> + <location filename="../ViewManager/ViewManager.py" line="1686" /> <source>Complete from APIs</source> <translation>Completar desde APIs</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1679" /> + <location filename="../ViewManager/ViewManager.py" line="1689" /> <source>Ctrl+Alt+Space</source> <comment>Edit|Complete from APIs</comment> <translation>Ctrl+Alt+Space</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1688" /> + <location filename="../ViewManager/ViewManager.py" line="1698" /> <source>Complete current word from APIs</source> <translation>Completar palabra actual desde APIs</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1691" /> + <location filename="../ViewManager/ViewManager.py" line="1701" /> <source><b>Complete from APIs</b><p>Performs a completion from APIs of the word containing the cursor.</p></source> <translation><b>Completar desde APIs</b><p>Lleva a cabo un completado de la palabra que contiene el cursor a partir de las APIs.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1705" /> - <location filename="../ViewManager/ViewManager.py" line="1702" /> + <location filename="../ViewManager/ViewManager.py" line="1715" /> + <location filename="../ViewManager/ViewManager.py" line="1712" /> <source>Complete from Document and APIs</source> <translation>Completar desde Documento y de APIs</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1709" /> + <location filename="../ViewManager/ViewManager.py" line="1719" /> <source>Alt+Shift+Space</source> <comment>Edit|Complete from Document and APIs</comment> <translation>Alt+Shift+Space</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1720" /> + <location filename="../ViewManager/ViewManager.py" line="1730" /> <source>Complete current word from Document and APIs</source> <translation>Completar palabra actual desde Documento y APIs</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1725" /> + <location filename="../ViewManager/ViewManager.py" line="1735" /> <source><b>Complete from Document and APIs</b><p>Performs a completion from document and APIs of the word containing the cursor.</p></source> <translation><b>Completar desde Documento y APIs</b><p>Lleva a cabo un completado de la palabra que contiene el cursor a partir del documento y de las APIs.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1736" /> + <location filename="../ViewManager/ViewManager.py" line="1746" /> <source>Calltip</source> <translation>Consejo de llamada (calltip)</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1737" /> + <location filename="../ViewManager/ViewManager.py" line="1747" /> <source>&Calltip</source> <translation>&Consejo de llamada (calltip)</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1739" /> + <location filename="../ViewManager/ViewManager.py" line="1749" /> <source>Meta+Alt+Space</source> <comment>Edit|Calltip</comment> <translation>Meta+Alt+Space</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1748" /> + <location filename="../ViewManager/ViewManager.py" line="1758" /> <source>Show Calltips</source> <translation>Mostrar Consejos de llamada (calltips)</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1751" /> + <location filename="../ViewManager/ViewManager.py" line="1761" /> <source><b>Calltip</b><p>Show calltips based on the characters immediately to the left of the cursor.</p></source> <translation><b>Consejo de llamada (calltip)</b><p>Muestra consejos de llamada basándose en los caracteres inmediatamente a la izquierda del cursor.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1764" /> - <location filename="../ViewManager/ViewManager.py" line="1762" /> + <location filename="../ViewManager/ViewManager.py" line="1774" /> + <location filename="../ViewManager/ViewManager.py" line="1772" /> <source>Code Info</source> <translation>Info del Código</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1766" /> + <location filename="../ViewManager/ViewManager.py" line="1776" /> <source>Ctrl+Alt+I</source> <comment>Edit|Code Info</comment> <translation>Ctrl+Alt+I</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1775" /> + <location filename="../ViewManager/ViewManager.py" line="1785" /> <source>Show Code Info</source> <translation>Mostrar Info del Código</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1778" /> + <location filename="../ViewManager/ViewManager.py" line="1788" /> <source><b>Code Info</b><p>Show code information based on the cursor position.</p></source> <translation><b>Info del Código</b><p>Mostrar información del código basado en la posición del cursor.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1789" /> - <location filename="../ViewManager/ViewManager.py" line="1788" /> + <location filename="../ViewManager/ViewManager.py" line="1799" /> + <location filename="../ViewManager/ViewManager.py" line="1798" /> <source>Sort</source> <translation>Ordenar</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1791" /> + <location filename="../ViewManager/ViewManager.py" line="1801" /> <source>Ctrl+Alt+S</source> <comment>Edit|Sort</comment> <translation>Ctrl+Alt+S</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1798" /> + <location filename="../ViewManager/ViewManager.py" line="1808" /> <source>Sort the lines containing the rectangular selection</source> <translation>Ordenar las líneas que contienen la selección rectangular</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1803" /> + <location filename="../ViewManager/ViewManager.py" line="1813" /> <source><b>Sort</b><p>Sort the lines spanned by a rectangular selection based on the selection ignoring leading and trailing whitespace.</p></source> <translation><b>Ordenar</b><p>Ordenar las líneas contenidas en una selección rectangular basada en la selección, ignorando espacios en blanco delante y detrás.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1815" /> - <location filename="../ViewManager/ViewManager.py" line="1814" /> + <location filename="../ViewManager/ViewManager.py" line="1825" /> + <location filename="../ViewManager/ViewManager.py" line="1824" /> <source>Generate Docstring</source> <translation>Generar Docstring</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1817" /> + <location filename="../ViewManager/ViewManager.py" line="1827" /> <source>Ctrl+Alt+D</source> <comment>Edit|Generate Docstring</comment> <translation>Ctrl+Alt+D</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1826" /> + <location filename="../ViewManager/ViewManager.py" line="1836" /> <source>Generate a docstring for the current function/method</source> <translation>Generar una cadena Docstring para la función/método actual</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1831" /> + <location filename="../ViewManager/ViewManager.py" line="1841" /> <source><b>Generate Docstring</b><p>Generate a docstring for the current function/method if the cursor is placed on the line starting the function definition or on the line thereafter. The docstring is inserted at the appropriate position and the cursor is placed at the end of the description line.</p></source> <translation><b>Generar Docstring</b><p>Generar una cadena docstring para la función/método actual si el cursor está posicionado en una línea de inicio de definición de función o en líneas posteriores. La docstring se inserta en la posición adecuada y el cursor se posiciona al final de la línea de descripción.</p></translation> </message> @@ -95746,22 +95759,22 @@ <location filename="../QScintilla/MiniEditor.py" line="929" /> <location filename="../QScintilla/ShellWindow.py" line="579" /> <location filename="../QScintilla/ShellWindow.py" line="578" /> - <location filename="../ViewManager/ViewManager.py" line="1858" /> - <location filename="../ViewManager/ViewManager.py" line="1857" /> + <location filename="../ViewManager/ViewManager.py" line="1868" /> + <location filename="../ViewManager/ViewManager.py" line="1867" /> <source>Move left one character</source> <translation>Mover a la izquierda un carácter</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="931" /> <location filename="../QScintilla/ShellWindow.py" line="580" /> - <location filename="../ViewManager/ViewManager.py" line="1859" /> + <location filename="../ViewManager/ViewManager.py" line="1869" /> <source>Left</source> <translation>Left</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="939" /> <location filename="../QScintilla/ShellWindow.py" line="588" /> - <location filename="../ViewManager/ViewManager.py" line="1867" /> + <location filename="../ViewManager/ViewManager.py" line="1877" /> <source>Meta+B</source> <translation>Meta+B</translation> </message> @@ -95770,22 +95783,22 @@ <location filename="../QScintilla/MiniEditor.py" line="945" /> <location filename="../QScintilla/ShellWindow.py" line="595" /> <location filename="../QScintilla/ShellWindow.py" line="594" /> - <location filename="../ViewManager/ViewManager.py" line="1874" /> - <location filename="../ViewManager/ViewManager.py" line="1873" /> + <location filename="../ViewManager/ViewManager.py" line="1884" /> + <location filename="../ViewManager/ViewManager.py" line="1883" /> <source>Move right one character</source> <translation>Mover a la derecha un carácter</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="947" /> <location filename="../QScintilla/ShellWindow.py" line="596" /> - <location filename="../ViewManager/ViewManager.py" line="1875" /> + <location filename="../ViewManager/ViewManager.py" line="1885" /> <source>Right</source> <translation>Right</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="954" /> <location filename="../QScintilla/ShellWindow.py" line="603" /> - <location filename="../ViewManager/ViewManager.py" line="1882" /> + <location filename="../ViewManager/ViewManager.py" line="1892" /> <source>Meta+F</source> <translation>Meta+F</translation> </message> @@ -95794,22 +95807,22 @@ <location filename="../QScintilla/MiniEditor.py" line="961" /> <location filename="../QScintilla/ShellWindow.py" line="687" /> <location filename="../QScintilla/ShellWindow.py" line="686" /> - <location filename="../ViewManager/ViewManager.py" line="1890" /> - <location filename="../ViewManager/ViewManager.py" line="1889" /> + <location filename="../ViewManager/ViewManager.py" line="1900" /> + <location filename="../ViewManager/ViewManager.py" line="1899" /> <source>Move up one line</source> <translation>Mover arriba una línea</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="963" /> <location filename="../QScintilla/ShellWindow.py" line="688" /> - <location filename="../ViewManager/ViewManager.py" line="1891" /> + <location filename="../ViewManager/ViewManager.py" line="1901" /> <source>Up</source> <translation>Up</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="970" /> <location filename="../QScintilla/ShellWindow.py" line="695" /> - <location filename="../ViewManager/ViewManager.py" line="1898" /> + <location filename="../ViewManager/ViewManager.py" line="1908" /> <source>Meta+P</source> <translation>Meta+P</translation> </message> @@ -95818,30 +95831,30 @@ <location filename="../QScintilla/MiniEditor.py" line="977" /> <location filename="../QScintilla/ShellWindow.py" line="703" /> <location filename="../QScintilla/ShellWindow.py" line="702" /> - <location filename="../ViewManager/ViewManager.py" line="1906" /> - <location filename="../ViewManager/ViewManager.py" line="1905" /> + <location filename="../ViewManager/ViewManager.py" line="1916" /> + <location filename="../ViewManager/ViewManager.py" line="1915" /> <source>Move down one line</source> <translation>Mover abajo una línea</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="979" /> <location filename="../QScintilla/ShellWindow.py" line="704" /> - <location filename="../ViewManager/ViewManager.py" line="1907" /> + <location filename="../ViewManager/ViewManager.py" line="1917" /> <source>Down</source> <translation>Down</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="986" /> <location filename="../QScintilla/ShellWindow.py" line="711" /> - <location filename="../ViewManager/ViewManager.py" line="1914" /> + <location filename="../ViewManager/ViewManager.py" line="1924" /> <source>Meta+N</source> <translation>Meta+N</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="994" /> <location filename="../QScintilla/MiniEditor.py" line="993" /> - <location filename="../ViewManager/ViewManager.py" line="1922" /> - <location filename="../ViewManager/ViewManager.py" line="1921" /> + <location filename="../ViewManager/ViewManager.py" line="1932" /> + <location filename="../ViewManager/ViewManager.py" line="1931" /> <source>Move left one word part</source> <translation>Mover a la izquierda una parte de palabra</translation> </message> @@ -95849,16 +95862,16 @@ <location filename="../QScintilla/MiniEditor.py" line="1034" /> <location filename="../QScintilla/MiniEditor.py" line="1002" /> <location filename="../QScintilla/ShellWindow.py" line="619" /> - <location filename="../ViewManager/ViewManager.py" line="1962" /> - <location filename="../ViewManager/ViewManager.py" line="1930" /> + <location filename="../ViewManager/ViewManager.py" line="1972" /> + <location filename="../ViewManager/ViewManager.py" line="1940" /> <source>Alt+Left</source> <translation>Alt+Left</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1010" /> <location filename="../QScintilla/MiniEditor.py" line="1009" /> - <location filename="../ViewManager/ViewManager.py" line="1938" /> - <location filename="../ViewManager/ViewManager.py" line="1937" /> + <location filename="../ViewManager/ViewManager.py" line="1948" /> + <location filename="../ViewManager/ViewManager.py" line="1947" /> <source>Move right one word part</source> <translation>Mover a la derecha una parte de palabra</translation> </message> @@ -95866,8 +95879,8 @@ <location filename="../QScintilla/MiniEditor.py" line="2164" /> <location filename="../QScintilla/MiniEditor.py" line="1054" /> <location filename="../QScintilla/MiniEditor.py" line="1018" /> - <location filename="../ViewManager/ViewManager.py" line="3071" /> - <location filename="../ViewManager/ViewManager.py" line="1946" /> + <location filename="../ViewManager/ViewManager.py" line="3081" /> + <location filename="../ViewManager/ViewManager.py" line="1956" /> <source>Alt+Right</source> <translation>Alt+Right</translation> </message> @@ -95876,8 +95889,8 @@ <location filename="../QScintilla/MiniEditor.py" line="1025" /> <location filename="../QScintilla/ShellWindow.py" line="611" /> <location filename="../QScintilla/ShellWindow.py" line="610" /> - <location filename="../ViewManager/ViewManager.py" line="1954" /> - <location filename="../ViewManager/ViewManager.py" line="1953" /> + <location filename="../ViewManager/ViewManager.py" line="1964" /> + <location filename="../ViewManager/ViewManager.py" line="1963" /> <source>Move left one word</source> <translation>Mover a la izquierda una palabra</translation> </message> @@ -95885,8 +95898,8 @@ <location filename="../QScintilla/MiniEditor.py" line="1094" /> <location filename="../QScintilla/MiniEditor.py" line="1038" /> <location filename="../QScintilla/ShellWindow.py" line="623" /> - <location filename="../ViewManager/ViewManager.py" line="2018" /> - <location filename="../ViewManager/ViewManager.py" line="1966" /> + <location filename="../ViewManager/ViewManager.py" line="2028" /> + <location filename="../ViewManager/ViewManager.py" line="1976" /> <source>Ctrl+Left</source> <translation>Ctrl+Left</translation> </message> @@ -95895,8 +95908,8 @@ <location filename="../QScintilla/MiniEditor.py" line="1045" /> <location filename="../QScintilla/ShellWindow.py" line="631" /> <location filename="../QScintilla/ShellWindow.py" line="630" /> - <location filename="../ViewManager/ViewManager.py" line="1974" /> - <location filename="../ViewManager/ViewManager.py" line="1973" /> + <location filename="../ViewManager/ViewManager.py" line="1984" /> + <location filename="../ViewManager/ViewManager.py" line="1983" /> <source>Move right one word</source> <translation>Mover a la derecha una palabra</translation> </message> @@ -95904,8 +95917,8 @@ <location filename="../QScintilla/MiniEditor.py" line="1848" /> <location filename="../QScintilla/MiniEditor.py" line="1058" /> <location filename="../QScintilla/ShellWindow.py" line="639" /> - <location filename="../ViewManager/ViewManager.py" line="2755" /> - <location filename="../ViewManager/ViewManager.py" line="1982" /> + <location filename="../ViewManager/ViewManager.py" line="2765" /> + <location filename="../ViewManager/ViewManager.py" line="1992" /> <source>Ctrl+Right</source> <translation>Ctrl+Right</translation> </message> @@ -95914,8 +95927,8 @@ <location filename="../QScintilla/MiniEditor.py" line="1065" /> <location filename="../QScintilla/ShellWindow.py" line="649" /> <location filename="../QScintilla/ShellWindow.py" line="646" /> - <location filename="../ViewManager/ViewManager.py" line="1992" /> - <location filename="../ViewManager/ViewManager.py" line="1989" /> + <location filename="../ViewManager/ViewManager.py" line="2002" /> + <location filename="../ViewManager/ViewManager.py" line="1999" /> <source>Move to first visible character in document line</source> <translation>Mover al primer carácter visible en la línea de documento</translation> </message> @@ -95923,22 +95936,22 @@ <location filename="../QScintilla/MiniEditor.py" line="2109" /> <location filename="../QScintilla/MiniEditor.py" line="1078" /> <location filename="../QScintilla/ShellWindow.py" line="659" /> - <location filename="../ViewManager/ViewManager.py" line="3016" /> - <location filename="../ViewManager/ViewManager.py" line="2002" /> + <location filename="../ViewManager/ViewManager.py" line="3026" /> + <location filename="../ViewManager/ViewManager.py" line="2012" /> <source>Home</source> <translation>Home</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1086" /> <location filename="../QScintilla/MiniEditor.py" line="1085" /> - <location filename="../ViewManager/ViewManager.py" line="2010" /> - <location filename="../ViewManager/ViewManager.py" line="2009" /> + <location filename="../ViewManager/ViewManager.py" line="2020" /> + <location filename="../ViewManager/ViewManager.py" line="2019" /> <source>Move to start of display line</source> <translation>Mover al principio de la línea mostrada</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1098" /> - <location filename="../ViewManager/ViewManager.py" line="2022" /> + <location filename="../ViewManager/ViewManager.py" line="2032" /> <source>Alt+Home</source> <translation>Alt+Home</translation> </message> @@ -95947,15 +95960,15 @@ <location filename="../QScintilla/MiniEditor.py" line="1105" /> <location filename="../QScintilla/ShellWindow.py" line="667" /> <location filename="../QScintilla/ShellWindow.py" line="666" /> - <location filename="../ViewManager/ViewManager.py" line="2030" /> - <location filename="../ViewManager/ViewManager.py" line="2029" /> + <location filename="../ViewManager/ViewManager.py" line="2040" /> + <location filename="../ViewManager/ViewManager.py" line="2039" /> <source>Move to end of document line</source> <translation>Mover al final de la línea de documento</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1114" /> <location filename="../QScintilla/ShellWindow.py" line="675" /> - <location filename="../ViewManager/ViewManager.py" line="2038" /> + <location filename="../ViewManager/ViewManager.py" line="2048" /> <source>Meta+E</source> <translation>Meta+E</translation> </message> @@ -95963,16 +95976,16 @@ <location filename="../QScintilla/MiniEditor.py" line="2126" /> <location filename="../QScintilla/MiniEditor.py" line="1118" /> <location filename="../QScintilla/ShellWindow.py" line="679" /> - <location filename="../ViewManager/ViewManager.py" line="3033" /> - <location filename="../ViewManager/ViewManager.py" line="2042" /> + <location filename="../ViewManager/ViewManager.py" line="3043" /> + <location filename="../ViewManager/ViewManager.py" line="2052" /> <source>End</source> <translation>End</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1126" /> <location filename="../QScintilla/MiniEditor.py" line="1125" /> - <location filename="../ViewManager/ViewManager.py" line="2050" /> - <location filename="../ViewManager/ViewManager.py" line="2049" /> + <location filename="../ViewManager/ViewManager.py" line="2060" /> + <location filename="../ViewManager/ViewManager.py" line="2059" /> <source>Scroll view down one line</source> <translation>Scroll hacia abajo una línea</translation> </message> @@ -95980,16 +95993,16 @@ <location filename="../QScintilla/MiniEditor.py" line="1230" /> <location filename="../QScintilla/MiniEditor.py" line="1127" /> <location filename="../QScintilla/ShellWindow.py" line="720" /> - <location filename="../ViewManager/ViewManager.py" line="2154" /> - <location filename="../ViewManager/ViewManager.py" line="2051" /> + <location filename="../ViewManager/ViewManager.py" line="2164" /> + <location filename="../ViewManager/ViewManager.py" line="2061" /> <source>Ctrl+Down</source> <translation>Ctrl+Down</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1138" /> <location filename="../QScintilla/MiniEditor.py" line="1137" /> - <location filename="../ViewManager/ViewManager.py" line="2062" /> - <location filename="../ViewManager/ViewManager.py" line="2061" /> + <location filename="../ViewManager/ViewManager.py" line="2072" /> + <location filename="../ViewManager/ViewManager.py" line="2071" /> <source>Scroll view up one line</source> <translation>Scroll hacia arriba una línea</translation> </message> @@ -95997,36 +96010,36 @@ <location filename="../QScintilla/MiniEditor.py" line="1210" /> <location filename="../QScintilla/MiniEditor.py" line="1139" /> <location filename="../QScintilla/ShellWindow.py" line="732" /> - <location filename="../ViewManager/ViewManager.py" line="2134" /> - <location filename="../ViewManager/ViewManager.py" line="2063" /> + <location filename="../ViewManager/ViewManager.py" line="2144" /> + <location filename="../ViewManager/ViewManager.py" line="2073" /> <source>Ctrl+Up</source> <translation>Ctrl+Up</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1150" /> <location filename="../QScintilla/MiniEditor.py" line="1149" /> - <location filename="../ViewManager/ViewManager.py" line="2074" /> - <location filename="../ViewManager/ViewManager.py" line="2073" /> + <location filename="../ViewManager/ViewManager.py" line="2084" /> + <location filename="../ViewManager/ViewManager.py" line="2083" /> <source>Move up one paragraph</source> <translation>Mover arriba un párrafo</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1151" /> - <location filename="../ViewManager/ViewManager.py" line="2075" /> + <location filename="../ViewManager/ViewManager.py" line="2085" /> <source>Alt+Up</source> <translation>Alt+Up</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1162" /> <location filename="../QScintilla/MiniEditor.py" line="1161" /> - <location filename="../ViewManager/ViewManager.py" line="2086" /> - <location filename="../ViewManager/ViewManager.py" line="2085" /> + <location filename="../ViewManager/ViewManager.py" line="2096" /> + <location filename="../ViewManager/ViewManager.py" line="2095" /> <source>Move down one paragraph</source> <translation>Mover abajo un párrafo</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1163" /> - <location filename="../ViewManager/ViewManager.py" line="2087" /> + <location filename="../ViewManager/ViewManager.py" line="2097" /> <source>Alt+Down</source> <translation>Alt+Down</translation> </message> @@ -96035,15 +96048,15 @@ <location filename="../QScintilla/MiniEditor.py" line="1173" /> <location filename="../QScintilla/ShellWindow.py" line="743" /> <location filename="../QScintilla/ShellWindow.py" line="742" /> - <location filename="../ViewManager/ViewManager.py" line="2098" /> - <location filename="../ViewManager/ViewManager.py" line="2097" /> + <location filename="../ViewManager/ViewManager.py" line="2108" /> + <location filename="../ViewManager/ViewManager.py" line="2107" /> <source>Move up one page</source> <translation>Mover arriba una página</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1175" /> <location filename="../QScintilla/ShellWindow.py" line="744" /> - <location filename="../ViewManager/ViewManager.py" line="2099" /> + <location filename="../ViewManager/ViewManager.py" line="2109" /> <source>PgUp</source> <translation>PgUp</translation> </message> @@ -96052,50 +96065,50 @@ <location filename="../QScintilla/MiniEditor.py" line="1185" /> <location filename="../QScintilla/ShellWindow.py" line="755" /> <location filename="../QScintilla/ShellWindow.py" line="754" /> - <location filename="../ViewManager/ViewManager.py" line="2110" /> - <location filename="../ViewManager/ViewManager.py" line="2109" /> + <location filename="../ViewManager/ViewManager.py" line="2120" /> + <location filename="../ViewManager/ViewManager.py" line="2119" /> <source>Move down one page</source> <translation>Mover abajo una línea</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1187" /> <location filename="../QScintilla/ShellWindow.py" line="756" /> - <location filename="../ViewManager/ViewManager.py" line="2111" /> + <location filename="../ViewManager/ViewManager.py" line="2121" /> <source>PgDown</source> <translation>PgDown</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1194" /> <location filename="../QScintilla/ShellWindow.py" line="763" /> - <location filename="../ViewManager/ViewManager.py" line="2118" /> + <location filename="../ViewManager/ViewManager.py" line="2128" /> <source>Meta+V</source> <translation>Meta+V</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1202" /> <location filename="../QScintilla/MiniEditor.py" line="1201" /> - <location filename="../ViewManager/ViewManager.py" line="2126" /> - <location filename="../ViewManager/ViewManager.py" line="2125" /> + <location filename="../ViewManager/ViewManager.py" line="2136" /> + <location filename="../ViewManager/ViewManager.py" line="2135" /> <source>Move to start of document</source> <translation>Mover al principio del documento</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1214" /> - <location filename="../ViewManager/ViewManager.py" line="2138" /> + <location filename="../ViewManager/ViewManager.py" line="2148" /> <source>Ctrl+Home</source> <translation>Ctrl+Home</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1222" /> <location filename="../QScintilla/MiniEditor.py" line="1221" /> - <location filename="../ViewManager/ViewManager.py" line="2146" /> - <location filename="../ViewManager/ViewManager.py" line="2145" /> + <location filename="../ViewManager/ViewManager.py" line="2156" /> + <location filename="../ViewManager/ViewManager.py" line="2155" /> <source>Move to end of document</source> <translation>Mover al final del documento</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1234" /> - <location filename="../ViewManager/ViewManager.py" line="2158" /> + <location filename="../ViewManager/ViewManager.py" line="2168" /> <source>Ctrl+End</source> <translation>Ctrl+End</translation> </message> @@ -96104,29 +96117,29 @@ <location filename="../QScintilla/MiniEditor.py" line="1241" /> <location filename="../QScintilla/ShellWindow.py" line="457" /> <location filename="../QScintilla/ShellWindow.py" line="456" /> - <location filename="../ViewManager/ViewManager.py" line="2166" /> - <location filename="../ViewManager/ViewManager.py" line="2165" /> + <location filename="../ViewManager/ViewManager.py" line="2176" /> + <location filename="../ViewManager/ViewManager.py" line="2175" /> <source>Indent one level</source> <translation>Indentar un nivel</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1243" /> <location filename="../QScintilla/ShellWindow.py" line="458" /> - <location filename="../ViewManager/ViewManager.py" line="2167" /> + <location filename="../ViewManager/ViewManager.py" line="2177" /> <source>Tab</source> <translation>Tab</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1254" /> <location filename="../QScintilla/MiniEditor.py" line="1253" /> - <location filename="../ViewManager/ViewManager.py" line="2178" /> - <location filename="../ViewManager/ViewManager.py" line="2177" /> + <location filename="../ViewManager/ViewManager.py" line="2188" /> + <location filename="../ViewManager/ViewManager.py" line="2187" /> <source>Unindent one level</source> <translation>Desindentar un nivel</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1255" /> - <location filename="../ViewManager/ViewManager.py" line="2179" /> + <location filename="../ViewManager/ViewManager.py" line="2189" /> <source>Shift+Tab</source> <translation>Shift+Tab</translation> </message> @@ -96135,22 +96148,22 @@ <location filename="../QScintilla/MiniEditor.py" line="1265" /> <location filename="../QScintilla/ShellWindow.py" line="785" /> <location filename="../QScintilla/ShellWindow.py" line="782" /> - <location filename="../ViewManager/ViewManager.py" line="2192" /> - <location filename="../ViewManager/ViewManager.py" line="2189" /> + <location filename="../ViewManager/ViewManager.py" line="2202" /> + <location filename="../ViewManager/ViewManager.py" line="2199" /> <source>Extend selection left one character</source> <translation>Extender selección un carácter a la izquierda</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1271" /> <location filename="../QScintilla/ShellWindow.py" line="788" /> - <location filename="../ViewManager/ViewManager.py" line="2195" /> + <location filename="../ViewManager/ViewManager.py" line="2205" /> <source>Shift+Left</source> <translation>Shift+Left</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1278" /> <location filename="../QScintilla/ShellWindow.py" line="795" /> - <location filename="../ViewManager/ViewManager.py" line="2202" /> + <location filename="../ViewManager/ViewManager.py" line="2212" /> <source>Meta+Shift+B</source> <translation>Meta+Shift+B</translation> </message> @@ -96159,70 +96172,70 @@ <location filename="../QScintilla/MiniEditor.py" line="1285" /> <location filename="../QScintilla/ShellWindow.py" line="805" /> <location filename="../QScintilla/ShellWindow.py" line="802" /> - <location filename="../ViewManager/ViewManager.py" line="2212" /> - <location filename="../ViewManager/ViewManager.py" line="2209" /> + <location filename="../ViewManager/ViewManager.py" line="2222" /> + <location filename="../ViewManager/ViewManager.py" line="2219" /> <source>Extend selection right one character</source> <translation>Extender selección un carácter a la derecha</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1291" /> <location filename="../QScintilla/ShellWindow.py" line="808" /> - <location filename="../ViewManager/ViewManager.py" line="2215" /> + <location filename="../ViewManager/ViewManager.py" line="2225" /> <source>Shift+Right</source> <translation>Shift+Right</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1298" /> <location filename="../QScintilla/ShellWindow.py" line="815" /> - <location filename="../ViewManager/ViewManager.py" line="2222" /> + <location filename="../ViewManager/ViewManager.py" line="2232" /> <source>Meta+Shift+F</source> <translation>Meta+Shift+F</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1306" /> <location filename="../QScintilla/MiniEditor.py" line="1305" /> - <location filename="../ViewManager/ViewManager.py" line="2230" /> - <location filename="../ViewManager/ViewManager.py" line="2229" /> + <location filename="../ViewManager/ViewManager.py" line="2240" /> + <location filename="../ViewManager/ViewManager.py" line="2239" /> <source>Extend selection up one line</source> <translation>Extender selección hacia arriba una línea</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1307" /> - <location filename="../ViewManager/ViewManager.py" line="2231" /> + <location filename="../ViewManager/ViewManager.py" line="2241" /> <source>Shift+Up</source> <translation>Shift+Up</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1314" /> - <location filename="../ViewManager/ViewManager.py" line="2238" /> + <location filename="../ViewManager/ViewManager.py" line="2248" /> <source>Meta+Shift+P</source> <translation>Meta+Shift+P</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1322" /> <location filename="../QScintilla/MiniEditor.py" line="1321" /> - <location filename="../ViewManager/ViewManager.py" line="2246" /> - <location filename="../ViewManager/ViewManager.py" line="2245" /> + <location filename="../ViewManager/ViewManager.py" line="2256" /> + <location filename="../ViewManager/ViewManager.py" line="2255" /> <source>Extend selection down one line</source> <translation>Extender selección hacia abajo una línea</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1323" /> - <location filename="../ViewManager/ViewManager.py" line="2247" /> + <location filename="../ViewManager/ViewManager.py" line="2257" /> <source>Shift+Down</source> <translation>Shift+Down</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1330" /> - <location filename="../ViewManager/ViewManager.py" line="2254" /> + <location filename="../ViewManager/ViewManager.py" line="2264" /> <source>Meta+Shift+N</source> <translation>Meta+Shift+N</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1340" /> <location filename="../QScintilla/MiniEditor.py" line="1337" /> - <location filename="../ViewManager/ViewManager.py" line="2264" /> - <location filename="../ViewManager/ViewManager.py" line="2261" /> + <location filename="../ViewManager/ViewManager.py" line="2274" /> + <location filename="../ViewManager/ViewManager.py" line="2271" /> <source>Extend selection left one word part</source> <translation>Extender selección a la izquierda una parte de palabra</translation> </message> @@ -96230,16 +96243,16 @@ <location filename="../QScintilla/MiniEditor.py" line="1391" /> <location filename="../QScintilla/MiniEditor.py" line="1351" /> <location filename="../QScintilla/ShellWindow.py" line="832" /> - <location filename="../ViewManager/ViewManager.py" line="2315" /> - <location filename="../ViewManager/ViewManager.py" line="2275" /> + <location filename="../ViewManager/ViewManager.py" line="2325" /> + <location filename="../ViewManager/ViewManager.py" line="2285" /> <source>Alt+Shift+Left</source> <translation>Alt+Shift+Left</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1362" /> <location filename="../QScintilla/MiniEditor.py" line="1359" /> - <location filename="../ViewManager/ViewManager.py" line="2286" /> - <location filename="../ViewManager/ViewManager.py" line="2283" /> + <location filename="../ViewManager/ViewManager.py" line="2296" /> + <location filename="../ViewManager/ViewManager.py" line="2293" /> <source>Extend selection right one word part</source> <translation>Extender selección a la derecha una parte de palabra</translation> </message> @@ -96248,9 +96261,9 @@ <location filename="../QScintilla/MiniEditor.py" line="1419" /> <location filename="../QScintilla/MiniEditor.py" line="1373" /> <location filename="../QScintilla/ShellWindow.py" line="860" /> - <location filename="../ViewManager/ViewManager.py" line="3093" /> - <location filename="../ViewManager/ViewManager.py" line="2343" /> - <location filename="../ViewManager/ViewManager.py" line="2297" /> + <location filename="../ViewManager/ViewManager.py" line="3103" /> + <location filename="../ViewManager/ViewManager.py" line="2353" /> + <location filename="../ViewManager/ViewManager.py" line="2307" /> <source>Alt+Shift+Right</source> <translation>Alt+Shift+Right</translation> </message> @@ -96259,8 +96272,8 @@ <location filename="../QScintilla/MiniEditor.py" line="1381" /> <location filename="../QScintilla/ShellWindow.py" line="823" /> <location filename="../QScintilla/ShellWindow.py" line="822" /> - <location filename="../ViewManager/ViewManager.py" line="2306" /> - <location filename="../ViewManager/ViewManager.py" line="2305" /> + <location filename="../ViewManager/ViewManager.py" line="2316" /> + <location filename="../ViewManager/ViewManager.py" line="2315" /> <source>Extend selection left one word</source> <translation>Extender selección a la izquierda una palabra</translation> </message> @@ -96268,8 +96281,8 @@ <location filename="../QScintilla/MiniEditor.py" line="2312" /> <location filename="../QScintilla/MiniEditor.py" line="1397" /> <location filename="../QScintilla/ShellWindow.py" line="838" /> - <location filename="../ViewManager/ViewManager.py" line="3219" /> - <location filename="../ViewManager/ViewManager.py" line="2321" /> + <location filename="../ViewManager/ViewManager.py" line="3229" /> + <location filename="../ViewManager/ViewManager.py" line="2331" /> <source>Ctrl+Shift+Left</source> <translation>Ctrl+Shift+Left</translation> </message> @@ -96278,8 +96291,8 @@ <location filename="../QScintilla/MiniEditor.py" line="1405" /> <location filename="../QScintilla/ShellWindow.py" line="849" /> <location filename="../QScintilla/ShellWindow.py" line="846" /> - <location filename="../ViewManager/ViewManager.py" line="2332" /> - <location filename="../ViewManager/ViewManager.py" line="2329" /> + <location filename="../ViewManager/ViewManager.py" line="2342" /> + <location filename="../ViewManager/ViewManager.py" line="2339" /> <source>Extend selection right one word</source> <translation>Extender selección a la derecha una palabra</translation> </message> @@ -96287,8 +96300,8 @@ <location filename="../QScintilla/MiniEditor.py" line="1873" /> <location filename="../QScintilla/MiniEditor.py" line="1425" /> <location filename="../QScintilla/ShellWindow.py" line="866" /> - <location filename="../ViewManager/ViewManager.py" line="2780" /> - <location filename="../ViewManager/ViewManager.py" line="2349" /> + <location filename="../ViewManager/ViewManager.py" line="2790" /> + <location filename="../ViewManager/ViewManager.py" line="2359" /> <source>Ctrl+Shift+Right</source> <translation>Ctrl+Shift+Right</translation> </message> @@ -96297,15 +96310,15 @@ <location filename="../QScintilla/MiniEditor.py" line="1433" /> <location filename="../QScintilla/ShellWindow.py" line="878" /> <location filename="../QScintilla/ShellWindow.py" line="874" /> - <location filename="../ViewManager/ViewManager.py" line="2361" /> - <location filename="../ViewManager/ViewManager.py" line="2357" /> + <location filename="../ViewManager/ViewManager.py" line="2371" /> + <location filename="../ViewManager/ViewManager.py" line="2367" /> <source>Extend selection to first visible character in document line</source> <translation>Extender selección al primer carácter visible en la línea de documento</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1448" /> <location filename="../QScintilla/ShellWindow.py" line="889" /> - <location filename="../ViewManager/ViewManager.py" line="2372" /> + <location filename="../ViewManager/ViewManager.py" line="2382" /> <source>Shift+Home</source> <translation>Shift+Home</translation> </message> @@ -96314,124 +96327,124 @@ <location filename="../QScintilla/MiniEditor.py" line="1455" /> <location filename="../QScintilla/ShellWindow.py" line="899" /> <location filename="../QScintilla/ShellWindow.py" line="896" /> - <location filename="../ViewManager/ViewManager.py" line="2382" /> - <location filename="../ViewManager/ViewManager.py" line="2379" /> + <location filename="../ViewManager/ViewManager.py" line="2392" /> + <location filename="../ViewManager/ViewManager.py" line="2389" /> <source>Extend selection to end of document line</source> <translation>Extender selección hasta el final de la línea de documento</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1468" /> <location filename="../QScintilla/ShellWindow.py" line="909" /> - <location filename="../ViewManager/ViewManager.py" line="2392" /> + <location filename="../ViewManager/ViewManager.py" line="2402" /> <source>Meta+Shift+E</source> <translation>Meta+Shift+E</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1472" /> <location filename="../QScintilla/ShellWindow.py" line="913" /> - <location filename="../ViewManager/ViewManager.py" line="2396" /> + <location filename="../ViewManager/ViewManager.py" line="2406" /> <source>Shift+End</source> <translation>Shift+End</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1482" /> <location filename="../QScintilla/MiniEditor.py" line="1479" /> - <location filename="../ViewManager/ViewManager.py" line="2406" /> - <location filename="../ViewManager/ViewManager.py" line="2403" /> + <location filename="../ViewManager/ViewManager.py" line="2416" /> + <location filename="../ViewManager/ViewManager.py" line="2413" /> <source>Extend selection up one paragraph</source> <translation>Extender selección hacia arriba un párrafo</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1485" /> - <location filename="../ViewManager/ViewManager.py" line="2409" /> + <location filename="../ViewManager/ViewManager.py" line="2419" /> <source>Alt+Shift+Up</source> <translation>Alt+Shift+Up</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1498" /> <location filename="../QScintilla/MiniEditor.py" line="1495" /> - <location filename="../ViewManager/ViewManager.py" line="2422" /> - <location filename="../ViewManager/ViewManager.py" line="2419" /> + <location filename="../ViewManager/ViewManager.py" line="2432" /> + <location filename="../ViewManager/ViewManager.py" line="2429" /> <source>Extend selection down one paragraph</source> <translation>Extender selección hacia abajo un párrafo</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1501" /> - <location filename="../ViewManager/ViewManager.py" line="2425" /> + <location filename="../ViewManager/ViewManager.py" line="2435" /> <source>Alt+Shift+Down</source> <translation>Alt+Shift+Down</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1512" /> <location filename="../QScintilla/MiniEditor.py" line="1511" /> - <location filename="../ViewManager/ViewManager.py" line="2436" /> - <location filename="../ViewManager/ViewManager.py" line="2435" /> + <location filename="../ViewManager/ViewManager.py" line="2446" /> + <location filename="../ViewManager/ViewManager.py" line="2445" /> <source>Extend selection up one page</source> <translation>Extender selección arriba una página</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1513" /> - <location filename="../ViewManager/ViewManager.py" line="2437" /> + <location filename="../ViewManager/ViewManager.py" line="2447" /> <source>Shift+PgUp</source> <translation>Shift+PgUp</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1524" /> <location filename="../QScintilla/MiniEditor.py" line="1523" /> - <location filename="../ViewManager/ViewManager.py" line="2448" /> - <location filename="../ViewManager/ViewManager.py" line="2447" /> + <location filename="../ViewManager/ViewManager.py" line="2458" /> + <location filename="../ViewManager/ViewManager.py" line="2457" /> <source>Extend selection down one page</source> <translation>Extender selección hacia abajo una línea</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1525" /> - <location filename="../ViewManager/ViewManager.py" line="2449" /> + <location filename="../ViewManager/ViewManager.py" line="2459" /> <source>Shift+PgDown</source> <translation>Shift+PgDown</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1532" /> - <location filename="../ViewManager/ViewManager.py" line="2456" /> + <location filename="../ViewManager/ViewManager.py" line="2466" /> <source>Meta+Shift+V</source> <translation>Meta+Shift+V</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1542" /> <location filename="../QScintilla/MiniEditor.py" line="1539" /> - <location filename="../ViewManager/ViewManager.py" line="2466" /> - <location filename="../ViewManager/ViewManager.py" line="2463" /> + <location filename="../ViewManager/ViewManager.py" line="2476" /> + <location filename="../ViewManager/ViewManager.py" line="2473" /> <source>Extend selection to start of document</source> <translation>Extender selección al principio del documento</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1552" /> - <location filename="../ViewManager/ViewManager.py" line="2476" /> + <location filename="../ViewManager/ViewManager.py" line="2486" /> <source>Ctrl+Shift+Up</source> <translation>Ctrl+Shift+Up</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1557" /> - <location filename="../ViewManager/ViewManager.py" line="2481" /> + <location filename="../ViewManager/ViewManager.py" line="2491" /> <source>Ctrl+Shift+Home</source> <translation>Ctrl+Shift+Home</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1568" /> <location filename="../QScintilla/MiniEditor.py" line="1565" /> - <location filename="../ViewManager/ViewManager.py" line="2492" /> - <location filename="../ViewManager/ViewManager.py" line="2489" /> + <location filename="../ViewManager/ViewManager.py" line="2502" /> + <location filename="../ViewManager/ViewManager.py" line="2499" /> <source>Extend selection to end of document</source> <translation>Extender selección al final del documento</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1579" /> - <location filename="../ViewManager/ViewManager.py" line="2503" /> + <location filename="../ViewManager/ViewManager.py" line="2513" /> <source>Ctrl+Shift+Down</source> <translation>Ctrl+Shift+Down</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1585" /> - <location filename="../ViewManager/ViewManager.py" line="2509" /> + <location filename="../ViewManager/ViewManager.py" line="2519" /> <source>Ctrl+Shift+End</source> <translation>Ctrl+Shift+End</translation> </message> @@ -96440,37 +96453,37 @@ <location filename="../QScintilla/MiniEditor.py" line="1593" /> <location filename="../QScintilla/ShellWindow.py" line="481" /> <location filename="../QScintilla/ShellWindow.py" line="480" /> - <location filename="../ViewManager/ViewManager.py" line="2518" /> - <location filename="../ViewManager/ViewManager.py" line="2517" /> + <location filename="../ViewManager/ViewManager.py" line="2528" /> + <location filename="../ViewManager/ViewManager.py" line="2527" /> <source>Delete previous character</source> <translation>Borrar carácter anterior</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1595" /> <location filename="../QScintilla/ShellWindow.py" line="482" /> - <location filename="../ViewManager/ViewManager.py" line="2519" /> + <location filename="../ViewManager/ViewManager.py" line="2529" /> <source>Backspace</source> <translation>Backspace</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1602" /> <location filename="../QScintilla/ShellWindow.py" line="489" /> - <location filename="../ViewManager/ViewManager.py" line="2526" /> + <location filename="../ViewManager/ViewManager.py" line="2536" /> <source>Meta+H</source> <translation>Meta+H</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1607" /> <location filename="../QScintilla/ShellWindow.py" line="494" /> - <location filename="../ViewManager/ViewManager.py" line="2531" /> + <location filename="../ViewManager/ViewManager.py" line="2541" /> <source>Shift+Backspace</source> <translation>Shift+Backspace</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1618" /> <location filename="../QScintilla/MiniEditor.py" line="1615" /> - <location filename="../ViewManager/ViewManager.py" line="2542" /> - <location filename="../ViewManager/ViewManager.py" line="2539" /> + <location filename="../ViewManager/ViewManager.py" line="2552" /> + <location filename="../ViewManager/ViewManager.py" line="2549" /> <source>Delete previous character if not at start of line</source> <translation>Borrar carácter anterior si no se está al principio de la línea</translation> </message> @@ -96479,22 +96492,22 @@ <location filename="../QScintilla/MiniEditor.py" line="1631" /> <location filename="../QScintilla/ShellWindow.py" line="503" /> <location filename="../QScintilla/ShellWindow.py" line="502" /> - <location filename="../ViewManager/ViewManager.py" line="2556" /> - <location filename="../ViewManager/ViewManager.py" line="2555" /> + <location filename="../ViewManager/ViewManager.py" line="2566" /> + <location filename="../ViewManager/ViewManager.py" line="2565" /> <source>Delete current character</source> <translation>Borrar carácter actual</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1633" /> <location filename="../QScintilla/ShellWindow.py" line="504" /> - <location filename="../ViewManager/ViewManager.py" line="2557" /> + <location filename="../ViewManager/ViewManager.py" line="2567" /> <source>Del</source> <translation>Del</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1640" /> <location filename="../QScintilla/ShellWindow.py" line="511" /> - <location filename="../ViewManager/ViewManager.py" line="2564" /> + <location filename="../ViewManager/ViewManager.py" line="2574" /> <source>Meta+D</source> <translation>Meta+D</translation> </message> @@ -96503,15 +96516,15 @@ <location filename="../QScintilla/MiniEditor.py" line="1647" /> <location filename="../QScintilla/ShellWindow.py" line="519" /> <location filename="../QScintilla/ShellWindow.py" line="518" /> - <location filename="../ViewManager/ViewManager.py" line="2572" /> - <location filename="../ViewManager/ViewManager.py" line="2571" /> + <location filename="../ViewManager/ViewManager.py" line="2582" /> + <location filename="../ViewManager/ViewManager.py" line="2581" /> <source>Delete word to left</source> <translation>Borrar palabra a la izquierda</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1649" /> <location filename="../QScintilla/ShellWindow.py" line="520" /> - <location filename="../ViewManager/ViewManager.py" line="2573" /> + <location filename="../ViewManager/ViewManager.py" line="2583" /> <source>Ctrl+Backspace</source> <translation>Ctrl+Backspace</translation> </message> @@ -96520,15 +96533,15 @@ <location filename="../QScintilla/MiniEditor.py" line="1659" /> <location filename="../QScintilla/ShellWindow.py" line="531" /> <location filename="../QScintilla/ShellWindow.py" line="530" /> - <location filename="../ViewManager/ViewManager.py" line="2584" /> - <location filename="../ViewManager/ViewManager.py" line="2583" /> + <location filename="../ViewManager/ViewManager.py" line="2594" /> + <location filename="../ViewManager/ViewManager.py" line="2593" /> <source>Delete word to right</source> <translation>Borrar palabra a la derecha</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1661" /> <location filename="../QScintilla/ShellWindow.py" line="532" /> - <location filename="../ViewManager/ViewManager.py" line="2585" /> + <location filename="../ViewManager/ViewManager.py" line="2595" /> <source>Ctrl+Del</source> <translation>Ctrl+Del</translation> </message> @@ -96537,15 +96550,15 @@ <location filename="../QScintilla/MiniEditor.py" line="1671" /> <location filename="../QScintilla/ShellWindow.py" line="543" /> <location filename="../QScintilla/ShellWindow.py" line="542" /> - <location filename="../ViewManager/ViewManager.py" line="2596" /> - <location filename="../ViewManager/ViewManager.py" line="2595" /> + <location filename="../ViewManager/ViewManager.py" line="2606" /> + <location filename="../ViewManager/ViewManager.py" line="2605" /> <source>Delete line to left</source> <translation>Borrar línea a la izquierda</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1674" /> <location filename="../QScintilla/ShellWindow.py" line="545" /> - <location filename="../ViewManager/ViewManager.py" line="2598" /> + <location filename="../ViewManager/ViewManager.py" line="2608" /> <source>Ctrl+Shift+Backspace</source> <translation>Ctrl+Shift+Backspace</translation> </message> @@ -96554,22 +96567,22 @@ <location filename="../QScintilla/MiniEditor.py" line="1685" /> <location filename="../QScintilla/ShellWindow.py" line="557" /> <location filename="../QScintilla/ShellWindow.py" line="556" /> - <location filename="../ViewManager/ViewManager.py" line="2610" /> - <location filename="../ViewManager/ViewManager.py" line="2609" /> + <location filename="../ViewManager/ViewManager.py" line="2620" /> + <location filename="../ViewManager/ViewManager.py" line="2619" /> <source>Delete line to right</source> <translation>Borrar línea a la derecha</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1694" /> <location filename="../QScintilla/ShellWindow.py" line="565" /> - <location filename="../ViewManager/ViewManager.py" line="2618" /> + <location filename="../ViewManager/ViewManager.py" line="2628" /> <source>Meta+K</source> <translation>Meta+K</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1699" /> <location filename="../QScintilla/ShellWindow.py" line="570" /> - <location filename="../ViewManager/ViewManager.py" line="2623" /> + <location filename="../ViewManager/ViewManager.py" line="2633" /> <source>Ctrl+Shift+Del</source> <translation>Ctrl+Shift+Del</translation> </message> @@ -96578,38 +96591,38 @@ <location filename="../QScintilla/MiniEditor.py" line="1707" /> <location filename="../QScintilla/ShellWindow.py" line="469" /> <location filename="../QScintilla/ShellWindow.py" line="468" /> - <location filename="../ViewManager/ViewManager.py" line="2632" /> - <location filename="../ViewManager/ViewManager.py" line="2631" /> + <location filename="../ViewManager/ViewManager.py" line="2642" /> + <location filename="../ViewManager/ViewManager.py" line="2641" /> <source>Insert new line</source> <translation>Insertar nueva línea</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1709" /> <location filename="../QScintilla/ShellWindow.py" line="470" /> - <location filename="../ViewManager/ViewManager.py" line="2633" /> + <location filename="../ViewManager/ViewManager.py" line="2643" /> <source>Return</source> <translation>Return</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1710" /> <location filename="../QScintilla/ShellWindow.py" line="471" /> - <location filename="../ViewManager/ViewManager.py" line="2634" /> + <location filename="../ViewManager/ViewManager.py" line="2644" /> <source>Enter</source> <translation>Enter</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="2646" /> - <location filename="../ViewManager/ViewManager.py" line="2643" /> + <location filename="../ViewManager/ViewManager.py" line="2656" /> + <location filename="../ViewManager/ViewManager.py" line="2653" /> <source>Insert new line below current line</source> <translation>Insertar nueva línea debajo de la línea actual</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="2649" /> + <location filename="../ViewManager/ViewManager.py" line="2659" /> <source>Shift+Return</source> <translation>Shift+Return</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="2650" /> + <location filename="../ViewManager/ViewManager.py" line="2660" /> <source>Shift+Enter</source> <translation>Shift+Entrar</translation> </message> @@ -96618,129 +96631,129 @@ <location filename="../QScintilla/MiniEditor.py" line="1719" /> <location filename="../QScintilla/ShellWindow.py" line="445" /> <location filename="../QScintilla/ShellWindow.py" line="444" /> - <location filename="../ViewManager/ViewManager.py" line="2659" /> - <location filename="../ViewManager/ViewManager.py" line="2658" /> + <location filename="../ViewManager/ViewManager.py" line="2669" /> + <location filename="../ViewManager/ViewManager.py" line="2668" /> <source>Delete current line</source> <translation>Borrar línea actual</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1721" /> <location filename="../QScintilla/ShellWindow.py" line="446" /> - <location filename="../ViewManager/ViewManager.py" line="2660" /> + <location filename="../ViewManager/ViewManager.py" line="2670" /> <source>Ctrl+Shift+L</source> <translation>Ctrl+Shift+L</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1732" /> <location filename="../QScintilla/MiniEditor.py" line="1731" /> - <location filename="../ViewManager/ViewManager.py" line="2671" /> - <location filename="../ViewManager/ViewManager.py" line="2670" /> + <location filename="../ViewManager/ViewManager.py" line="2681" /> + <location filename="../ViewManager/ViewManager.py" line="2680" /> <source>Duplicate current line</source> <translation>Duplicar línea actual</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1733" /> - <location filename="../ViewManager/ViewManager.py" line="2672" /> + <location filename="../ViewManager/ViewManager.py" line="2682" /> <source>Ctrl+D</source> <translation>Ctrl+D</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1746" /> <location filename="../QScintilla/MiniEditor.py" line="1743" /> - <location filename="../ViewManager/ViewManager.py" line="2685" /> - <location filename="../ViewManager/ViewManager.py" line="2682" /> + <location filename="../ViewManager/ViewManager.py" line="2695" /> + <location filename="../ViewManager/ViewManager.py" line="2692" /> <source>Swap current and previous lines</source> <translation>Intercambiar línea actual con la anterior</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1749" /> - <location filename="../ViewManager/ViewManager.py" line="2688" /> + <location filename="../ViewManager/ViewManager.py" line="2698" /> <source>Ctrl+T</source> <translation>Ctrl+T</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1760" /> <location filename="../QScintilla/MiniEditor.py" line="1759" /> - <location filename="../ViewManager/ViewManager.py" line="2699" /> - <location filename="../ViewManager/ViewManager.py" line="2698" /> + <location filename="../ViewManager/ViewManager.py" line="2709" /> + <location filename="../ViewManager/ViewManager.py" line="2708" /> <source>Reverse selected lines</source> <translation>Revertir líneas seleccionadas</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1761" /> - <location filename="../ViewManager/ViewManager.py" line="2700" /> + <location filename="../ViewManager/ViewManager.py" line="2710" /> <source>Meta+Alt+R</source> <translation>Meta+Alt+R</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1772" /> <location filename="../QScintilla/MiniEditor.py" line="1771" /> - <location filename="../ViewManager/ViewManager.py" line="2711" /> - <location filename="../ViewManager/ViewManager.py" line="2710" /> + <location filename="../ViewManager/ViewManager.py" line="2721" /> + <location filename="../ViewManager/ViewManager.py" line="2720" /> <source>Cut current line</source> <translation>Cortar línea actual</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1773" /> - <location filename="../ViewManager/ViewManager.py" line="2712" /> + <location filename="../ViewManager/ViewManager.py" line="2722" /> <source>Alt+Shift+L</source> <translation>Alt+Shift+L</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1784" /> <location filename="../QScintilla/MiniEditor.py" line="1783" /> - <location filename="../ViewManager/ViewManager.py" line="2723" /> - <location filename="../ViewManager/ViewManager.py" line="2722" /> + <location filename="../ViewManager/ViewManager.py" line="2733" /> + <location filename="../ViewManager/ViewManager.py" line="2732" /> <source>Copy current line</source> <translation>Copiar línea actual</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1785" /> - <location filename="../ViewManager/ViewManager.py" line="2724" /> + <location filename="../ViewManager/ViewManager.py" line="2734" /> <source>Ctrl+Shift+T</source> <translation>Ctrl+Shift+T</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1796" /> <location filename="../QScintilla/MiniEditor.py" line="1795" /> - <location filename="../ViewManager/ViewManager.py" line="2735" /> - <location filename="../ViewManager/ViewManager.py" line="2734" /> + <location filename="../ViewManager/ViewManager.py" line="2745" /> + <location filename="../ViewManager/ViewManager.py" line="2744" /> <source>Toggle insert/overtype</source> <translation>Alternar insertar/sobreescribir</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1797" /> - <location filename="../ViewManager/ViewManager.py" line="2736" /> + <location filename="../ViewManager/ViewManager.py" line="2746" /> <source>Ins</source> <translation>Ins</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1840" /> <location filename="../QScintilla/MiniEditor.py" line="1839" /> - <location filename="../ViewManager/ViewManager.py" line="2747" /> - <location filename="../ViewManager/ViewManager.py" line="2746" /> + <location filename="../ViewManager/ViewManager.py" line="2757" /> + <location filename="../ViewManager/ViewManager.py" line="2756" /> <source>Move to end of display line</source> <translation>Mover al final de la línea mostrada</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1852" /> - <location filename="../ViewManager/ViewManager.py" line="2759" /> + <location filename="../ViewManager/ViewManager.py" line="2769" /> <source>Alt+End</source> <translation>Alt+End</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1862" /> <location filename="../QScintilla/MiniEditor.py" line="1859" /> - <location filename="../ViewManager/ViewManager.py" line="2769" /> - <location filename="../ViewManager/ViewManager.py" line="2766" /> + <location filename="../ViewManager/ViewManager.py" line="2779" /> + <location filename="../ViewManager/ViewManager.py" line="2776" /> <source>Extend selection to end of display line</source> <translation>Extender selección hasta el final de la línea mostrada</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1882" /> <location filename="../QScintilla/MiniEditor.py" line="1881" /> - <location filename="../ViewManager/ViewManager.py" line="2789" /> - <location filename="../ViewManager/ViewManager.py" line="2788" /> + <location filename="../ViewManager/ViewManager.py" line="2799" /> + <location filename="../ViewManager/ViewManager.py" line="2798" /> <source>Formfeed</source> <translation>Formfeed</translation> </message> @@ -96749,163 +96762,163 @@ <location filename="../QScintilla/MiniEditor.py" line="1893" /> <location filename="../QScintilla/ShellWindow.py" line="771" /> <location filename="../QScintilla/ShellWindow.py" line="770" /> - <location filename="../ViewManager/ViewManager.py" line="2801" /> - <location filename="../ViewManager/ViewManager.py" line="2800" /> + <location filename="../ViewManager/ViewManager.py" line="2811" /> + <location filename="../ViewManager/ViewManager.py" line="2810" /> <source>Escape</source> <translation>Escape</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1895" /> <location filename="../QScintilla/ShellWindow.py" line="772" /> - <location filename="../ViewManager/ViewManager.py" line="2802" /> + <location filename="../ViewManager/ViewManager.py" line="2812" /> <source>Esc</source> <translation>Esc</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1908" /> <location filename="../QScintilla/MiniEditor.py" line="1905" /> - <location filename="../ViewManager/ViewManager.py" line="2815" /> - <location filename="../ViewManager/ViewManager.py" line="2812" /> + <location filename="../ViewManager/ViewManager.py" line="2825" /> + <location filename="../ViewManager/ViewManager.py" line="2822" /> <source>Extend rectangular selection down one line</source> <translation>Extender selección rectangular hacia abajo una línea</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1911" /> - <location filename="../ViewManager/ViewManager.py" line="2818" /> + <location filename="../ViewManager/ViewManager.py" line="2828" /> <source>Alt+Ctrl+Down</source> <translation>Alt+Ctrl+Down</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1919" /> - <location filename="../ViewManager/ViewManager.py" line="2826" /> + <location filename="../ViewManager/ViewManager.py" line="2836" /> <source>Meta+Alt+Shift+N</source> <translation>Meta+Alt+Shift+N</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1930" /> <location filename="../QScintilla/MiniEditor.py" line="1927" /> - <location filename="../ViewManager/ViewManager.py" line="2837" /> - <location filename="../ViewManager/ViewManager.py" line="2834" /> + <location filename="../ViewManager/ViewManager.py" line="2847" /> + <location filename="../ViewManager/ViewManager.py" line="2844" /> <source>Extend rectangular selection up one line</source> <translation>Extender selección rectangular hacia arriba una línea</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1933" /> - <location filename="../ViewManager/ViewManager.py" line="2840" /> + <location filename="../ViewManager/ViewManager.py" line="2850" /> <source>Alt+Ctrl+Up</source> <translation>Alt+Ctrl+Up</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1941" /> - <location filename="../ViewManager/ViewManager.py" line="2848" /> + <location filename="../ViewManager/ViewManager.py" line="2858" /> <source>Meta+Alt+Shift+P</source> <translation>Meta+Alt+Shift+P</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1952" /> <location filename="../QScintilla/MiniEditor.py" line="1949" /> - <location filename="../ViewManager/ViewManager.py" line="2859" /> - <location filename="../ViewManager/ViewManager.py" line="2856" /> + <location filename="../ViewManager/ViewManager.py" line="2869" /> + <location filename="../ViewManager/ViewManager.py" line="2866" /> <source>Extend rectangular selection left one character</source> <translation>Extender selección rectangular a la izquierda un carácter</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1955" /> - <location filename="../ViewManager/ViewManager.py" line="2862" /> + <location filename="../ViewManager/ViewManager.py" line="2872" /> <source>Alt+Ctrl+Left</source> <translation>Alt+Ctrl+Left</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1963" /> - <location filename="../ViewManager/ViewManager.py" line="2870" /> + <location filename="../ViewManager/ViewManager.py" line="2880" /> <source>Meta+Alt+Shift+B</source> <translation>Meta+Alt+Shift+B</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1974" /> <location filename="../QScintilla/MiniEditor.py" line="1971" /> - <location filename="../ViewManager/ViewManager.py" line="2881" /> - <location filename="../ViewManager/ViewManager.py" line="2878" /> + <location filename="../ViewManager/ViewManager.py" line="2891" /> + <location filename="../ViewManager/ViewManager.py" line="2888" /> <source>Extend rectangular selection right one character</source> <translation>Extender selección rectangular a la derecha un carácter</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1977" /> - <location filename="../ViewManager/ViewManager.py" line="2884" /> + <location filename="../ViewManager/ViewManager.py" line="2894" /> <source>Alt+Ctrl+Right</source> <translation>Alt+Ctrl+Right</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1985" /> - <location filename="../ViewManager/ViewManager.py" line="2892" /> + <location filename="../ViewManager/ViewManager.py" line="2902" /> <source>Meta+Alt+Shift+F</source> <translation>Meta+Alt+Shift+F</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1998" /> <location filename="../QScintilla/MiniEditor.py" line="1993" /> - <location filename="../ViewManager/ViewManager.py" line="2905" /> - <location filename="../ViewManager/ViewManager.py" line="2900" /> + <location filename="../ViewManager/ViewManager.py" line="2915" /> + <location filename="../ViewManager/ViewManager.py" line="2910" /> <source>Extend rectangular selection to first visible character in document line</source> <translation>Extender selección rectangular al primer carácter visible en la línea de documento</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2011" /> - <location filename="../ViewManager/ViewManager.py" line="2918" /> + <location filename="../ViewManager/ViewManager.py" line="2928" /> <source>Alt+Shift+Home</source> <translation>Alt+Shift+Home</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2022" /> <location filename="../QScintilla/MiniEditor.py" line="2019" /> - <location filename="../ViewManager/ViewManager.py" line="2929" /> - <location filename="../ViewManager/ViewManager.py" line="2926" /> + <location filename="../ViewManager/ViewManager.py" line="2939" /> + <location filename="../ViewManager/ViewManager.py" line="2936" /> <source>Extend rectangular selection to end of document line</source> <translation>Extender selección rectangular hasta el final de la línea de documento</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2033" /> - <location filename="../ViewManager/ViewManager.py" line="2940" /> + <location filename="../ViewManager/ViewManager.py" line="2950" /> <source>Meta+Alt+Shift+E</source> <translation>Meta+Alt+Shift+E</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2038" /> - <location filename="../ViewManager/ViewManager.py" line="2945" /> + <location filename="../ViewManager/ViewManager.py" line="2955" /> <source>Alt+Shift+End</source> <translation>Alt+Shift+End</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2048" /> <location filename="../QScintilla/MiniEditor.py" line="2045" /> - <location filename="../ViewManager/ViewManager.py" line="2955" /> - <location filename="../ViewManager/ViewManager.py" line="2952" /> + <location filename="../ViewManager/ViewManager.py" line="2965" /> + <location filename="../ViewManager/ViewManager.py" line="2962" /> <source>Extend rectangular selection up one page</source> <translation>Extender selección rectangular hacia arriba una página</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2051" /> - <location filename="../ViewManager/ViewManager.py" line="2958" /> + <location filename="../ViewManager/ViewManager.py" line="2968" /> <source>Alt+Shift+PgUp</source> <translation>Alt+Shift+PgUp</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2064" /> <location filename="../QScintilla/MiniEditor.py" line="2061" /> - <location filename="../ViewManager/ViewManager.py" line="2971" /> - <location filename="../ViewManager/ViewManager.py" line="2968" /> + <location filename="../ViewManager/ViewManager.py" line="2981" /> + <location filename="../ViewManager/ViewManager.py" line="2978" /> <source>Extend rectangular selection down one page</source> <translation>Extender selección rectangular hacia abajo una página</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2067" /> - <location filename="../ViewManager/ViewManager.py" line="2974" /> + <location filename="../ViewManager/ViewManager.py" line="2984" /> <source>Alt+Shift+PgDown</source> <translation>Alt+Shift+PgDown</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2075" /> - <location filename="../ViewManager/ViewManager.py" line="2982" /> + <location filename="../ViewManager/ViewManager.py" line="2992" /> <source>Meta+Alt+Shift+V</source> <translation>Meta+Alt+Shift+V</translation> </message> @@ -96914,299 +96927,299 @@ <location filename="../QScintilla/MiniEditor.py" line="2549" /> <location filename="../QScintilla/MiniEditor.py" line="2084" /> <location filename="../QScintilla/MiniEditor.py" line="2083" /> - <location filename="../ViewManager/ViewManager.py" line="2991" /> - <location filename="../ViewManager/ViewManager.py" line="2990" /> + <location filename="../ViewManager/ViewManager.py" line="3001" /> + <location filename="../ViewManager/ViewManager.py" line="3000" /> <source>Duplicate current selection</source> <translation>Duplicar selección actual</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2551" /> <location filename="../QScintilla/MiniEditor.py" line="2085" /> - <location filename="../ViewManager/ViewManager.py" line="2992" /> + <location filename="../ViewManager/ViewManager.py" line="3002" /> <source>Ctrl+Shift+D</source> <translation>Ctrl+Shift+D</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2099" /> <location filename="../QScintilla/MiniEditor.py" line="2096" /> - <location filename="../ViewManager/ViewManager.py" line="3006" /> - <location filename="../ViewManager/ViewManager.py" line="3003" /> + <location filename="../ViewManager/ViewManager.py" line="3016" /> + <location filename="../ViewManager/ViewManager.py" line="3013" /> <source>Scroll to start of document</source> <translation>Desplazamiento hasta el principio del documento</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2118" /> <location filename="../QScintilla/MiniEditor.py" line="2117" /> - <location filename="../ViewManager/ViewManager.py" line="3025" /> - <location filename="../ViewManager/ViewManager.py" line="3024" /> + <location filename="../ViewManager/ViewManager.py" line="3035" /> + <location filename="../ViewManager/ViewManager.py" line="3034" /> <source>Scroll to end of document</source> <translation>Desplazamiento hasta el final del documento</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2137" /> <location filename="../QScintilla/MiniEditor.py" line="2134" /> - <location filename="../ViewManager/ViewManager.py" line="3044" /> - <location filename="../ViewManager/ViewManager.py" line="3041" /> + <location filename="../ViewManager/ViewManager.py" line="3054" /> + <location filename="../ViewManager/ViewManager.py" line="3051" /> <source>Scroll vertically to center current line</source> <translation>Desplazamiento vertical para centrar la línea actual</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2147" /> - <location filename="../ViewManager/ViewManager.py" line="3054" /> + <location filename="../ViewManager/ViewManager.py" line="3064" /> <source>Meta+L</source> <translation>Meta+L</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2156" /> <location filename="../QScintilla/MiniEditor.py" line="2155" /> - <location filename="../ViewManager/ViewManager.py" line="3063" /> - <location filename="../ViewManager/ViewManager.py" line="3062" /> + <location filename="../ViewManager/ViewManager.py" line="3073" /> + <location filename="../ViewManager/ViewManager.py" line="3072" /> <source>Move to end of next word</source> <translation>Mover al final de la palabra siguiente</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2175" /> <location filename="../QScintilla/MiniEditor.py" line="2172" /> - <location filename="../ViewManager/ViewManager.py" line="3082" /> - <location filename="../ViewManager/ViewManager.py" line="3079" /> + <location filename="../ViewManager/ViewManager.py" line="3092" /> + <location filename="../ViewManager/ViewManager.py" line="3089" /> <source>Extend selection to end of next word</source> <translation>Extender selección al final de la siguiente palabra</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2198" /> <location filename="../QScintilla/MiniEditor.py" line="2195" /> - <location filename="../ViewManager/ViewManager.py" line="3105" /> - <location filename="../ViewManager/ViewManager.py" line="3102" /> + <location filename="../ViewManager/ViewManager.py" line="3115" /> + <location filename="../ViewManager/ViewManager.py" line="3112" /> <source>Move to end of previous word</source> <translation>Mover al final de la palabra anterior</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2215" /> <location filename="../QScintilla/MiniEditor.py" line="2212" /> - <location filename="../ViewManager/ViewManager.py" line="3122" /> - <location filename="../ViewManager/ViewManager.py" line="3119" /> + <location filename="../ViewManager/ViewManager.py" line="3132" /> + <location filename="../ViewManager/ViewManager.py" line="3129" /> <source>Extend selection to end of previous word</source> <translation>Extender selección al final de la palabra anterior</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2232" /> <location filename="../QScintilla/MiniEditor.py" line="2229" /> - <location filename="../ViewManager/ViewManager.py" line="3139" /> - <location filename="../ViewManager/ViewManager.py" line="3136" /> + <location filename="../ViewManager/ViewManager.py" line="3149" /> + <location filename="../ViewManager/ViewManager.py" line="3146" /> <source>Move to start of document line</source> <translation>Mover al principio de la línea de documento</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2242" /> - <location filename="../ViewManager/ViewManager.py" line="3149" /> + <location filename="../ViewManager/ViewManager.py" line="3159" /> <source>Meta+A</source> <translation>Meta+A</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2253" /> <location filename="../QScintilla/MiniEditor.py" line="2250" /> - <location filename="../ViewManager/ViewManager.py" line="3160" /> - <location filename="../ViewManager/ViewManager.py" line="3157" /> + <location filename="../ViewManager/ViewManager.py" line="3170" /> + <location filename="../ViewManager/ViewManager.py" line="3167" /> <source>Extend selection to start of document line</source> <translation>Extender selección hasta el inicio de la línea documento</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2264" /> - <location filename="../ViewManager/ViewManager.py" line="3171" /> + <location filename="../ViewManager/ViewManager.py" line="3181" /> <source>Meta+Shift+A</source> <translation>/media/110106_1117</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2277" /> <location filename="../QScintilla/MiniEditor.py" line="2273" /> - <location filename="../ViewManager/ViewManager.py" line="3184" /> - <location filename="../ViewManager/ViewManager.py" line="3180" /> + <location filename="../ViewManager/ViewManager.py" line="3194" /> + <location filename="../ViewManager/ViewManager.py" line="3190" /> <source>Extend rectangular selection to start of document line</source> <translation>Extender selección rectangular hasta el principio de la línea de documento</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2289" /> - <location filename="../ViewManager/ViewManager.py" line="3196" /> + <location filename="../ViewManager/ViewManager.py" line="3206" /> <source>Meta+Alt+Shift+A</source> <translation>Meta+Alt+Shift+A</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2301" /> <location filename="../QScintilla/MiniEditor.py" line="2298" /> - <location filename="../ViewManager/ViewManager.py" line="3208" /> - <location filename="../ViewManager/ViewManager.py" line="3205" /> + <location filename="../ViewManager/ViewManager.py" line="3218" /> + <location filename="../ViewManager/ViewManager.py" line="3215" /> <source>Extend selection to start of display line</source> <translation>Extender selección hasta el principio de la línea mostrada</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2324" /> <location filename="../QScintilla/MiniEditor.py" line="2321" /> - <location filename="../ViewManager/ViewManager.py" line="3231" /> - <location filename="../ViewManager/ViewManager.py" line="3228" /> + <location filename="../ViewManager/ViewManager.py" line="3241" /> + <location filename="../ViewManager/ViewManager.py" line="3238" /> <source>Move to start of display or document line</source> <translation>Mover al principio de línea mostrada o de documento</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2342" /> <location filename="../QScintilla/MiniEditor.py" line="2338" /> - <location filename="../ViewManager/ViewManager.py" line="3249" /> - <location filename="../ViewManager/ViewManager.py" line="3245" /> + <location filename="../ViewManager/ViewManager.py" line="3259" /> + <location filename="../ViewManager/ViewManager.py" line="3255" /> <source>Extend selection to start of display or document line</source> <translation>Extender selección hasta el inicio de la línea mostrada o de documento</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2361" /> <location filename="../QScintilla/MiniEditor.py" line="2357" /> - <location filename="../ViewManager/ViewManager.py" line="3268" /> - <location filename="../ViewManager/ViewManager.py" line="3264" /> + <location filename="../ViewManager/ViewManager.py" line="3278" /> + <location filename="../ViewManager/ViewManager.py" line="3274" /> <source>Move to first visible character in display or document line</source> <translation>Mover al primer carácter visible en la línea mostrada o de documento</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2381" /> <location filename="../QScintilla/MiniEditor.py" line="2376" /> - <location filename="../ViewManager/ViewManager.py" line="3288" /> - <location filename="../ViewManager/ViewManager.py" line="3283" /> + <location filename="../ViewManager/ViewManager.py" line="3298" /> + <location filename="../ViewManager/ViewManager.py" line="3293" /> <source>Extend selection to first visible character in display or document line</source> <translation>Extender selección al primer carácter visible en la línea mostrada o de documento</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2400" /> <location filename="../QScintilla/MiniEditor.py" line="2397" /> - <location filename="../ViewManager/ViewManager.py" line="3307" /> - <location filename="../ViewManager/ViewManager.py" line="3304" /> + <location filename="../ViewManager/ViewManager.py" line="3317" /> + <location filename="../ViewManager/ViewManager.py" line="3314" /> <source>Move to end of display or document line</source> <translation>Mover al final de la línea mostrada o de documento</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2417" /> <location filename="../QScintilla/MiniEditor.py" line="2414" /> - <location filename="../ViewManager/ViewManager.py" line="3324" /> - <location filename="../ViewManager/ViewManager.py" line="3321" /> + <location filename="../ViewManager/ViewManager.py" line="3334" /> + <location filename="../ViewManager/ViewManager.py" line="3331" /> <source>Extend selection to end of display or document line</source> <translation>Extender selección al final de la línea mostrada o de documento</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2432" /> <location filename="../QScintilla/MiniEditor.py" line="2431" /> - <location filename="../ViewManager/ViewManager.py" line="3339" /> - <location filename="../ViewManager/ViewManager.py" line="3338" /> + <location filename="../ViewManager/ViewManager.py" line="3349" /> + <location filename="../ViewManager/ViewManager.py" line="3348" /> <source>Stuttered move up one page</source> <translation>Mover progresivamente hacia arriba una página</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2447" /> <location filename="../QScintilla/MiniEditor.py" line="2444" /> - <location filename="../ViewManager/ViewManager.py" line="3354" /> - <location filename="../ViewManager/ViewManager.py" line="3351" /> + <location filename="../ViewManager/ViewManager.py" line="3364" /> + <location filename="../ViewManager/ViewManager.py" line="3361" /> <source>Stuttered extend selection up one page</source> <translation>Extender progresivamente la selección arriba una página</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2464" /> <location filename="../QScintilla/MiniEditor.py" line="2461" /> - <location filename="../ViewManager/ViewManager.py" line="3371" /> - <location filename="../ViewManager/ViewManager.py" line="3368" /> + <location filename="../ViewManager/ViewManager.py" line="3381" /> + <location filename="../ViewManager/ViewManager.py" line="3378" /> <source>Stuttered move down one page</source> <translation>Mover progresivamente hacia abajo una página</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2481" /> <location filename="../QScintilla/MiniEditor.py" line="2478" /> - <location filename="../ViewManager/ViewManager.py" line="3388" /> - <location filename="../ViewManager/ViewManager.py" line="3385" /> + <location filename="../ViewManager/ViewManager.py" line="3398" /> + <location filename="../ViewManager/ViewManager.py" line="3395" /> <source>Stuttered extend selection down one page</source> <translation>Extender progresivamente la selección abajo una página</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2498" /> <location filename="../QScintilla/MiniEditor.py" line="2495" /> - <location filename="../ViewManager/ViewManager.py" line="3405" /> - <location filename="../ViewManager/ViewManager.py" line="3402" /> + <location filename="../ViewManager/ViewManager.py" line="3415" /> + <location filename="../ViewManager/ViewManager.py" line="3412" /> <source>Delete right to end of next word</source> <translation>Borrar a la derecha hasta el final de la siguiente palabra</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2508" /> - <location filename="../ViewManager/ViewManager.py" line="3415" /> + <location filename="../ViewManager/ViewManager.py" line="3425" /> <source>Alt+Del</source> <translation>Alt+Del</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2519" /> <location filename="../QScintilla/MiniEditor.py" line="2516" /> - <location filename="../ViewManager/ViewManager.py" line="3426" /> - <location filename="../ViewManager/ViewManager.py" line="3423" /> + <location filename="../ViewManager/ViewManager.py" line="3436" /> + <location filename="../ViewManager/ViewManager.py" line="3433" /> <source>Move selected lines up one line</source> <translation>Mover las líneas seleccionadas arriba una línea</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2536" /> <location filename="../QScintilla/MiniEditor.py" line="2533" /> - <location filename="../ViewManager/ViewManager.py" line="3443" /> - <location filename="../ViewManager/ViewManager.py" line="3440" /> + <location filename="../ViewManager/ViewManager.py" line="3453" /> + <location filename="../ViewManager/ViewManager.py" line="3450" /> <source>Move selected lines down one line</source> <translation>Mover las líneas seleccionadas abajo una línea</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1810" /> <location filename="../QScintilla/MiniEditor.py" line="1807" /> - <location filename="../ViewManager/ViewManager.py" line="3461" /> - <location filename="../ViewManager/ViewManager.py" line="3458" /> + <location filename="../ViewManager/ViewManager.py" line="3471" /> + <location filename="../ViewManager/ViewManager.py" line="3468" /> <source>Convert selection to lower case</source> <translation>Convertir selección a minúsculas</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1813" /> - <location filename="../ViewManager/ViewManager.py" line="3464" /> + <location filename="../ViewManager/ViewManager.py" line="3474" /> <source>Alt+Shift+U</source> <translation>Alt+Shift+U</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1826" /> <location filename="../QScintilla/MiniEditor.py" line="1823" /> - <location filename="../ViewManager/ViewManager.py" line="3477" /> - <location filename="../ViewManager/ViewManager.py" line="3474" /> + <location filename="../ViewManager/ViewManager.py" line="3487" /> + <location filename="../ViewManager/ViewManager.py" line="3484" /> <source>Convert selection to upper case</source> <translation>Convertir selección a mayúsculas</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1829" /> - <location filename="../ViewManager/ViewManager.py" line="3480" /> + <location filename="../ViewManager/ViewManager.py" line="3490" /> <source>Ctrl+Shift+U</source> <translation>Ctrl+Shift+U</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3506" /> + <location filename="../ViewManager/ViewManager.py" line="3516" /> <source>&Edit</source> <translation>&Editar</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3564" /> - <location filename="../ViewManager/ViewManager.py" line="3562" /> + <location filename="../ViewManager/ViewManager.py" line="3574" /> + <location filename="../ViewManager/ViewManager.py" line="3572" /> <source>Edit</source> <translation>Editar</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2568" /> <location filename="../QScintilla/ShellWindow.py" line="927" /> - <location filename="../ViewManager/ViewManager.py" line="4167" /> - <location filename="../ViewManager/ViewManager.py" line="4165" /> - <location filename="../ViewManager/ViewManager.py" line="3598" /> + <location filename="../ViewManager/ViewManager.py" line="4177" /> + <location filename="../ViewManager/ViewManager.py" line="4175" /> + <location filename="../ViewManager/ViewManager.py" line="3608" /> <source>Search</source> <translation>Buscar</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2570" /> <location filename="../QScintilla/ShellWindow.py" line="929" /> - <location filename="../ViewManager/ViewManager.py" line="3600" /> + <location filename="../ViewManager/ViewManager.py" line="3610" /> <source>&Search...</source> <translation>&Buscar...</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2572" /> <location filename="../QScintilla/ShellWindow.py" line="931" /> - <location filename="../ViewManager/ViewManager.py" line="3602" /> + <location filename="../ViewManager/ViewManager.py" line="3612" /> <source>Ctrl+F</source> <comment>Search|Search</comment> <translation>Ctrl+F</translation> @@ -97214,34 +97227,34 @@ <message> <location filename="../QScintilla/MiniEditor.py" line="2579" /> <location filename="../QScintilla/ShellWindow.py" line="938" /> - <location filename="../ViewManager/ViewManager.py" line="3609" /> + <location filename="../ViewManager/ViewManager.py" line="3619" /> <source>Search for a text</source> <translation>Buscar un texto</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2582" /> - <location filename="../ViewManager/ViewManager.py" line="3612" /> + <location filename="../ViewManager/ViewManager.py" line="3622" /> <source><b>Search</b><p>Search for some text in the current editor. A dialog is shown to enter the searchtext and options for the search.</p></source> <translation><b>Buscar</b><p>Buscar texto en el editor. En el diálogo muestra opciones e indica el texto de búsqueda.</p></translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2594" /> <location filename="../QScintilla/ShellWindow.py" line="953" /> - <location filename="../ViewManager/ViewManager.py" line="3624" /> + <location filename="../ViewManager/ViewManager.py" line="3634" /> <source>Search next</source> <translation>Buscar siguiente</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2596" /> <location filename="../QScintilla/ShellWindow.py" line="955" /> - <location filename="../ViewManager/ViewManager.py" line="3626" /> + <location filename="../ViewManager/ViewManager.py" line="3636" /> <source>Search &next</source> <translation>Buscar &Siguiente</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2598" /> <location filename="../QScintilla/ShellWindow.py" line="957" /> - <location filename="../ViewManager/ViewManager.py" line="3628" /> + <location filename="../ViewManager/ViewManager.py" line="3638" /> <source>F3</source> <comment>Search|Search next</comment> <translation>F3</translation> @@ -97249,34 +97262,34 @@ <message> <location filename="../QScintilla/MiniEditor.py" line="2605" /> <location filename="../QScintilla/ShellWindow.py" line="964" /> - <location filename="../ViewManager/ViewManager.py" line="3635" /> + <location filename="../ViewManager/ViewManager.py" line="3645" /> <source>Search next occurrence of text</source> <translation>Buscar siguiente ocurrencia del texto</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2608" /> - <location filename="../ViewManager/ViewManager.py" line="3638" /> + <location filename="../ViewManager/ViewManager.py" line="3648" /> <source><b>Search next</b><p>Search the next occurrence of some text in the current editor. The previously entered searchtext and options are reused.</p></source> <translation><b>Buscar siguiente</b><p>Buscar la siguiente ocurrencia de un texto en el editor actual. Se reutilizan el texto de búsqueda introducido anteriormente y sus opciones.</p></translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2620" /> <location filename="../QScintilla/ShellWindow.py" line="981" /> - <location filename="../ViewManager/ViewManager.py" line="3650" /> + <location filename="../ViewManager/ViewManager.py" line="3660" /> <source>Search previous</source> <translation>Buscar anterior</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2622" /> <location filename="../QScintilla/ShellWindow.py" line="983" /> - <location filename="../ViewManager/ViewManager.py" line="3652" /> + <location filename="../ViewManager/ViewManager.py" line="3662" /> <source>Search &previous</source> <translation>Buscar a&nterior</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2624" /> <location filename="../QScintilla/ShellWindow.py" line="985" /> - <location filename="../ViewManager/ViewManager.py" line="3654" /> + <location filename="../ViewManager/ViewManager.py" line="3664" /> <source>Shift+F3</source> <comment>Search|Search previous</comment> <translation>Shift+F3</translation> @@ -97284,436 +97297,436 @@ <message> <location filename="../QScintilla/MiniEditor.py" line="2633" /> <location filename="../QScintilla/ShellWindow.py" line="994" /> - <location filename="../ViewManager/ViewManager.py" line="3663" /> + <location filename="../ViewManager/ViewManager.py" line="3673" /> <source>Search previous occurrence of text</source> <translation>Buscar anterior ocurrencia del texto</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2638" /> - <location filename="../ViewManager/ViewManager.py" line="3668" /> + <location filename="../ViewManager/ViewManager.py" line="3678" /> <source><b>Search previous</b><p>Search the previous occurrence of some text in the current editor. The previously entered searchtext and options are reused.</p></source> <translation><b>Buscar anterior</b><p>Buscar la anterior ocurrencia de un texto en el editor actual. Se reutilizan el texto de búsqueda introducido anteriormente y sus opciones.</p></translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2652" /> <location filename="../QScintilla/MiniEditor.py" line="2650" /> - <location filename="../ViewManager/ViewManager.py" line="3682" /> - <location filename="../ViewManager/ViewManager.py" line="3680" /> + <location filename="../ViewManager/ViewManager.py" line="3692" /> + <location filename="../ViewManager/ViewManager.py" line="3690" /> <source>Clear search markers</source> <translation>Limpiar marcadores de búsqueda</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2654" /> - <location filename="../ViewManager/ViewManager.py" line="3684" /> + <location filename="../ViewManager/ViewManager.py" line="3694" /> <source>Ctrl+3</source> <comment>Search|Clear search markers</comment> <translation>Ctrl+3</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2663" /> - <location filename="../ViewManager/ViewManager.py" line="3693" /> + <location filename="../ViewManager/ViewManager.py" line="3703" /> <source>Clear all displayed search markers</source> <translation>Limpiar todos los marcadores de texto mostrados</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2668" /> - <location filename="../ViewManager/ViewManager.py" line="3698" /> + <location filename="../ViewManager/ViewManager.py" line="3708" /> <source><b>Clear search markers</b><p>Clear all displayed search markers.</p></source> <translation><b>Limpiar marcadores de búsqueda</b><p>Limpiar todos los marcadores de búsqueda mostrados.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3710" /> - <location filename="../ViewManager/ViewManager.py" line="3708" /> + <location filename="../ViewManager/ViewManager.py" line="3720" /> + <location filename="../ViewManager/ViewManager.py" line="3718" /> <source>Search current word forward</source> <translation>Buscar palabra actual hacia adelante</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3712" /> + <location filename="../ViewManager/ViewManager.py" line="3722" /> <source>Ctrl+.</source> <comment>Search|Search current word forward</comment> <translation>Ctrl+.</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3721" /> + <location filename="../ViewManager/ViewManager.py" line="3731" /> <source>Search next occurrence of the current word</source> <translation>Buscar siguiente ocurrencia de la palabra actual</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3726" /> + <location filename="../ViewManager/ViewManager.py" line="3736" /> <source><b>Search current word forward</b><p>Search the next occurrence of the current word of the current editor.</p></source> <translation><b>Buscar palabra actual hacia adelante</b><p>Buscar la siguiente ocurrencia de la palabra actual en el editor actual.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3739" /> - <location filename="../ViewManager/ViewManager.py" line="3737" /> + <location filename="../ViewManager/ViewManager.py" line="3749" /> + <location filename="../ViewManager/ViewManager.py" line="3747" /> <source>Search current word backward</source> <translation>Buscar palabra actual hacia atrás</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3741" /> + <location filename="../ViewManager/ViewManager.py" line="3751" /> <source>Ctrl+,</source> <comment>Search|Search current word backward</comment> <translation>Ctrl+,</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3750" /> + <location filename="../ViewManager/ViewManager.py" line="3760" /> <source>Search previous occurrence of the current word</source> <translation>Buscar ocurrencia anterior de la palabra actual</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3755" /> + <location filename="../ViewManager/ViewManager.py" line="3765" /> <source><b>Search current word backward</b><p>Search the previous occurrence of the current word of the current editor.</p></source> <translation><b>Buscar palabra actual hacia atrás</b><p>Buscar la ocurrencia anterior de la palabra actual en el editor actual.</p></translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2678" /> - <location filename="../ViewManager/ViewManager.py" line="3766" /> + <location filename="../ViewManager/ViewManager.py" line="3776" /> <source>Replace</source> <translation>Reemplazar</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2679" /> - <location filename="../ViewManager/ViewManager.py" line="3767" /> + <location filename="../ViewManager/ViewManager.py" line="3777" /> <source>&Replace...</source> <translation>&Reemplazar...</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2681" /> - <location filename="../ViewManager/ViewManager.py" line="3769" /> + <location filename="../ViewManager/ViewManager.py" line="3779" /> <source>Ctrl+R</source> <comment>Search|Replace</comment> <translation>Ctrl+R</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2688" /> - <location filename="../ViewManager/ViewManager.py" line="3776" /> + <location filename="../ViewManager/ViewManager.py" line="3786" /> <source>Replace some text</source> <translation>Reemplazar un texto</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2691" /> - <location filename="../ViewManager/ViewManager.py" line="3779" /> + <location filename="../ViewManager/ViewManager.py" line="3789" /> <source><b>Replace</b><p>Search for some text in the current editor and replace it. A dialog is shown to enter the searchtext, the replacement text and options for the search and replace.</p></source> <translation><b>Reemplazar</b><p>Buscar un texto en el editor actual y reemplazarlo. Se muestra un diálogo para introducir el texto de búsqueda, el texto de reemplazo y las opciones para buscar y reemplazar.</p></translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2705" /> <location filename="../QScintilla/MiniEditor.py" line="2703" /> - <location filename="../ViewManager/ViewManager.py" line="3793" /> - <location filename="../ViewManager/ViewManager.py" line="3791" /> + <location filename="../ViewManager/ViewManager.py" line="3803" /> + <location filename="../ViewManager/ViewManager.py" line="3801" /> <source>Replace and Search</source> <translation>Buscar y Reemplazar</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2707" /> - <location filename="../ViewManager/ViewManager.py" line="3795" /> + <location filename="../ViewManager/ViewManager.py" line="3805" /> <source>Meta+R</source> <comment>Search|Replace and Search</comment> <translation>Meta+R</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2716" /> - <location filename="../ViewManager/ViewManager.py" line="3804" /> + <location filename="../ViewManager/ViewManager.py" line="3814" /> <source>Replace the found text and search the next occurrence</source> <translation>Reemplazar el texto encontrado y buscar siguiente ocurrencia</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2721" /> - <location filename="../ViewManager/ViewManager.py" line="3809" /> + <location filename="../ViewManager/ViewManager.py" line="3819" /> <source><b>Replace and Search</b><p>Replace the found occurrence of text in the current editor and search for the next one. The previously entered search text and options are reused.</p></source> <translation><b>Buscar y Reemplazar</b><p>Reemplazar la ocurrencia de texto en editor actual y buscar la siguiente. Se reusan el texto y las opciones de búsqueda introducidas previamente.</p></translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2737" /> <location filename="../QScintilla/MiniEditor.py" line="2735" /> - <location filename="../ViewManager/ViewManager.py" line="3825" /> - <location filename="../ViewManager/ViewManager.py" line="3823" /> + <location filename="../ViewManager/ViewManager.py" line="3835" /> + <location filename="../ViewManager/ViewManager.py" line="3833" /> <source>Replace Occurrence</source> <translation>Reemplazar Ocurrencia</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2739" /> - <location filename="../ViewManager/ViewManager.py" line="3827" /> + <location filename="../ViewManager/ViewManager.py" line="3837" /> <source>Ctrl+Meta+R</source> <comment>Search|Replace Occurrence</comment> <translation>Ctrl+Meta+R</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2748" /> - <location filename="../ViewManager/ViewManager.py" line="3836" /> + <location filename="../ViewManager/ViewManager.py" line="3846" /> <source>Replace the found text</source> <translation>Reemplazar el texto encontrado</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2751" /> - <location filename="../ViewManager/ViewManager.py" line="3839" /> + <location filename="../ViewManager/ViewManager.py" line="3849" /> <source><b>Replace Occurrence</b><p>Replace the found occurrence of the search text in the current editor.</p></source> <translation><b>Reemplazar Ocurrencia</b><p>Reemplazar la ocurrencia del texto de búsqueda hallado en el editor actual.</p></translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2764" /> <location filename="../QScintilla/MiniEditor.py" line="2762" /> - <location filename="../ViewManager/ViewManager.py" line="3852" /> - <location filename="../ViewManager/ViewManager.py" line="3850" /> + <location filename="../ViewManager/ViewManager.py" line="3862" /> + <location filename="../ViewManager/ViewManager.py" line="3860" /> <source>Replace All</source> <translation>Reemplazar Todo</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2766" /> - <location filename="../ViewManager/ViewManager.py" line="3854" /> + <location filename="../ViewManager/ViewManager.py" line="3864" /> <source>Shift+Meta+R</source> <comment>Search|Replace All</comment> <translation>Shift+Meta+R</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2775" /> - <location filename="../ViewManager/ViewManager.py" line="3863" /> + <location filename="../ViewManager/ViewManager.py" line="3873" /> <source>Replace search text occurrences</source> <translation>Reemplazar ocurrencias de texto de búsqueda</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2778" /> - <location filename="../ViewManager/ViewManager.py" line="3866" /> + <location filename="../ViewManager/ViewManager.py" line="3876" /> <source><b>Replace All</b><p>Replace all occurrences of the search text in the current editor.</p></source> <translation><b>Reemplazar Todo</b><p>Reemplazar todas las ocurrencias del texto de búsqueda en el editor actual.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3888" /> - <location filename="../ViewManager/ViewManager.py" line="3877" /> + <location filename="../ViewManager/ViewManager.py" line="3898" /> + <location filename="../ViewManager/ViewManager.py" line="3887" /> <source>Goto Line</source> <translation>Ir a línea</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3879" /> + <location filename="../ViewManager/ViewManager.py" line="3889" /> <source>&Goto Line...</source> <translation>&Ir a Linea...</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3881" /> + <location filename="../ViewManager/ViewManager.py" line="3891" /> <source>Ctrl+G</source> <comment>Search|Goto Line</comment> <translation>Ctrl+G</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3891" /> + <location filename="../ViewManager/ViewManager.py" line="3901" /> <source><b>Goto Line</b><p>Go to a specific line of text in the current editor. A dialog is shown to enter the linenumber.</p></source> <translation><b>Ir la la línea</b><p>Ir a una línea específica del texto en el editor actual. Se muestra un diálogo para introducir el número de línea.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3913" /> - <location filename="../ViewManager/ViewManager.py" line="3902" /> + <location filename="../ViewManager/ViewManager.py" line="3923" /> + <location filename="../ViewManager/ViewManager.py" line="3912" /> <source>Goto Brace</source> <translation>Ir a paréntesis</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3904" /> + <location filename="../ViewManager/ViewManager.py" line="3914" /> <source>Goto &Brace</source> <translation>Ir al Parén&tesis</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3906" /> - <source>Ctrl+L</source> - <comment>Search|Goto Brace</comment> - <translation>Ctrl+L</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="3916" /> + <source>Ctrl+L</source> + <comment>Search|Goto Brace</comment> + <translation>Ctrl+L</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="3926" /> <source><b>Goto Brace</b><p>Go to the matching brace in the current editor.</p></source> <translation><b>Ir a llave ('{' o '}')</b><p>Ir a la llave correspondiente en el editor actual.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3939" /> - <location filename="../ViewManager/ViewManager.py" line="3926" /> + <location filename="../ViewManager/ViewManager.py" line="3949" /> + <location filename="../ViewManager/ViewManager.py" line="3936" /> <source>Goto Last Edit Location</source> <translation>Ir a la Última Posición de Edición</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3928" /> + <location filename="../ViewManager/ViewManager.py" line="3938" /> <source>Goto Last &Edit Location</source> <translation>Ir a la Última Posición de &Edición</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3930" /> + <location filename="../ViewManager/ViewManager.py" line="3940" /> <source>Ctrl+Shift+G</source> <comment>Search|Goto Last Edit Location</comment> <translation>Ctrl+Shift+G</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3942" /> + <location filename="../ViewManager/ViewManager.py" line="3952" /> <source><b>Goto Last Edit Location</b><p>Go to the location of the last edit in the current editor.</p></source> <translation><b>Ir a la Última Posición de Edición</b><p>Ir a la posición de la última edición en el editor actual.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3954" /> - <location filename="../ViewManager/ViewManager.py" line="3953" /> + <location filename="../ViewManager/ViewManager.py" line="3964" /> + <location filename="../ViewManager/ViewManager.py" line="3963" /> <source>Goto Previous Method or Class</source> <translation>Ir al Anterior Método o Clase</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3956" /> + <location filename="../ViewManager/ViewManager.py" line="3966" /> <source>Ctrl+Shift+Up</source> <comment>Search|Goto Previous Method or Class</comment> <translation>Ctrl+Shift+Up</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3967" /> + <location filename="../ViewManager/ViewManager.py" line="3977" /> <source>Go to the previous method or class definition</source> <translation>Ir a la anterior definición de método o clase</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3972" /> + <location filename="../ViewManager/ViewManager.py" line="3982" /> <source><b>Goto Previous Method or Class</b><p>Goes to the line of the previous method or class definition and highlights the name.</p></source> <translation><b>Ir al Anterior Método o Clase</b><p>Va a la línea de la anterior definición de método o clase y resalta el nombre.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3984" /> - <location filename="../ViewManager/ViewManager.py" line="3983" /> + <location filename="../ViewManager/ViewManager.py" line="3994" /> + <location filename="../ViewManager/ViewManager.py" line="3993" /> <source>Goto Next Method or Class</source> <translation>Ir al Siguiente Método o Clase</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3986" /> + <location filename="../ViewManager/ViewManager.py" line="3996" /> <source>Ctrl+Shift+Down</source> <comment>Search|Goto Next Method or Class</comment> <translation>Ctrl+Shift+Down</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3995" /> + <location filename="../ViewManager/ViewManager.py" line="4005" /> <source>Go to the next method or class definition</source> <translation>Ir a la siguiente definición de método o clase</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4000" /> + <location filename="../ViewManager/ViewManager.py" line="4010" /> <source><b>Goto Next Method or Class</b><p>Goes to the line of the next method or class definition and highlights the name.</p></source> <translation><b>Ir al Siguiente Método o Clase</b><p>Va a la línea de la siguiente definición de método o clase y resalta el nombre.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4013" /> + <location filename="../ViewManager/ViewManager.py" line="4023" /> <source>Search in Files</source> <translation>Buscar en archivos</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4015" /> + <location filename="../ViewManager/ViewManager.py" line="4025" /> <source>Search in &Files...</source> <translation>Buscar en arc&hivos...</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4017" /> + <location filename="../ViewManager/ViewManager.py" line="4027" /> <source>Shift+Ctrl+F</source> <comment>Search|Search Files</comment> <translation>Shift+Ctrl+F</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4026" /> + <location filename="../ViewManager/ViewManager.py" line="4036" /> <source>Search for a text in files</source> <translation>Buscar texto en archivos</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4029" /> + <location filename="../ViewManager/ViewManager.py" line="4039" /> <source><b>Search in Files</b><p>Search for some text in the files of a directory tree or the project. A window is shown to enter the searchtext and options for the search and to display the result.</p></source> <translation><b>Buscar en Archivos</b><p>Búsqueda de texto en archivos de un árbol de directorios o en el proyecto. Se muestra una ventana para introducir el texto de búsqueda, y opciones para la búsqueda y visualización de resultados.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4041" /> + <location filename="../ViewManager/ViewManager.py" line="4051" /> <source>Replace in Files</source> <translation>Reemplazar en Archivos</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4042" /> + <location filename="../ViewManager/ViewManager.py" line="4052" /> <source>Replace in F&iles...</source> <translation>Reemplazar en Arch&ivos...</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4044" /> + <location filename="../ViewManager/ViewManager.py" line="4054" /> <source>Shift+Ctrl+R</source> <comment>Search|Replace in Files</comment> <translation>Shift+Ctrl+R</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4053" /> + <location filename="../ViewManager/ViewManager.py" line="4063" /> <source>Search for a text in files and replace it</source> <translation>Buscar un texto en archivos y reemplazarlo</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4058" /> + <location filename="../ViewManager/ViewManager.py" line="4068" /> <source><b>Replace in Files</b><p>Search for some text in the files of a directory tree or the project and replace it. A window is shown to enter the searchtext, the replacement text and options for the search and to display the result.</p></source> <translation><b>Reemplazar en Archivos</b><p>Buscar un texto en los archivos de un árbol de directorios o en el proyecto, y reemplazarlo. Se muestra una ventana para introducir los textos de búsqueda y reemplazo, y opciones para la búsqueda y visualización de resultados.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4071" /> + <location filename="../ViewManager/ViewManager.py" line="4081" /> <source>Search in Open Files</source> <translation>Buscar en los Archivos Abiertos</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4073" /> + <location filename="../ViewManager/ViewManager.py" line="4083" /> <source>Search in Open Files...</source> <translation>Buscar en los Archivos Abiertos...</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4075" /> + <location filename="../ViewManager/ViewManager.py" line="4085" /> <source>Meta+Ctrl+Alt+F</source> <comment>Search|Search Open Files</comment> <translation>Meta+Ctrl+Alt+F</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4084" /> + <location filename="../ViewManager/ViewManager.py" line="4094" /> <source>Search for a text in open files</source> <translation>Buscar un texto en los archivos abiertos</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4087" /> + <location filename="../ViewManager/ViewManager.py" line="4097" /> <source><b>Search in Open Files</b><p>Search for some text in the currently opened files. A window is shown to enter the search text and options for the search and to display the result.</p></source> <translation><b>Buscar en Archivos Abiertos</b><p>Búsqueda de un texto en los archivos actualmente abiertos. Se muestra una ventana para introducir el texto de búsqueda, y opciones para la búsqueda y visualización de resultados.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4099" /> + <location filename="../ViewManager/ViewManager.py" line="4109" /> <source>Replace in Open Files</source> <translation>Reemplazar en los Archivos Abiertos</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4100" /> + <location filename="../ViewManager/ViewManager.py" line="4110" /> <source>Replace in Open Files...</source> <translation>Reemplazar en los Archivos Abiertos...</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4102" /> + <location filename="../ViewManager/ViewManager.py" line="4112" /> <source>Meta+Ctrl+Alt+R</source> <comment>Search|Replace in Open Files</comment> <translation>Meta+Ctrl+Alt+R</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4111" /> + <location filename="../ViewManager/ViewManager.py" line="4121" /> <source>Search for a text in open files and replace it</source> <translation>Buscar un texto en los archivos abiertos y reemplazarlo</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4116" /> + <location filename="../ViewManager/ViewManager.py" line="4126" /> <source><b>Replace in Open Files</b><p>Search for some text in the currently opened files and replace it. A window is shown to enter the search text, the replacement text and options for the search and to display the result.</p></source> <translation><b>Reemplazar en Archivos Abiertos</b><p>Búsqueda de un texto en los archivos actualmente abiertos y reemplazarlo. Se muestra una ventana para introducir los textos de búsqueda y reemplazo, y opciones para la búsqueda y visualización de resultados.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4137" /> + <location filename="../ViewManager/ViewManager.py" line="4147" /> <source>&Search</source> <translation>&Buscar</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2793" /> <location filename="../QScintilla/ShellWindow.py" line="1020" /> - <location filename="../ViewManager/ViewManager.py" line="4208" /> + <location filename="../ViewManager/ViewManager.py" line="4218" /> <source>Zoom in</source> <translation>Aumentar zoom</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2795" /> <location filename="../QScintilla/ShellWindow.py" line="1022" /> - <location filename="../ViewManager/ViewManager.py" line="4210" /> + <location filename="../ViewManager/ViewManager.py" line="4220" /> <source>Zoom &in</source> <translation>A&umentar Zoom</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2797" /> <location filename="../QScintilla/ShellWindow.py" line="1024" /> - <location filename="../ViewManager/ViewManager.py" line="4212" /> + <location filename="../ViewManager/ViewManager.py" line="4222" /> <source>Ctrl++</source> <comment>View|Zoom in</comment> <translation>Ctrl++</translation> @@ -97721,7 +97734,7 @@ <message> <location filename="../QScintilla/MiniEditor.py" line="2800" /> <location filename="../QScintilla/ShellWindow.py" line="1027" /> - <location filename="../ViewManager/ViewManager.py" line="4215" /> + <location filename="../ViewManager/ViewManager.py" line="4225" /> <source>Zoom In</source> <comment>View|Zoom in</comment> <translation>Aumentar Zoom</translation> @@ -97729,35 +97742,35 @@ <message> <location filename="../QScintilla/MiniEditor.py" line="2806" /> <location filename="../QScintilla/ShellWindow.py" line="1033" /> - <location filename="../ViewManager/ViewManager.py" line="4221" /> + <location filename="../ViewManager/ViewManager.py" line="4231" /> <source>Zoom in on the text</source> <translation>Zoom sobre el texto</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2809" /> <location filename="../QScintilla/ShellWindow.py" line="1036" /> - <location filename="../ViewManager/ViewManager.py" line="4224" /> + <location filename="../ViewManager/ViewManager.py" line="4234" /> <source><b>Zoom in</b><p>Zoom in on the text. This makes the text bigger.</p></source> <translation><b>Aumentar zoom</b><p>Aumentar zoom sobre el texto. Hace que el texto sea de mayor tamaño.</p></translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2819" /> <location filename="../QScintilla/ShellWindow.py" line="1046" /> - <location filename="../ViewManager/ViewManager.py" line="4234" /> + <location filename="../ViewManager/ViewManager.py" line="4244" /> <source>Zoom out</source> <translation>Disminuir Zoom</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2821" /> <location filename="../QScintilla/ShellWindow.py" line="1048" /> - <location filename="../ViewManager/ViewManager.py" line="4236" /> + <location filename="../ViewManager/ViewManager.py" line="4246" /> <source>Zoom &out</source> <translation>Dismi&nuir Zoom</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2823" /> <location filename="../QScintilla/ShellWindow.py" line="1050" /> - <location filename="../ViewManager/ViewManager.py" line="4238" /> + <location filename="../ViewManager/ViewManager.py" line="4248" /> <source>Ctrl+-</source> <comment>View|Zoom out</comment> <translation>Ctrl+-</translation> @@ -97765,7 +97778,7 @@ <message> <location filename="../QScintilla/MiniEditor.py" line="2826" /> <location filename="../QScintilla/ShellWindow.py" line="1053" /> - <location filename="../ViewManager/ViewManager.py" line="4241" /> + <location filename="../ViewManager/ViewManager.py" line="4251" /> <source>Zoom Out</source> <comment>View|Zoom out</comment> <translation>Disminuir Zoom</translation> @@ -97773,35 +97786,35 @@ <message> <location filename="../QScintilla/MiniEditor.py" line="2832" /> <location filename="../QScintilla/ShellWindow.py" line="1059" /> - <location filename="../ViewManager/ViewManager.py" line="4247" /> + <location filename="../ViewManager/ViewManager.py" line="4257" /> <source>Zoom out on the text</source> <translation>Disminuir zoom en el texto</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2835" /> <location filename="../QScintilla/ShellWindow.py" line="1062" /> - <location filename="../ViewManager/ViewManager.py" line="4250" /> + <location filename="../ViewManager/ViewManager.py" line="4260" /> <source><b>Zoom out</b><p>Zoom out on the text. This makes the text smaller.</p></source> <translation><b>Disminuir zoom</b><p>Disminuir zoom sobre el texto. Hace que el texto sea de menor tamaño.</p></translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2845" /> <location filename="../QScintilla/ShellWindow.py" line="1072" /> - <location filename="../ViewManager/ViewManager.py" line="4260" /> + <location filename="../ViewManager/ViewManager.py" line="4270" /> <source>Zoom reset</source> <translation>Restablecer zoom</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2847" /> <location filename="../QScintilla/ShellWindow.py" line="1074" /> - <location filename="../ViewManager/ViewManager.py" line="4262" /> + <location filename="../ViewManager/ViewManager.py" line="4272" /> <source>Zoom &reset</source> <translation>&Restablecer zoom</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2849" /> <location filename="../QScintilla/ShellWindow.py" line="1076" /> - <location filename="../ViewManager/ViewManager.py" line="4264" /> + <location filename="../ViewManager/ViewManager.py" line="4274" /> <source>Ctrl+0</source> <comment>View|Zoom reset</comment> <translation>Ctrl+0</translation> @@ -97809,894 +97822,894 @@ <message> <location filename="../QScintilla/MiniEditor.py" line="2856" /> <location filename="../QScintilla/ShellWindow.py" line="1083" /> - <location filename="../ViewManager/ViewManager.py" line="4271" /> + <location filename="../ViewManager/ViewManager.py" line="4281" /> <source>Reset the zoom of the text</source> <translation>Restablecer el zoom aplicado al texto</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2859" /> <location filename="../QScintilla/ShellWindow.py" line="1086" /> - <location filename="../ViewManager/ViewManager.py" line="4274" /> + <location filename="../ViewManager/ViewManager.py" line="4284" /> <source><b>Zoom reset</b><p>Reset the zoom of the text. This sets the zoom factor to 100%.</p></source> <translation><b>Restablecer zoom</b><p>Restablece el zoom aplicado al texto. Establece el factor de zoom a 100%.</p></translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2870" /> <location filename="../QScintilla/ShellWindow.py" line="1097" /> - <location filename="../ViewManager/ViewManager.py" line="4285" /> + <location filename="../ViewManager/ViewManager.py" line="4295" /> <source>Zoom</source> <translation>Zoom</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2872" /> <location filename="../QScintilla/ShellWindow.py" line="1099" /> - <location filename="../ViewManager/ViewManager.py" line="4287" /> + <location filename="../ViewManager/ViewManager.py" line="4297" /> <source>&Zoom</source> <translation>&Zoom</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2879" /> <location filename="../QScintilla/ShellWindow.py" line="1106" /> - <location filename="../ViewManager/ViewManager.py" line="4294" /> + <location filename="../ViewManager/ViewManager.py" line="4304" /> <source>Zoom the text</source> <translation>Zoom sobre el texto</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2882" /> <location filename="../QScintilla/ShellWindow.py" line="1109" /> - <location filename="../ViewManager/ViewManager.py" line="4297" /> + <location filename="../ViewManager/ViewManager.py" line="4307" /> <source><b>Zoom</b><p>Zoom the text. This opens a dialog where the desired size can be entered.</p></source> <translation><b>Zoom</b><p>Zoom sobre el texto. Abre un diálogo donde se puede introducir el tamaño deseado.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4316" /> - <location filename="../ViewManager/ViewManager.py" line="4308" /> + <location filename="../ViewManager/ViewManager.py" line="4326" /> + <location filename="../ViewManager/ViewManager.py" line="4318" /> <source>Toggle all folds</source> <translation>Recoger/Desplegar los anidamientos</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4309" /> - <source>&Toggle all folds</source> - <translation>Recoger/Desplegar los &anidamientos</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="4319" /> + <source>&Toggle all folds</source> + <translation>Recoger/Desplegar los &anidamientos</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4329" /> <source><b>Toggle all folds</b><p>Toggle all folds of the current editor.</p></source> <translation><b>Recoger/desplegar todos los anidamientos</b><p>Recoge/despliega todos los anidamientos en el editor actual.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4341" /> - <location filename="../ViewManager/ViewManager.py" line="4329" /> + <location filename="../ViewManager/ViewManager.py" line="4351" /> + <location filename="../ViewManager/ViewManager.py" line="4339" /> <source>Toggle all folds (including children)</source> <translation>Recoger/Desplegar todos los anidamientos (inc. hijos)</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4332" /> + <location filename="../ViewManager/ViewManager.py" line="4342" /> <source>Toggle all &folds (including children)</source> <translation>Recoger/Desplegar todos los a&nidamientos (inc. hijos)</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4346" /> + <location filename="../ViewManager/ViewManager.py" line="4356" /> <source><b>Toggle all folds (including children)</b><p>Toggle all folds of the current editor including all children.</p></source> <translation><b>Recoger/desplegar todos los anidamientos (incluyendo hijos)</b><p>Recoge/despliega todos los anidamientos en el editor actual, incluyendo todos los hijos.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4365" /> - <location filename="../ViewManager/ViewManager.py" line="4357" /> + <location filename="../ViewManager/ViewManager.py" line="4375" /> + <location filename="../ViewManager/ViewManager.py" line="4367" /> <source>Toggle current fold</source> <translation>Recoger/Desplegar el anidamiento actual</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4358" /> - <source>Toggle &current fold</source> - <translation>Recoger/Desplega&r el anidamiento actual</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="4368" /> + <source>Toggle &current fold</source> + <translation>Recoger/Desplega&r el anidamiento actual</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4378" /> <source><b>Toggle current fold</b><p>Toggle the folds of the current line of the current editor.</p></source> <translation><b>Recoger/desplegar anidamiento actual</b><p>Recoge/despliega el anidamiento de la línea actual en el editor actual.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4387" /> - <location filename="../ViewManager/ViewManager.py" line="4379" /> + <location filename="../ViewManager/ViewManager.py" line="4397" /> + <location filename="../ViewManager/ViewManager.py" line="4389" /> <source>Clear all folds</source> <translation>Limpiar todos los anidamientos</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4380" /> - <source>Clear &all folds</source> - <translation>Limpiar todos los anid&amientos</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="4390" /> + <source>Clear &all folds</source> + <translation>Limpiar todos los anid&amientos</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4400" /> <source><b>Clear all folds</b><p>Clear all folds of the current editor, i.e. ensure that all lines are displayed unfolded.</p></source> <translation><b>Limpiar todos los anidamientos</b><p>Limpiar todos los anidamientos en el editor actual, asegurando que todas las líneas se muestran sin plegar.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4410" /> - <location filename="../ViewManager/ViewManager.py" line="4403" /> - <location filename="../ViewManager/ViewManager.py" line="4401" /> + <location filename="../ViewManager/ViewManager.py" line="4420" /> + <location filename="../ViewManager/ViewManager.py" line="4413" /> + <location filename="../ViewManager/ViewManager.py" line="4411" /> <source>Remove all highlights</source> <translation>Quitar todos los resaltes</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4413" /> - <source><b>Remove all highlights</b><p>Remove the highlights of all editors.</p></source> - <translation><b>Eliminar todos los resaltes de texto</b><p>Elimina todos los resaltes de texto en todos los editories.</p></translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="4423" /> + <source><b>Remove all highlights</b><p>Remove the highlights of all editors.</p></source> + <translation><b>Eliminar todos los resaltes de texto</b><p>Elimina todos los resaltes de texto en todos los editories.</p></translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4433" /> <source>New Document View</source> <translation>Nueva Vista de Documento</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4425" /> + <location filename="../ViewManager/ViewManager.py" line="4435" /> <source>New &Document View</source> <translation>Nueva Vista de &Documento</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4432" /> + <location filename="../ViewManager/ViewManager.py" line="4442" /> <source>Open a new view of the current document</source> <translation>Abrir una nueva vista del documento actual</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4437" /> + <location filename="../ViewManager/ViewManager.py" line="4447" /> <source><b>New Document View</b><p>Opens a new view of the current document. Both views show the same document. However, the cursors may be positioned independently.</p></source> <translation><b>Nueva Vista de Documento</b><p>Abre una nueva vista del documento actual. Ambas vistas muestran el mismo documento. Sin embargo, los cursores pueden estar ubicados de manera independiente.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4453" /> - <location filename="../ViewManager/ViewManager.py" line="4449" /> + <location filename="../ViewManager/ViewManager.py" line="4463" /> + <location filename="../ViewManager/ViewManager.py" line="4459" /> <source>New Document View (with new split)</source> <translation>Nueva Vista de Documento (con nueva división)</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4462" /> + <location filename="../ViewManager/ViewManager.py" line="4472" /> <source>Open a new view of the current document in a new split</source> <translation>Abrir una nueva vista del documento actual en una nueva división</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4467" /> + <location filename="../ViewManager/ViewManager.py" line="4477" /> <source><b>New Document View</b><p>Opens a new view of the current document in a new split. Both views show the same document. However, the cursors may be positioned independently.</p></source> <translation><b>Nueva Vista de Documento</b><p>Abre una nueva vista del documento actual en una nueva división. Ambas vistas muestran el mismo documento. Sin embargo, los cursores pueden estar ubicados de manera independiente.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4479" /> + <location filename="../ViewManager/ViewManager.py" line="4489" /> <source>Split view</source> <translation>Dividir vista</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4481" /> - <source>&Split view</source> - <translation>&Dividir vista</translation> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="4488" /> - <source>Add a split to the view</source> - <translation>Agregar una división a la vista</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="4491" /> - <source><b>Split view</b><p>Add a split to the view.</p></source> - <translation><b>Dividir vista</b><p>Añade una nueva división a la vista.</p></translation> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="4500" /> - <source>Arrange horizontally</source> - <translation>Organizar horizontalmente</translation> + <source>&Split view</source> + <translation>&Dividir vista</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4498" /> + <source>Add a split to the view</source> + <translation>Agregar una división a la vista</translation> </message> <message> <location filename="../ViewManager/ViewManager.py" line="4501" /> + <source><b>Split view</b><p>Add a split to the view.</p></source> + <translation><b>Dividir vista</b><p>Añade una nueva división a la vista.</p></translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4510" /> + <source>Arrange horizontally</source> + <translation>Organizar horizontalmente</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4511" /> <source>Arrange &horizontally</source> <translation>Or&ganizar horizontalmente</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4509" /> + <location filename="../ViewManager/ViewManager.py" line="4519" /> <source>Arrange the splitted views horizontally</source> <translation>Organizar las vistas divididas horizontalmente</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4514" /> + <location filename="../ViewManager/ViewManager.py" line="4524" /> <source><b>Arrange horizontally</b><p>Arrange the splitted views horizontally.</p></source> <translation><b>Organizar horizontalmente</b><p>Organiza las vistas divididas horizontalmente.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4525" /> + <location filename="../ViewManager/ViewManager.py" line="4535" /> <source>Remove split</source> <translation>Quitar división</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4527" /> - <source>&Remove split</source> - <translation>&Quitar división</translation> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="4534" /> - <source>Remove the current split</source> - <translation>Eliminar división actual</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="4537" /> - <source><b>Remove split</b><p>Remove the current split.</p></source> - <translation><b>Eliminar división</b><p>Elimina la división actual.</p></translation> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="4546" /> - <source>Next split</source> - <translation>Próxima división</translation> + <source>&Remove split</source> + <translation>&Quitar división</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4544" /> + <source>Remove the current split</source> + <translation>Eliminar división actual</translation> </message> <message> <location filename="../ViewManager/ViewManager.py" line="4547" /> + <source><b>Remove split</b><p>Remove the current split.</p></source> + <translation><b>Eliminar división</b><p>Elimina la división actual.</p></translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4556" /> + <source>Next split</source> + <translation>Próxima división</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4557" /> <source>&Next split</source> <translation>Pró&xima división</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4549" /> + <location filename="../ViewManager/ViewManager.py" line="4559" /> <source>Ctrl+Alt+N</source> <comment>View|Next split</comment> <translation>Ctrl+Alt+N</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4558" /> + <location filename="../ViewManager/ViewManager.py" line="4568" /> <source>Move to the next split</source> <translation>Mover a la siguiente división</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4561" /> - <source><b>Next split</b><p>Move to the next split.</p></source> - <translation><b>Siguiente división</b><p>Mover a la siguiente división.</p></translation> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="4570" /> - <source>Previous split</source> - <translation>División anterior</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="4571" /> + <source><b>Next split</b><p>Move to the next split.</p></source> + <translation><b>Siguiente división</b><p>Mover a la siguiente división.</p></translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4580" /> + <source>Previous split</source> + <translation>División anterior</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4581" /> <source>&Previous split</source> <translation>Divi&sión anterior</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4573" /> + <location filename="../ViewManager/ViewManager.py" line="4583" /> <source>Ctrl+Alt+P</source> <comment>View|Previous split</comment> <translation>Ctrl+Alt+P</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4582" /> + <location filename="../ViewManager/ViewManager.py" line="4592" /> <source>Move to the previous split</source> <translation>Mover a la división anterior</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4585" /> + <location filename="../ViewManager/ViewManager.py" line="4595" /> <source><b>Previous split</b><p>Move to the previous split.</p></source> <translation><b>División anterior</b><p>Mover a la división anterior.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4596" /> - <location filename="../ViewManager/ViewManager.py" line="4594" /> + <location filename="../ViewManager/ViewManager.py" line="4606" /> + <location filename="../ViewManager/ViewManager.py" line="4604" /> <source>Preview</source> <translation>Vista Previa</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4604" /> + <location filename="../ViewManager/ViewManager.py" line="4614" /> <source>Preview the current file in the web browser</source> <translation>Vista previa del archivo actual en el navegador web</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4609" /> + <location filename="../ViewManager/ViewManager.py" line="4619" /> <source><b>Preview</b><p>This opens the web browser with a preview of the current file.</p></source> <translation><b>Vista Previa</b><p>Abre el navegador web con una vista previa del archivo actual.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4623" /> - <location filename="../ViewManager/ViewManager.py" line="4621" /> + <location filename="../ViewManager/ViewManager.py" line="4633" /> + <location filename="../ViewManager/ViewManager.py" line="4631" /> <source>Python AST Viewer</source> <translation>Visor AST de Python</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4631" /> + <location filename="../ViewManager/ViewManager.py" line="4641" /> <source>Show the AST for the current Python file</source> <translation>Mostrar el AST para el archivo de Python actual</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4636" /> + <location filename="../ViewManager/ViewManager.py" line="4646" /> <source><b>Python AST Viewer</b><p>This opens the a tree view of the AST of the current Python source file.</p></source> <translation><b>Visor AST de Python</b><p>Abre una vista de árbol del AST del archivo actual de código fuente Python.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4650" /> - <location filename="../ViewManager/ViewManager.py" line="4648" /> + <location filename="../ViewManager/ViewManager.py" line="4660" /> + <location filename="../ViewManager/ViewManager.py" line="4658" /> <source>Python Disassembly Viewer</source> <translation>Visor de Desensamblado Python</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4658" /> + <location filename="../ViewManager/ViewManager.py" line="4668" /> <source>Show the Disassembly for the current Python file</source> <translation>Mostrar el desensamblado para el archivo Python actual</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4663" /> + <location filename="../ViewManager/ViewManager.py" line="4673" /> <source><b>Python Disassembly Viewer</b><p>This opens the a tree view of the Disassembly of the current Python source file.</p></source> <translation><b>Visor Desensamblado Python</b><p>Abre una vista de árbol del desensamblado del archivo actual de código Python.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4699" /> + <location filename="../ViewManager/ViewManager.py" line="4709" /> <source>&View</source> <translation>&Ver</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4734" /> - <location filename="../ViewManager/ViewManager.py" line="4732" /> + <location filename="../ViewManager/ViewManager.py" line="4744" /> + <location filename="../ViewManager/ViewManager.py" line="4742" /> <source>View</source> <translation>Ver</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4773" /> - <location filename="../ViewManager/ViewManager.py" line="4765" /> + <location filename="../ViewManager/ViewManager.py" line="4783" /> + <location filename="../ViewManager/ViewManager.py" line="4775" /> <source>Start Macro Recording</source> <translation>Comenzar grabación de macro</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4766" /> - <source>S&tart Macro Recording</source> - <translation>Comenzar &grabación de macro</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="4776" /> + <source>S&tart Macro Recording</source> + <translation>Comenzar &grabación de macro</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4786" /> <source><b>Start Macro Recording</b><p>Start recording editor commands into a new macro.</p></source> <translation><b>Comenzar Grabación de Macro</b><p>Comenzar grabación de comandos de editor como una nueva macro.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4794" /> - <location filename="../ViewManager/ViewManager.py" line="4786" /> + <location filename="../ViewManager/ViewManager.py" line="4804" /> + <location filename="../ViewManager/ViewManager.py" line="4796" /> <source>Stop Macro Recording</source> <translation>Detener Grabación de Macro</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4787" /> - <source>Sto&p Macro Recording</source> - <translation>Detene&r grabación de macro</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="4797" /> + <source>Sto&p Macro Recording</source> + <translation>Detene&r grabación de macro</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4807" /> <source><b>Stop Macro Recording</b><p>Stop recording editor commands into a new macro.</p></source> <translation><b>Detener Grabación de Macro</b><p>Detener grabación de comandos de editor a una nueva macro.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4815" /> - <location filename="../ViewManager/ViewManager.py" line="4807" /> + <location filename="../ViewManager/ViewManager.py" line="4825" /> + <location filename="../ViewManager/ViewManager.py" line="4817" /> <source>Run Macro</source> <translation>Ejecutar macro</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4808" /> - <source>&Run Macro</source> - <translation>Ejecuta&r macro</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="4818" /> + <source>&Run Macro</source> + <translation>Ejecuta&r macro</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4828" /> <source><b>Run Macro</b><p>Run a previously recorded editor macro.</p></source> <translation><b>Ejecutar Macro</b><p>Ejecutar una macro de editor grabada anteriormente.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4836" /> - <location filename="../ViewManager/ViewManager.py" line="4828" /> + <location filename="../ViewManager/ViewManager.py" line="4846" /> + <location filename="../ViewManager/ViewManager.py" line="4838" /> <source>Delete Macro</source> <translation>Borrar macro</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4829" /> - <source>&Delete Macro</source> - <translation>&Borrar macro</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="4839" /> + <source>&Delete Macro</source> + <translation>&Borrar macro</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4849" /> <source><b>Delete Macro</b><p>Delete a previously recorded editor macro.</p></source> <translation><b>Eliminar Macro</b><p>Eliminar una macro de editor grabada anteriormente.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4857" /> - <location filename="../ViewManager/ViewManager.py" line="4849" /> + <location filename="../ViewManager/ViewManager.py" line="4867" /> + <location filename="../ViewManager/ViewManager.py" line="4859" /> <source>Load Macro</source> <translation>Cargar macro</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4850" /> - <source>&Load Macro</source> - <translation>&Cargar macro</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="4860" /> - <source><b>Load Macro</b><p>Load an editor macro from a file.</p></source> - <translation><b>Cargar Macro</b><p>Cargar desde archivo una macro de editor grabada anteriormente.</p></translation> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="4877" /> - <location filename="../ViewManager/ViewManager.py" line="4869" /> - <source>Save Macro</source> - <translation>Guardar macro</translation> + <source>&Load Macro</source> + <translation>&Cargar macro</translation> </message> <message> <location filename="../ViewManager/ViewManager.py" line="4870" /> - <source>&Save Macro</source> - <translation>&Guardar macro</translation> + <source><b>Load Macro</b><p>Load an editor macro from a file.</p></source> + <translation><b>Cargar Macro</b><p>Cargar desde archivo una macro de editor grabada anteriormente.</p></translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4887" /> + <location filename="../ViewManager/ViewManager.py" line="4879" /> + <source>Save Macro</source> + <translation>Guardar macro</translation> </message> <message> <location filename="../ViewManager/ViewManager.py" line="4880" /> + <source>&Save Macro</source> + <translation>&Guardar macro</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4890" /> <source><b>Save Macro</b><p>Save a previously recorded editor macro to a file.</p></source> <translation><b>Guardar Macro</b><p>Guarda en un archivo una macro de editor.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4898" /> + <location filename="../ViewManager/ViewManager.py" line="4908" /> <source>&Macros</source> <translation>&Macros</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4929" /> - <location filename="../ViewManager/ViewManager.py" line="4916" /> + <location filename="../ViewManager/ViewManager.py" line="4939" /> + <location filename="../ViewManager/ViewManager.py" line="4926" /> <source>Toggle Bookmark</source> <translation>Alternar Marcador</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4918" /> + <location filename="../ViewManager/ViewManager.py" line="4928" /> <source>&Toggle Bookmark</source> <translation>Al&ternar marcador</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4920" /> + <location filename="../ViewManager/ViewManager.py" line="4930" /> <source>Alt+Ctrl+T</source> <comment>Bookmark|Toggle</comment> <translation>Alt+Ctrl+T</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4932" /> + <location filename="../ViewManager/ViewManager.py" line="4942" /> <source><b>Toggle Bookmark</b><p>Toggle a bookmark at the current line of the current editor.</p></source> <translation><b>Alternar Marcador</b><p>Alterna un marcador en la línea actual del editor actual.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4956" /> - <location filename="../ViewManager/ViewManager.py" line="4943" /> + <location filename="../ViewManager/ViewManager.py" line="4966" /> + <location filename="../ViewManager/ViewManager.py" line="4953" /> <source>Next Bookmark</source> <translation>Siguiente marcador</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4945" /> + <location filename="../ViewManager/ViewManager.py" line="4955" /> <source>&Next Bookmark</source> <translation>Siguie&nte marcador</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4947" /> + <location filename="../ViewManager/ViewManager.py" line="4957" /> <source>Ctrl+PgDown</source> <comment>Bookmark|Next</comment> <translation>Ctrl+PgDown</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4959" /> + <location filename="../ViewManager/ViewManager.py" line="4969" /> <source><b>Next Bookmark</b><p>Go to next bookmark of the current editor.</p></source> <translation><b>Siguiente Marcador</b><p>Avanzar al siguiente marcador del editor actual.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4982" /> - <location filename="../ViewManager/ViewManager.py" line="4969" /> + <location filename="../ViewManager/ViewManager.py" line="4992" /> + <location filename="../ViewManager/ViewManager.py" line="4979" /> <source>Previous Bookmark</source> <translation>Marcador anterior</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4971" /> + <location filename="../ViewManager/ViewManager.py" line="4981" /> <source>&Previous Bookmark</source> <translation>Marcador an&terior</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4973" /> + <location filename="../ViewManager/ViewManager.py" line="4983" /> <source>Ctrl+PgUp</source> <comment>Bookmark|Previous</comment> <translation>Ctrl+PgUp</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4985" /> + <location filename="../ViewManager/ViewManager.py" line="4995" /> <source><b>Previous Bookmark</b><p>Go to previous bookmark of the current editor.</p></source> <translation><b>Anterior Marcador</b><p>Retroceder al anterior marcador del editor actual.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5007" /> - <location filename="../ViewManager/ViewManager.py" line="4995" /> + <location filename="../ViewManager/ViewManager.py" line="5017" /> + <location filename="../ViewManager/ViewManager.py" line="5005" /> <source>Clear Bookmarks</source> <translation>Borrar todos los marcadores</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4996" /> + <location filename="../ViewManager/ViewManager.py" line="5006" /> <source>&Clear Bookmarks</source> <translation>Borrar todos los mar&cadores</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4998" /> + <location filename="../ViewManager/ViewManager.py" line="5008" /> <source>Alt+Ctrl+C</source> <comment>Bookmark|Clear</comment> <translation>Alt+Ctrl+C</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5010" /> + <location filename="../ViewManager/ViewManager.py" line="5020" /> <source><b>Clear Bookmarks</b><p>Clear bookmarks of all editors.</p></source> <translation><b>Borrar todos los marcadores</b><p>Borra todos los marcadores de todos los editores.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5029" /> - <location filename="../ViewManager/ViewManager.py" line="5020" /> + <location filename="../ViewManager/ViewManager.py" line="5039" /> + <location filename="../ViewManager/ViewManager.py" line="5030" /> <source>Goto Syntax Error</source> <translation>Ir al error de sintaxis</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5022" /> - <source>&Goto Syntax Error</source> - <translation>&Ir al error de sintaxis</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="5032" /> + <source>&Goto Syntax Error</source> + <translation>&Ir al error de sintaxis</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="5042" /> <source><b>Goto Syntax Error</b><p>Go to next syntax error of the current editor.</p></source> <translation><b>Ir al Error de Sintaxis</b><p>Ir al siguiente error de sintaxis del editor actual.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5050" /> - <location filename="../ViewManager/ViewManager.py" line="5042" /> + <location filename="../ViewManager/ViewManager.py" line="5060" /> + <location filename="../ViewManager/ViewManager.py" line="5052" /> <source>Clear Syntax Errors</source> <translation>Borrar Errores de Sintaxis</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5043" /> - <source>Clear &Syntax Errors</source> - <translation>Borrar Errores de &Sintaxis</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="5053" /> + <source>Clear &Syntax Errors</source> + <translation>Borrar Errores de &Sintaxis</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="5063" /> <source><b>Clear Syntax Errors</b><p>Clear syntax errors of all editors.</p></source> <translation><b>Borrar Errores de Sintaxis</b><p>Borra los errores de sintaxis de todos los editores.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5072" /> - <location filename="../ViewManager/ViewManager.py" line="5063" /> + <location filename="../ViewManager/ViewManager.py" line="5082" /> + <location filename="../ViewManager/ViewManager.py" line="5073" /> <source>Next warning message</source> <translation>Siguiente mensaje de advertencia</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5065" /> - <source>&Next warning message</source> - <translation>Siguie&nte mensaje de advertencia</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="5075" /> + <source>&Next warning message</source> + <translation>Siguie&nte mensaje de advertencia</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="5085" /> <source><b>Next warning message</b><p>Go to next line of the current editor having a pyflakes warning.</p></source> <translation><b>Siguiente mensaje de advertencia</b><p>Ir a la siguiente línea en el editor actual que contenga una advertencia de pyflakes.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5095" /> - <location filename="../ViewManager/ViewManager.py" line="5086" /> + <location filename="../ViewManager/ViewManager.py" line="5105" /> + <location filename="../ViewManager/ViewManager.py" line="5096" /> <source>Previous warning message</source> <translation>Mensaje de advertencia anterior</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5088" /> - <source>&Previous warning message</source> - <translation>&Mensaje de advertencia anterior</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="5098" /> + <source>&Previous warning message</source> + <translation>&Mensaje de advertencia anterior</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="5108" /> <source><b>Previous warning message</b><p>Go to previous line of the current editor having a pyflakes warning.</p></source> <translation><b>Anterior mensaje de advertencia</b><p>Ir a la anterior línea en el editor actual que contenga una advertencia de pyflakes.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5117" /> - <location filename="../ViewManager/ViewManager.py" line="5109" /> + <location filename="../ViewManager/ViewManager.py" line="5127" /> + <location filename="../ViewManager/ViewManager.py" line="5119" /> <source>Clear Warning Messages</source> <translation>Limpiar Mensajes de Advertencia</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5110" /> - <source>Clear &Warning Messages</source> - <translation>&Limpiar Mensajes de Advertencia</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="5120" /> + <source>Clear &Warning Messages</source> + <translation>&Limpiar Mensajes de Advertencia</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="5130" /> <source><b>Clear Warning Messages</b><p>Clear pyflakes warning messages of all editors.</p></source> <translation><b>Limpiar Mensajes de Advertencia</b><p>Limpiar mensajes de advertencia de pyflakes en todos los editores.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5139" /> - <location filename="../ViewManager/ViewManager.py" line="5130" /> + <location filename="../ViewManager/ViewManager.py" line="5149" /> + <location filename="../ViewManager/ViewManager.py" line="5140" /> <source>Next uncovered line</source> <translation>Siguiente línea sin cobertura</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5132" /> - <source>&Next uncovered line</source> - <translation>Siguie&nte línea sin cobertura</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="5142" /> + <source>&Next uncovered line</source> + <translation>Siguie&nte línea sin cobertura</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="5152" /> <source><b>Next uncovered line</b><p>Go to next line of the current editor marked as not covered.</p></source> <translation><b>Siguiente línea sin cobertura</b><p>Ir a la siguiente línea del editor actual marcada como sin cobertura.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5162" /> - <location filename="../ViewManager/ViewManager.py" line="5153" /> + <location filename="../ViewManager/ViewManager.py" line="5172" /> + <location filename="../ViewManager/ViewManager.py" line="5163" /> <source>Previous uncovered line</source> <translation>Anterior línea sin cobertura</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5155" /> - <source>&Previous uncovered line</source> - <translation>Anteri&or línea sin cobertura</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="5165" /> + <source>&Previous uncovered line</source> + <translation>Anteri&or línea sin cobertura</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="5175" /> <source><b>Previous uncovered line</b><p>Go to previous line of the current editor marked as not covered.</p></source> <translation><b>Anterior línea sin cobertura</b><p>Ir a la anterior línea del editor actual marcada como sin cobertura.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5185" /> - <location filename="../ViewManager/ViewManager.py" line="5176" /> + <location filename="../ViewManager/ViewManager.py" line="5195" /> + <location filename="../ViewManager/ViewManager.py" line="5186" /> <source>Next Task</source> <translation>Siguiente Tarea</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5178" /> - <source>&Next Task</source> - <translation>Siguie&nte Tarea</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="5188" /> + <source>&Next Task</source> + <translation>Siguie&nte Tarea</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="5198" /> <source><b>Next Task</b><p>Go to next line of the current editor having a task.</p></source> <translation><b>Siguiente Tarea</b><p>Ir a la siguiente línea en el editor actual que tiene una tarea.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5207" /> - <location filename="../ViewManager/ViewManager.py" line="5198" /> + <location filename="../ViewManager/ViewManager.py" line="5217" /> + <location filename="../ViewManager/ViewManager.py" line="5208" /> <source>Previous Task</source> <translation>Tarea anterior</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5200" /> - <source>&Previous Task</source> - <translation>Tarea anteri&or</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="5210" /> + <source>&Previous Task</source> + <translation>Tarea anteri&or</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="5220" /> <source><b>Previous Task</b><p>Go to previous line of the current editor having a task.</p></source> <translation><b>Tarea Anterior</b><p>Ir a la línea anterior en el editor actual que tiene una tarea.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5230" /> - <location filename="../ViewManager/ViewManager.py" line="5221" /> + <location filename="../ViewManager/ViewManager.py" line="5240" /> + <location filename="../ViewManager/ViewManager.py" line="5231" /> <source>Next Change</source> <translation>Siguiente Cambio</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5223" /> - <source>&Next Change</source> - <translation>Siguie&nte Cambio</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="5233" /> + <source>&Next Change</source> + <translation>Siguie&nte Cambio</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="5243" /> <source><b>Next Change</b><p>Go to next line of the current editor having a change marker.</p></source> <translation><b>Siguiente Cambio</b><p>Ir a la siguiente línea del editor actual que tiene un marcador de cambios.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5253" /> - <location filename="../ViewManager/ViewManager.py" line="5244" /> + <location filename="../ViewManager/ViewManager.py" line="5263" /> + <location filename="../ViewManager/ViewManager.py" line="5254" /> <source>Previous Change</source> <translation>Cambio Anterior</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5246" /> - <source>&Previous Change</source> - <translation>Cambio &Anterior</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="5256" /> + <source>&Previous Change</source> + <translation>Cambio &Anterior</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="5266" /> <source><b>Previous Change</b><p>Go to previous line of the current editor having a change marker.</p></source> <translation><b>Cambio Anterior</b><p>Ir a la anterior línea del editor actual que tiene un marcador de cambios.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5277" /> - <location filename="../ViewManager/ViewManager.py" line="5275" /> + <location filename="../ViewManager/ViewManager.py" line="5287" /> + <location filename="../ViewManager/ViewManager.py" line="5285" /> <source>&Bookmarks</source> <translation>&Marcadores</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5321" /> - <location filename="../ViewManager/ViewManager.py" line="5319" /> + <location filename="../ViewManager/ViewManager.py" line="5331" /> + <location filename="../ViewManager/ViewManager.py" line="5329" /> <source>Bookmarks</source> <translation>Marcadores</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5355" /> + <location filename="../ViewManager/ViewManager.py" line="5365" /> <source>Check spelling</source> <translation>Corrección ortográfica</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5357" /> + <location filename="../ViewManager/ViewManager.py" line="5367" /> <source>Check &spelling...</source> <translation>Corrección &ortográfica...</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5359" /> + <location filename="../ViewManager/ViewManager.py" line="5369" /> <source>Shift+F7</source> <comment>Spelling|Spell Check</comment> <translation>Shift+F7</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5368" /> + <location filename="../ViewManager/ViewManager.py" line="5378" /> <source>Perform spell check of current editor</source> <translation>Lleva a cabo la corrección ortográfica del editor actual</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5373" /> - <source><b>Check spelling</b><p>Perform a spell check of the current editor.</p></source> - <translation><b>Corrección ortográfica</b><p>Lleva a cabo la corrección ortográfica del editor actual.</p></translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="5383" /> - <source>Automatic spell checking</source> - <translation>Corrección ortográfica automática</translation> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="5385" /> - <source>&Automatic spell checking</source> - <translation>Corrección ortográfica &automática</translation> + <source><b>Check spelling</b><p>Perform a spell check of the current editor.</p></source> + <translation><b>Corrección ortográfica</b><p>Lleva a cabo la corrección ortográfica del editor actual.</p></translation> </message> <message> <location filename="../ViewManager/ViewManager.py" line="5393" /> + <source>Automatic spell checking</source> + <translation>Corrección ortográfica automática</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="5395" /> + <source>&Automatic spell checking</source> + <translation>Corrección ortográfica &automática</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="5403" /> <source>(De-)Activate automatic spell checking</source> <translation>(Des-)Activar la corrección ortográfica automática</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5398" /> + <location filename="../ViewManager/ViewManager.py" line="5408" /> <source><b>Automatic spell checking</b><p>Activate or deactivate the automatic spell checking function of all editors.</p></source> <translation><b>Corrección ortografica automática</b><p>Activar o desactivar la corrección ortográfica automática en todos los editores.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5432" /> + <location filename="../ViewManager/ViewManager.py" line="5442" /> <source>Edit Dictionary</source> <translation>Editar Diccionario</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5435" /> + <location filename="../ViewManager/ViewManager.py" line="5445" /> <source>Project Word List</source> <translation>Lista de Palabras del Proyecto</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5439" /> + <location filename="../ViewManager/ViewManager.py" line="5449" /> <source>Project Exception List</source> <translation>Lista de Excepciones del Proyecto</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5444" /> + <location filename="../ViewManager/ViewManager.py" line="5454" /> <source>User Word List</source> <translation>Lista de Palabras del Usuario</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5448" /> + <location filename="../ViewManager/ViewManager.py" line="5458" /> <source>User Exception List</source> <translation>Lista de Excepciones del Usuario</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5469" /> - <location filename="../ViewManager/ViewManager.py" line="5467" /> + <location filename="../ViewManager/ViewManager.py" line="5479" /> + <location filename="../ViewManager/ViewManager.py" line="5477" /> <source>Spelling</source> <translation>Corrección ortográfica</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5492" /> + <location filename="../ViewManager/ViewManager.py" line="5502" /> <source>Open Files</source> <translation>Abrir Archivos</translation> </message> <message> + <location filename="../ViewManager/ViewManager.py" line="5531" /> <location filename="../ViewManager/ViewManager.py" line="5521" /> - <location filename="../ViewManager/ViewManager.py" line="5511" /> <source>Open Remote Files</source> <translation>Abrir Archivos Remotos</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5578" /> + <location filename="../ViewManager/ViewManager.py" line="5588" /> <source>File Modified</source> <translation>Archivo Modificado</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5579" /> + <location filename="../ViewManager/ViewManager.py" line="5589" /> <source><p>The file <b>{0}</b> has unsaved changes.</p></source> <translation><p>El archivo <b>{0}</b> tiene cambios sin guardar.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6078" /> + <location filename="../ViewManager/ViewManager.py" line="6090" /> <source>Line: {0:5}</source> <translation>Línea: {0:5}</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6084" /> + <location filename="../ViewManager/ViewManager.py" line="6096" /> <source>Pos: {0:5}</source> <translation>Pos: {0:5}</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6104" /> + <location filename="../ViewManager/ViewManager.py" line="6116" /> <source>Language: {0}</source> <translation>Lenguaje: {0}</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6113" /> + <location filename="../ViewManager/ViewManager.py" line="6125" /> <source>EOL Mode: {0}</source> <translation>Modo de EOL: {0}</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6641" /> - <location filename="../ViewManager/ViewManager.py" line="6598" /> + <location filename="../ViewManager/ViewManager.py" line="6668" /> + <location filename="../ViewManager/ViewManager.py" line="6625" /> <source>&Clear</source> <translation>&Limpiar</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6635" /> + <location filename="../ViewManager/ViewManager.py" line="6662" /> <source>&Add</source> <translation>&Agregar</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6638" /> + <location filename="../ViewManager/ViewManager.py" line="6665" /> <source>&Edit...</source> <translation>&Editar...</translation> </message> <message> + <location filename="../ViewManager/ViewManager.py" line="7735" /> + <location filename="../ViewManager/ViewManager.py" line="7721" /> + <location filename="../ViewManager/ViewManager.py" line="7689" /> + <source>Edit Spelling Dictionary</source> + <translation>Editar Diccionario Ortográfico</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="7692" /> + <source><p>The spelling dictionary file <b>{0}</b> could not be read.</p><p>Reason: {1}</p></source> + <translation><p>El archivo de diccionario ortográfico <b>{0}</b> no se puede leer.</p><p>Razón: {1}</p></translation> + </message> + <message> <location filename="../ViewManager/ViewManager.py" line="7708" /> - <location filename="../ViewManager/ViewManager.py" line="7694" /> - <location filename="../ViewManager/ViewManager.py" line="7662" /> - <source>Edit Spelling Dictionary</source> - <translation>Editar Diccionario Ortográfico</translation> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="7665" /> - <source><p>The spelling dictionary file <b>{0}</b> could not be read.</p><p>Reason: {1}</p></source> - <translation><p>El archivo de diccionario ortográfico <b>{0}</b> no se puede leer.</p><p>Razón: {1}</p></translation> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="7681" /> <source>Editing {0}</source> <translation>Editando {0}</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="7697" /> + <location filename="../ViewManager/ViewManager.py" line="7724" /> <source><p>The spelling dictionary file <b>{0}</b> could not be written.</p><p>Reason: {1}</p></source> <translation><p>El archivo de diccionario ortográfico <b>{0}</b> no se puede escribir.</p><p>Razón: {1}</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="7711" /> + <location filename="../ViewManager/ViewManager.py" line="7738" /> <source>The spelling dictionary was saved successfully.</source> <translation>El diccionario ortográfico se ha guardado con éxito.</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5522" /> + <location filename="../ViewManager/ViewManager.py" line="5532" /> <source>You must be connected to a remote eric-ide server. Aborting...</source> <translation>Debe estar conectado a un servidor remoto de eric-ide. Abortando...</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6820" /> + <location filename="../ViewManager/ViewManager.py" line="6847" /> <source>Clear Editor</source> <translation>Limpiar Editor</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6821" /> + <location filename="../ViewManager/ViewManager.py" line="6848" /> <source>Do you really want to delete all text of the current editor?</source> <translation>¿Desea realmente borrar todo el texto del editor actual?</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="8241" /> - <location filename="../ViewManager/ViewManager.py" line="8224" /> + <location filename="../ViewManager/ViewManager.py" line="8268" /> + <location filename="../ViewManager/ViewManager.py" line="8251" /> <source>File System Watcher Error</source> <translation>Error del Monitor del Sistema de Archivos</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="8225" /> + <location filename="../ViewManager/ViewManager.py" line="8252" /> <source><p>The operating system resources for file system watches are exhausted. This limit should be increased. On a Linux system you should <ul><li>sudo nano /etc/sysctl.conf</li><li>add to the bottom "fs.inotify.max_user_instances = 1024"</li><li>save and close the editor</li><li>sudo sysctl -p</li></ul></p><p>Error Message: {0}</p></source> <translation><p>Los recursos del sistema operativo para monitores del sistema de archivos se han agotado. Este límite se debería incrementar. En un sistema Linux se debería <ul><li>sudo nano /etc/sysctl.conf</li><li>añadir al final del archivo "fs.inotify.max_user_instances = 1024"</li><li>guardar y cerrar el editor</li><li>sudo sysctl -p</li></ul></p><p>Mensaje de Error: {0}</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="8242" /> + <location filename="../ViewManager/ViewManager.py" line="8269" /> <source>The file system watcher reported an error with code <b>{0}</b>.</p><p>Error Message: {1}</p></source> <translation>El monitor del sistema de archivos ha reportado un error con código <b>{0}</b>.</p><p>Mensaje de Error: {1}</p></translation> </message> @@ -99570,54 +99583,54 @@ <context> <name>VirtualenvManager</name> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="317" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="319" /> <source>Add Virtual Environment</source> <translation>Añadir Entorno Virtual</translation> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="318" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="320" /> <source>A virtual environment named <b>{0}</b> exists already. Shall it be replaced?</source> <translation>Un entorno virtual llamado <b>{0}</b> ya existe. ¿Desea reemplazarlo?</translation> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="355" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="357" /> <source>Change Virtual Environment</source> <translation>Cambiar Entorno Virtual</translation> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="388" /> - <location filename="../VirtualEnv/VirtualenvManager.py" line="356" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="390" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="358" /> <source>A virtual environment named <b>{0}</b> does not exist. Aborting!</source> <translation>Un entorno virtual llamado <b>{0}</b> no existe. ¡Abortando!</translation> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="387" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="389" /> <source>Rename Virtual Environment</source> <translation>Renombrar Entorno Virtual</translation> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="479" /> - <location filename="../VirtualEnv/VirtualenvManager.py" line="412" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="481" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="414" /> <source>{0} - {1}</source> <translation>{0} - {1}</translation> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="419" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="421" /> <source>Delete Virtual Environments</source> <translation>Borrar Entornos Virtuales</translation> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="420" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="422" /> <source>Do you really want to delete these virtual environments?</source> <translation>¿Desea borrar estos entornos virtuales?</translation> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="486" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="488" /> <source>Remove Virtual Environments</source> <translation>Eliminar Entornos Virtuales</translation> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="487" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="489" /> <source>Do you really want to remove these virtual environments?</source> <translation>¿Desea eliminar estos entornos virtuales?</translation> </message> @@ -99625,7 +99638,7 @@ <context> <name>VirtualenvManagerDialog</name> <message> - <location filename="../VirtualEnv/VirtualenvManagerWidgets.py" line="442" /> + <location filename="../VirtualEnv/VirtualenvManagerWidgets.py" line="448" /> <source>Manage Virtual Environments</source> <translation>Gestionar Entornos Virtuales</translation> </message> @@ -99749,7 +99762,7 @@ <context> <name>VirtualenvManagerWindow</name> <message> - <location filename="../VirtualEnv/VirtualenvManagerWidgets.py" line="482" /> + <location filename="../VirtualEnv/VirtualenvManagerWidgets.py" line="488" /> <source>Manage Virtual Environments</source> <translation>Gestionar Entornos Virtuales</translation> </message>
--- a/src/eric7/i18n/eric7_fr.ts Wed Oct 16 17:38:35 2024 +0200 +++ b/src/eric7/i18n/eric7_fr.ts Wed Oct 16 17:39:40 2024 +0200 @@ -1641,27 +1641,27 @@ <context> <name>AssistantJedi</name> <message> - <location filename="../JediInterface/AssistantJedi.py" line="230" /> + <location filename="../JediInterface/AssistantJedi.py" line="236" /> <source>Refactoring</source> <translation type="unfinished" /> </message> <message> - <location filename="../JediInterface/AssistantJedi.py" line="232" /> - <source>Rename Variable</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../JediInterface/AssistantJedi.py" line="235" /> - <source>Extract Variable</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../JediInterface/AssistantJedi.py" line="238" /> + <source>Rename Variable</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../JediInterface/AssistantJedi.py" line="241" /> + <source>Extract Variable</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../JediInterface/AssistantJedi.py" line="244" /> <source>Inline Variable</source> <translation type="unfinished" /> </message> <message> - <location filename="../JediInterface/AssistantJedi.py" line="242" /> + <location filename="../JediInterface/AssistantJedi.py" line="248" /> <source>Extract Function</source> <translation type="unfinished" /> </message> @@ -9259,19 +9259,35 @@ </translation> </message> <message> - <location filename="../Debugger/DebugServer.py" line="2109" /> + <location filename="../Debugger/DebugServer.py" line="2110" /> <source>Passive debug connection received </source> <translation type="unfinished" /> </message> <message> - <location filename="../Debugger/DebugServer.py" line="2123" /> + <location filename="../Debugger/DebugServer.py" line="2119" /> + <source>Passive debug connection received while not in passive mode. +</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Debugger/DebugServer.py" line="2125" /> + <source>Debug Client Connection</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Debugger/DebugServer.py" line="2126" /> + <source>Passive debug client connection received while not in passive mode. Enable this mode on the 'Debugger General' configuration page. The connection will be rejected.</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Debugger/DebugServer.py" line="2141" /> <source>Passive debug connection closed </source> <translation type="unfinished" /> </message> <message> - <location filename="../Debugger/DebugServer.py" line="2254" /> + <location filename="../Debugger/DebugServer.py" line="2272" /> <source><project></source> <translation type="unfinished" /> </message> @@ -10222,25 +10238,13 @@ </message> <message> <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" /> - <source>Enables the passive debug mode</source> - <translation>Active le mode de débogage passif</translation> + <source>Debugger Type:</source> + <translation>Type de débogueur:</translation> </message> <message> <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" /> - <source><b>Passive Debugger Enabled</b> -<p>This enables the passive debugging mode. In this mode the debug client (the script) connects to the debug server (the IDE). The script is started outside the IDE. This way mod_python or Zope scripts can be debugged.</p></source> - <translation><b>Debogueur Passif Actif</b> -<p>Active le mode de débogage passif. Dans ce mode, le client (le script) se connecte au serveur de débogage (IDE). Le script est démarré à l'exterieur de l'IDE. Les scripts mod_python ou Zope peurvent être débogués de cette façon.</p></translation> - </message> - <message> - <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" /> - <source>Passive Debugger Enabled</source> - <translation>Débogueur passif activé</translation> - </message> - <message> - <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" /> - <source>Debug Server Port:</source> - <translation>Port du serveur de débogage:</translation> + <source>Select the debugger type of the backend</source> + <translation>Sélectionne le type de débogueur</translation> </message> <message> <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" /> @@ -10256,13 +10260,8 @@ </message> <message> <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" /> - <source>Debugger Type:</source> - <translation>Type de débogueur:</translation> - </message> - <message> - <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" /> - <source>Select the debugger type of the backend</source> - <translation>Sélectionne le type de débogueur</translation> + <source>Debug Server Port:</source> + <translation>Port du serveur de débogage:</translation> </message> <message> <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" /> @@ -10594,50 +10593,64 @@ <source>Automatically view source code</source> <translation>Voir automatiquement le code source</translation> </message> + <message> + <source>Enables the passive debug mode</source> + <translation type="vanished">Active le mode de débogage passif</translation> + </message> + <message> + <source><b>Passive Debugger Enabled</b> +<p>This enables the passive debugging mode. In this mode the debug client (the script) connects to the debug server (the IDE). The script is started outside the IDE. This way mod_python or Zope scripts can be debugged.</p></source> + <translation type="vanished"><b>Debogueur Passif Actif</b> +<p>Active le mode de débogage passif. Dans ce mode, le client (le script) se connecte au serveur de débogage (IDE). Le script est démarré à l'exterieur de l'IDE. Les scripts mod_python ou Zope peurvent être débogués de cette façon.</p></translation> + </message> + <message> + <source>Passive Debugger Enabled</source> + <translation type="vanished">Débogueur passif activé</translation> + </message> </context> <context> <name>DebuggerInterfacePython</name> <message> - <location filename="../Debugger/DebuggerInterfacePython.py" line="727" /> - <location filename="../Debugger/DebuggerInterfacePython.py" line="704" /> - <location filename="../Debugger/DebuggerInterfacePython.py" line="611" /> - <location filename="../Debugger/DebuggerInterfacePython.py" line="565" /> - <location filename="../Debugger/DebuggerInterfacePython.py" line="446" /> - <location filename="../Debugger/DebuggerInterfacePython.py" line="423" /> - <location filename="../Debugger/DebuggerInterfacePython.py" line="346" /> - <location filename="../Debugger/DebuggerInterfacePython.py" line="322" /> - <location filename="../Debugger/DebuggerInterfacePython.py" line="259" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="728" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="705" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="609" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="563" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="445" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="422" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="345" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="321" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="258" /> <source>Start Debugger</source> <translation>Démarrage du débogueur</translation> </message> <message> - <location filename="../Debugger/DebuggerInterfacePython.py" line="566" /> - <location filename="../Debugger/DebuggerInterfacePython.py" line="260" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="564" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="259" /> <source><p>No suitable Python3 environment configured.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Debugger/DebuggerInterfacePython.py" line="728" /> - <location filename="../Debugger/DebuggerInterfacePython.py" line="705" /> - <location filename="../Debugger/DebuggerInterfacePython.py" line="612" /> - <location filename="../Debugger/DebuggerInterfacePython.py" line="447" /> - <location filename="../Debugger/DebuggerInterfacePython.py" line="424" /> - <location filename="../Debugger/DebuggerInterfacePython.py" line="323" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="729" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="706" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="610" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="446" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="423" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="322" /> <source><p>The debugger backend could not be started.</p></source> <translation><p>Impossible de lancer le débogueur en arrière-plan.</p></translation> </message> <message> - <location filename="../Debugger/DebuggerInterfacePython.py" line="347" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="346" /> <source><p>Remote debugging is configured but no command for remote login was given.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Debugger/DebuggerInterfacePython.py" line="1659" /> - <source>Debug Protocol Error</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Debugger/DebuggerInterfacePython.py" line="1660" /> + <source>Debug Protocol Error</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Debugger/DebuggerInterfacePython.py" line="1661" /> <source><p>The response received from the debugger backend 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" /> </message> @@ -62206,7 +62219,7 @@ <context> <name>PreviewModel</name> <message> - <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="478" /> + <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="506" /> <source>Variable Name</source> <translation>Nom de variable</translation> </message> @@ -63088,8 +63101,8 @@ <translation>Renommer le fichier</translation> </message> <message> - <location filename="../Project/Project.py" line="8058" /> - <location filename="../Project/Project.py" line="3901" /> + <location filename="../Project/Project.py" line="8055" /> + <location filename="../Project/Project.py" line="3898" /> <location filename="../Project/Project.py" line="2398" /> <source><p>The file <b>{0}</b> already exists. Overwrite it?</p></source> <translation><p>Le fichier <b>{0}</b>existe déjà. Écraser ?</p></translation> @@ -63223,40 +63236,40 @@ <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="8044" /> - <location filename="../Project/Project.py" line="8038" /> - <location filename="../Project/Project.py" line="8028" /> - <location filename="../Project/Project.py" line="3886" /> - <location filename="../Project/Project.py" line="3876" /> + <location filename="../Project/Project.py" line="8041" /> + <location filename="../Project/Project.py" line="8035" /> + <location filename="../Project/Project.py" line="8025" /> + <location filename="../Project/Project.py" line="3883" /> + <location filename="../Project/Project.py" line="3873" /> <location filename="../Project/Project.py" line="3652" /> <source>Project Files (*.epj)</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="3900" /> - <location filename="../Project/Project.py" line="3884" /> + <location filename="../Project/Project.py" line="3897" /> + <location filename="../Project/Project.py" line="3881" /> <source>Save Project</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="3939" /> + <location filename="../Project/Project.py" line="3936" /> <source>Close Project</source> <translation>Fermer le projet</translation> </message> <message> - <location filename="../Project/Project.py" line="3940" /> + <location filename="../Project/Project.py" line="3937" /> <source>The current project has unsaved changes.</source> <translation>Le projet courant a des modifications non enregistrées.</translation> </message> <message> - <location filename="../Project/Project.py" line="4140" /> - <location filename="../Project/Project.py" line="4104" /> + <location filename="../Project/Project.py" line="4137" /> + <location filename="../Project/Project.py" line="4101" /> <source>Syntax Errors Detected</source> <translation type="unfinished" /> </message> <message numerus="yes"> - <location filename="../Project/Project.py" line="4141" /> - <location filename="../Project/Project.py" line="4105" /> + <location filename="../Project/Project.py" line="4138" /> + <location filename="../Project/Project.py" line="4102" /> <source>The project contains %n file(s) with syntax errors.</source> <translation> <numerusform>Le projet contient %n fichier avec des erreurs de syntaxe.</numerusform> @@ -63264,1268 +63277,1268 @@ </translation> </message> <message> - <location filename="../Project/Project.py" line="4799" /> + <location filename="../Project/Project.py" line="4796" /> <source>New project</source> <translation>Nouveau projet</translation> </message> <message> - <location filename="../Project/Project.py" line="4801" /> + <location filename="../Project/Project.py" line="4798" /> <source>&New...</source> <translation>&Nouveau...</translation> </message> <message> - <location filename="../Project/Project.py" line="4807" /> + <location filename="../Project/Project.py" line="4804" /> <source>Generate a new project</source> <translation>Génerer un nouveau projet</translation> </message> <message> - <location filename="../Project/Project.py" line="4809" /> + <location filename="../Project/Project.py" line="4806" /> <source><b>New...</b><p>This opens a dialog for entering the info for a new project.</p></source> <translation><b>Nouveau...</b><p>Ouvre une boite de dialogue pour entrer les paramètres d'un nouveau projet.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4819" /> + <location filename="../Project/Project.py" line="4816" /> <source>Open project</source> <translation>Ouvir un projet</translation> </message> <message> - <location filename="../Project/Project.py" line="4821" /> + <location filename="../Project/Project.py" line="4818" /> <source>&Open...</source> <translation>&Ouvrir...</translation> </message> <message> - <location filename="../Project/Project.py" line="4827" /> + <location filename="../Project/Project.py" line="4824" /> <source>Open an existing project</source> <translation>Ouvrir un projet existant</translation> </message> <message> - <location filename="../Project/Project.py" line="4829" /> + <location filename="../Project/Project.py" line="4826" /> <source><b>Open...</b><p>This opens an existing project.</p></source> <translation><b>Ouvrir...</b><p>Ouvre un projet existant.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4835" /> + <location filename="../Project/Project.py" line="4832" /> <source>Open remote project</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="4837" /> + <location filename="../Project/Project.py" line="4834" /> <source>Open (Remote)...</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="4843" /> + <location filename="../Project/Project.py" line="4840" /> <source>Open an existing remote project</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="4845" /> + <location filename="../Project/Project.py" line="4842" /> <source><b>Open (Remote)...</b><p>This opens an existing remote project.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="4854" /> + <location filename="../Project/Project.py" line="4851" /> <source>Reload project</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="4856" /> + <location filename="../Project/Project.py" line="4853" /> <source>Re&load</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="4862" /> + <location filename="../Project/Project.py" line="4859" /> <source>Reload the current project</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="4864" /> + <location filename="../Project/Project.py" line="4861" /> <source><b>Reload</b><p>This reloads the current project.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="4870" /> + <location filename="../Project/Project.py" line="4867" /> <source>Close project</source> <translation>Fermer le projet</translation> </message> <message> - <location filename="../Project/Project.py" line="4872" /> + <location filename="../Project/Project.py" line="4869" /> <source>&Close</source> <translation>&Fermer</translation> </message> <message> - <location filename="../Project/Project.py" line="4878" /> + <location filename="../Project/Project.py" line="4875" /> <source>Close the current project</source> <translation>Fermer le projet en cours</translation> </message> <message> - <location filename="../Project/Project.py" line="4880" /> + <location filename="../Project/Project.py" line="4877" /> <source><b>Close</b><p>This closes the current project.</p></source> <translation><b>Fermer</b><p>Ferme le projet en cours.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4886" /> + <location filename="../Project/Project.py" line="4883" /> <source>Save project</source> <translation>Enregistrer le projet</translation> </message> <message> - <location filename="../Project/Project.py" line="5183" /> - <location filename="../Project/Project.py" line="4888" /> + <location filename="../Project/Project.py" line="5180" /> + <location filename="../Project/Project.py" line="4885" /> <source>&Save</source> <translation>&Enregistrer</translation> </message> <message> - <location filename="../Project/Project.py" line="4894" /> + <location filename="../Project/Project.py" line="4891" /> <source>Save the current project</source> <translation>Enregistre le projet courant</translation> </message> <message> - <location filename="../Project/Project.py" line="4896" /> + <location filename="../Project/Project.py" line="4893" /> <source><b>Save</b><p>This saves the current project.</p></source> <translation><b>Enregistrer</b><p>Enregistre le projet en cours.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4902" /> + <location filename="../Project/Project.py" line="4899" /> <source>Save project as</source> <translation>Enregistrer le projet sous</translation> </message> <message> - <location filename="../Project/Project.py" line="4904" /> + <location filename="../Project/Project.py" line="4901" /> <source>Save &as...</source> <translation>&Enregistrer sous...</translation> </message> <message> - <location filename="../Project/Project.py" line="4910" /> + <location filename="../Project/Project.py" line="4907" /> <source>Save the current project to a new file</source> <translation>Enregistre le projet en cours dans un nouveau fichier</translation> </message> <message> - <location filename="../Project/Project.py" line="4912" /> + <location filename="../Project/Project.py" line="4909" /> <source><b>Save as</b><p>This saves the current project to a new file.</p></source> <translation><b>Enregistrer sous</b><p>Enregistre le projet en cours dans un nouveau fichier.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4921" /> + <location filename="../Project/Project.py" line="4918" /> <source>Save project as (Remote)</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="4923" /> + <location filename="../Project/Project.py" line="4920" /> <source>Save as (Remote)...</source> <translation type="unfinished" /> </message> <message> + <location filename="../Project/Project.py" line="4927" /> + <source>Save the current project to a new remote file</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../Project/Project.py" line="4930" /> - <source>Save the current project to a new remote file</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="4933" /> <source><b>Save as (Remote)</b><p>This saves the current project to a new remote file.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="4949" /> + <location filename="../Project/Project.py" line="4946" /> <source>Add files to project</source> <translation>Ajouter des fichiers au projet</translation> </message> <message> - <location filename="../Project/Project.py" line="4951" /> + <location filename="../Project/Project.py" line="4948" /> <source>Add &files...</source> <translation>Ajouter des &fichiers...</translation> </message> <message> - <location filename="../Project/Project.py" line="4957" /> + <location filename="../Project/Project.py" line="4954" /> <source>Add files to the current project</source> <translation>Ajouter des fichiers au projet courant</translation> </message> <message> - <location filename="../Project/Project.py" line="4959" /> + <location filename="../Project/Project.py" line="4956" /> <source><b>Add files...</b><p>This opens a dialog for adding files to the current project. The place to add is determined by the file extension.</p></source> <translation><b>Ajouter des fichiers...</b><p>Ouvre une boite de dialogue pour ajouter des fichiers au projet courant. La position pour l'insertion est déterminée par l'extension du fichier.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4970" /> + <location filename="../Project/Project.py" line="4967" /> <source>Add directory to project</source> <translation>Ajouter un répertoire au projet</translation> </message> <message> - <location filename="../Project/Project.py" line="4972" /> + <location filename="../Project/Project.py" line="4969" /> <source>Add directory...</source> <translation>Ajouter un répertoire...</translation> </message> <message> + <location filename="../Project/Project.py" line="4976" /> + <source>Add a directory to the current project</source> + <translation>Ajouter un répertoire au projet courant</translation> + </message> + <message> <location filename="../Project/Project.py" line="4979" /> - <source>Add a directory to the current project</source> - <translation>Ajouter un répertoire au projet courant</translation> - </message> - <message> - <location filename="../Project/Project.py" line="4982" /> <source><b>Add directory...</b><p>This opens a dialog for adding a directory to the current project.</p></source> <translation><b>Ajouter un répertoire...</b><p>Ouvre une fenêtre pour ajouter un répertoire au projet courant.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4992" /> + <location filename="../Project/Project.py" line="4989" /> <source>Add translation to project</source> <translation>Ajouter une traduction au projet</translation> </message> <message> - <location filename="../Project/Project.py" line="4994" /> + <location filename="../Project/Project.py" line="4991" /> <source>Add &translation...</source> <translation>Ajouter une &traduction...</translation> </message> <message> + <location filename="../Project/Project.py" line="4998" /> + <source>Add a translation to the current project</source> + <translation>Ajoute une traduction au projet en cours</translation> + </message> + <message> <location filename="../Project/Project.py" line="5001" /> - <source>Add a translation to the current project</source> - <translation>Ajoute une traduction au projet en cours</translation> - </message> - <message> - <location filename="../Project/Project.py" line="5004" /> <source><b>Add translation...</b><p>This opens a dialog for add a translation to the current project.</p></source> <translation><b>Ajouter une traduction...</b><p>Ouvre une boite de dialogue pour ajouter une traduction au projet courant.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5014" /> + <location filename="../Project/Project.py" line="5011" /> <source>Search new files</source> <translation>Rechercher des nouveaux fichiers</translation> </message> <message> - <location filename="../Project/Project.py" line="5015" /> + <location filename="../Project/Project.py" line="5012" /> <source>Searc&h new files...</source> <translation>Re&chercher des nouveaux fichiers...</translation> </message> <message> - <location filename="../Project/Project.py" line="5021" /> + <location filename="../Project/Project.py" line="5018" /> <source>Search new files in the project directory.</source> <translation>Recherche des nouveaux fichiers dans le répertoire du projet.</translation> </message> <message> - <location filename="../Project/Project.py" line="5023" /> + <location filename="../Project/Project.py" line="5020" /> <source><b>Search new files...</b><p>This searches for new files (sources, forms, ...) in the project directory and registered subdirectories.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5033" /> + <location filename="../Project/Project.py" line="5030" /> <source>Search Project File</source> <translation>Chercher un fichier projet</translation> </message> <message> - <location filename="../Project/Project.py" line="5034" /> + <location filename="../Project/Project.py" line="5031" /> <source>Search Project File...</source> <translation>Chercher un fichier projet...</translation> </message> <message> - <location filename="../Project/Project.py" line="5035" /> + <location filename="../Project/Project.py" line="5032" /> <source>Alt+Ctrl+P</source> <comment>Project|Search Project File</comment> <translation>Alt+Ctrl+P</translation> </message> <message> - <location filename="../Project/Project.py" line="5040" /> + <location filename="../Project/Project.py" line="5037" /> <source>Search for a file in the project list of files.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5042" /> + <location filename="../Project/Project.py" line="5039" /> <source><b>Search Project File</b><p>This searches for a file in the project list of files.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5051" /> + <location filename="../Project/Project.py" line="5048" /> <source>Project properties</source> <translation>Propriétés du projet</translation> </message> <message> - <location filename="../Project/Project.py" line="5053" /> + <location filename="../Project/Project.py" line="5050" /> <source>&Properties...</source> <translation>&Propriétés...</translation> </message> <message> - <location filename="../Project/Project.py" line="5059" /> + <location filename="../Project/Project.py" line="5056" /> <source>Show the project properties</source> <translation>Affiche les propriétés du projet</translation> </message> <message> - <location filename="../Project/Project.py" line="5061" /> + <location filename="../Project/Project.py" line="5058" /> <source><b>Properties...</b><p>This shows a dialog to edit the project properties.</p></source> <translation><b>Propriétés...</b><p>Affiche une boite de dialogue pour éditer les propriétés du projet.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5070" /> + <location filename="../Project/Project.py" line="5067" /> <source>User project properties</source> <translation>Propriétés utilisateur du projet</translation> </message> <message> - <location filename="../Project/Project.py" line="5072" /> + <location filename="../Project/Project.py" line="5069" /> <source>&User Properties...</source> <translation>Propriétés &Utilisateur...</translation> </message> <message> + <location filename="../Project/Project.py" line="5076" /> + <source>Show the user specific project properties</source> + <translation>Afficher le propriétés utilisateurs spécifiques au projet</translation> + </message> + <message> <location filename="../Project/Project.py" line="5079" /> - <source>Show the user specific project properties</source> - <translation>Afficher le propriétés utilisateurs spécifiques au projet</translation> - </message> - <message> - <location filename="../Project/Project.py" line="5082" /> <source><b>User Properties...</b><p>This shows a dialog to edit the user specific project properties.</p></source> <translation><b>Propriétés utilisateur...</b><p>Affiche une fenêtre permettant d'éditer les propriétés du projet spécifiques à l'utilisateur.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5092" /> + <location filename="../Project/Project.py" line="5089" /> <source>Filetype Associations</source> <translation>Association des types de fichiers</translation> </message> <message> - <location filename="../Project/Project.py" line="5093" /> + <location filename="../Project/Project.py" line="5090" /> <source>Filetype Associations...</source> <translation>Association des types de fichiers...</translation> </message> <message> + <location filename="../Project/Project.py" line="5097" /> + <source>Show the project file type associations</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../Project/Project.py" line="5100" /> - <source>Show the project file type associations</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="5103" /> <source><b>Filetype Associations...</b><p>This shows a dialog to edit the file type associations of the project. These associations determine the type (source, form, interface, protocol or others) with a filename pattern. They are used when adding a file to the project and when performing a search for new files.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5116" /> + <location filename="../Project/Project.py" line="5113" /> <source>Lexer Associations</source> <translation>Association des types de fichiers</translation> </message> <message> - <location filename="../Project/Project.py" line="5117" /> + <location filename="../Project/Project.py" line="5114" /> <source>Lexer Associations...</source> <translation>Association des types de fichiers...</translation> </message> <message> + <location filename="../Project/Project.py" line="5121" /> + <source>Show the project lexer associations (overriding defaults)</source> + <translation>Affiche les asociations Fichier/Type de fichier pour le projet (sans tenir compte des valeurs par défaut)</translation> + </message> + <message> <location filename="../Project/Project.py" line="5124" /> - <source>Show the project lexer associations (overriding defaults)</source> - <translation>Affiche les asociations Fichier/Type de fichier pour le projet (sans tenir compte des valeurs par défaut)</translation> - </message> - <message> - <location filename="../Project/Project.py" line="5127" /> <source><b>Lexer Associations...</b><p>This shows a dialog to edit the lexer associations of the project. These associations override the global lexer associations. Lexers are used to highlight the editor text.</p></source> <translation><b>Associations des types de fichiers...</b><p>Permet d'associer les types de fichiers aux analyseurs syntaxiques pour le projet en cours. Ces associations sont prioritaires sur les associations de fichiers configurées par défaut.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5145" /> + <location filename="../Project/Project.py" line="5142" /> <source>Debugger Properties</source> <translation>Propriétés du Débogueur</translation> </message> <message> - <location filename="../Project/Project.py" line="5146" /> + <location filename="../Project/Project.py" line="5143" /> <source>Debugger &Properties...</source> <translation>Débogueur & Propriétés...</translation> </message> <message> - <location filename="../Project/Project.py" line="5152" /> + <location filename="../Project/Project.py" line="5149" /> <source>Show the debugger properties</source> <translation>Affichage des propriétés du débogueur</translation> </message> <message> - <location filename="../Project/Project.py" line="5154" /> + <location filename="../Project/Project.py" line="5151" /> <source><b>Debugger Properties...</b><p>This shows a dialog to edit project specific debugger settings.</p></source> <translation><b>Propriétés du Débogueur...</b><p>Affiche une boite de dialogue permettant d'éditer les proprités du débogueur, spécifiques au projet.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5164" /> + <location filename="../Project/Project.py" line="5161" /> <source>Load</source> <translation>Charger</translation> </message> <message> - <location filename="../Project/Project.py" line="5165" /> + <location filename="../Project/Project.py" line="5162" /> <source>&Load</source> <translation>&Charger</translation> </message> <message> - <location filename="../Project/Project.py" line="5171" /> + <location filename="../Project/Project.py" line="5168" /> <source>Load the debugger properties</source> <translation>Charger les propriétés du débogueur</translation> </message> <message> - <location filename="../Project/Project.py" line="5173" /> + <location filename="../Project/Project.py" line="5170" /> <source><b>Load Debugger Properties</b><p>This loads the project specific debugger settings.</p></source> <translation><b>Chargement des Propriétés du Débogueur</b><p>Charge la configuration du débogueur spécifique au projet.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5182" /> + <location filename="../Project/Project.py" line="5179" /> <source>Save</source> <translation>Enregistrer</translation> </message> <message> - <location filename="../Project/Project.py" line="5189" /> + <location filename="../Project/Project.py" line="5186" /> <source>Save the debugger properties</source> <translation>Enregistrer les propriétés du débogueur</translation> </message> <message> - <location filename="../Project/Project.py" line="5191" /> + <location filename="../Project/Project.py" line="5188" /> <source><b>Save Debugger Properties</b><p>This saves the project specific debugger settings.</p></source> <translation><b>Enregistrement des Propriétés du Débogueur</b><p>Enregistre la configuration du débogueur spécifique au projet.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5200" /> + <location filename="../Project/Project.py" line="5197" /> <source>Delete</source> <translation>Supprimer</translation> </message> <message> - <location filename="../Project/Project.py" line="5201" /> + <location filename="../Project/Project.py" line="5198" /> <source>&Delete</source> <translation>&Supprimer</translation> </message> <message> - <location filename="../Project/Project.py" line="5207" /> + <location filename="../Project/Project.py" line="5204" /> <source>Delete the debugger properties</source> <translation>Supprimer les propriétés du débogueur</translation> </message> <message> - <location filename="../Project/Project.py" line="5209" /> + <location filename="../Project/Project.py" line="5206" /> <source><b>Delete Debugger Properties</b><p>This deletes the file containing the project specific debugger settings.</p></source> <translation><b>Suppression des Propriétés du Débogueur...</b><p>Supprime la configuration du débogueur spécifique au projet.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5219" /> + <location filename="../Project/Project.py" line="5216" /> <source>Reset</source> <translation>Réinitialiser</translation> </message> <message> - <location filename="../Project/Project.py" line="5220" /> + <location filename="../Project/Project.py" line="5217" /> <source>&Reset</source> <translation>&Réinitialiser</translation> </message> <message> - <location filename="../Project/Project.py" line="5226" /> + <location filename="../Project/Project.py" line="5223" /> <source>Reset the debugger properties</source> <translation>Réinitialise des propriétés du débogueur</translation> </message> <message> - <location filename="../Project/Project.py" line="5228" /> + <location filename="../Project/Project.py" line="5225" /> <source><b>Reset Debugger Properties</b><p>This resets the project specific debugger settings.</p></source> <translation><b>Réinitialiser les propriétés du débogueur</b><p>Réinitialise la configuration du débogueur spécifique au projet.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5244" /> - <location filename="../Project/Project.py" line="5243" /> + <location filename="../Project/Project.py" line="5241" /> + <location filename="../Project/Project.py" line="5240" /> <source>Load session</source> <translation>Charger la session</translation> </message> <message> - <location filename="../Project/Project.py" line="5250" /> + <location filename="../Project/Project.py" line="5247" /> <source>Load the projects session file.</source> <translation>Charge le fichier de session du projet.</translation> </message> <message> - <location filename="../Project/Project.py" line="5252" /> + <location filename="../Project/Project.py" line="5249" /> <source><b>Load session</b><p>This loads the projects session file. The session consists of the following data.<br>- all open source files<br>- all breakpoint<br>- the commandline arguments<br>- the working directory<br>- the exception reporting flag</p></source> <translation><b>Charger la session</b><p>Charge le fichier session du projet. Une session est constituée par les données suivantes.<br>- tous les fichiers open source<br>- tous les points d'arrêts<br>- les arguments de ligne de commande<br>- le répertoire de travail<br>- le flag de rapport d'exception</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5268" /> - <location filename="../Project/Project.py" line="5267" /> + <location filename="../Project/Project.py" line="5265" /> + <location filename="../Project/Project.py" line="5264" /> <source>Save session</source> <translation>Enregistrer la session</translation> </message> <message> - <location filename="../Project/Project.py" line="5274" /> + <location filename="../Project/Project.py" line="5271" /> <source>Save the projects session file.</source> <translation>Enregistre le fichier de session du projet.</translation> </message> <message> - <location filename="../Project/Project.py" line="5276" /> + <location filename="../Project/Project.py" line="5273" /> <source><b>Save session</b><p>This saves the projects session file. The session consists of the following data.<br>- all open source files<br>- all breakpoint<br>- the commandline arguments<br>- the working directory<br>- the exception reporting flag</p></source> <translation><b>Enregistrer la session</b><p>Enregistrer le fichier session du projet. Une session est constituée par les données suivantes.<br>- tous les fichiers open source<br>- tous les points d'arrêts<br>- les arguments de ligne de commande<br>- le répertoire de travail<br>- le flag de rapport d'exception</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5292" /> - <location filename="../Project/Project.py" line="5291" /> + <location filename="../Project/Project.py" line="5289" /> + <location filename="../Project/Project.py" line="5288" /> <source>Delete session</source> <translation>Supprimer la session</translation> </message> <message> - <location filename="../Project/Project.py" line="5298" /> + <location filename="../Project/Project.py" line="5295" /> <source>Delete the projects session file.</source> <translation>Suppression du fichier session de projet.</translation> </message> <message> - <location filename="../Project/Project.py" line="5300" /> + <location filename="../Project/Project.py" line="5297" /> <source><b>Delete session</b><p>This deletes the projects session file</p></source> <translation><b>Suppression de session</b><p>Ceci supprime le fichier session de projet.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5315" /> + <location filename="../Project/Project.py" line="5312" /> <source>Code Metrics</source> <translation>Statistiques du code</translation> </message> <message> - <location filename="../Project/Project.py" line="5316" /> + <location filename="../Project/Project.py" line="5313" /> <source>&Code Metrics...</source> <translation>Statistiques du &Code...</translation> </message> <message> + <location filename="../Project/Project.py" line="5320" /> + <source>Show some code metrics for the project.</source> + <translation>Affiche des statistiques sur le code du projet.</translation> + </message> + <message> <location filename="../Project/Project.py" line="5323" /> - <source>Show some code metrics for the project.</source> - <translation>Affiche des statistiques sur le code du projet.</translation> - </message> - <message> - <location filename="../Project/Project.py" line="5326" /> <source><b>Code Metrics...</b><p>This shows some code metrics for all Python files in the project.</p></source> <translation><b>Statistiques du Code...</b><p>Affiche des statistiques sur le code de tous les fichiers Python du projet.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5336" /> + <location filename="../Project/Project.py" line="5333" /> <source>Python Code Coverage</source> <translation> Code Coverage Python</translation> </message> <message> - <location filename="../Project/Project.py" line="5337" /> + <location filename="../Project/Project.py" line="5334" /> <source>Code Co&verage...</source> <translation>Code Co&verage...</translation> </message> <message> + <location filename="../Project/Project.py" line="5341" /> + <source>Show code coverage information for the project.</source> + <translation>Affiche les informations de code coverage pour le projet.</translation> + </message> + <message> <location filename="../Project/Project.py" line="5344" /> - <source>Show code coverage information for the project.</source> - <translation>Affiche les informations de code coverage pour le projet.</translation> - </message> - <message> - <location filename="../Project/Project.py" line="5347" /> <source><b>Code Coverage...</b><p>This shows the code coverage information for all Python files in the project.</p></source> <translation><b>Code Coverage...</b><p>Affiche les informations de code coverage pour le projet.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="6781" /> - <location filename="../Project/Project.py" line="6768" /> - <location filename="../Project/Project.py" line="5357" /> + <location filename="../Project/Project.py" line="6778" /> + <location filename="../Project/Project.py" line="6765" /> + <location filename="../Project/Project.py" line="5354" /> <source>Profile Data</source> <translation>Profiling des données</translation> </message> <message> - <location filename="../Project/Project.py" line="5358" /> + <location filename="../Project/Project.py" line="5355" /> <source>&Profile Data...</source> <translation>&Profiling des données...</translation> </message> <message> + <location filename="../Project/Project.py" line="5362" /> + <source>Show profiling data for the project.</source> + <translation>Affiche le profiling des données du projet.</translation> + </message> + <message> <location filename="../Project/Project.py" line="5365" /> - <source>Show profiling data for the project.</source> - <translation>Affiche le profiling des données du projet.</translation> - </message> - <message> - <location filename="../Project/Project.py" line="5368" /> <source><b>Profile Data...</b><p>This shows the profiling data for the project.</p></source> <translation><b>Profilling des données...</b><p>Affiche le profiling des données du projet.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="6833" /> - <location filename="../Project/Project.py" line="5383" /> + <location filename="../Project/Project.py" line="6830" /> + <location filename="../Project/Project.py" line="5380" /> <source>Application Diagram</source> <translation>Diagramme de l'application</translation> </message> <message> - <location filename="../Project/Project.py" line="5384" /> + <location filename="../Project/Project.py" line="5381" /> <source>&Application Diagram...</source> <translation>&Diagramme de l'application...</translation> </message> <message> + <location filename="../Project/Project.py" line="5388" /> + <source>Show a diagram of the project.</source> + <translation>Affiche le diagramme de l'application.</translation> + </message> + <message> <location filename="../Project/Project.py" line="5391" /> - <source>Show a diagram of the project.</source> - <translation>Affiche le diagramme de l'application.</translation> - </message> - <message> - <location filename="../Project/Project.py" line="5394" /> <source><b>Application Diagram...</b><p>This shows a diagram of the project.</p></source> <translation><b>Diagramme de l'application...</b><p>Affiche le diagramme du projet.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5403" /> + <location filename="../Project/Project.py" line="5400" /> <source>Load Diagram</source> <translation>Charger le diagramme</translation> </message> <message> - <location filename="../Project/Project.py" line="5404" /> + <location filename="../Project/Project.py" line="5401" /> <source>&Load Diagram...</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5410" /> + <location filename="../Project/Project.py" line="5407" /> <source>Load a diagram from file.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5412" /> + <location filename="../Project/Project.py" line="5409" /> <source><b>Load Diagram...</b><p>This loads a diagram from file.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="7001" /> - <location filename="../Project/Project.py" line="6946" /> - <location filename="../Project/Project.py" line="5427" /> + <location filename="../Project/Project.py" line="6998" /> + <location filename="../Project/Project.py" line="6943" /> + <location filename="../Project/Project.py" line="5424" /> <source>Create Package List</source> <translation>Création de la liste de package</translation> </message> <message> - <location filename="../Project/Project.py" line="5429" /> + <location filename="../Project/Project.py" line="5426" /> <source>Create &Package List</source> <translation>Création de la liste de &package</translation> </message> <message> + <location filename="../Project/Project.py" line="5433" /> + <source>Create an initial PKGLIST file for an eric plugin.</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../Project/Project.py" line="5436" /> - <source>Create an initial PKGLIST file for an eric plugin.</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="5439" /> <source><b>Create Package List</b><p>This creates an initial list of files to include in an eric plugin archive. The list is created from the project file.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="7071" /> - <location filename="../Project/Project.py" line="5450" /> + <location filename="../Project/Project.py" line="7068" /> + <location filename="../Project/Project.py" line="5447" /> <source>Create Plugin Archives</source> <translation>Créer une archive plugin</translation> </message> <message> - <location filename="../Project/Project.py" line="5452" /> + <location filename="../Project/Project.py" line="5449" /> <source>Create Plugin &Archives</source> <translation>Créer les &archives plugin</translation> </message> <message> - <location filename="../Project/Project.py" line="5458" /> + <location filename="../Project/Project.py" line="5455" /> <source>Create eric plugin archive files.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5460" /> + <location filename="../Project/Project.py" line="5457" /> <source><b>Create Plugin Archives</b><p>This creates eric plugin archive files using the list of files given in a PKGLIST* file. The archive name is built from the main script name if not designated in the package list file.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5472" /> + <location filename="../Project/Project.py" line="5469" /> <source>Create Plugin Archives (Snapshot)</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5474" /> + <location filename="../Project/Project.py" line="5471" /> <source>Create Plugin Archives (&Snapshot)</source> <translation type="unfinished" /> </message> <message> + <location filename="../Project/Project.py" line="5478" /> + <source>Create eric plugin archive files (snapshot releases).</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../Project/Project.py" line="5481" /> - <source>Create eric plugin archive files (snapshot releases).</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="5484" /> <source><b>Create Plugin Archives (Snapshot)</b><p>This creates eric plugin archive files using the list of files given in the PKGLIST* file. The archive name is built from the main script name if not designated in the package list file. The version entry of the main script is modified to reflect a snapshot release.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="7513" /> - <location filename="../Project/Project.py" line="7484" /> - <location filename="../Project/Project.py" line="7438" /> - <location filename="../Project/Project.py" line="7390" /> - <location filename="../Project/Project.py" line="5503" /> + <location filename="../Project/Project.py" line="7510" /> + <location filename="../Project/Project.py" line="7481" /> + <location filename="../Project/Project.py" line="7435" /> + <location filename="../Project/Project.py" line="7387" /> + <location filename="../Project/Project.py" line="5500" /> <source>Execute Make</source> <translation>Exécuter Make</translation> </message> <message> - <location filename="../Project/Project.py" line="5504" /> + <location filename="../Project/Project.py" line="5501" /> <source>&Execute Make</source> <translation>Éxécut&er Make</translation> </message> <message> - <location filename="../Project/Project.py" line="5510" /> + <location filename="../Project/Project.py" line="5507" /> <source>Perform a 'make' run.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5512" /> + <location filename="../Project/Project.py" line="5509" /> <source><b>Execute Make</b><p>This performs a 'make' run to rebuild the configured target.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="7490" /> - <location filename="../Project/Project.py" line="5522" /> + <location filename="../Project/Project.py" line="7487" /> + <location filename="../Project/Project.py" line="5519" /> <source>Test for Changes</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5523" /> + <location filename="../Project/Project.py" line="5520" /> <source>&Test for Changes</source> <translation type="unfinished" /> </message> <message> + <location filename="../Project/Project.py" line="5527" /> + <source>Question 'make', if a rebuild is needed.</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../Project/Project.py" line="5530" /> - <source>Question 'make', if a rebuild is needed.</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="5533" /> <source><b>Test for Changes</b><p>This questions 'make', if a rebuild of the configured target is necessary.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5551" /> + <location filename="../Project/Project.py" line="5548" /> <source>Create SBOM File</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5552" /> + <location filename="../Project/Project.py" line="5549" /> <source>Create &SBOM File</source> <translation type="unfinished" /> </message> <message> + <location filename="../Project/Project.py" line="5556" /> + <source>Create a SBOM file of the project dependencies.</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../Project/Project.py" line="5559" /> - <source>Create a SBOM file of the project dependencies.</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="5562" /> <source><b>Create SBOM File</b><p>This allows the creation of a SBOM file of the project dependencies. This may be based on various input sources and will be saved as a CycloneDX SBOM file.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5573" /> + <location filename="../Project/Project.py" line="5570" /> <source>Clear Byte Code Caches</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5574" /> + <location filename="../Project/Project.py" line="5571" /> <source>Clear Byte Code &Caches</source> <translation type="unfinished" /> </message> <message> + <location filename="../Project/Project.py" line="5578" /> + <source>Clear the byte code caches of the project.</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../Project/Project.py" line="5581" /> - <source>Clear the byte code caches of the project.</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="5584" /> <source><b>Clear Byte Code Caches</b><p>This deletes all directories containing byte code cache files.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5600" /> + <location filename="../Project/Project.py" line="5597" /> <source>About Black</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5601" /> + <location filename="../Project/Project.py" line="5598" /> <source>&Black</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5607" /> + <location filename="../Project/Project.py" line="5604" /> <source>Show some information about 'Black'.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5609" /> + <location filename="../Project/Project.py" line="5606" /> <source><b>Black</b><p>This shows some information about the installed 'Black' tool.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5621" /> + <location filename="../Project/Project.py" line="5618" /> <source>Format Code</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5622" /> + <location filename="../Project/Project.py" line="5619" /> <source>&Format Code</source> <translation type="unfinished" /> </message> <message> + <location filename="../Project/Project.py" line="5626" /> + <source>Format the project sources with 'Black'.</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../Project/Project.py" line="5629" /> - <source>Format the project sources with 'Black'.</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="5632" /> <source><b>Format Code</b><p>This shows a dialog to enter parameters for the formatting run and reformats the project sources using 'Black'.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5644" /> + <location filename="../Project/Project.py" line="5641" /> <source>Check Code Formatting</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5645" /> + <location filename="../Project/Project.py" line="5642" /> <source>&Check Code Formatting</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5652" /> + <location filename="../Project/Project.py" line="5649" /> <source>Check, if the project sources need to be reformatted with 'Black'.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5657" /> + <location filename="../Project/Project.py" line="5654" /> <source><b>Check Code Formatting</b><p>This shows a dialog to enter parameters for the format check run and performs a check, if the project sources need to be reformatted using 'Black'.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5670" /> + <location filename="../Project/Project.py" line="5667" /> <source>Code Formatting Diff</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5671" /> + <location filename="../Project/Project.py" line="5668" /> <source>Code Formatting &Diff</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5678" /> + <location filename="../Project/Project.py" line="5675" /> <source>Generate a unified diff of potential project source reformatting with 'Black'.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5684" /> + <location filename="../Project/Project.py" line="5681" /> <source><b>Diff Code Formatting</b><p>This shows a dialog to enter parameters for the format diff run and generates a unified diff of potential project source reformatting using 'Black'.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5849" /> - <location filename="../Project/Project.py" line="5799" /> - <location filename="../Project/Project.py" line="5798" /> - <location filename="../Project/Project.py" line="5698" /> - <location filename="../Project/Project.py" line="5697" /> + <location filename="../Project/Project.py" line="5846" /> + <location filename="../Project/Project.py" line="5796" /> + <location filename="../Project/Project.py" line="5795" /> + <location filename="../Project/Project.py" line="5695" /> + <location filename="../Project/Project.py" line="5694" /> <source>Configure</source> <translation type="unfinished">Configuration</translation> </message> <message> - <location filename="../Project/Project.py" line="5705" /> + <location filename="../Project/Project.py" line="5702" /> <source>Enter the parameters for formatting the project sources with 'Black'.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5710" /> + <location filename="../Project/Project.py" line="5707" /> <source><b>Configure</b><p>This shows a dialog to enter the parameters for formatting the project sources with 'Black'.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5726" /> + <location filename="../Project/Project.py" line="5723" /> <source>About isort</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5727" /> + <location filename="../Project/Project.py" line="5724" /> <source>&isort</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5733" /> + <location filename="../Project/Project.py" line="5730" /> <source>Show some information about 'isort'.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5735" /> + <location filename="../Project/Project.py" line="5732" /> <source><b>isort</b><p>This shows some information about the installed 'isort' tool.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5748" /> - <location filename="../Project/Project.py" line="5747" /> + <location filename="../Project/Project.py" line="5745" /> + <location filename="../Project/Project.py" line="5744" /> <source>Sort Imports</source> <translation type="unfinished" /> </message> <message> + <location filename="../Project/Project.py" line="5752" /> + <source>Sort the import statements of the project sources with 'isort'.</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../Project/Project.py" line="5755" /> - <source>Sort the import statements of the project sources with 'isort'.</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="5758" /> <source><b>Sort Imports</b><p>This shows a dialog to enter parameters for the imports sorting run and sorts the import statements of the project sources using 'isort'.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5772" /> - <location filename="../Project/Project.py" line="5771" /> + <location filename="../Project/Project.py" line="5769" /> + <location filename="../Project/Project.py" line="5768" /> <source>Imports Sorting Diff</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5779" /> + <location filename="../Project/Project.py" line="5776" /> <source>Generate a unified diff of potential project source imports resorting with 'isort'.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5785" /> + <location filename="../Project/Project.py" line="5782" /> <source><b>Imports Sorting Diff</b><p>This shows a dialog to enter parameters for the imports sorting diff run and generates a unified diff of potential project source changes using 'isort'.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5806" /> + <location filename="../Project/Project.py" line="5803" /> <source>Enter the parameters for resorting the project sources import statements with 'isort'.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5812" /> + <location filename="../Project/Project.py" line="5809" /> <source><b>Configure</b><p>This shows a dialog to enter the parameters for resorting the import statements of the project sources with 'isort'.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5828" /> + <location filename="../Project/Project.py" line="5825" /> <source>Install Project</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5829" /> + <location filename="../Project/Project.py" line="5826" /> <source>&Install Project</source> <translation type="unfinished" /> </message> <message> + <location filename="../Project/Project.py" line="5833" /> + <source>Install the project into the embedded environment.</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../Project/Project.py" line="5836" /> - <source>Install the project into the embedded environment.</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="5839" /> <source><b>Install Project</b><p>This installs the project into the embedded virtual environment in editable mode (i.e. development mode).</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5850" /> + <location filename="../Project/Project.py" line="5847" /> <source>&Configure</source> <translation type="unfinished" /> </message> <message> + <location filename="../Project/Project.py" line="5854" /> + <source>Configure the embedded environment.</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../Project/Project.py" line="5857" /> - <source>Configure the embedded environment.</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="5860" /> <source><b>Configure</b><p>This opens a dialog to configure the embedded virtual environment of the project.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5870" /> + <location filename="../Project/Project.py" line="5867" /> <source>Upgrade</source> <translation type="unfinished">Mettre à jour</translation> </message> <message> - <location filename="../Project/Project.py" line="5871" /> + <location filename="../Project/Project.py" line="5868" /> <source>&Upgrade</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5877" /> + <location filename="../Project/Project.py" line="5874" /> <source>Upgrade the embedded environment.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5879" /> + <location filename="../Project/Project.py" line="5876" /> <source><b>Upgrade</b><p>This opens a dialog to enter the parameters to upgrade the embedded virtual environment of the project.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5891" /> + <location filename="../Project/Project.py" line="5888" /> <source>Recreate</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5892" /> + <location filename="../Project/Project.py" line="5889" /> <source>&Recreate</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5898" /> + <location filename="../Project/Project.py" line="5895" /> <source>Recreate the embedded environment.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5900" /> + <location filename="../Project/Project.py" line="5897" /> <source><b>Recreate</b><p>This opens a dialog to enter the parameters to recreate the embedded virtual environment of the project. The existing environment is cleared first.</p></source> <translation type="unfinished" /> </message> <message> + <location filename="../Project/Project.py" line="5929" /> + <source>&Project</source> + <translation>&Projet</translation> + </message> + <message> + <location filename="../Project/Project.py" line="5930" /> + <source>Open &Recent Projects</source> + <translation>Ouvrir un projet &récent</translation> + </message> + <message> <location filename="../Project/Project.py" line="5932" /> - <source>&Project</source> - <translation>&Projet</translation> + <source>Session</source> + <translation>Session</translation> </message> <message> <location filename="../Project/Project.py" line="5933" /> - <source>Open &Recent Projects</source> - <translation>Ouvrir un projet &récent</translation> - </message> - <message> - <location filename="../Project/Project.py" line="5935" /> - <source>Session</source> - <translation>Session</translation> + <source>Debugger</source> + <translation>Débogueur</translation> + </message> + <message> + <location filename="../Project/Project.py" line="5934" /> + <source>Embedded Environment</source> + <translation type="unfinished" /> </message> <message> <location filename="../Project/Project.py" line="5936" /> - <source>Debugger</source> - <translation>Débogueur</translation> + <source>Project-T&ools</source> + <translation>Outils pr&ojet</translation> </message> <message> <location filename="../Project/Project.py" line="5937" /> - <source>Embedded Environment</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="5939" /> - <source>Project-T&ools</source> - <translation>Outils pr&ojet</translation> - </message> - <message> - <location filename="../Project/Project.py" line="5940" /> <source>&Version Control</source> <translation>&Contrôle de version</translation> </message> <message> - <location filename="../Project/Project.py" line="5944" /> + <location filename="../Project/Project.py" line="5941" /> <source>Chec&k</source> <translation>&Vérification</translation> </message> <message> + <location filename="../Project/Project.py" line="5943" /> + <source>Code &Formatting</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Project/Project.py" line="5945" /> + <source>Sho&w</source> + <translation>&Affichage</translation> + </message> + <message> <location filename="../Project/Project.py" line="5946" /> - <source>Code &Formatting</source> - <translation type="unfinished" /> + <source>&Diagrams</source> + <translation>&Diagrammes</translation> + </message> + <message> + <location filename="../Project/Project.py" line="5947" /> + <source>Pac&kagers</source> + <translation>Création de pac&kage</translation> </message> <message> <location filename="../Project/Project.py" line="5948" /> - <source>Sho&w</source> - <translation>&Affichage</translation> - </message> - <message> - <location filename="../Project/Project.py" line="5949" /> - <source>&Diagrams</source> - <translation>&Diagrammes</translation> + <source>Source &Documentation</source> + <translation>&Documentation automatique</translation> </message> <message> <location filename="../Project/Project.py" line="5950" /> - <source>Pac&kagers</source> - <translation>Création de pac&kage</translation> + <source>Make</source> + <translation>Make</translation> </message> <message> <location filename="../Project/Project.py" line="5951" /> - <source>Source &Documentation</source> - <translation>&Documentation automatique</translation> - </message> - <message> - <location filename="../Project/Project.py" line="5953" /> - <source>Make</source> - <translation>Make</translation> - </message> - <message> - <location filename="../Project/Project.py" line="5954" /> <source>Other Tools</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6116" /> - <location filename="../Project/Project.py" line="6114" /> + <location filename="../Project/Project.py" line="6113" /> + <location filename="../Project/Project.py" line="6111" /> <source>Project</source> <translation>Projet</translation> </message> <message> - <location filename="../Project/Project.py" line="6198" /> + <location filename="../Project/Project.py" line="6195" /> <source>&Clear</source> <translation>&Effacer</translation> </message> <message> - <location filename="../Project/Project.py" line="6395" /> + <location filename="../Project/Project.py" line="6392" /> <source>Search New Files</source> <translation>Rechercher des nouveaux fichiers</translation> </message> <message> - <location filename="../Project/Project.py" line="6396" /> + <location filename="../Project/Project.py" line="6393" /> <source>There were no new files found to be added.</source> <translation>Aucun fichier à ajouter n'a été trouvé.</translation> </message> <message> - <location filename="../Project/Project.py" line="6557" /> - <location filename="../Project/Project.py" line="6544" /> + <location filename="../Project/Project.py" line="6554" /> + <location filename="../Project/Project.py" line="6541" /> <source>Version Control System</source> <translation>Système de conrôle des versions (VCS)</translation> </message> <message> - <location filename="../Project/Project.py" line="6545" /> + <location filename="../Project/Project.py" line="6542" /> <source><p>The selected VCS <b>{0}</b> could not be found. <br/>Reverting override.</p><p>{1}</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6558" /> + <location filename="../Project/Project.py" line="6555" /> <source><p>The selected VCS <b>{0}</b> could not be found.<br/>Disabling version control.</p><p>{1}</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6715" /> + <location filename="../Project/Project.py" line="6712" /> <source>Coverage Data</source> <translation>Coverage de données</translation> </message> <message> - <location filename="../Project/Project.py" line="6769" /> - <location filename="../Project/Project.py" line="6716" /> + <location filename="../Project/Project.py" line="6766" /> + <location filename="../Project/Project.py" line="6713" /> <source>There is no main script defined for the current project. Aborting</source> <translation>Il n'y a pas de script principal défini dans le projet en cours. Abandon</translation> </message> <message> - <location filename="../Project/Project.py" line="6728" /> + <location filename="../Project/Project.py" line="6725" /> <source>Code Coverage</source> <translation>Code Coverage</translation> </message> <message> - <location filename="../Project/Project.py" line="6729" /> + <location filename="../Project/Project.py" line="6726" /> <source>Please select a coverage file</source> <translation>Sélectionner un fichier coverage</translation> </message> <message> - <location filename="../Project/Project.py" line="6782" /> + <location filename="../Project/Project.py" line="6779" /> <source>Please select a profile file</source> <translation>Sélectionner un fichier profile</translation> </message> <message> - <location filename="../Project/Project.py" line="6834" /> + <location filename="../Project/Project.py" line="6831" /> <source>Include module names?</source> <translation>Inclure les noms de modules ?</translation> </message> <message> - <location filename="../Project/Project.py" line="6947" /> + <location filename="../Project/Project.py" line="6944" /> <source><p>The file <b>PKGLIST</b> already exists.</p><p>Overwrite it?</p></source> <translation><p>Le fichier <b>PKGLIST</b> existe déjà.</p><p>Ecraser ?</p></translation> </message> <message> - <location filename="../Project/Project.py" line="7002" /> + <location filename="../Project/Project.py" line="6999" /> <source><p>The file <b>PKGLIST</b> could not be created.</p><p>Reason: {0}</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="7298" /> - <location filename="../Project/Project.py" line="7254" /> - <location filename="../Project/Project.py" line="7204" /> - <location filename="../Project/Project.py" line="7193" /> - <location filename="../Project/Project.py" line="7175" /> - <location filename="../Project/Project.py" line="7142" /> - <location filename="../Project/Project.py" line="7112" /> - <location filename="../Project/Project.py" line="7084" /> - <location filename="../Project/Project.py" line="7054" /> - <location filename="../Project/Project.py" line="7040" /> - <location filename="../Project/Project.py" line="7023" /> + <location filename="../Project/Project.py" line="7295" /> + <location filename="../Project/Project.py" line="7251" /> + <location filename="../Project/Project.py" line="7201" /> + <location filename="../Project/Project.py" line="7190" /> + <location filename="../Project/Project.py" line="7172" /> + <location filename="../Project/Project.py" line="7139" /> + <location filename="../Project/Project.py" line="7109" /> + <location filename="../Project/Project.py" line="7081" /> + <location filename="../Project/Project.py" line="7051" /> + <location filename="../Project/Project.py" line="7037" /> + <location filename="../Project/Project.py" line="7020" /> <source>Create Plugin Archive</source> <translation>Création de l'archive du plugin</translation> </message> <message> - <location filename="../Project/Project.py" line="7024" /> + <location filename="../Project/Project.py" line="7021" /> <source>The project does not have a main script defined. Aborting...</source> <translation>Le projet n'a pas de script principal défini. Abandon...</translation> </message> <message> - <location filename="../Project/Project.py" line="7041" /> + <location filename="../Project/Project.py" line="7038" /> <source>Select package lists:</source> <translation>Sélectionner les listes de packages :</translation> </message> <message> - <location filename="../Project/Project.py" line="7055" /> + <location filename="../Project/Project.py" line="7052" /> <source><p>No package list files (PKGLIST*) available or selected. Aborting...</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="7063" /> + <location filename="../Project/Project.py" line="7060" /> <source>Creating plugin archives...</source> <translation>Création en cours des archives de plugin...</translation> </message> <message> + <location filename="../Project/Project.py" line="7061" /> + <source>Abort</source> + <translation>Abandonner</translation> + </message> + <message> <location filename="../Project/Project.py" line="7064" /> - <source>Abort</source> - <translation>Abandonner</translation> - </message> - <message> - <location filename="../Project/Project.py" line="7067" /> <source>%v/%m Archives</source> <translation>Archives %v/%m</translation> </message> <message> - <location filename="../Project/Project.py" line="7085" /> + <location filename="../Project/Project.py" line="7082" /> <source><p>The file <b>{0}</b> could not be read.</p><p>Reason: {1}</p></source> <translation><p>Le fichier <b>{0}</b> ne peut être lu.</p><p>Raison : {1}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="7113" /> + <location filename="../Project/Project.py" line="7110" /> <source><p>The file <b>{0}</b> is not ready yet.</p><p>Please rework it and delete the'; initial_list' line of the header.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="7143" /> + <location filename="../Project/Project.py" line="7140" /> <source><p>The eric plugin archive file <b>{0}</b> could not be created.</p><p>Reason: {1}</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="7176" /> + <location filename="../Project/Project.py" line="7173" /> <source><p>The file <b>{0}</b> could not be stored in the archive. Ignoring it.</p><p>Reason: {1}</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="7194" /> + <location filename="../Project/Project.py" line="7191" /> <source><p>The eric plugin archive files were created with some errors.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="7205" /> + <location filename="../Project/Project.py" line="7202" /> <source><p>The eric plugin archive files were created successfully.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="7255" /> + <location filename="../Project/Project.py" line="7252" /> <source><p>The plugin file <b>{0}</b> could not be read.</p><p>Reason: {1}</p></source> <translation><p>Le fichier plugin <b>{0}</b> ne peut être lu.</p><p>Raison : {1}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="7299" /> + <location filename="../Project/Project.py" line="7296" /> <source><p>The plugin file <b>{0}</b> could not be read.</p> <p>Reason: {1}</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="7391" /> + <location filename="../Project/Project.py" line="7388" /> <source>'Make' is not supported for remote projects. Aborting...</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="7439" /> + <location filename="../Project/Project.py" line="7436" /> <source>The make process did not start.</source> <translation>Le processus make n'a pas démarré.</translation> </message> <message> - <location filename="../Project/Project.py" line="7485" /> + <location filename="../Project/Project.py" line="7482" /> <source>The make process crashed.</source> <translation>Crash du processus make.</translation> </message> <message> - <location filename="../Project/Project.py" line="7493" /> + <location filename="../Project/Project.py" line="7490" /> <source><p>There are changes that require the configured make target <b>{0}</b> to be rebuilt.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="7498" /> + <location filename="../Project/Project.py" line="7495" /> <source><p>There are changes that require the default make target to be rebuilt.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="7514" /> + <location filename="../Project/Project.py" line="7511" /> <source>The makefile contains errors.</source> <translation>Le makefile contient des erreurs.</translation> </message> <message> - <location filename="../Project/Project.py" line="7944" /> + <location filename="../Project/Project.py" line="7941" /> <source>Interpreter Missing</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="7945" /> + <location filename="../Project/Project.py" line="7942" /> <source>The configured interpreter of the embedded environment does not exist anymore. Shall the environment be upgraded?</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="8026" /> + <location filename="../Project/Project.py" line="8023" /> <source>Open Remote Project</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="8057" /> - <location filename="../Project/Project.py" line="8042" /> + <location filename="../Project/Project.py" line="8054" /> + <location filename="../Project/Project.py" line="8039" /> <source>Save Remote Project</source> <translation type="unfinished" /> </message> @@ -64652,8 +64665,8 @@ <translation>VCS Status</translation> </message> <message> - <location filename="../Project/ProjectBrowserModel.py" line="922" /> - <location filename="../Project/ProjectBrowserModel.py" line="900" /> + <location filename="../Project/ProjectBrowserModel.py" line="926" /> + <location filename="../Project/ProjectBrowserModel.py" line="904" /> <location filename="../Project/ProjectBrowserModel.py" line="548" /> <location filename="../Project/ProjectBrowserModel.py" line="418" /> <source>local</source> @@ -69151,7 +69164,7 @@ <context> <name>PythonDisViewer</name> <message> - <location filename="../UI/PythonDisViewer.py" line="61" /> + <location filename="../UI/PythonDisViewer.py" line="62" /> <location filename="../UI/PythonDisViewer.ui" line="0" /> <source>Disassembly</source> <translation type="unfinished" /> @@ -69167,160 +69180,160 @@ <translation type="unfinished" /> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="73" /> + <location filename="../UI/PythonDisViewer.py" line="74" /> <source>Line</source> <translation type="unfinished">Ligne</translation> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="74" /> - <source>Offset</source> - <translation type="unfinished">Offset</translation> - </message> - <message> <location filename="../UI/PythonDisViewer.py" line="75" /> - <source>Operation</source> - <translation type="unfinished">Opération</translation> + <source>Offset</source> + <translation type="unfinished">Offset</translation> </message> <message> <location filename="../UI/PythonDisViewer.py" line="76" /> - <source>Parameters</source> - <translation type="unfinished">Paramètres</translation> + <source>Operation</source> + <translation type="unfinished">Opération</translation> </message> <message> <location filename="../UI/PythonDisViewer.py" line="77" /> + <source>Parameters</source> + <translation type="unfinished">Paramètres</translation> + </message> + <message> + <location filename="../UI/PythonDisViewer.py" line="78" /> <source>Interpreted Parameters</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="80" /> + <location filename="../UI/PythonDisViewer.py" line="81" /> <source>Key</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="80" /> + <location filename="../UI/PythonDisViewer.py" line="81" /> <source>Value</source> <translation type="unfinished">Valeur</translation> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="85" /> + <location filename="../UI/PythonDisViewer.py" line="86" /> <source>Show Code Info</source> <translation type="unfinished" /> </message> <message> + <location filename="../UI/PythonDisViewer.py" line="97" /> + <location filename="../UI/PythonDisViewer.py" line="89" /> + <source>Expand All</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/PythonDisViewer.py" line="99" /> + <location filename="../UI/PythonDisViewer.py" line="90" /> + <source>Collapse All</source> + <translation type="unfinished">Tout contracter</translation> + </message> + <message> + <location filename="../UI/PythonDisViewer.py" line="102" /> + <location filename="../UI/PythonDisViewer.py" line="92" /> + <source>Configure...</source> + <translation type="unfinished">Configuration...</translation> + </message> + <message> <location filename="../UI/PythonDisViewer.py" line="96" /> - <location filename="../UI/PythonDisViewer.py" line="88" /> - <source>Expand All</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/PythonDisViewer.py" line="98" /> - <location filename="../UI/PythonDisViewer.py" line="89" /> - <source>Collapse All</source> - <translation type="unfinished">Tout contracter</translation> - </message> - <message> - <location filename="../UI/PythonDisViewer.py" line="101" /> - <location filename="../UI/PythonDisViewer.py" line="91" /> - <source>Configure...</source> - <translation type="unfinished">Configuration...</translation> - </message> - <message> - <location filename="../UI/PythonDisViewer.py" line="95" /> <source>Hide</source> <translation type="unfinished">Cacher</translation> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="448" /> + <location filename="../UI/PythonDisViewer.py" line="455" /> <source>No editor has been opened.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="459" /> + <location filename="../UI/PythonDisViewer.py" line="466" /> <source>The current editor does not contain any source code.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="465" /> + <location filename="../UI/PythonDisViewer.py" line="472" /> <source>The current editor does not contain Python source code.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="509" /> + <location filename="../UI/PythonDisViewer.py" line="516" /> <source>Disassembly of last traceback</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="672" /> + <location filename="../UI/PythonDisViewer.py" line="694" /> <source>Code Object '{0}'</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="784" /> + <location filename="../UI/PythonDisViewer.py" line="806" /> <source>Name</source> <translation type="unfinished">Nom</translation> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="786" /> + <location filename="../UI/PythonDisViewer.py" line="808" /> <source>Filename</source> <translation type="unfinished">Nom de fichier</translation> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="790" /> - <source>First Line</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/PythonDisViewer.py" line="794" /> - <source>Argument Count</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/PythonDisViewer.py" line="799" /> - <source>Positional-only Arguments</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/PythonDisViewer.py" line="805" /> - <source>Keyword-only Arguments</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/PythonDisViewer.py" line="809" /> - <source>Number of Locals</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../UI/PythonDisViewer.py" line="812" /> - <source>Stack Size</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/PythonDisViewer.py" line="814" /> - <source>Flags</source> + <source>First Line</source> <translation type="unfinished" /> </message> <message> <location filename="../UI/PythonDisViewer.py" line="816" /> + <source>Argument Count</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/PythonDisViewer.py" line="821" /> + <source>Positional-only Arguments</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/PythonDisViewer.py" line="827" /> + <source>Keyword-only Arguments</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/PythonDisViewer.py" line="831" /> + <source>Number of Locals</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/PythonDisViewer.py" line="834" /> + <source>Stack Size</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/PythonDisViewer.py" line="836" /> + <source>Flags</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/PythonDisViewer.py" line="838" /> <source>Constants</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="818" /> + <location filename="../UI/PythonDisViewer.py" line="840" /> <source>Names</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="820" /> + <location filename="../UI/PythonDisViewer.py" line="842" /> <source>Variable Names</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="822" /> + <location filename="../UI/PythonDisViewer.py" line="844" /> <source>Free Variables</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="824" /> + <location filename="../UI/PythonDisViewer.py" line="846" /> <source>Cell Variables</source> <translation type="unfinished" /> </message> @@ -74470,32 +74483,32 @@ <context> <name>SessionFile</name> <message> - <location filename="../Sessions/SessionFile.py" line="247" /> + <location filename="../Sessions/SessionFile.py" line="249" /> <source>Save Remote Session</source> <translation type="unfinished" /> </message> <message> - <location filename="../Sessions/SessionFile.py" line="250" /> + <location filename="../Sessions/SessionFile.py" line="252" /> <source>Save Session</source> <translation type="unfinished">Enregistrer la session</translation> </message> <message> - <location filename="../Sessions/SessionFile.py" line="258" /> + <location filename="../Sessions/SessionFile.py" line="260" /> <source><p>The session file <b>{0}</b> could not be written.</p><p>Reason: {1}</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Sessions/SessionFile.py" line="282" /> + <location filename="../Sessions/SessionFile.py" line="284" /> <source>Read Remote Session</source> <translation type="unfinished" /> </message> <message> - <location filename="../Sessions/SessionFile.py" line="285" /> + <location filename="../Sessions/SessionFile.py" line="287" /> <source>Read Session</source> <translation type="unfinished" /> </message> <message> - <location filename="../Sessions/SessionFile.py" line="293" /> + <location filename="../Sessions/SessionFile.py" line="295" /> <source><p>The session file <b>{0}</b> could not be read.</p><p>Reason: {1}</p></source> <translation type="unfinished" /> </message> @@ -94703,737 +94716,737 @@ <context> <name>ViewManager</name> <message> - <location filename="../ViewManager/ViewManager.py" line="615" /> + <location filename="../ViewManager/ViewManager.py" line="625" /> <source>New</source> <translation>Nouveau</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="617" /> + <location filename="../ViewManager/ViewManager.py" line="627" /> <source>&New</source> <translation>&Nouveau</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="619" /> - <source>Ctrl+N</source> - <comment>File|New</comment> - <translation>Ctrl+N</translation> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="626" /> - <source>Open an empty editor window</source> - <translation>Ouvre une nouvelle page vide</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="629" /> + <source>Ctrl+N</source> + <comment>File|New</comment> + <translation>Ctrl+N</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="636" /> + <source>Open an empty editor window</source> + <translation>Ouvre une nouvelle page vide</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="639" /> <source><b>New</b><p>An empty editor window will be created.</p></source> <translation><b>Nouveau</b><p>Ouverture d'une nouvelle fenêtre d'édition.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="638" /> + <location filename="../ViewManager/ViewManager.py" line="648" /> <source>Open</source> <translation>Ouvrir</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="640" /> + <location filename="../ViewManager/ViewManager.py" line="650" /> <source>&Open...</source> <translation>&Ouvrir...</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="642" /> + <location filename="../ViewManager/ViewManager.py" line="652" /> <source>Ctrl+O</source> <comment>File|Open</comment> <translation>Ctrl+O</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="649" /> + <location filename="../ViewManager/ViewManager.py" line="659" /> <source>Open a file</source> <translation>Ouvrir un Fichier</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="652" /> + <location filename="../ViewManager/ViewManager.py" line="662" /> <source><b>Open a file</b><p>You will be asked for the name of a file to be opened in an editor window.</p></source> <translation><b>Ouvrir un fichier</b><p>Le nom d'un fichier à ouvrir dans un éditeur vous est demandé.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="663" /> + <location filename="../ViewManager/ViewManager.py" line="673" /> <source>Open (Remote)</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="665" /> - <source>Open (Remote)...</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="672" /> - <source>Open a remote file</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="675" /> + <source>Open (Remote)...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="682" /> + <source>Open a remote file</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="685" /> <source><b>Open a remote file</b><p>You will be asked for the name of a remote file to be opened in an editor window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="689" /> - <location filename="../ViewManager/ViewManager.py" line="687" /> - <source>Reload</source> - <translation type="unfinished">Recharger</translation> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="696" /> - <source>Reload the current file</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="699" /> + <location filename="../ViewManager/ViewManager.py" line="697" /> + <source>Reload</source> + <translation type="unfinished">Recharger</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="706" /> + <source>Reload the current file</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="709" /> <source><b>Reload</b><p>Reload the contents of current editor window. If the editor contents was modified, a warning will be issued.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="712" /> + <location filename="../ViewManager/ViewManager.py" line="722" /> <source>Close</source> <translation>Fermer</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="714" /> + <location filename="../ViewManager/ViewManager.py" line="724" /> <source>&Close</source> <translation>&Fermer</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="716" /> - <source>Ctrl+W</source> - <comment>File|Close</comment> - <translation>Ctrl+W</translation> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="723" /> - <source>Close the current window</source> - <translation>Ferme la fenêtre courante</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="726" /> - <source><b>Close Window</b><p>Close the current window.</p></source> - <translation><b>Fermer</b><p>Ferme la fenêtre en cours.</p></translation> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="735" /> - <source>Close All</source> - <translation>Tout fermer</translation> + <source>Ctrl+W</source> + <comment>File|Close</comment> + <translation>Ctrl+W</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="733" /> + <source>Close the current window</source> + <translation>Ferme la fenêtre courante</translation> </message> <message> <location filename="../ViewManager/ViewManager.py" line="736" /> - <source>Clos&e All</source> - <translation>Tout f&ermer</translation> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="743" /> - <source>Close all editor windows</source> - <translation>Ferme toutes les fenêtres de l'éditeur</translation> + <source><b>Close Window</b><p>Close the current window.</p></source> + <translation><b>Fermer</b><p>Ferme la fenêtre en cours.</p></translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="745" /> + <source>Close All</source> + <translation>Tout fermer</translation> </message> <message> <location filename="../ViewManager/ViewManager.py" line="746" /> + <source>Clos&e All</source> + <translation>Tout f&ermer</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="753" /> + <source>Close all editor windows</source> + <translation>Ferme toutes les fenêtres de l'éditeur</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="756" /> <source><b>Close All Windows</b><p>Close all editor windows.</p></source> <translation><b>Tout fermer</b><p>Ferme toutes les fenêtres de l'éditeur.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="759" /> + <location filename="../ViewManager/ViewManager.py" line="769" /> <source>Save</source> <translation>Enregistrer</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="761" /> + <location filename="../ViewManager/ViewManager.py" line="771" /> <source>&Save</source> <translation>&Enregistrer</translation> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="316" /> - <location filename="../ViewManager/ViewManager.py" line="763" /> + <location filename="../ViewManager/ViewManager.py" line="773" /> <source>Ctrl+S</source> <comment>File|Save</comment> <translation>Ctrl+S</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="770" /> + <location filename="../ViewManager/ViewManager.py" line="780" /> <source>Save the current file</source> <translation>Enregistre le fichier courant</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="773" /> - <source><b>Save File</b><p>Save the contents of current editor window.</p></source> - <translation><b>Enregistrer</b><p>Enregistre le fichier en cours.</p></translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="783" /> + <source><b>Save File</b><p>Save the contents of current editor window.</p></source> + <translation><b>Enregistrer</b><p>Enregistre le fichier en cours.</p></translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="793" /> <source>Save as</source> <translation>Enregistrer sous</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="785" /> + <location filename="../ViewManager/ViewManager.py" line="795" /> <source>Save &as...</source> <translation>&Enregistrer sous...</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="787" /> + <location filename="../ViewManager/ViewManager.py" line="797" /> <source>Shift+Ctrl+S</source> <comment>File|Save As</comment> <translation>Shift+Ctrl+S</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="796" /> + <location filename="../ViewManager/ViewManager.py" line="806" /> <source>Save the current file to a new one</source> <translation>Enregistre dans un nouveau fichier</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="801" /> + <location filename="../ViewManager/ViewManager.py" line="811" /> <source><b>Save File as</b><p>Save the contents of the current editor window to a new file. The file can be entered in a file selection dialog.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="812" /> + <location filename="../ViewManager/ViewManager.py" line="822" /> <source>Save as (Remote)</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="814" /> + <location filename="../ViewManager/ViewManager.py" line="824" /> <source>Save as (Remote)...</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="821" /> + <location filename="../ViewManager/ViewManager.py" line="831" /> <source>Save the current file to a new one on an eric-ide server</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="827" /> + <location filename="../ViewManager/ViewManager.py" line="837" /> <source><b>Save File as (Remote)</b><p>Save the contents of the current editor window to a new file on the connected eric-ide server. The file can be entered in a file selection dialog.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="839" /> + <location filename="../ViewManager/ViewManager.py" line="849" /> <source>Save Copy</source> <translation>Enregistrer une copie</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="841" /> - <source>Save &Copy...</source> - <translation>Enregistrer une &copie...</translation> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="848" /> - <source>Save a copy of the current file</source> - <translation>Enregistrer une copie du fichier courant</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="851" /> + <source>Save &Copy...</source> + <translation>Enregistrer une &copie...</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="858" /> + <source>Save a copy of the current file</source> + <translation>Enregistrer une copie du fichier courant</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="861" /> <source><b>Save Copy</b><p>Save a copy of the contents of current editor window. The file can be entered in a file selection dialog.</p></source> <translation type="unfinished"><b>Enregistrer une copie</b><p>Enregistre une copie du contenu de l'éditeur courant. Le fichier peut être entré dans un sélectionneur de fichiers.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="862" /> + <location filename="../ViewManager/ViewManager.py" line="872" /> <source>Save all</source> <translation>Tout enregistrer</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="864" /> - <source>Save a&ll</source> - <translation>&Tout enregistrer</translation> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="871" /> - <source>Save all files</source> - <translation>Enregistre tous les fichiers</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="874" /> + <source>Save a&ll</source> + <translation>&Tout enregistrer</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="881" /> + <source>Save all files</source> + <translation>Enregistre tous les fichiers</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="884" /> <source><b>Save All Files</b><p>Save the contents of all editor windows.</p></source> <translation><b>Tout enregistrer</b><p>Enregistre toutes les fenêtres ouvertes dans l'éditeur.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="886" /> + <location filename="../ViewManager/ViewManager.py" line="896" /> <source>Print</source> <translation>Imprimer</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="888" /> + <location filename="../ViewManager/ViewManager.py" line="898" /> <source>&Print</source> <translation>&Imprimer</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="890" /> + <location filename="../ViewManager/ViewManager.py" line="900" /> <source>Ctrl+P</source> <comment>File|Print</comment> <translation>Ctrl+P</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="897" /> + <location filename="../ViewManager/ViewManager.py" line="907" /> <source>Print the current file</source> <translation>Imprime le fichier courant</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="900" /> + <location filename="../ViewManager/ViewManager.py" line="910" /> <source><b>Print File</b><p>Print the contents of current editor window.</p></source> <translation><b>Imprimer le fichier</b><p>Imprime la fenêtre d'édition courante.</p></translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="780" /> - <location filename="../ViewManager/ViewManager.py" line="913" /> - <location filename="../ViewManager/ViewManager.py" line="911" /> + <location filename="../ViewManager/ViewManager.py" line="923" /> + <location filename="../ViewManager/ViewManager.py" line="921" /> <source>Print Preview</source> <translation>Aperçu avant impression</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="920" /> + <location filename="../ViewManager/ViewManager.py" line="930" /> <source>Print preview of the current file</source> <translation>Aperçu avant impression du fichier courant</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="925" /> + <location filename="../ViewManager/ViewManager.py" line="935" /> <source><b>Print Preview</b><p>Print preview of the current editor window.</p></source> <translation><b>Aperçu avant impression</b><p>Aperçu avant impression de l'éditeur courant.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="936" /> + <location filename="../ViewManager/ViewManager.py" line="946" /> <source>Find File</source> <translation type="unfinished">Trouver un fichier</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="938" /> + <location filename="../ViewManager/ViewManager.py" line="948" /> <source>Find &File...</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="940" /> + <location filename="../ViewManager/ViewManager.py" line="950" /> <source>Alt+Ctrl+F</source> <comment>File|Find File</comment> <translation type="unfinished">Alt+Ctrl+F</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="949" /> + <location filename="../ViewManager/ViewManager.py" line="959" /> <source>Search for a file by entering a search pattern</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="954" /> + <location filename="../ViewManager/ViewManager.py" line="964" /> <source><b>Find File</b><p>This searches for a file by entering a search pattern.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="970" /> + <location filename="../ViewManager/ViewManager.py" line="980" /> <source>&File</source> <translation>&Fichier</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="972" /> + <location filename="../ViewManager/ViewManager.py" line="982" /> <source>Open &Recent Files</source> <translation>Ouvrir un fichier &récent</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="976" /> + <location filename="../ViewManager/ViewManager.py" line="986" /> <source>Open &Bookmarked Files</source> <translation>Ouvrir un fichier &étiqueté</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1024" /> - <location filename="../ViewManager/ViewManager.py" line="1022" /> + <location filename="../ViewManager/ViewManager.py" line="1034" /> + <location filename="../ViewManager/ViewManager.py" line="1032" /> <source>File</source> <translation>Fichier</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1051" /> + <location filename="../ViewManager/ViewManager.py" line="1061" /> <source>Export as</source> <translation>Exporter en tant que</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1074" /> + <location filename="../ViewManager/ViewManager.py" line="1084" /> <source>Undo</source> <translation>Défaire</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1076" /> + <location filename="../ViewManager/ViewManager.py" line="1086" /> <source>&Undo</source> <translation>&Défaire</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1078" /> + <location filename="../ViewManager/ViewManager.py" line="1088" /> <source>Ctrl+Z</source> <comment>Edit|Undo</comment> <translation>Ctrl+Z</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1081" /> + <location filename="../ViewManager/ViewManager.py" line="1091" /> <source>Alt+Backspace</source> <comment>Edit|Undo</comment> <translation>Alt+Backspace</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1087" /> + <location filename="../ViewManager/ViewManager.py" line="1097" /> <source>Undo the last change</source> <translation>Annule la dernière modification</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1090" /> - <source><b>Undo</b><p>Undo the last change done in the current editor.</p></source> - <translation><b>Défaire</b><p>Annule la dernière modification effectuée dans l'éditeur courant.</p></translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="1100" /> + <source><b>Undo</b><p>Undo the last change done in the current editor.</p></source> + <translation><b>Défaire</b><p>Annule la dernière modification effectuée dans l'éditeur courant.</p></translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="1110" /> <source>Redo</source> <translation>Refaire</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1102" /> + <location filename="../ViewManager/ViewManager.py" line="1112" /> <source>&Redo</source> <translation>&Refaire</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1104" /> + <location filename="../ViewManager/ViewManager.py" line="1114" /> <source>Ctrl+Shift+Z</source> <comment>Edit|Redo</comment> <translation>Ctrl+Shift+Z</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1111" /> + <location filename="../ViewManager/ViewManager.py" line="1121" /> <source>Redo the last change</source> <translation>Recharge la dernière modification</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1114" /> + <location filename="../ViewManager/ViewManager.py" line="1124" /> <source><b>Redo</b><p>Redo the last change done in the current editor.</p></source> <translation><b>Refaire</b><p>Réeffectue la dernière modification dans l'éditeur courant.</p></translation> </message> <message> + <location filename="../ViewManager/ViewManager.py" line="1144" /> <location filename="../ViewManager/ViewManager.py" line="1134" /> - <location filename="../ViewManager/ViewManager.py" line="1124" /> <source>Revert to last saved state</source> <translation>Ecraser avec le dernier état enregistré</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1125" /> + <location filename="../ViewManager/ViewManager.py" line="1135" /> <source>Re&vert to last saved state</source> <translation>Ec&raser avec le dernier état enregistré</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1127" /> + <location filename="../ViewManager/ViewManager.py" line="1137" /> <source>Ctrl+Y</source> <comment>Edit|Revert</comment> <translation>Ctrl+Y</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1137" /> + <location filename="../ViewManager/ViewManager.py" line="1147" /> <source><b>Revert to last saved state</b><p>Undo all changes up to the last saved state of the current editor.</p></source> <translation><b>Ecraser avec le dernier état enregistré</b><p>Annule toutes les modifications faites depuis le dernier enregistrement.</p></translation> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="343" /> - <location filename="../ViewManager/ViewManager.py" line="1150" /> + <location filename="../ViewManager/ViewManager.py" line="1160" /> <source>Cut</source> <translation>Couper</translation> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="345" /> - <location filename="../ViewManager/ViewManager.py" line="1152" /> + <location filename="../ViewManager/ViewManager.py" line="1162" /> <source>Cu&t</source> <translation>Cou&per</translation> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="347" /> - <location filename="../ViewManager/ViewManager.py" line="1154" /> + <location filename="../ViewManager/ViewManager.py" line="1164" /> <source>Ctrl+X</source> <comment>Edit|Cut</comment> <translation>Ctrl+X</translation> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="350" /> - <location filename="../ViewManager/ViewManager.py" line="1157" /> + <location filename="../ViewManager/ViewManager.py" line="1167" /> <source>Shift+Del</source> <comment>Edit|Cut</comment> <translation>Shift+Del</translation> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="356" /> - <location filename="../ViewManager/ViewManager.py" line="1163" /> + <location filename="../ViewManager/ViewManager.py" line="1173" /> <source>Cut the selection</source> <translation>Coupe la sélection</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1166" /> + <location filename="../ViewManager/ViewManager.py" line="1176" /> <source><b>Cut</b><p>Cut the selected text of the current editor to the clipboard.</p></source> <translation><b>Couper</b><p>Coupe le texte sélectionné vers le presse-papier</p></translation> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="365" /> - <location filename="../ViewManager/ViewManager.py" line="1177" /> + <location filename="../ViewManager/ViewManager.py" line="1187" /> <source>Copy</source> <translation>Copier</translation> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="367" /> - <location filename="../ViewManager/ViewManager.py" line="1179" /> + <location filename="../ViewManager/ViewManager.py" line="1189" /> <source>&Copy</source> <translation>&Copier</translation> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="369" /> - <location filename="../ViewManager/ViewManager.py" line="1181" /> + <location filename="../ViewManager/ViewManager.py" line="1191" /> <source>Ctrl+C</source> <comment>Edit|Copy</comment> <translation>Ctrl+C</translation> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="372" /> - <location filename="../ViewManager/ViewManager.py" line="1184" /> + <location filename="../ViewManager/ViewManager.py" line="1194" /> <source>Ctrl+Ins</source> <comment>Edit|Copy</comment> <translation>Ctrl+Ins</translation> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="378" /> - <location filename="../ViewManager/ViewManager.py" line="1190" /> + <location filename="../ViewManager/ViewManager.py" line="1200" /> <source>Copy the selection</source> <translation>Copie la sélection</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1193" /> + <location filename="../ViewManager/ViewManager.py" line="1203" /> <source><b>Copy</b><p>Copy the selected text of the current editor to the clipboard.</p></source> <translation><b>Copier</b><p>Copie le texte sélectionné vers le presse-papier</p></translation> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="387" /> - <location filename="../ViewManager/ViewManager.py" line="1204" /> + <location filename="../ViewManager/ViewManager.py" line="1214" /> <source>Paste</source> <translation>Coller</translation> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="389" /> - <location filename="../ViewManager/ViewManager.py" line="1206" /> + <location filename="../ViewManager/ViewManager.py" line="1216" /> <source>&Paste</source> <translation>Col&ler</translation> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="391" /> - <location filename="../ViewManager/ViewManager.py" line="1208" /> + <location filename="../ViewManager/ViewManager.py" line="1218" /> <source>Ctrl+V</source> <comment>Edit|Paste</comment> <translation>Ctrl+V</translation> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="394" /> - <location filename="../ViewManager/ViewManager.py" line="1211" /> + <location filename="../ViewManager/ViewManager.py" line="1221" /> <source>Shift+Ins</source> <comment>Edit|Paste</comment> <translation>Shift+Ins</translation> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="400" /> - <location filename="../ViewManager/ViewManager.py" line="1217" /> + <location filename="../ViewManager/ViewManager.py" line="1227" /> <source>Paste the last cut/copied text</source> <translation>Colle le dernier texte copié/coupé</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1220" /> + <location filename="../ViewManager/ViewManager.py" line="1230" /> <source><b>Paste</b><p>Paste the last cut/copied text from the clipboard to the current editor.</p></source> <translation><b>Coller</b><p>Colle le dernier texte copié/coupé dans l'éditeur courant.</p></translation> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="414" /> <location filename="../QScintilla/ShellWindow.py" line="412" /> - <location filename="../ViewManager/ViewManager.py" line="1233" /> - <location filename="../ViewManager/ViewManager.py" line="1231" /> + <location filename="../ViewManager/ViewManager.py" line="1243" /> + <location filename="../ViewManager/ViewManager.py" line="1241" /> <source>Clear</source> <translation>Effacer</translation> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="416" /> - <location filename="../ViewManager/ViewManager.py" line="1235" /> + <location filename="../ViewManager/ViewManager.py" line="1245" /> <source>Alt+Shift+C</source> <comment>Edit|Clear</comment> <translation>Alt+Shift+C</translation> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="423" /> - <location filename="../ViewManager/ViewManager.py" line="1242" /> + <location filename="../ViewManager/ViewManager.py" line="1252" /> <source>Clear all text</source> <translation>Efface tout le texte</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1245" /> + <location filename="../ViewManager/ViewManager.py" line="1255" /> <source><b>Clear</b><p>Delete all text of the current editor.</p></source> <translation><b>Effacer</b><p>Supprime tout le texte de l'éditeur courant.</p></translation> </message> <message> + <location filename="../ViewManager/ViewManager.py" line="1274" /> + <location filename="../ViewManager/ViewManager.py" line="1265" /> <location filename="../ViewManager/ViewManager.py" line="1264" /> - <location filename="../ViewManager/ViewManager.py" line="1255" /> - <location filename="../ViewManager/ViewManager.py" line="1254" /> <source>Join Lines</source> <translation>Unir lignes</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1257" /> + <location filename="../ViewManager/ViewManager.py" line="1267" /> <source>Ctrl+J</source> <comment>Edit|Join Lines</comment> <translation>Ctrl+J</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1267" /> - <source><b>Join Lines</b><p>Join the current and the next lines.</p></source> - <translation><b>Unir lignes</b><p>Unir la ligne actuelle avec les lignes suivantes.</p></translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="1277" /> + <source><b>Join Lines</b><p>Join the current and the next lines.</p></source> + <translation><b>Unir lignes</b><p>Unir la ligne actuelle avec les lignes suivantes.</p></translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="1287" /> <source>Indent</source> <translation>Indenter</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1279" /> + <location filename="../ViewManager/ViewManager.py" line="1289" /> <source>&Indent</source> <translation>&Indenter</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1281" /> + <location filename="../ViewManager/ViewManager.py" line="1291" /> <source>Ctrl+I</source> <comment>Edit|Indent</comment> <translation>Ctrl+I</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1288" /> + <location filename="../ViewManager/ViewManager.py" line="1298" /> <source>Indent line</source> <translation>Indente la ligne</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1291" /> + <location filename="../ViewManager/ViewManager.py" line="1301" /> <source><b>Indent</b><p>Indents the current line or the lines of the selection by one level.</p></source> <translation><b>Indenter</b><p>Indente la ligne courante ou les lignes sélectionnées d'un niveau.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1302" /> + <location filename="../ViewManager/ViewManager.py" line="1312" /> <source>Unindent</source> <translation>Désindenter</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1304" /> + <location filename="../ViewManager/ViewManager.py" line="1314" /> <source>U&nindent</source> <translation>&Désindenter</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1306" /> + <location filename="../ViewManager/ViewManager.py" line="1316" /> <source>Ctrl+Shift+I</source> <comment>Edit|Unindent</comment> <translation>Ctrl+Shift+I</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1315" /> + <location filename="../ViewManager/ViewManager.py" line="1325" /> <source>Unindent line</source> <translation>Désindenter la ligne</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1318" /> + <location filename="../ViewManager/ViewManager.py" line="1328" /> <source><b>Unindent</b><p>Unindents the current line or the lines of the selection by one level.</p></source> <translation><b>Désindenter</b><p>Désindente la ligne courante ou les lignes sélectionnées d'un niveau.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1331" /> - <location filename="../ViewManager/ViewManager.py" line="1329" /> - <source>Smart indent</source> - <translation>Indentation intelligente</translation> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="1338" /> - <source>Smart indent Line or Selection</source> - <translation>Indentation intelligente de la ligne ou de la sélection</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="1341" /> + <location filename="../ViewManager/ViewManager.py" line="1339" /> + <source>Smart indent</source> + <translation>Indentation intelligente</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="1348" /> + <source>Smart indent Line or Selection</source> + <translation>Indentation intelligente de la ligne ou de la sélection</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="1351" /> <source><b>Smart indent</b><p>Indents the current line or the lines of the current selection smartly.</p></source> <translation><b>Indentation intelligente</b><p>Indente intelligemment la ou les lignes sélectionnées.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1352" /> + <location filename="../ViewManager/ViewManager.py" line="1362" /> <source>Comment</source> <translation>Commenter</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1354" /> + <location filename="../ViewManager/ViewManager.py" line="1364" /> <source>C&omment</source> <translation>C&ommenter</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1356" /> - <source>Ctrl+M</source> - <comment>Edit|Comment</comment> - <translation>Ctrl+M</translation> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="1363" /> - <source>Comment Line or Selection</source> - <translation>Commenter la ligne ou la sélection</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="1366" /> + <source>Ctrl+M</source> + <comment>Edit|Comment</comment> + <translation>Ctrl+M</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="1373" /> + <source>Comment Line or Selection</source> + <translation>Commenter la ligne ou la sélection</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="1376" /> <source><b>Comment</b><p>Comments the current line or the lines of the current selection.</p></source> <translation><b>Commenter</b><p>Commente la ligne courante ou les lignes sélectionnées.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1377" /> + <location filename="../ViewManager/ViewManager.py" line="1387" /> <source>Uncomment</source> <translation>Décommenter</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1379" /> + <location filename="../ViewManager/ViewManager.py" line="1389" /> <source>Unco&mment</source> <translation>Déco&mmenter</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1381" /> + <location filename="../ViewManager/ViewManager.py" line="1391" /> <source>Ctrl+Shift+M</source> <comment>Edit|Uncomment</comment> <translation type="unfinished">Ctrl+Shift+M</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1390" /> + <location filename="../ViewManager/ViewManager.py" line="1400" /> <source>Uncomment Line or Selection</source> <translation>Décommenter la ligne ou la sélection</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1393" /> + <location filename="../ViewManager/ViewManager.py" line="1403" /> <source><b>Uncomment</b><p>Uncomments the current line or the lines of the current selection.</p></source> <translation><b>Décommenter</b><p>Décommente la ligne courante ou les lignes sélectionnées.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1406" /> - <location filename="../ViewManager/ViewManager.py" line="1404" /> + <location filename="../ViewManager/ViewManager.py" line="1416" /> + <location filename="../ViewManager/ViewManager.py" line="1414" /> <source>Toggle Comment</source> <translation>Basculer commentaire</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1408" /> + <location filename="../ViewManager/ViewManager.py" line="1418" /> <source>Ctrl+#</source> <comment>Edit|Toggle Comment</comment> <translation type="unfinished">Ctrl+#</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1417" /> + <location filename="../ViewManager/ViewManager.py" line="1427" /> <source>Toggle the comment of the current line, selection or comment block</source> <translation>Basculer le commentaire de la ligne courante, de la sélection ou du block</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1423" /> + <location filename="../ViewManager/ViewManager.py" line="1433" /> <source><b>Toggle Comment</b><p>If the current line does not start with a block comment, the current line or selection is commented. If it is already commented, this comment block is uncommented. </p></source> <translation><b>Basculer commentaire</b><p>Si la ligne courante ne commence pas par un signe de commentaire, la ligne courante ou la séléciton est commentée. Si c'est déjà commentée, ce block de commentaires ne sera plus commenté. </p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1436" /> - <location filename="../ViewManager/ViewManager.py" line="1435" /> + <location filename="../ViewManager/ViewManager.py" line="1446" /> + <location filename="../ViewManager/ViewManager.py" line="1445" /> <source>Stream Comment</source> <translation>Commentaire type "Strream"</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1443" /> + <location filename="../ViewManager/ViewManager.py" line="1453" /> <source>Stream Comment Line or Selection</source> <translation>Commenter la ligne ou la sélection (type Stream)</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1448" /> + <location filename="../ViewManager/ViewManager.py" line="1458" /> <source><b>Stream Comment</b><p>Stream comments the current line or the current selection.</p></source> <translation><b>Commentaire type Stream</b><p>Commente la ligne courante ou les lignes sélectionnées avec un commentaire de type Stream. @@ -95443,18 +95456,18 @@ </p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1460" /> - <location filename="../ViewManager/ViewManager.py" line="1459" /> + <location filename="../ViewManager/ViewManager.py" line="1470" /> + <location filename="../ViewManager/ViewManager.py" line="1469" /> <source>Box Comment</source> <translation>Commentaire type "Bloc"</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1467" /> + <location filename="../ViewManager/ViewManager.py" line="1477" /> <source>Box Comment Line or Selection</source> <translation>Commenter la ligne ou la sélection (type Box)</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1470" /> + <location filename="../ViewManager/ViewManager.py" line="1480" /> <source><b>Box Comment</b><p>Box comments the current line or the lines of the current selection.</p></source> <translation><b>Commentaire type Box</b><p>Commente la ligne courante ou les lignes sélectionnées avec un commentaire de type Box. @@ -95465,301 +95478,301 @@ */</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1481" /> + <location filename="../ViewManager/ViewManager.py" line="1491" /> <source>Select to brace</source> <translation>Sélection parenthèses</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1482" /> + <location filename="../ViewManager/ViewManager.py" line="1492" /> <source>Select to &brace</source> <translation>Sélection parent&hèses</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1484" /> + <location filename="../ViewManager/ViewManager.py" line="1494" /> <source>Ctrl+E</source> <comment>Edit|Select to brace</comment> <translation>Ctrl+E</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1493" /> + <location filename="../ViewManager/ViewManager.py" line="1503" /> <source>Select text to the matching brace</source> <translation>Sélectionne le texte jusqu'à la parenthèse correspondante</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1498" /> + <location filename="../ViewManager/ViewManager.py" line="1508" /> <source><b>Select to brace</b><p>Select text of the current editor to the matching brace.</p></source> <translation><b>Sélection jusqu'à la parenthèse fermante</b><p>Sélectionne le texte jusqu'à la parenthèse fermante.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1509" /> + <location filename="../ViewManager/ViewManager.py" line="1519" /> <source>Select all</source> <translation>Tout sélectionner</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1511" /> + <location filename="../ViewManager/ViewManager.py" line="1521" /> <source>&Select all</source> <translation>Tout &sélectionner</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1513" /> + <location filename="../ViewManager/ViewManager.py" line="1523" /> <source>Ctrl+A</source> <comment>Edit|Select all</comment> <translation>Ctrl+A</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1520" /> + <location filename="../ViewManager/ViewManager.py" line="1530" /> <source>Select all text</source> <translation>Sélectionne tout le texte</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1523" /> - <source><b>Select All</b><p>Select all text of the current editor.</p></source> - <translation><b>Tout sélectionner</b><p>Sélectionne tout le texte de l'éditeur courant.</p></translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="1533" /> + <source><b>Select All</b><p>Select all text of the current editor.</p></source> + <translation><b>Tout sélectionner</b><p>Sélectionne tout le texte de l'éditeur courant.</p></translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="1543" /> <source>Deselect all</source> <translation>Tout déselectionner</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1534" /> + <location filename="../ViewManager/ViewManager.py" line="1544" /> <source>&Deselect all</source> <translation>Tout &déselectionner</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1536" /> + <location filename="../ViewManager/ViewManager.py" line="1546" /> <source>Alt+Ctrl+A</source> <comment>Edit|Deselect all</comment> <translation>Alt+Ctrl+A</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1545" /> + <location filename="../ViewManager/ViewManager.py" line="1555" /> <source>Deselect all text</source> <translation>Désélectionne tout le texte</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1548" /> + <location filename="../ViewManager/ViewManager.py" line="1558" /> <source><b>Deselect All</b><p>Deselect all text of the current editor.</p></source> <translation><b>Tout déselectionner</b><p>Désélectionne tout le texte de l'éditeur courant.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1566" /> - <location filename="../ViewManager/ViewManager.py" line="1559" /> - <location filename="../ViewManager/ViewManager.py" line="1558" /> + <location filename="../ViewManager/ViewManager.py" line="1576" /> + <location filename="../ViewManager/ViewManager.py" line="1569" /> + <location filename="../ViewManager/ViewManager.py" line="1568" /> <source>Convert Line End Characters</source> <translation>Conversion des caractères de fin de lignes</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1569" /> + <location filename="../ViewManager/ViewManager.py" line="1579" /> <source><b>Convert Line End Characters</b><p>Convert the line end characters to the currently set type.</p></source> <translation><b>Conversion des caractères de fin de lignes</b><p>Convertit les caractères de fin de lignes dans le type courant défini.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1588" /> - <location filename="../ViewManager/ViewManager.py" line="1581" /> - <location filename="../ViewManager/ViewManager.py" line="1580" /> - <source>Convert Tabs to Spaces</source> - <translation type="unfinished" /> - </message> - <message> + <location filename="../ViewManager/ViewManager.py" line="1598" /> <location filename="../ViewManager/ViewManager.py" line="1591" /> + <location filename="../ViewManager/ViewManager.py" line="1590" /> + <source>Convert Tabs to Spaces</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="1601" /> <source><b>Convert Tabs to Spaces</b><p>Convert tabulators to the configured amount of space characters.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1610" /> - <location filename="../ViewManager/ViewManager.py" line="1603" /> - <location filename="../ViewManager/ViewManager.py" line="1602" /> + <location filename="../ViewManager/ViewManager.py" line="1620" /> + <location filename="../ViewManager/ViewManager.py" line="1613" /> + <location filename="../ViewManager/ViewManager.py" line="1612" /> <source>Shorten empty lines</source> <translation>Raccourcir les lignes vides</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1613" /> + <location filename="../ViewManager/ViewManager.py" line="1623" /> <source><b>Shorten empty lines</b><p>Shorten lines consisting solely of whitespace characters.</p></source> <translation><b>Raccourcir les lignes vides</b><p>Raccourcit les lignes vides ne comportant que des espaces.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3497" /> - <location filename="../ViewManager/ViewManager.py" line="1624" /> + <location filename="../ViewManager/ViewManager.py" line="3507" /> + <location filename="../ViewManager/ViewManager.py" line="1634" /> <source>Complete</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1625" /> + <location filename="../ViewManager/ViewManager.py" line="1635" /> <source>&Complete</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1627" /> - <source>Ctrl+Space</source> - <comment>Edit|Complete</comment> - <translation>Ctrl+Space</translation> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="1634" /> - <source>Complete current word</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="1637" /> + <source>Ctrl+Space</source> + <comment>Edit|Complete</comment> + <translation>Ctrl+Space</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="1644" /> + <source>Complete current word</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="1647" /> <source><b>Complete</b><p>Performs a completion of the word containing the cursor.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1649" /> - <location filename="../ViewManager/ViewManager.py" line="1648" /> + <location filename="../ViewManager/ViewManager.py" line="1659" /> + <location filename="../ViewManager/ViewManager.py" line="1658" /> <source>Complete from Document</source> <translation type="unfinished">à partir du document</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1651" /> + <location filename="../ViewManager/ViewManager.py" line="1661" /> <source>Ctrl+Shift+Space</source> <comment>Edit|Complete from Document</comment> <translation>Ctrl+Shift+Space</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1660" /> + <location filename="../ViewManager/ViewManager.py" line="1670" /> <source>Complete current word from Document</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1665" /> + <location filename="../ViewManager/ViewManager.py" line="1675" /> <source><b>Complete from Document</b><p>Performs a completion from document of the word containing the cursor.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1677" /> - <location filename="../ViewManager/ViewManager.py" line="1676" /> + <location filename="../ViewManager/ViewManager.py" line="1687" /> + <location filename="../ViewManager/ViewManager.py" line="1686" /> <source>Complete from APIs</source> <translation type="unfinished">à partir des fichiers API</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1679" /> + <location filename="../ViewManager/ViewManager.py" line="1689" /> <source>Ctrl+Alt+Space</source> <comment>Edit|Complete from APIs</comment> <translation>Ctrl+Alt+Space</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1688" /> + <location filename="../ViewManager/ViewManager.py" line="1698" /> <source>Complete current word from APIs</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1691" /> + <location filename="../ViewManager/ViewManager.py" line="1701" /> <source><b>Complete from APIs</b><p>Performs a completion from APIs of the word containing the cursor.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1705" /> - <location filename="../ViewManager/ViewManager.py" line="1702" /> + <location filename="../ViewManager/ViewManager.py" line="1715" /> + <location filename="../ViewManager/ViewManager.py" line="1712" /> <source>Complete from Document and APIs</source> <translation type="unfinished">à partir du document et des fichiers API</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1709" /> + <location filename="../ViewManager/ViewManager.py" line="1719" /> <source>Alt+Shift+Space</source> <comment>Edit|Complete from Document and APIs</comment> <translation>Alt+Shift+Space</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1720" /> + <location filename="../ViewManager/ViewManager.py" line="1730" /> <source>Complete current word from Document and APIs</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1725" /> + <location filename="../ViewManager/ViewManager.py" line="1735" /> <source><b>Complete from Document and APIs</b><p>Performs a completion from document and APIs of the word containing the cursor.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1736" /> + <location filename="../ViewManager/ViewManager.py" line="1746" /> <source>Calltip</source> <translation>Calltip</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1737" /> + <location filename="../ViewManager/ViewManager.py" line="1747" /> <source>&Calltip</source> <translation>&Calltip (ou suggestion d'arguments)</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1739" /> + <location filename="../ViewManager/ViewManager.py" line="1749" /> <source>Meta+Alt+Space</source> <comment>Edit|Calltip</comment> <translation type="unfinished">Meta+Alt+Space</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1748" /> + <location filename="../ViewManager/ViewManager.py" line="1758" /> <source>Show Calltips</source> <translation>Affiche les calltips</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1751" /> + <location filename="../ViewManager/ViewManager.py" line="1761" /> <source><b>Calltip</b><p>Show calltips based on the characters immediately to the left of the cursor.</p></source> <translation><b>Calltip</b><p>Affiche les calltips (suggestions d'arguments) trouvés à partir des caractères à gauche du curseur.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1764" /> - <location filename="../ViewManager/ViewManager.py" line="1762" /> + <location filename="../ViewManager/ViewManager.py" line="1774" /> + <location filename="../ViewManager/ViewManager.py" line="1772" /> <source>Code Info</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1766" /> + <location filename="../ViewManager/ViewManager.py" line="1776" /> <source>Ctrl+Alt+I</source> <comment>Edit|Code Info</comment> <translation>Ctrl+Alt+I</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1775" /> + <location filename="../ViewManager/ViewManager.py" line="1785" /> <source>Show Code Info</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1778" /> + <location filename="../ViewManager/ViewManager.py" line="1788" /> <source><b>Code Info</b><p>Show code information based on the cursor position.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1789" /> - <location filename="../ViewManager/ViewManager.py" line="1788" /> + <location filename="../ViewManager/ViewManager.py" line="1799" /> + <location filename="../ViewManager/ViewManager.py" line="1798" /> <source>Sort</source> <translation>Trier</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1791" /> + <location filename="../ViewManager/ViewManager.py" line="1801" /> <source>Ctrl+Alt+S</source> <comment>Edit|Sort</comment> <translation>Ctrl+Alt+S</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1798" /> + <location filename="../ViewManager/ViewManager.py" line="1808" /> <source>Sort the lines containing the rectangular selection</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1803" /> + <location filename="../ViewManager/ViewManager.py" line="1813" /> <source><b>Sort</b><p>Sort the lines spanned by a rectangular selection based on the selection ignoring leading and trailing whitespace.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1815" /> - <location filename="../ViewManager/ViewManager.py" line="1814" /> + <location filename="../ViewManager/ViewManager.py" line="1825" /> + <location filename="../ViewManager/ViewManager.py" line="1824" /> <source>Generate Docstring</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1817" /> + <location filename="../ViewManager/ViewManager.py" line="1827" /> <source>Ctrl+Alt+D</source> <comment>Edit|Generate Docstring</comment> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1826" /> + <location filename="../ViewManager/ViewManager.py" line="1836" /> <source>Generate a docstring for the current function/method</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1831" /> + <location filename="../ViewManager/ViewManager.py" line="1841" /> <source><b>Generate Docstring</b><p>Generate a docstring for the current function/method if the cursor is placed on the line starting the function definition or on the line thereafter. The docstring is inserted at the appropriate position and the cursor is placed at the end of the description line.</p></source> <translation type="unfinished" /> </message> @@ -95768,22 +95781,22 @@ <location filename="../QScintilla/MiniEditor.py" line="929" /> <location filename="../QScintilla/ShellWindow.py" line="579" /> <location filename="../QScintilla/ShellWindow.py" line="578" /> - <location filename="../ViewManager/ViewManager.py" line="1858" /> - <location filename="../ViewManager/ViewManager.py" line="1857" /> + <location filename="../ViewManager/ViewManager.py" line="1868" /> + <location filename="../ViewManager/ViewManager.py" line="1867" /> <source>Move left one character</source> <translation>Déplacement d'un caractère vers la gauche</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="931" /> <location filename="../QScintilla/ShellWindow.py" line="580" /> - <location filename="../ViewManager/ViewManager.py" line="1859" /> + <location filename="../ViewManager/ViewManager.py" line="1869" /> <source>Left</source> <translation>Left</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="939" /> <location filename="../QScintilla/ShellWindow.py" line="588" /> - <location filename="../ViewManager/ViewManager.py" line="1867" /> + <location filename="../ViewManager/ViewManager.py" line="1877" /> <source>Meta+B</source> <translation>Meta+B</translation> </message> @@ -95792,22 +95805,22 @@ <location filename="../QScintilla/MiniEditor.py" line="945" /> <location filename="../QScintilla/ShellWindow.py" line="595" /> <location filename="../QScintilla/ShellWindow.py" line="594" /> - <location filename="../ViewManager/ViewManager.py" line="1874" /> - <location filename="../ViewManager/ViewManager.py" line="1873" /> + <location filename="../ViewManager/ViewManager.py" line="1884" /> + <location filename="../ViewManager/ViewManager.py" line="1883" /> <source>Move right one character</source> <translation>Déplacement d'un caractère vers la droite</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="947" /> <location filename="../QScintilla/ShellWindow.py" line="596" /> - <location filename="../ViewManager/ViewManager.py" line="1875" /> + <location filename="../ViewManager/ViewManager.py" line="1885" /> <source>Right</source> <translation>Right</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="954" /> <location filename="../QScintilla/ShellWindow.py" line="603" /> - <location filename="../ViewManager/ViewManager.py" line="1882" /> + <location filename="../ViewManager/ViewManager.py" line="1892" /> <source>Meta+F</source> <translation>Meta+F</translation> </message> @@ -95816,22 +95829,22 @@ <location filename="../QScintilla/MiniEditor.py" line="961" /> <location filename="../QScintilla/ShellWindow.py" line="687" /> <location filename="../QScintilla/ShellWindow.py" line="686" /> - <location filename="../ViewManager/ViewManager.py" line="1890" /> - <location filename="../ViewManager/ViewManager.py" line="1889" /> + <location filename="../ViewManager/ViewManager.py" line="1900" /> + <location filename="../ViewManager/ViewManager.py" line="1899" /> <source>Move up one line</source> <translation>Déplacement d'une ligne vers le haut</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="963" /> <location filename="../QScintilla/ShellWindow.py" line="688" /> - <location filename="../ViewManager/ViewManager.py" line="1891" /> + <location filename="../ViewManager/ViewManager.py" line="1901" /> <source>Up</source> <translation>Up</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="970" /> <location filename="../QScintilla/ShellWindow.py" line="695" /> - <location filename="../ViewManager/ViewManager.py" line="1898" /> + <location filename="../ViewManager/ViewManager.py" line="1908" /> <source>Meta+P</source> <translation>Meta+P</translation> </message> @@ -95840,30 +95853,30 @@ <location filename="../QScintilla/MiniEditor.py" line="977" /> <location filename="../QScintilla/ShellWindow.py" line="703" /> <location filename="../QScintilla/ShellWindow.py" line="702" /> - <location filename="../ViewManager/ViewManager.py" line="1906" /> - <location filename="../ViewManager/ViewManager.py" line="1905" /> + <location filename="../ViewManager/ViewManager.py" line="1916" /> + <location filename="../ViewManager/ViewManager.py" line="1915" /> <source>Move down one line</source> <translation>Déplacement d'une ligne vers le bas</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="979" /> <location filename="../QScintilla/ShellWindow.py" line="704" /> - <location filename="../ViewManager/ViewManager.py" line="1907" /> + <location filename="../ViewManager/ViewManager.py" line="1917" /> <source>Down</source> <translation>Down</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="986" /> <location filename="../QScintilla/ShellWindow.py" line="711" /> - <location filename="../ViewManager/ViewManager.py" line="1914" /> + <location filename="../ViewManager/ViewManager.py" line="1924" /> <source>Meta+N</source> <translation>Meta+N</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="994" /> <location filename="../QScintilla/MiniEditor.py" line="993" /> - <location filename="../ViewManager/ViewManager.py" line="1922" /> - <location filename="../ViewManager/ViewManager.py" line="1921" /> + <location filename="../ViewManager/ViewManager.py" line="1932" /> + <location filename="../ViewManager/ViewManager.py" line="1931" /> <source>Move left one word part</source> <translation>Déplacement d'une part de mot vers la gauche</translation> </message> @@ -95871,16 +95884,16 @@ <location filename="../QScintilla/MiniEditor.py" line="1034" /> <location filename="../QScintilla/MiniEditor.py" line="1002" /> <location filename="../QScintilla/ShellWindow.py" line="619" /> - <location filename="../ViewManager/ViewManager.py" line="1962" /> - <location filename="../ViewManager/ViewManager.py" line="1930" /> + <location filename="../ViewManager/ViewManager.py" line="1972" /> + <location filename="../ViewManager/ViewManager.py" line="1940" /> <source>Alt+Left</source> <translation>Alt+Left</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1010" /> <location filename="../QScintilla/MiniEditor.py" line="1009" /> - <location filename="../ViewManager/ViewManager.py" line="1938" /> - <location filename="../ViewManager/ViewManager.py" line="1937" /> + <location filename="../ViewManager/ViewManager.py" line="1948" /> + <location filename="../ViewManager/ViewManager.py" line="1947" /> <source>Move right one word part</source> <translation>Déplacement d'une part de mot vers la droite</translation> </message> @@ -95888,8 +95901,8 @@ <location filename="../QScintilla/MiniEditor.py" line="2164" /> <location filename="../QScintilla/MiniEditor.py" line="1054" /> <location filename="../QScintilla/MiniEditor.py" line="1018" /> - <location filename="../ViewManager/ViewManager.py" line="3071" /> - <location filename="../ViewManager/ViewManager.py" line="1946" /> + <location filename="../ViewManager/ViewManager.py" line="3081" /> + <location filename="../ViewManager/ViewManager.py" line="1956" /> <source>Alt+Right</source> <translation>Alt+Right</translation> </message> @@ -95898,8 +95911,8 @@ <location filename="../QScintilla/MiniEditor.py" line="1025" /> <location filename="../QScintilla/ShellWindow.py" line="611" /> <location filename="../QScintilla/ShellWindow.py" line="610" /> - <location filename="../ViewManager/ViewManager.py" line="1954" /> - <location filename="../ViewManager/ViewManager.py" line="1953" /> + <location filename="../ViewManager/ViewManager.py" line="1964" /> + <location filename="../ViewManager/ViewManager.py" line="1963" /> <source>Move left one word</source> <translation>Déplacement d'un mot vers la gauche</translation> </message> @@ -95907,8 +95920,8 @@ <location filename="../QScintilla/MiniEditor.py" line="1094" /> <location filename="../QScintilla/MiniEditor.py" line="1038" /> <location filename="../QScintilla/ShellWindow.py" line="623" /> - <location filename="../ViewManager/ViewManager.py" line="2018" /> - <location filename="../ViewManager/ViewManager.py" line="1966" /> + <location filename="../ViewManager/ViewManager.py" line="2028" /> + <location filename="../ViewManager/ViewManager.py" line="1976" /> <source>Ctrl+Left</source> <translation>Ctrl+Left</translation> </message> @@ -95917,8 +95930,8 @@ <location filename="../QScintilla/MiniEditor.py" line="1045" /> <location filename="../QScintilla/ShellWindow.py" line="631" /> <location filename="../QScintilla/ShellWindow.py" line="630" /> - <location filename="../ViewManager/ViewManager.py" line="1974" /> - <location filename="../ViewManager/ViewManager.py" line="1973" /> + <location filename="../ViewManager/ViewManager.py" line="1984" /> + <location filename="../ViewManager/ViewManager.py" line="1983" /> <source>Move right one word</source> <translation>Déplacement d'un mot vers la droite</translation> </message> @@ -95926,8 +95939,8 @@ <location filename="../QScintilla/MiniEditor.py" line="1848" /> <location filename="../QScintilla/MiniEditor.py" line="1058" /> <location filename="../QScintilla/ShellWindow.py" line="639" /> - <location filename="../ViewManager/ViewManager.py" line="2755" /> - <location filename="../ViewManager/ViewManager.py" line="1982" /> + <location filename="../ViewManager/ViewManager.py" line="2765" /> + <location filename="../ViewManager/ViewManager.py" line="1992" /> <source>Ctrl+Right</source> <translation>Ctrl+Right</translation> </message> @@ -95936,8 +95949,8 @@ <location filename="../QScintilla/MiniEditor.py" line="1065" /> <location filename="../QScintilla/ShellWindow.py" line="649" /> <location filename="../QScintilla/ShellWindow.py" line="646" /> - <location filename="../ViewManager/ViewManager.py" line="1992" /> - <location filename="../ViewManager/ViewManager.py" line="1989" /> + <location filename="../ViewManager/ViewManager.py" line="2002" /> + <location filename="../ViewManager/ViewManager.py" line="1999" /> <source>Move to first visible character in document line</source> <translation>Déplacement vers le premier caractère visible de la ligne du document</translation> </message> @@ -95945,22 +95958,22 @@ <location filename="../QScintilla/MiniEditor.py" line="2109" /> <location filename="../QScintilla/MiniEditor.py" line="1078" /> <location filename="../QScintilla/ShellWindow.py" line="659" /> - <location filename="../ViewManager/ViewManager.py" line="3016" /> - <location filename="../ViewManager/ViewManager.py" line="2002" /> + <location filename="../ViewManager/ViewManager.py" line="3026" /> + <location filename="../ViewManager/ViewManager.py" line="2012" /> <source>Home</source> <translation>Home</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1086" /> <location filename="../QScintilla/MiniEditor.py" line="1085" /> - <location filename="../ViewManager/ViewManager.py" line="2010" /> - <location filename="../ViewManager/ViewManager.py" line="2009" /> + <location filename="../ViewManager/ViewManager.py" line="2020" /> + <location filename="../ViewManager/ViewManager.py" line="2019" /> <source>Move to start of display line</source> <translation>Déplacement au début de la ligne courante</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1098" /> - <location filename="../ViewManager/ViewManager.py" line="2022" /> + <location filename="../ViewManager/ViewManager.py" line="2032" /> <source>Alt+Home</source> <translation>Alt+Home</translation> </message> @@ -95969,15 +95982,15 @@ <location filename="../QScintilla/MiniEditor.py" line="1105" /> <location filename="../QScintilla/ShellWindow.py" line="667" /> <location filename="../QScintilla/ShellWindow.py" line="666" /> - <location filename="../ViewManager/ViewManager.py" line="2030" /> - <location filename="../ViewManager/ViewManager.py" line="2029" /> + <location filename="../ViewManager/ViewManager.py" line="2040" /> + <location filename="../ViewManager/ViewManager.py" line="2039" /> <source>Move to end of document line</source> <translation>Déplacement à la fin de la ligne du document</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1114" /> <location filename="../QScintilla/ShellWindow.py" line="675" /> - <location filename="../ViewManager/ViewManager.py" line="2038" /> + <location filename="../ViewManager/ViewManager.py" line="2048" /> <source>Meta+E</source> <translation>Meta+E</translation> </message> @@ -95985,16 +95998,16 @@ <location filename="../QScintilla/MiniEditor.py" line="2126" /> <location filename="../QScintilla/MiniEditor.py" line="1118" /> <location filename="../QScintilla/ShellWindow.py" line="679" /> - <location filename="../ViewManager/ViewManager.py" line="3033" /> - <location filename="../ViewManager/ViewManager.py" line="2042" /> + <location filename="../ViewManager/ViewManager.py" line="3043" /> + <location filename="../ViewManager/ViewManager.py" line="2052" /> <source>End</source> <translation>End</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1126" /> <location filename="../QScintilla/MiniEditor.py" line="1125" /> - <location filename="../ViewManager/ViewManager.py" line="2050" /> - <location filename="../ViewManager/ViewManager.py" line="2049" /> + <location filename="../ViewManager/ViewManager.py" line="2060" /> + <location filename="../ViewManager/ViewManager.py" line="2059" /> <source>Scroll view down one line</source> <translation>Descend la vue d'une ligne</translation> </message> @@ -96002,16 +96015,16 @@ <location filename="../QScintilla/MiniEditor.py" line="1230" /> <location filename="../QScintilla/MiniEditor.py" line="1127" /> <location filename="../QScintilla/ShellWindow.py" line="720" /> - <location filename="../ViewManager/ViewManager.py" line="2154" /> - <location filename="../ViewManager/ViewManager.py" line="2051" /> + <location filename="../ViewManager/ViewManager.py" line="2164" /> + <location filename="../ViewManager/ViewManager.py" line="2061" /> <source>Ctrl+Down</source> <translation>Ctrl+Down</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1138" /> <location filename="../QScintilla/MiniEditor.py" line="1137" /> - <location filename="../ViewManager/ViewManager.py" line="2062" /> - <location filename="../ViewManager/ViewManager.py" line="2061" /> + <location filename="../ViewManager/ViewManager.py" line="2072" /> + <location filename="../ViewManager/ViewManager.py" line="2071" /> <source>Scroll view up one line</source> <translation>Monte la vue d'une ligne</translation> </message> @@ -96019,36 +96032,36 @@ <location filename="../QScintilla/MiniEditor.py" line="1210" /> <location filename="../QScintilla/MiniEditor.py" line="1139" /> <location filename="../QScintilla/ShellWindow.py" line="732" /> - <location filename="../ViewManager/ViewManager.py" line="2134" /> - <location filename="../ViewManager/ViewManager.py" line="2063" /> + <location filename="../ViewManager/ViewManager.py" line="2144" /> + <location filename="../ViewManager/ViewManager.py" line="2073" /> <source>Ctrl+Up</source> <translation>Ctrl+Up</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1150" /> <location filename="../QScintilla/MiniEditor.py" line="1149" /> - <location filename="../ViewManager/ViewManager.py" line="2074" /> - <location filename="../ViewManager/ViewManager.py" line="2073" /> + <location filename="../ViewManager/ViewManager.py" line="2084" /> + <location filename="../ViewManager/ViewManager.py" line="2083" /> <source>Move up one paragraph</source> <translation>Déplacement d'un paragraphe vers le haut</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1151" /> - <location filename="../ViewManager/ViewManager.py" line="2075" /> + <location filename="../ViewManager/ViewManager.py" line="2085" /> <source>Alt+Up</source> <translation>Alt+Up</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1162" /> <location filename="../QScintilla/MiniEditor.py" line="1161" /> - <location filename="../ViewManager/ViewManager.py" line="2086" /> - <location filename="../ViewManager/ViewManager.py" line="2085" /> + <location filename="../ViewManager/ViewManager.py" line="2096" /> + <location filename="../ViewManager/ViewManager.py" line="2095" /> <source>Move down one paragraph</source> <translation>Déplacement d'un paragraphe vers le bas</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1163" /> - <location filename="../ViewManager/ViewManager.py" line="2087" /> + <location filename="../ViewManager/ViewManager.py" line="2097" /> <source>Alt+Down</source> <translation>Alt+Down</translation> </message> @@ -96057,15 +96070,15 @@ <location filename="../QScintilla/MiniEditor.py" line="1173" /> <location filename="../QScintilla/ShellWindow.py" line="743" /> <location filename="../QScintilla/ShellWindow.py" line="742" /> - <location filename="../ViewManager/ViewManager.py" line="2098" /> - <location filename="../ViewManager/ViewManager.py" line="2097" /> + <location filename="../ViewManager/ViewManager.py" line="2108" /> + <location filename="../ViewManager/ViewManager.py" line="2107" /> <source>Move up one page</source> <translation>Déplacement d'une page vers le haut</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1175" /> <location filename="../QScintilla/ShellWindow.py" line="744" /> - <location filename="../ViewManager/ViewManager.py" line="2099" /> + <location filename="../ViewManager/ViewManager.py" line="2109" /> <source>PgUp</source> <translation>PgUp</translation> </message> @@ -96074,50 +96087,50 @@ <location filename="../QScintilla/MiniEditor.py" line="1185" /> <location filename="../QScintilla/ShellWindow.py" line="755" /> <location filename="../QScintilla/ShellWindow.py" line="754" /> - <location filename="../ViewManager/ViewManager.py" line="2110" /> - <location filename="../ViewManager/ViewManager.py" line="2109" /> + <location filename="../ViewManager/ViewManager.py" line="2120" /> + <location filename="../ViewManager/ViewManager.py" line="2119" /> <source>Move down one page</source> <translation>Déplacement d'une page vers le bas</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1187" /> <location filename="../QScintilla/ShellWindow.py" line="756" /> - <location filename="../ViewManager/ViewManager.py" line="2111" /> + <location filename="../ViewManager/ViewManager.py" line="2121" /> <source>PgDown</source> <translation>PgDown</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1194" /> <location filename="../QScintilla/ShellWindow.py" line="763" /> - <location filename="../ViewManager/ViewManager.py" line="2118" /> + <location filename="../ViewManager/ViewManager.py" line="2128" /> <source>Meta+V</source> <translation>Meta+V</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1202" /> <location filename="../QScintilla/MiniEditor.py" line="1201" /> - <location filename="../ViewManager/ViewManager.py" line="2126" /> - <location filename="../ViewManager/ViewManager.py" line="2125" /> + <location filename="../ViewManager/ViewManager.py" line="2136" /> + <location filename="../ViewManager/ViewManager.py" line="2135" /> <source>Move to start of document</source> <translation>Déplacement au début du document</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1214" /> - <location filename="../ViewManager/ViewManager.py" line="2138" /> + <location filename="../ViewManager/ViewManager.py" line="2148" /> <source>Ctrl+Home</source> <translation>Ctrl+Home</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1222" /> <location filename="../QScintilla/MiniEditor.py" line="1221" /> - <location filename="../ViewManager/ViewManager.py" line="2146" /> - <location filename="../ViewManager/ViewManager.py" line="2145" /> + <location filename="../ViewManager/ViewManager.py" line="2156" /> + <location filename="../ViewManager/ViewManager.py" line="2155" /> <source>Move to end of document</source> <translation>Déplacement à la fin du document</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1234" /> - <location filename="../ViewManager/ViewManager.py" line="2158" /> + <location filename="../ViewManager/ViewManager.py" line="2168" /> <source>Ctrl+End</source> <translation>Ctrl+End</translation> </message> @@ -96126,29 +96139,29 @@ <location filename="../QScintilla/MiniEditor.py" line="1241" /> <location filename="../QScintilla/ShellWindow.py" line="457" /> <location filename="../QScintilla/ShellWindow.py" line="456" /> - <location filename="../ViewManager/ViewManager.py" line="2166" /> - <location filename="../ViewManager/ViewManager.py" line="2165" /> + <location filename="../ViewManager/ViewManager.py" line="2176" /> + <location filename="../ViewManager/ViewManager.py" line="2175" /> <source>Indent one level</source> <translation>Indentation d'un niveau</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1243" /> <location filename="../QScintilla/ShellWindow.py" line="458" /> - <location filename="../ViewManager/ViewManager.py" line="2167" /> + <location filename="../ViewManager/ViewManager.py" line="2177" /> <source>Tab</source> <translation>Tab</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1254" /> <location filename="../QScintilla/MiniEditor.py" line="1253" /> - <location filename="../ViewManager/ViewManager.py" line="2178" /> - <location filename="../ViewManager/ViewManager.py" line="2177" /> + <location filename="../ViewManager/ViewManager.py" line="2188" /> + <location filename="../ViewManager/ViewManager.py" line="2187" /> <source>Unindent one level</source> <translation>Désindentation d'un niveau</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1255" /> - <location filename="../ViewManager/ViewManager.py" line="2179" /> + <location filename="../ViewManager/ViewManager.py" line="2189" /> <source>Shift+Tab</source> <translation>Shift+Tab</translation> </message> @@ -96157,22 +96170,22 @@ <location filename="../QScintilla/MiniEditor.py" line="1265" /> <location filename="../QScintilla/ShellWindow.py" line="785" /> <location filename="../QScintilla/ShellWindow.py" line="782" /> - <location filename="../ViewManager/ViewManager.py" line="2192" /> - <location filename="../ViewManager/ViewManager.py" line="2189" /> + <location filename="../ViewManager/ViewManager.py" line="2202" /> + <location filename="../ViewManager/ViewManager.py" line="2199" /> <source>Extend selection left one character</source> <translation>Extension de la sélection d'un caractère vers la gauche</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1271" /> <location filename="../QScintilla/ShellWindow.py" line="788" /> - <location filename="../ViewManager/ViewManager.py" line="2195" /> + <location filename="../ViewManager/ViewManager.py" line="2205" /> <source>Shift+Left</source> <translation>Shift+Left</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1278" /> <location filename="../QScintilla/ShellWindow.py" line="795" /> - <location filename="../ViewManager/ViewManager.py" line="2202" /> + <location filename="../ViewManager/ViewManager.py" line="2212" /> <source>Meta+Shift+B</source> <translation>Meta+Shift+B</translation> </message> @@ -96181,70 +96194,70 @@ <location filename="../QScintilla/MiniEditor.py" line="1285" /> <location filename="../QScintilla/ShellWindow.py" line="805" /> <location filename="../QScintilla/ShellWindow.py" line="802" /> - <location filename="../ViewManager/ViewManager.py" line="2212" /> - <location filename="../ViewManager/ViewManager.py" line="2209" /> + <location filename="../ViewManager/ViewManager.py" line="2222" /> + <location filename="../ViewManager/ViewManager.py" line="2219" /> <source>Extend selection right one character</source> <translation>Extension de la sélection d'un caractère vers la droite</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1291" /> <location filename="../QScintilla/ShellWindow.py" line="808" /> - <location filename="../ViewManager/ViewManager.py" line="2215" /> + <location filename="../ViewManager/ViewManager.py" line="2225" /> <source>Shift+Right</source> <translation>Shift+Right</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1298" /> <location filename="../QScintilla/ShellWindow.py" line="815" /> - <location filename="../ViewManager/ViewManager.py" line="2222" /> + <location filename="../ViewManager/ViewManager.py" line="2232" /> <source>Meta+Shift+F</source> <translation>Meta+Shift+F</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1306" /> <location filename="../QScintilla/MiniEditor.py" line="1305" /> - <location filename="../ViewManager/ViewManager.py" line="2230" /> - <location filename="../ViewManager/ViewManager.py" line="2229" /> + <location filename="../ViewManager/ViewManager.py" line="2240" /> + <location filename="../ViewManager/ViewManager.py" line="2239" /> <source>Extend selection up one line</source> <translation>Extension de la sélection d'une ligne vers le haut</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1307" /> - <location filename="../ViewManager/ViewManager.py" line="2231" /> + <location filename="../ViewManager/ViewManager.py" line="2241" /> <source>Shift+Up</source> <translation>Shift+Up</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1314" /> - <location filename="../ViewManager/ViewManager.py" line="2238" /> + <location filename="../ViewManager/ViewManager.py" line="2248" /> <source>Meta+Shift+P</source> <translation>Meta+Shift+P</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1322" /> <location filename="../QScintilla/MiniEditor.py" line="1321" /> - <location filename="../ViewManager/ViewManager.py" line="2246" /> - <location filename="../ViewManager/ViewManager.py" line="2245" /> + <location filename="../ViewManager/ViewManager.py" line="2256" /> + <location filename="../ViewManager/ViewManager.py" line="2255" /> <source>Extend selection down one line</source> <translation>Extension de la sélection d'une ligne vers le bas</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1323" /> - <location filename="../ViewManager/ViewManager.py" line="2247" /> + <location filename="../ViewManager/ViewManager.py" line="2257" /> <source>Shift+Down</source> <translation>Shift+Down</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1330" /> - <location filename="../ViewManager/ViewManager.py" line="2254" /> + <location filename="../ViewManager/ViewManager.py" line="2264" /> <source>Meta+Shift+N</source> <translation>Meta+Shift+N</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1340" /> <location filename="../QScintilla/MiniEditor.py" line="1337" /> - <location filename="../ViewManager/ViewManager.py" line="2264" /> - <location filename="../ViewManager/ViewManager.py" line="2261" /> + <location filename="../ViewManager/ViewManager.py" line="2274" /> + <location filename="../ViewManager/ViewManager.py" line="2271" /> <source>Extend selection left one word part</source> <translation>Extension de la sélection d'une part de mot vers la gauche</translation> </message> @@ -96252,16 +96265,16 @@ <location filename="../QScintilla/MiniEditor.py" line="1391" /> <location filename="../QScintilla/MiniEditor.py" line="1351" /> <location filename="../QScintilla/ShellWindow.py" line="832" /> - <location filename="../ViewManager/ViewManager.py" line="2315" /> - <location filename="../ViewManager/ViewManager.py" line="2275" /> + <location filename="../ViewManager/ViewManager.py" line="2325" /> + <location filename="../ViewManager/ViewManager.py" line="2285" /> <source>Alt+Shift+Left</source> <translation>Alt+Shift+Left</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1362" /> <location filename="../QScintilla/MiniEditor.py" line="1359" /> - <location filename="../ViewManager/ViewManager.py" line="2286" /> - <location filename="../ViewManager/ViewManager.py" line="2283" /> + <location filename="../ViewManager/ViewManager.py" line="2296" /> + <location filename="../ViewManager/ViewManager.py" line="2293" /> <source>Extend selection right one word part</source> <translation>Extension de la sélection d'une part de mot vers la droite</translation> </message> @@ -96270,9 +96283,9 @@ <location filename="../QScintilla/MiniEditor.py" line="1419" /> <location filename="../QScintilla/MiniEditor.py" line="1373" /> <location filename="../QScintilla/ShellWindow.py" line="860" /> - <location filename="../ViewManager/ViewManager.py" line="3093" /> - <location filename="../ViewManager/ViewManager.py" line="2343" /> - <location filename="../ViewManager/ViewManager.py" line="2297" /> + <location filename="../ViewManager/ViewManager.py" line="3103" /> + <location filename="../ViewManager/ViewManager.py" line="2353" /> + <location filename="../ViewManager/ViewManager.py" line="2307" /> <source>Alt+Shift+Right</source> <translation>Alt+Shift+Right</translation> </message> @@ -96281,8 +96294,8 @@ <location filename="../QScintilla/MiniEditor.py" line="1381" /> <location filename="../QScintilla/ShellWindow.py" line="823" /> <location filename="../QScintilla/ShellWindow.py" line="822" /> - <location filename="../ViewManager/ViewManager.py" line="2306" /> - <location filename="../ViewManager/ViewManager.py" line="2305" /> + <location filename="../ViewManager/ViewManager.py" line="2316" /> + <location filename="../ViewManager/ViewManager.py" line="2315" /> <source>Extend selection left one word</source> <translation>Extension de la sélection d'un mot vers la gauche</translation> </message> @@ -96290,8 +96303,8 @@ <location filename="../QScintilla/MiniEditor.py" line="2312" /> <location filename="../QScintilla/MiniEditor.py" line="1397" /> <location filename="../QScintilla/ShellWindow.py" line="838" /> - <location filename="../ViewManager/ViewManager.py" line="3219" /> - <location filename="../ViewManager/ViewManager.py" line="2321" /> + <location filename="../ViewManager/ViewManager.py" line="3229" /> + <location filename="../ViewManager/ViewManager.py" line="2331" /> <source>Ctrl+Shift+Left</source> <translation>Ctrl+Shift+Left</translation> </message> @@ -96300,8 +96313,8 @@ <location filename="../QScintilla/MiniEditor.py" line="1405" /> <location filename="../QScintilla/ShellWindow.py" line="849" /> <location filename="../QScintilla/ShellWindow.py" line="846" /> - <location filename="../ViewManager/ViewManager.py" line="2332" /> - <location filename="../ViewManager/ViewManager.py" line="2329" /> + <location filename="../ViewManager/ViewManager.py" line="2342" /> + <location filename="../ViewManager/ViewManager.py" line="2339" /> <source>Extend selection right one word</source> <translation>Extension de la sélection d'un mot vers la droite</translation> </message> @@ -96309,8 +96322,8 @@ <location filename="../QScintilla/MiniEditor.py" line="1873" /> <location filename="../QScintilla/MiniEditor.py" line="1425" /> <location filename="../QScintilla/ShellWindow.py" line="866" /> - <location filename="../ViewManager/ViewManager.py" line="2780" /> - <location filename="../ViewManager/ViewManager.py" line="2349" /> + <location filename="../ViewManager/ViewManager.py" line="2790" /> + <location filename="../ViewManager/ViewManager.py" line="2359" /> <source>Ctrl+Shift+Right</source> <translation>Ctrl+Shift+Right</translation> </message> @@ -96319,15 +96332,15 @@ <location filename="../QScintilla/MiniEditor.py" line="1433" /> <location filename="../QScintilla/ShellWindow.py" line="878" /> <location filename="../QScintilla/ShellWindow.py" line="874" /> - <location filename="../ViewManager/ViewManager.py" line="2361" /> - <location filename="../ViewManager/ViewManager.py" line="2357" /> + <location filename="../ViewManager/ViewManager.py" line="2371" /> + <location filename="../ViewManager/ViewManager.py" line="2367" /> <source>Extend selection to first visible character in document line</source> <translation>Extension de la sélection au premier caractère visible de la ligne du document</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1448" /> <location filename="../QScintilla/ShellWindow.py" line="889" /> - <location filename="../ViewManager/ViewManager.py" line="2372" /> + <location filename="../ViewManager/ViewManager.py" line="2382" /> <source>Shift+Home</source> <translation>Shift+Home</translation> </message> @@ -96336,124 +96349,124 @@ <location filename="../QScintilla/MiniEditor.py" line="1455" /> <location filename="../QScintilla/ShellWindow.py" line="899" /> <location filename="../QScintilla/ShellWindow.py" line="896" /> - <location filename="../ViewManager/ViewManager.py" line="2382" /> - <location filename="../ViewManager/ViewManager.py" line="2379" /> + <location filename="../ViewManager/ViewManager.py" line="2392" /> + <location filename="../ViewManager/ViewManager.py" line="2389" /> <source>Extend selection to end of document line</source> <translation>Extension de la sélection à la fin de la ligne du document</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1468" /> <location filename="../QScintilla/ShellWindow.py" line="909" /> - <location filename="../ViewManager/ViewManager.py" line="2392" /> + <location filename="../ViewManager/ViewManager.py" line="2402" /> <source>Meta+Shift+E</source> <translation>Meta+Shift+E</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1472" /> <location filename="../QScintilla/ShellWindow.py" line="913" /> - <location filename="../ViewManager/ViewManager.py" line="2396" /> + <location filename="../ViewManager/ViewManager.py" line="2406" /> <source>Shift+End</source> <translation>Shift+End</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1482" /> <location filename="../QScintilla/MiniEditor.py" line="1479" /> - <location filename="../ViewManager/ViewManager.py" line="2406" /> - <location filename="../ViewManager/ViewManager.py" line="2403" /> + <location filename="../ViewManager/ViewManager.py" line="2416" /> + <location filename="../ViewManager/ViewManager.py" line="2413" /> <source>Extend selection up one paragraph</source> <translation>Extension de la sélection d'un paragraphe vers le haut</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1485" /> - <location filename="../ViewManager/ViewManager.py" line="2409" /> + <location filename="../ViewManager/ViewManager.py" line="2419" /> <source>Alt+Shift+Up</source> <translation>Alt+Shift+Up</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1498" /> <location filename="../QScintilla/MiniEditor.py" line="1495" /> - <location filename="../ViewManager/ViewManager.py" line="2422" /> - <location filename="../ViewManager/ViewManager.py" line="2419" /> + <location filename="../ViewManager/ViewManager.py" line="2432" /> + <location filename="../ViewManager/ViewManager.py" line="2429" /> <source>Extend selection down one paragraph</source> <translation>Extension de la sélection d'un paragraphe vers le bas</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1501" /> - <location filename="../ViewManager/ViewManager.py" line="2425" /> + <location filename="../ViewManager/ViewManager.py" line="2435" /> <source>Alt+Shift+Down</source> <translation>Alt+Shift+Down</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1512" /> <location filename="../QScintilla/MiniEditor.py" line="1511" /> - <location filename="../ViewManager/ViewManager.py" line="2436" /> - <location filename="../ViewManager/ViewManager.py" line="2435" /> + <location filename="../ViewManager/ViewManager.py" line="2446" /> + <location filename="../ViewManager/ViewManager.py" line="2445" /> <source>Extend selection up one page</source> <translation>Extension de la sélection d'une page vers le haut</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1513" /> - <location filename="../ViewManager/ViewManager.py" line="2437" /> + <location filename="../ViewManager/ViewManager.py" line="2447" /> <source>Shift+PgUp</source> <translation>Shift+PgUp</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1524" /> <location filename="../QScintilla/MiniEditor.py" line="1523" /> - <location filename="../ViewManager/ViewManager.py" line="2448" /> - <location filename="../ViewManager/ViewManager.py" line="2447" /> + <location filename="../ViewManager/ViewManager.py" line="2458" /> + <location filename="../ViewManager/ViewManager.py" line="2457" /> <source>Extend selection down one page</source> <translation>Extension de la sélection d'une page vers le bas</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1525" /> - <location filename="../ViewManager/ViewManager.py" line="2449" /> + <location filename="../ViewManager/ViewManager.py" line="2459" /> <source>Shift+PgDown</source> <translation>Shift+PgDown</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1532" /> - <location filename="../ViewManager/ViewManager.py" line="2456" /> + <location filename="../ViewManager/ViewManager.py" line="2466" /> <source>Meta+Shift+V</source> <translation>Meta+Shift+V</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1542" /> <location filename="../QScintilla/MiniEditor.py" line="1539" /> - <location filename="../ViewManager/ViewManager.py" line="2466" /> - <location filename="../ViewManager/ViewManager.py" line="2463" /> + <location filename="../ViewManager/ViewManager.py" line="2476" /> + <location filename="../ViewManager/ViewManager.py" line="2473" /> <source>Extend selection to start of document</source> <translation>Extension de la sélection à la fin du document</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1552" /> - <location filename="../ViewManager/ViewManager.py" line="2476" /> + <location filename="../ViewManager/ViewManager.py" line="2486" /> <source>Ctrl+Shift+Up</source> <translation>Ctrl+Shift+Up</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1557" /> - <location filename="../ViewManager/ViewManager.py" line="2481" /> + <location filename="../ViewManager/ViewManager.py" line="2491" /> <source>Ctrl+Shift+Home</source> <translation>Ctrl+Shift+Home</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1568" /> <location filename="../QScintilla/MiniEditor.py" line="1565" /> - <location filename="../ViewManager/ViewManager.py" line="2492" /> - <location filename="../ViewManager/ViewManager.py" line="2489" /> + <location filename="../ViewManager/ViewManager.py" line="2502" /> + <location filename="../ViewManager/ViewManager.py" line="2499" /> <source>Extend selection to end of document</source> <translation>Extension de la sélection à la fin du document</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1579" /> - <location filename="../ViewManager/ViewManager.py" line="2503" /> + <location filename="../ViewManager/ViewManager.py" line="2513" /> <source>Ctrl+Shift+Down</source> <translation>Ctrl+Shift+Down</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1585" /> - <location filename="../ViewManager/ViewManager.py" line="2509" /> + <location filename="../ViewManager/ViewManager.py" line="2519" /> <source>Ctrl+Shift+End</source> <translation>Ctrl+Shift+End</translation> </message> @@ -96462,37 +96475,37 @@ <location filename="../QScintilla/MiniEditor.py" line="1593" /> <location filename="../QScintilla/ShellWindow.py" line="481" /> <location filename="../QScintilla/ShellWindow.py" line="480" /> - <location filename="../ViewManager/ViewManager.py" line="2518" /> - <location filename="../ViewManager/ViewManager.py" line="2517" /> + <location filename="../ViewManager/ViewManager.py" line="2528" /> + <location filename="../ViewManager/ViewManager.py" line="2527" /> <source>Delete previous character</source> <translation>Suppression du caractère précédent</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1595" /> <location filename="../QScintilla/ShellWindow.py" line="482" /> - <location filename="../ViewManager/ViewManager.py" line="2519" /> + <location filename="../ViewManager/ViewManager.py" line="2529" /> <source>Backspace</source> <translation>Backspace</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1602" /> <location filename="../QScintilla/ShellWindow.py" line="489" /> - <location filename="../ViewManager/ViewManager.py" line="2526" /> + <location filename="../ViewManager/ViewManager.py" line="2536" /> <source>Meta+H</source> <translation>Meta+H</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1607" /> <location filename="../QScintilla/ShellWindow.py" line="494" /> - <location filename="../ViewManager/ViewManager.py" line="2531" /> + <location filename="../ViewManager/ViewManager.py" line="2541" /> <source>Shift+Backspace</source> <translation>Shift+Backspace</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1618" /> <location filename="../QScintilla/MiniEditor.py" line="1615" /> - <location filename="../ViewManager/ViewManager.py" line="2542" /> - <location filename="../ViewManager/ViewManager.py" line="2539" /> + <location filename="../ViewManager/ViewManager.py" line="2552" /> + <location filename="../ViewManager/ViewManager.py" line="2549" /> <source>Delete previous character if not at start of line</source> <translation>Suppression du caractère précédent sauf en début de ligne</translation> </message> @@ -96501,22 +96514,22 @@ <location filename="../QScintilla/MiniEditor.py" line="1631" /> <location filename="../QScintilla/ShellWindow.py" line="503" /> <location filename="../QScintilla/ShellWindow.py" line="502" /> - <location filename="../ViewManager/ViewManager.py" line="2556" /> - <location filename="../ViewManager/ViewManager.py" line="2555" /> + <location filename="../ViewManager/ViewManager.py" line="2566" /> + <location filename="../ViewManager/ViewManager.py" line="2565" /> <source>Delete current character</source> <translation>Suppression du caractère courant</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1633" /> <location filename="../QScintilla/ShellWindow.py" line="504" /> - <location filename="../ViewManager/ViewManager.py" line="2557" /> + <location filename="../ViewManager/ViewManager.py" line="2567" /> <source>Del</source> <translation>Del</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1640" /> <location filename="../QScintilla/ShellWindow.py" line="511" /> - <location filename="../ViewManager/ViewManager.py" line="2564" /> + <location filename="../ViewManager/ViewManager.py" line="2574" /> <source>Meta+D</source> <translation>Meta+D</translation> </message> @@ -96525,15 +96538,15 @@ <location filename="../QScintilla/MiniEditor.py" line="1647" /> <location filename="../QScintilla/ShellWindow.py" line="519" /> <location filename="../QScintilla/ShellWindow.py" line="518" /> - <location filename="../ViewManager/ViewManager.py" line="2572" /> - <location filename="../ViewManager/ViewManager.py" line="2571" /> + <location filename="../ViewManager/ViewManager.py" line="2582" /> + <location filename="../ViewManager/ViewManager.py" line="2581" /> <source>Delete word to left</source> <translation>Suppression du mot de gauche</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1649" /> <location filename="../QScintilla/ShellWindow.py" line="520" /> - <location filename="../ViewManager/ViewManager.py" line="2573" /> + <location filename="../ViewManager/ViewManager.py" line="2583" /> <source>Ctrl+Backspace</source> <translation>Ctrl+Backspace</translation> </message> @@ -96542,15 +96555,15 @@ <location filename="../QScintilla/MiniEditor.py" line="1659" /> <location filename="../QScintilla/ShellWindow.py" line="531" /> <location filename="../QScintilla/ShellWindow.py" line="530" /> - <location filename="../ViewManager/ViewManager.py" line="2584" /> - <location filename="../ViewManager/ViewManager.py" line="2583" /> + <location filename="../ViewManager/ViewManager.py" line="2594" /> + <location filename="../ViewManager/ViewManager.py" line="2593" /> <source>Delete word to right</source> <translation>Suppression du mot de droite</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1661" /> <location filename="../QScintilla/ShellWindow.py" line="532" /> - <location filename="../ViewManager/ViewManager.py" line="2585" /> + <location filename="../ViewManager/ViewManager.py" line="2595" /> <source>Ctrl+Del</source> <translation>Ctrl+Del</translation> </message> @@ -96559,15 +96572,15 @@ <location filename="../QScintilla/MiniEditor.py" line="1671" /> <location filename="../QScintilla/ShellWindow.py" line="543" /> <location filename="../QScintilla/ShellWindow.py" line="542" /> - <location filename="../ViewManager/ViewManager.py" line="2596" /> - <location filename="../ViewManager/ViewManager.py" line="2595" /> + <location filename="../ViewManager/ViewManager.py" line="2606" /> + <location filename="../ViewManager/ViewManager.py" line="2605" /> <source>Delete line to left</source> <translation>Suppression de la partie gauche de la ligne</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1674" /> <location filename="../QScintilla/ShellWindow.py" line="545" /> - <location filename="../ViewManager/ViewManager.py" line="2598" /> + <location filename="../ViewManager/ViewManager.py" line="2608" /> <source>Ctrl+Shift+Backspace</source> <translation>Ctrl+Shift+Backspace</translation> </message> @@ -96576,22 +96589,22 @@ <location filename="../QScintilla/MiniEditor.py" line="1685" /> <location filename="../QScintilla/ShellWindow.py" line="557" /> <location filename="../QScintilla/ShellWindow.py" line="556" /> - <location filename="../ViewManager/ViewManager.py" line="2610" /> - <location filename="../ViewManager/ViewManager.py" line="2609" /> + <location filename="../ViewManager/ViewManager.py" line="2620" /> + <location filename="../ViewManager/ViewManager.py" line="2619" /> <source>Delete line to right</source> <translation>Suppression de la partie droite de la ligne</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1694" /> <location filename="../QScintilla/ShellWindow.py" line="565" /> - <location filename="../ViewManager/ViewManager.py" line="2618" /> + <location filename="../ViewManager/ViewManager.py" line="2628" /> <source>Meta+K</source> <translation>Meta+K</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1699" /> <location filename="../QScintilla/ShellWindow.py" line="570" /> - <location filename="../ViewManager/ViewManager.py" line="2623" /> + <location filename="../ViewManager/ViewManager.py" line="2633" /> <source>Ctrl+Shift+Del</source> <translation>Ctrl+Shift+Del</translation> </message> @@ -96600,38 +96613,38 @@ <location filename="../QScintilla/MiniEditor.py" line="1707" /> <location filename="../QScintilla/ShellWindow.py" line="469" /> <location filename="../QScintilla/ShellWindow.py" line="468" /> - <location filename="../ViewManager/ViewManager.py" line="2632" /> - <location filename="../ViewManager/ViewManager.py" line="2631" /> + <location filename="../ViewManager/ViewManager.py" line="2642" /> + <location filename="../ViewManager/ViewManager.py" line="2641" /> <source>Insert new line</source> <translation>Insertion d'une nouvelle ligne</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1709" /> <location filename="../QScintilla/ShellWindow.py" line="470" /> - <location filename="../ViewManager/ViewManager.py" line="2633" /> + <location filename="../ViewManager/ViewManager.py" line="2643" /> <source>Return</source> <translation>Return</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1710" /> <location filename="../QScintilla/ShellWindow.py" line="471" /> - <location filename="../ViewManager/ViewManager.py" line="2634" /> + <location filename="../ViewManager/ViewManager.py" line="2644" /> <source>Enter</source> <translation>Enter</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="2646" /> - <location filename="../ViewManager/ViewManager.py" line="2643" /> + <location filename="../ViewManager/ViewManager.py" line="2656" /> + <location filename="../ViewManager/ViewManager.py" line="2653" /> <source>Insert new line below current line</source> <translation>Insère une ligne avant la ligne courante</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="2649" /> + <location filename="../ViewManager/ViewManager.py" line="2659" /> <source>Shift+Return</source> <translation>Shift+Return</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="2650" /> + <location filename="../ViewManager/ViewManager.py" line="2660" /> <source>Shift+Enter</source> <translation>Shift+Enter</translation> </message> @@ -96640,129 +96653,129 @@ <location filename="../QScintilla/MiniEditor.py" line="1719" /> <location filename="../QScintilla/ShellWindow.py" line="445" /> <location filename="../QScintilla/ShellWindow.py" line="444" /> - <location filename="../ViewManager/ViewManager.py" line="2659" /> - <location filename="../ViewManager/ViewManager.py" line="2658" /> + <location filename="../ViewManager/ViewManager.py" line="2669" /> + <location filename="../ViewManager/ViewManager.py" line="2668" /> <source>Delete current line</source> <translation>Suppression de la ligne courante</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1721" /> <location filename="../QScintilla/ShellWindow.py" line="446" /> - <location filename="../ViewManager/ViewManager.py" line="2660" /> + <location filename="../ViewManager/ViewManager.py" line="2670" /> <source>Ctrl+Shift+L</source> <translation>Ctrl+Shift+L</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1732" /> <location filename="../QScintilla/MiniEditor.py" line="1731" /> - <location filename="../ViewManager/ViewManager.py" line="2671" /> - <location filename="../ViewManager/ViewManager.py" line="2670" /> + <location filename="../ViewManager/ViewManager.py" line="2681" /> + <location filename="../ViewManager/ViewManager.py" line="2680" /> <source>Duplicate current line</source> <translation>Duplication de la ligne courante</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1733" /> - <location filename="../ViewManager/ViewManager.py" line="2672" /> + <location filename="../ViewManager/ViewManager.py" line="2682" /> <source>Ctrl+D</source> <translation>Ctrl+D</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1746" /> <location filename="../QScintilla/MiniEditor.py" line="1743" /> - <location filename="../ViewManager/ViewManager.py" line="2685" /> - <location filename="../ViewManager/ViewManager.py" line="2682" /> + <location filename="../ViewManager/ViewManager.py" line="2695" /> + <location filename="../ViewManager/ViewManager.py" line="2692" /> <source>Swap current and previous lines</source> <translation>Permuter la ligne courante avec la précédente</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1749" /> - <location filename="../ViewManager/ViewManager.py" line="2688" /> + <location filename="../ViewManager/ViewManager.py" line="2698" /> <source>Ctrl+T</source> <translation>Ctrl+T</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1760" /> <location filename="../QScintilla/MiniEditor.py" line="1759" /> - <location filename="../ViewManager/ViewManager.py" line="2699" /> - <location filename="../ViewManager/ViewManager.py" line="2698" /> + <location filename="../ViewManager/ViewManager.py" line="2709" /> + <location filename="../ViewManager/ViewManager.py" line="2708" /> <source>Reverse selected lines</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1761" /> - <location filename="../ViewManager/ViewManager.py" line="2700" /> + <location filename="../ViewManager/ViewManager.py" line="2710" /> <source>Meta+Alt+R</source> <translation>Meta+Alt+R</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1772" /> <location filename="../QScintilla/MiniEditor.py" line="1771" /> - <location filename="../ViewManager/ViewManager.py" line="2711" /> - <location filename="../ViewManager/ViewManager.py" line="2710" /> + <location filename="../ViewManager/ViewManager.py" line="2721" /> + <location filename="../ViewManager/ViewManager.py" line="2720" /> <source>Cut current line</source> <translation>Couper la ligne courante</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1773" /> - <location filename="../ViewManager/ViewManager.py" line="2712" /> + <location filename="../ViewManager/ViewManager.py" line="2722" /> <source>Alt+Shift+L</source> <translation>Alt+Shift+L</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1784" /> <location filename="../QScintilla/MiniEditor.py" line="1783" /> - <location filename="../ViewManager/ViewManager.py" line="2723" /> - <location filename="../ViewManager/ViewManager.py" line="2722" /> + <location filename="../ViewManager/ViewManager.py" line="2733" /> + <location filename="../ViewManager/ViewManager.py" line="2732" /> <source>Copy current line</source> <translation>Copier la ligne courante</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1785" /> - <location filename="../ViewManager/ViewManager.py" line="2724" /> + <location filename="../ViewManager/ViewManager.py" line="2734" /> <source>Ctrl+Shift+T</source> <translation>Ctrl+Shift+T</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1796" /> <location filename="../QScintilla/MiniEditor.py" line="1795" /> - <location filename="../ViewManager/ViewManager.py" line="2735" /> - <location filename="../ViewManager/ViewManager.py" line="2734" /> + <location filename="../ViewManager/ViewManager.py" line="2745" /> + <location filename="../ViewManager/ViewManager.py" line="2744" /> <source>Toggle insert/overtype</source> <translation>Basculer de mode Insertion /Ecrasement</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1797" /> - <location filename="../ViewManager/ViewManager.py" line="2736" /> + <location filename="../ViewManager/ViewManager.py" line="2746" /> <source>Ins</source> <translation>Ins</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1840" /> <location filename="../QScintilla/MiniEditor.py" line="1839" /> - <location filename="../ViewManager/ViewManager.py" line="2747" /> - <location filename="../ViewManager/ViewManager.py" line="2746" /> + <location filename="../ViewManager/ViewManager.py" line="2757" /> + <location filename="../ViewManager/ViewManager.py" line="2756" /> <source>Move to end of display line</source> <translation>Déplacement à la fin de la ligne affichée</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1852" /> - <location filename="../ViewManager/ViewManager.py" line="2759" /> + <location filename="../ViewManager/ViewManager.py" line="2769" /> <source>Alt+End</source> <translation>Alt+End</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1862" /> <location filename="../QScintilla/MiniEditor.py" line="1859" /> - <location filename="../ViewManager/ViewManager.py" line="2769" /> - <location filename="../ViewManager/ViewManager.py" line="2766" /> + <location filename="../ViewManager/ViewManager.py" line="2779" /> + <location filename="../ViewManager/ViewManager.py" line="2776" /> <source>Extend selection to end of display line</source> <translation>Extension de la sélection à la fin de la ligne affichée</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1882" /> <location filename="../QScintilla/MiniEditor.py" line="1881" /> - <location filename="../ViewManager/ViewManager.py" line="2789" /> - <location filename="../ViewManager/ViewManager.py" line="2788" /> + <location filename="../ViewManager/ViewManager.py" line="2799" /> + <location filename="../ViewManager/ViewManager.py" line="2798" /> <source>Formfeed</source> <translation>Chargement de page</translation> </message> @@ -96771,163 +96784,163 @@ <location filename="../QScintilla/MiniEditor.py" line="1893" /> <location filename="../QScintilla/ShellWindow.py" line="771" /> <location filename="../QScintilla/ShellWindow.py" line="770" /> - <location filename="../ViewManager/ViewManager.py" line="2801" /> - <location filename="../ViewManager/ViewManager.py" line="2800" /> + <location filename="../ViewManager/ViewManager.py" line="2811" /> + <location filename="../ViewManager/ViewManager.py" line="2810" /> <source>Escape</source> <translation>Echappement</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1895" /> <location filename="../QScintilla/ShellWindow.py" line="772" /> - <location filename="../ViewManager/ViewManager.py" line="2802" /> + <location filename="../ViewManager/ViewManager.py" line="2812" /> <source>Esc</source> <translation>Esc</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1908" /> <location filename="../QScintilla/MiniEditor.py" line="1905" /> - <location filename="../ViewManager/ViewManager.py" line="2815" /> - <location filename="../ViewManager/ViewManager.py" line="2812" /> + <location filename="../ViewManager/ViewManager.py" line="2825" /> + <location filename="../ViewManager/ViewManager.py" line="2822" /> <source>Extend rectangular selection down one line</source> <translation>Extension de la sélection rectangulaire d'une ligne vers le bas</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1911" /> - <location filename="../ViewManager/ViewManager.py" line="2818" /> + <location filename="../ViewManager/ViewManager.py" line="2828" /> <source>Alt+Ctrl+Down</source> <translation>Alt+Ctrl+Down</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1919" /> - <location filename="../ViewManager/ViewManager.py" line="2826" /> + <location filename="../ViewManager/ViewManager.py" line="2836" /> <source>Meta+Alt+Shift+N</source> <translation>Meta+Alt+Shift+N</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1930" /> <location filename="../QScintilla/MiniEditor.py" line="1927" /> - <location filename="../ViewManager/ViewManager.py" line="2837" /> - <location filename="../ViewManager/ViewManager.py" line="2834" /> + <location filename="../ViewManager/ViewManager.py" line="2847" /> + <location filename="../ViewManager/ViewManager.py" line="2844" /> <source>Extend rectangular selection up one line</source> <translation>Extension de la sélection rectangulaire d'une ligne vers le haut</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1933" /> - <location filename="../ViewManager/ViewManager.py" line="2840" /> + <location filename="../ViewManager/ViewManager.py" line="2850" /> <source>Alt+Ctrl+Up</source> <translation>Alt+Ctrl+Up</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1941" /> - <location filename="../ViewManager/ViewManager.py" line="2848" /> + <location filename="../ViewManager/ViewManager.py" line="2858" /> <source>Meta+Alt+Shift+P</source> <translation>Meta+Alt+Shift+P</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1952" /> <location filename="../QScintilla/MiniEditor.py" line="1949" /> - <location filename="../ViewManager/ViewManager.py" line="2859" /> - <location filename="../ViewManager/ViewManager.py" line="2856" /> + <location filename="../ViewManager/ViewManager.py" line="2869" /> + <location filename="../ViewManager/ViewManager.py" line="2866" /> <source>Extend rectangular selection left one character</source> <translation>Extension de la sélection rectangulaire d'un caractère vers la gauche</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1955" /> - <location filename="../ViewManager/ViewManager.py" line="2862" /> + <location filename="../ViewManager/ViewManager.py" line="2872" /> <source>Alt+Ctrl+Left</source> <translation>Alt+Ctrl+Left</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1963" /> - <location filename="../ViewManager/ViewManager.py" line="2870" /> + <location filename="../ViewManager/ViewManager.py" line="2880" /> <source>Meta+Alt+Shift+B</source> <translation>Meta+Alt+Shift+B</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1974" /> <location filename="../QScintilla/MiniEditor.py" line="1971" /> - <location filename="../ViewManager/ViewManager.py" line="2881" /> - <location filename="../ViewManager/ViewManager.py" line="2878" /> + <location filename="../ViewManager/ViewManager.py" line="2891" /> + <location filename="../ViewManager/ViewManager.py" line="2888" /> <source>Extend rectangular selection right one character</source> <translation>Extension de la sélection rectangulaire d'un caractère vers la droite</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1977" /> - <location filename="../ViewManager/ViewManager.py" line="2884" /> + <location filename="../ViewManager/ViewManager.py" line="2894" /> <source>Alt+Ctrl+Right</source> <translation>Alt+Ctrl+Right</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1985" /> - <location filename="../ViewManager/ViewManager.py" line="2892" /> + <location filename="../ViewManager/ViewManager.py" line="2902" /> <source>Meta+Alt+Shift+F</source> <translation>Meta+Alt+Shift+F</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1998" /> <location filename="../QScintilla/MiniEditor.py" line="1993" /> - <location filename="../ViewManager/ViewManager.py" line="2905" /> - <location filename="../ViewManager/ViewManager.py" line="2900" /> + <location filename="../ViewManager/ViewManager.py" line="2915" /> + <location filename="../ViewManager/ViewManager.py" line="2910" /> <source>Extend rectangular selection to first visible character in document line</source> <translation>Extension de la sélection rectangulaire au premier caractère visible du document</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2011" /> - <location filename="../ViewManager/ViewManager.py" line="2918" /> + <location filename="../ViewManager/ViewManager.py" line="2928" /> <source>Alt+Shift+Home</source> <translation>Alt+Shift+Home</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2022" /> <location filename="../QScintilla/MiniEditor.py" line="2019" /> - <location filename="../ViewManager/ViewManager.py" line="2929" /> - <location filename="../ViewManager/ViewManager.py" line="2926" /> + <location filename="../ViewManager/ViewManager.py" line="2939" /> + <location filename="../ViewManager/ViewManager.py" line="2936" /> <source>Extend rectangular selection to end of document line</source> <translation>Extension de la sélection rectangulaire à la fin de la ligne du document</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2033" /> - <location filename="../ViewManager/ViewManager.py" line="2940" /> + <location filename="../ViewManager/ViewManager.py" line="2950" /> <source>Meta+Alt+Shift+E</source> <translation>Meta+Alt+Shift+E</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2038" /> - <location filename="../ViewManager/ViewManager.py" line="2945" /> + <location filename="../ViewManager/ViewManager.py" line="2955" /> <source>Alt+Shift+End</source> <translation>Alt+Shift+End</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2048" /> <location filename="../QScintilla/MiniEditor.py" line="2045" /> - <location filename="../ViewManager/ViewManager.py" line="2955" /> - <location filename="../ViewManager/ViewManager.py" line="2952" /> + <location filename="../ViewManager/ViewManager.py" line="2965" /> + <location filename="../ViewManager/ViewManager.py" line="2962" /> <source>Extend rectangular selection up one page</source> <translation>Extension de la sélection rectangulaire d'une page vers le haut</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2051" /> - <location filename="../ViewManager/ViewManager.py" line="2958" /> + <location filename="../ViewManager/ViewManager.py" line="2968" /> <source>Alt+Shift+PgUp</source> <translation>Alt+Shift+PgUp</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2064" /> <location filename="../QScintilla/MiniEditor.py" line="2061" /> - <location filename="../ViewManager/ViewManager.py" line="2971" /> - <location filename="../ViewManager/ViewManager.py" line="2968" /> + <location filename="../ViewManager/ViewManager.py" line="2981" /> + <location filename="../ViewManager/ViewManager.py" line="2978" /> <source>Extend rectangular selection down one page</source> <translation>Extension de la sélection rectangulaire d'une page vers le bas</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2067" /> - <location filename="../ViewManager/ViewManager.py" line="2974" /> + <location filename="../ViewManager/ViewManager.py" line="2984" /> <source>Alt+Shift+PgDown</source> <translation>Alt+Shift+PgDown</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2075" /> - <location filename="../ViewManager/ViewManager.py" line="2982" /> + <location filename="../ViewManager/ViewManager.py" line="2992" /> <source>Meta+Alt+Shift+V</source> <translation>Meta+Alt+Shift+V</translation> </message> @@ -96936,299 +96949,299 @@ <location filename="../QScintilla/MiniEditor.py" line="2549" /> <location filename="../QScintilla/MiniEditor.py" line="2084" /> <location filename="../QScintilla/MiniEditor.py" line="2083" /> - <location filename="../ViewManager/ViewManager.py" line="2991" /> - <location filename="../ViewManager/ViewManager.py" line="2990" /> + <location filename="../ViewManager/ViewManager.py" line="3001" /> + <location filename="../ViewManager/ViewManager.py" line="3000" /> <source>Duplicate current selection</source> <translation>Duplication de la sélection courante</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2551" /> <location filename="../QScintilla/MiniEditor.py" line="2085" /> - <location filename="../ViewManager/ViewManager.py" line="2992" /> + <location filename="../ViewManager/ViewManager.py" line="3002" /> <source>Ctrl+Shift+D</source> <translation>Ctrl+Shift+D</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2099" /> <location filename="../QScintilla/MiniEditor.py" line="2096" /> - <location filename="../ViewManager/ViewManager.py" line="3006" /> - <location filename="../ViewManager/ViewManager.py" line="3003" /> + <location filename="../ViewManager/ViewManager.py" line="3016" /> + <location filename="../ViewManager/ViewManager.py" line="3013" /> <source>Scroll to start of document</source> <translation>Défilement au début du document</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2118" /> <location filename="../QScintilla/MiniEditor.py" line="2117" /> - <location filename="../ViewManager/ViewManager.py" line="3025" /> - <location filename="../ViewManager/ViewManager.py" line="3024" /> + <location filename="../ViewManager/ViewManager.py" line="3035" /> + <location filename="../ViewManager/ViewManager.py" line="3034" /> <source>Scroll to end of document</source> <translation>Défilement à la fin du document</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2137" /> <location filename="../QScintilla/MiniEditor.py" line="2134" /> - <location filename="../ViewManager/ViewManager.py" line="3044" /> - <location filename="../ViewManager/ViewManager.py" line="3041" /> + <location filename="../ViewManager/ViewManager.py" line="3054" /> + <location filename="../ViewManager/ViewManager.py" line="3051" /> <source>Scroll vertically to center current line</source> <translation>Défilement vertical de façon à centrer la ligne courante</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2147" /> - <location filename="../ViewManager/ViewManager.py" line="3054" /> + <location filename="../ViewManager/ViewManager.py" line="3064" /> <source>Meta+L</source> <translation>Meta+L</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2156" /> <location filename="../QScintilla/MiniEditor.py" line="2155" /> - <location filename="../ViewManager/ViewManager.py" line="3063" /> - <location filename="../ViewManager/ViewManager.py" line="3062" /> + <location filename="../ViewManager/ViewManager.py" line="3073" /> + <location filename="../ViewManager/ViewManager.py" line="3072" /> <source>Move to end of next word</source> <translation>Déplacement à la fin du mot suivant</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2175" /> <location filename="../QScintilla/MiniEditor.py" line="2172" /> - <location filename="../ViewManager/ViewManager.py" line="3082" /> - <location filename="../ViewManager/ViewManager.py" line="3079" /> + <location filename="../ViewManager/ViewManager.py" line="3092" /> + <location filename="../ViewManager/ViewManager.py" line="3089" /> <source>Extend selection to end of next word</source> <translation>Extension de la séleciton à la fin du mot suivant</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2198" /> <location filename="../QScintilla/MiniEditor.py" line="2195" /> - <location filename="../ViewManager/ViewManager.py" line="3105" /> - <location filename="../ViewManager/ViewManager.py" line="3102" /> + <location filename="../ViewManager/ViewManager.py" line="3115" /> + <location filename="../ViewManager/ViewManager.py" line="3112" /> <source>Move to end of previous word</source> <translation>Déplacement à la fin du mot précédent</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2215" /> <location filename="../QScintilla/MiniEditor.py" line="2212" /> - <location filename="../ViewManager/ViewManager.py" line="3122" /> - <location filename="../ViewManager/ViewManager.py" line="3119" /> + <location filename="../ViewManager/ViewManager.py" line="3132" /> + <location filename="../ViewManager/ViewManager.py" line="3129" /> <source>Extend selection to end of previous word</source> <translation>Extension de la séleciton à la fin du mot précédent</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2232" /> <location filename="../QScintilla/MiniEditor.py" line="2229" /> - <location filename="../ViewManager/ViewManager.py" line="3139" /> - <location filename="../ViewManager/ViewManager.py" line="3136" /> + <location filename="../ViewManager/ViewManager.py" line="3149" /> + <location filename="../ViewManager/ViewManager.py" line="3146" /> <source>Move to start of document line</source> <translation>Déplacement au début de la ligne du document</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2242" /> - <location filename="../ViewManager/ViewManager.py" line="3149" /> + <location filename="../ViewManager/ViewManager.py" line="3159" /> <source>Meta+A</source> <translation>Meta+A</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2253" /> <location filename="../QScintilla/MiniEditor.py" line="2250" /> - <location filename="../ViewManager/ViewManager.py" line="3160" /> - <location filename="../ViewManager/ViewManager.py" line="3157" /> + <location filename="../ViewManager/ViewManager.py" line="3170" /> + <location filename="../ViewManager/ViewManager.py" line="3167" /> <source>Extend selection to start of document line</source> <translation>Extension de la sélection au début de la ligne du document</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2264" /> - <location filename="../ViewManager/ViewManager.py" line="3171" /> + <location filename="../ViewManager/ViewManager.py" line="3181" /> <source>Meta+Shift+A</source> <translation>Meta+Shift+A</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2277" /> <location filename="../QScintilla/MiniEditor.py" line="2273" /> - <location filename="../ViewManager/ViewManager.py" line="3184" /> - <location filename="../ViewManager/ViewManager.py" line="3180" /> + <location filename="../ViewManager/ViewManager.py" line="3194" /> + <location filename="../ViewManager/ViewManager.py" line="3190" /> <source>Extend rectangular selection to start of document line</source> <translation>Extension de la sélection rectangulaire au début de la ligne du document</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2289" /> - <location filename="../ViewManager/ViewManager.py" line="3196" /> + <location filename="../ViewManager/ViewManager.py" line="3206" /> <source>Meta+Alt+Shift+A</source> <translation>Meta+Alt+Shift+A</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2301" /> <location filename="../QScintilla/MiniEditor.py" line="2298" /> - <location filename="../ViewManager/ViewManager.py" line="3208" /> - <location filename="../ViewManager/ViewManager.py" line="3205" /> + <location filename="../ViewManager/ViewManager.py" line="3218" /> + <location filename="../ViewManager/ViewManager.py" line="3215" /> <source>Extend selection to start of display line</source> <translation>Extension de la sélection au début de la ligne affichée</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2324" /> <location filename="../QScintilla/MiniEditor.py" line="2321" /> - <location filename="../ViewManager/ViewManager.py" line="3231" /> - <location filename="../ViewManager/ViewManager.py" line="3228" /> + <location filename="../ViewManager/ViewManager.py" line="3241" /> + <location filename="../ViewManager/ViewManager.py" line="3238" /> <source>Move to start of display or document line</source> <translation>Déplacement au début de la ligne affichée ou de la ligne du document</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2342" /> <location filename="../QScintilla/MiniEditor.py" line="2338" /> - <location filename="../ViewManager/ViewManager.py" line="3249" /> - <location filename="../ViewManager/ViewManager.py" line="3245" /> + <location filename="../ViewManager/ViewManager.py" line="3259" /> + <location filename="../ViewManager/ViewManager.py" line="3255" /> <source>Extend selection to start of display or document line</source> <translation>Extension de la sélection au début de la ligne affichée ou de la ligne du document</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2361" /> <location filename="../QScintilla/MiniEditor.py" line="2357" /> - <location filename="../ViewManager/ViewManager.py" line="3268" /> - <location filename="../ViewManager/ViewManager.py" line="3264" /> + <location filename="../ViewManager/ViewManager.py" line="3278" /> + <location filename="../ViewManager/ViewManager.py" line="3274" /> <source>Move to first visible character in display or document line</source> <translation>Déplacement vers le premier caractère visible de la ligne affichée ou de la ligne do document</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2381" /> <location filename="../QScintilla/MiniEditor.py" line="2376" /> - <location filename="../ViewManager/ViewManager.py" line="3288" /> - <location filename="../ViewManager/ViewManager.py" line="3283" /> + <location filename="../ViewManager/ViewManager.py" line="3298" /> + <location filename="../ViewManager/ViewManager.py" line="3293" /> <source>Extend selection to first visible character in display or document line</source> <translation>Extension de la sélection au premier caractère visible du document</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2400" /> <location filename="../QScintilla/MiniEditor.py" line="2397" /> - <location filename="../ViewManager/ViewManager.py" line="3307" /> - <location filename="../ViewManager/ViewManager.py" line="3304" /> + <location filename="../ViewManager/ViewManager.py" line="3317" /> + <location filename="../ViewManager/ViewManager.py" line="3314" /> <source>Move to end of display or document line</source> <translation>Déplacement à la de la ligne affichée ou de la ligne du document</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2417" /> <location filename="../QScintilla/MiniEditor.py" line="2414" /> - <location filename="../ViewManager/ViewManager.py" line="3324" /> - <location filename="../ViewManager/ViewManager.py" line="3321" /> + <location filename="../ViewManager/ViewManager.py" line="3334" /> + <location filename="../ViewManager/ViewManager.py" line="3331" /> <source>Extend selection to end of display or document line</source> <translation>Extension de la sélection à la fint de la ligne affichée ou de la ligne du document</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2432" /> <location filename="../QScintilla/MiniEditor.py" line="2431" /> - <location filename="../ViewManager/ViewManager.py" line="3339" /> - <location filename="../ViewManager/ViewManager.py" line="3338" /> + <location filename="../ViewManager/ViewManager.py" line="3349" /> + <location filename="../ViewManager/ViewManager.py" line="3348" /> <source>Stuttered move up one page</source> <translation>Déplacement étagé d'une page vers le haut</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2447" /> <location filename="../QScintilla/MiniEditor.py" line="2444" /> - <location filename="../ViewManager/ViewManager.py" line="3354" /> - <location filename="../ViewManager/ViewManager.py" line="3351" /> + <location filename="../ViewManager/ViewManager.py" line="3364" /> + <location filename="../ViewManager/ViewManager.py" line="3361" /> <source>Stuttered extend selection up one page</source> <translation>Extension de la sélection étagée d'une page vers le haut</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2464" /> <location filename="../QScintilla/MiniEditor.py" line="2461" /> - <location filename="../ViewManager/ViewManager.py" line="3371" /> - <location filename="../ViewManager/ViewManager.py" line="3368" /> + <location filename="../ViewManager/ViewManager.py" line="3381" /> + <location filename="../ViewManager/ViewManager.py" line="3378" /> <source>Stuttered move down one page</source> <translation>Déplacement étagé d'une page vers le bas</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2481" /> <location filename="../QScintilla/MiniEditor.py" line="2478" /> - <location filename="../ViewManager/ViewManager.py" line="3388" /> - <location filename="../ViewManager/ViewManager.py" line="3385" /> + <location filename="../ViewManager/ViewManager.py" line="3398" /> + <location filename="../ViewManager/ViewManager.py" line="3395" /> <source>Stuttered extend selection down one page</source> <translation>Extension de la sélection étagée d'une page vers le bas</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2498" /> <location filename="../QScintilla/MiniEditor.py" line="2495" /> - <location filename="../ViewManager/ViewManager.py" line="3405" /> - <location filename="../ViewManager/ViewManager.py" line="3402" /> + <location filename="../ViewManager/ViewManager.py" line="3415" /> + <location filename="../ViewManager/ViewManager.py" line="3412" /> <source>Delete right to end of next word</source> <translation>Supprimer jusqu'à la fin du mot à doite</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2508" /> - <location filename="../ViewManager/ViewManager.py" line="3415" /> + <location filename="../ViewManager/ViewManager.py" line="3425" /> <source>Alt+Del</source> <translation>Alt+Del</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2519" /> <location filename="../QScintilla/MiniEditor.py" line="2516" /> - <location filename="../ViewManager/ViewManager.py" line="3426" /> - <location filename="../ViewManager/ViewManager.py" line="3423" /> + <location filename="../ViewManager/ViewManager.py" line="3436" /> + <location filename="../ViewManager/ViewManager.py" line="3433" /> <source>Move selected lines up one line</source> <translation>Déplacement des lignes sélectionnées d'une ligne vers le haut</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2536" /> <location filename="../QScintilla/MiniEditor.py" line="2533" /> - <location filename="../ViewManager/ViewManager.py" line="3443" /> - <location filename="../ViewManager/ViewManager.py" line="3440" /> + <location filename="../ViewManager/ViewManager.py" line="3453" /> + <location filename="../ViewManager/ViewManager.py" line="3450" /> <source>Move selected lines down one line</source> <translation>Déplacement des lignes sélectionnées d'une ligne vers le bas</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1810" /> <location filename="../QScintilla/MiniEditor.py" line="1807" /> - <location filename="../ViewManager/ViewManager.py" line="3461" /> - <location filename="../ViewManager/ViewManager.py" line="3458" /> + <location filename="../ViewManager/ViewManager.py" line="3471" /> + <location filename="../ViewManager/ViewManager.py" line="3468" /> <source>Convert selection to lower case</source> <translation>Conversion de la sélection en minuscules</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1813" /> - <location filename="../ViewManager/ViewManager.py" line="3464" /> + <location filename="../ViewManager/ViewManager.py" line="3474" /> <source>Alt+Shift+U</source> <translation>Alt+Shift+U</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1826" /> <location filename="../QScintilla/MiniEditor.py" line="1823" /> - <location filename="../ViewManager/ViewManager.py" line="3477" /> - <location filename="../ViewManager/ViewManager.py" line="3474" /> + <location filename="../ViewManager/ViewManager.py" line="3487" /> + <location filename="../ViewManager/ViewManager.py" line="3484" /> <source>Convert selection to upper case</source> <translation>Conversion de la sélection en majuscules</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1829" /> - <location filename="../ViewManager/ViewManager.py" line="3480" /> + <location filename="../ViewManager/ViewManager.py" line="3490" /> <source>Ctrl+Shift+U</source> <translation>Ctrl+Shift+U</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3506" /> + <location filename="../ViewManager/ViewManager.py" line="3516" /> <source>&Edit</source> <translation>&Edition</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3564" /> - <location filename="../ViewManager/ViewManager.py" line="3562" /> + <location filename="../ViewManager/ViewManager.py" line="3574" /> + <location filename="../ViewManager/ViewManager.py" line="3572" /> <source>Edit</source> <translation>Édition</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2568" /> <location filename="../QScintilla/ShellWindow.py" line="927" /> - <location filename="../ViewManager/ViewManager.py" line="4167" /> - <location filename="../ViewManager/ViewManager.py" line="4165" /> - <location filename="../ViewManager/ViewManager.py" line="3598" /> + <location filename="../ViewManager/ViewManager.py" line="4177" /> + <location filename="../ViewManager/ViewManager.py" line="4175" /> + <location filename="../ViewManager/ViewManager.py" line="3608" /> <source>Search</source> <translation>Rechercher</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2570" /> <location filename="../QScintilla/ShellWindow.py" line="929" /> - <location filename="../ViewManager/ViewManager.py" line="3600" /> + <location filename="../ViewManager/ViewManager.py" line="3610" /> <source>&Search...</source> <translation>Re&chercher...</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2572" /> <location filename="../QScintilla/ShellWindow.py" line="931" /> - <location filename="../ViewManager/ViewManager.py" line="3602" /> + <location filename="../ViewManager/ViewManager.py" line="3612" /> <source>Ctrl+F</source> <comment>Search|Search</comment> <translation>Ctrl+F</translation> @@ -97236,34 +97249,34 @@ <message> <location filename="../QScintilla/MiniEditor.py" line="2579" /> <location filename="../QScintilla/ShellWindow.py" line="938" /> - <location filename="../ViewManager/ViewManager.py" line="3609" /> + <location filename="../ViewManager/ViewManager.py" line="3619" /> <source>Search for a text</source> <translation>Recherche de texte</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2582" /> - <location filename="../ViewManager/ViewManager.py" line="3612" /> + <location filename="../ViewManager/ViewManager.py" line="3622" /> <source><b>Search</b><p>Search for some text in the current editor. A dialog is shown to enter the searchtext and options for the search.</p></source> <translation><b>Rechercher</b><p>Recherche du texte dans l'éditeur courant. Un fenêtre est affichée pour saisir le texte recherché et le options de recherche.</p></translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2594" /> <location filename="../QScintilla/ShellWindow.py" line="953" /> - <location filename="../ViewManager/ViewManager.py" line="3624" /> + <location filename="../ViewManager/ViewManager.py" line="3634" /> <source>Search next</source> <translation>Chercher suivant</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2596" /> <location filename="../QScintilla/ShellWindow.py" line="955" /> - <location filename="../ViewManager/ViewManager.py" line="3626" /> + <location filename="../ViewManager/ViewManager.py" line="3636" /> <source>Search &next</source> <translation>Chercher &suivant</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2598" /> <location filename="../QScintilla/ShellWindow.py" line="957" /> - <location filename="../ViewManager/ViewManager.py" line="3628" /> + <location filename="../ViewManager/ViewManager.py" line="3638" /> <source>F3</source> <comment>Search|Search next</comment> <translation>F3</translation> @@ -97271,34 +97284,34 @@ <message> <location filename="../QScintilla/MiniEditor.py" line="2605" /> <location filename="../QScintilla/ShellWindow.py" line="964" /> - <location filename="../ViewManager/ViewManager.py" line="3635" /> + <location filename="../ViewManager/ViewManager.py" line="3645" /> <source>Search next occurrence of text</source> <translation>Recherche de l'occurence de texte suivante</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2608" /> - <location filename="../ViewManager/ViewManager.py" line="3638" /> + <location filename="../ViewManager/ViewManager.py" line="3648" /> <source><b>Search next</b><p>Search the next occurrence of some text in the current editor. The previously entered searchtext and options are reused.</p></source> <translation><b>Chercher suivant</b><p>Recherche en avant le texte saisi dans l'éditeur courant. Les options de recherche précédentes sont réutilisées.</p></translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2620" /> <location filename="../QScintilla/ShellWindow.py" line="981" /> - <location filename="../ViewManager/ViewManager.py" line="3650" /> + <location filename="../ViewManager/ViewManager.py" line="3660" /> <source>Search previous</source> <translation>Chercher précédent</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2622" /> <location filename="../QScintilla/ShellWindow.py" line="983" /> - <location filename="../ViewManager/ViewManager.py" line="3652" /> + <location filename="../ViewManager/ViewManager.py" line="3662" /> <source>Search &previous</source> <translation>Chercher &précédent</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2624" /> <location filename="../QScintilla/ShellWindow.py" line="985" /> - <location filename="../ViewManager/ViewManager.py" line="3654" /> + <location filename="../ViewManager/ViewManager.py" line="3664" /> <source>Shift+F3</source> <comment>Search|Search previous</comment> <translation>Shift+F3</translation> @@ -97306,436 +97319,436 @@ <message> <location filename="../QScintilla/MiniEditor.py" line="2633" /> <location filename="../QScintilla/ShellWindow.py" line="994" /> - <location filename="../ViewManager/ViewManager.py" line="3663" /> + <location filename="../ViewManager/ViewManager.py" line="3673" /> <source>Search previous occurrence of text</source> <translation>Recherche de l'occurence de texte précédente</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2638" /> - <location filename="../ViewManager/ViewManager.py" line="3668" /> + <location filename="../ViewManager/ViewManager.py" line="3678" /> <source><b>Search previous</b><p>Search the previous occurrence of some text in the current editor. The previously entered searchtext and options are reused.</p></source> <translation><b>Chercher précédent</b><p>Recherche en arrière le texte saisi dans l'éditeur courant. Les options de recherche précédentes sont réutilisées.</p></translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2652" /> <location filename="../QScintilla/MiniEditor.py" line="2650" /> - <location filename="../ViewManager/ViewManager.py" line="3682" /> - <location filename="../ViewManager/ViewManager.py" line="3680" /> + <location filename="../ViewManager/ViewManager.py" line="3692" /> + <location filename="../ViewManager/ViewManager.py" line="3690" /> <source>Clear search markers</source> <translation>Effacer les marqueurs de recherche</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2654" /> - <location filename="../ViewManager/ViewManager.py" line="3684" /> + <location filename="../ViewManager/ViewManager.py" line="3694" /> <source>Ctrl+3</source> <comment>Search|Clear search markers</comment> <translation>Ctrl+3</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2663" /> - <location filename="../ViewManager/ViewManager.py" line="3693" /> + <location filename="../ViewManager/ViewManager.py" line="3703" /> <source>Clear all displayed search markers</source> <translation>Efface tous les marqueurs de recherche affichés</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2668" /> - <location filename="../ViewManager/ViewManager.py" line="3698" /> + <location filename="../ViewManager/ViewManager.py" line="3708" /> <source><b>Clear search markers</b><p>Clear all displayed search markers.</p></source> <translation><b>Effacer tous les marqueurs de recherche</b><p>Efface tous les marqueurs de recherche affichés.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3710" /> - <location filename="../ViewManager/ViewManager.py" line="3708" /> + <location filename="../ViewManager/ViewManager.py" line="3720" /> + <location filename="../ViewManager/ViewManager.py" line="3718" /> <source>Search current word forward</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3712" /> + <location filename="../ViewManager/ViewManager.py" line="3722" /> <source>Ctrl+.</source> <comment>Search|Search current word forward</comment> <translation>Ctrl+.</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3721" /> + <location filename="../ViewManager/ViewManager.py" line="3731" /> <source>Search next occurrence of the current word</source> <translation>Chercher l'occurrence suivante du mot courant</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3726" /> + <location filename="../ViewManager/ViewManager.py" line="3736" /> <source><b>Search current word forward</b><p>Search the next occurrence of the current word of the current editor.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3739" /> - <location filename="../ViewManager/ViewManager.py" line="3737" /> + <location filename="../ViewManager/ViewManager.py" line="3749" /> + <location filename="../ViewManager/ViewManager.py" line="3747" /> <source>Search current word backward</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3741" /> + <location filename="../ViewManager/ViewManager.py" line="3751" /> <source>Ctrl+,</source> <comment>Search|Search current word backward</comment> <translation>Ctrl+,</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3750" /> + <location filename="../ViewManager/ViewManager.py" line="3760" /> <source>Search previous occurrence of the current word</source> <translation>Chercher l'occurence précédente du mot courant</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3755" /> + <location filename="../ViewManager/ViewManager.py" line="3765" /> <source><b>Search current word backward</b><p>Search the previous occurrence of the current word of the current editor.</p></source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2678" /> - <location filename="../ViewManager/ViewManager.py" line="3766" /> + <location filename="../ViewManager/ViewManager.py" line="3776" /> <source>Replace</source> <translation>Remplacer</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2679" /> - <location filename="../ViewManager/ViewManager.py" line="3767" /> + <location filename="../ViewManager/ViewManager.py" line="3777" /> <source>&Replace...</source> <translation>&Remplacer...</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2681" /> - <location filename="../ViewManager/ViewManager.py" line="3769" /> + <location filename="../ViewManager/ViewManager.py" line="3779" /> <source>Ctrl+R</source> <comment>Search|Replace</comment> <translation>Ctrl+R</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2688" /> - <location filename="../ViewManager/ViewManager.py" line="3776" /> + <location filename="../ViewManager/ViewManager.py" line="3786" /> <source>Replace some text</source> <translation>Remplacer un texte</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2691" /> - <location filename="../ViewManager/ViewManager.py" line="3779" /> + <location filename="../ViewManager/ViewManager.py" line="3789" /> <source><b>Replace</b><p>Search for some text in the current editor and replace it. A dialog is shown to enter the searchtext, the replacement text and options for the search and replace.</p></source> <translation><b>Remplacer</b><p>Recherche du texte dans l'éditeur courant et le remplace par un autre. Un fenêtre est affichée pour saisir le texte initial, le texte de remplacement et les options de remplacement.</p></translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2705" /> <location filename="../QScintilla/MiniEditor.py" line="2703" /> - <location filename="../ViewManager/ViewManager.py" line="3793" /> - <location filename="../ViewManager/ViewManager.py" line="3791" /> + <location filename="../ViewManager/ViewManager.py" line="3803" /> + <location filename="../ViewManager/ViewManager.py" line="3801" /> <source>Replace and Search</source> <translation>Remplacer et chercher</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2707" /> - <location filename="../ViewManager/ViewManager.py" line="3795" /> + <location filename="../ViewManager/ViewManager.py" line="3805" /> <source>Meta+R</source> <comment>Search|Replace and Search</comment> <translation>Meta+R</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2716" /> - <location filename="../ViewManager/ViewManager.py" line="3804" /> + <location filename="../ViewManager/ViewManager.py" line="3814" /> <source>Replace the found text and search the next occurrence</source> <translation>Remplacer le texte trouvé et chercher l'occurrence suivante</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2721" /> - <location filename="../ViewManager/ViewManager.py" line="3809" /> + <location filename="../ViewManager/ViewManager.py" line="3819" /> <source><b>Replace and Search</b><p>Replace the found occurrence of text in the current editor and search for the next one. The previously entered search text and options are reused.</p></source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2737" /> <location filename="../QScintilla/MiniEditor.py" line="2735" /> - <location filename="../ViewManager/ViewManager.py" line="3825" /> - <location filename="../ViewManager/ViewManager.py" line="3823" /> + <location filename="../ViewManager/ViewManager.py" line="3835" /> + <location filename="../ViewManager/ViewManager.py" line="3833" /> <source>Replace Occurrence</source> <translation>Remplacer occurrence</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2739" /> - <location filename="../ViewManager/ViewManager.py" line="3827" /> + <location filename="../ViewManager/ViewManager.py" line="3837" /> <source>Ctrl+Meta+R</source> <comment>Search|Replace Occurrence</comment> <translation>Ctrl+Meta+R</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2748" /> - <location filename="../ViewManager/ViewManager.py" line="3836" /> + <location filename="../ViewManager/ViewManager.py" line="3846" /> <source>Replace the found text</source> <translation>Remplacer le texte trouvé</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2751" /> - <location filename="../ViewManager/ViewManager.py" line="3839" /> + <location filename="../ViewManager/ViewManager.py" line="3849" /> <source><b>Replace Occurrence</b><p>Replace the found occurrence of the search text in the current editor.</p></source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2764" /> <location filename="../QScintilla/MiniEditor.py" line="2762" /> - <location filename="../ViewManager/ViewManager.py" line="3852" /> - <location filename="../ViewManager/ViewManager.py" line="3850" /> + <location filename="../ViewManager/ViewManager.py" line="3862" /> + <location filename="../ViewManager/ViewManager.py" line="3860" /> <source>Replace All</source> <translation>Tout remplacer</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2766" /> - <location filename="../ViewManager/ViewManager.py" line="3854" /> + <location filename="../ViewManager/ViewManager.py" line="3864" /> <source>Shift+Meta+R</source> <comment>Search|Replace All</comment> <translation>Shift+Meta+R</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2775" /> - <location filename="../ViewManager/ViewManager.py" line="3863" /> + <location filename="../ViewManager/ViewManager.py" line="3873" /> <source>Replace search text occurrences</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2778" /> - <location filename="../ViewManager/ViewManager.py" line="3866" /> + <location filename="../ViewManager/ViewManager.py" line="3876" /> <source><b>Replace All</b><p>Replace all occurrences of the search text in the current editor.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3888" /> - <location filename="../ViewManager/ViewManager.py" line="3877" /> + <location filename="../ViewManager/ViewManager.py" line="3898" /> + <location filename="../ViewManager/ViewManager.py" line="3887" /> <source>Goto Line</source> <translation>Aller à la ligne</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3879" /> + <location filename="../ViewManager/ViewManager.py" line="3889" /> <source>&Goto Line...</source> <translation>Aller à la &ligne...</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3881" /> + <location filename="../ViewManager/ViewManager.py" line="3891" /> <source>Ctrl+G</source> <comment>Search|Goto Line</comment> <translation>Ctrl+G</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3891" /> + <location filename="../ViewManager/ViewManager.py" line="3901" /> <source><b>Goto Line</b><p>Go to a specific line of text in the current editor. A dialog is shown to enter the linenumber.</p></source> <translation><b>Aller à la ligne</b><p>Déplacement vers la ligne indiquée. Un fenêtre permet de saisir le numéro de ligne.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3913" /> - <location filename="../ViewManager/ViewManager.py" line="3902" /> + <location filename="../ViewManager/ViewManager.py" line="3923" /> + <location filename="../ViewManager/ViewManager.py" line="3912" /> <source>Goto Brace</source> <translation>Aller à la parenthèse</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3904" /> + <location filename="../ViewManager/ViewManager.py" line="3914" /> <source>Goto &Brace</source> <translation>Aller à la &parenthèse</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3906" /> - <source>Ctrl+L</source> - <comment>Search|Goto Brace</comment> - <translation>Ctrl+L</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="3916" /> + <source>Ctrl+L</source> + <comment>Search|Goto Brace</comment> + <translation>Ctrl+L</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="3926" /> <source><b>Goto Brace</b><p>Go to the matching brace in the current editor.</p></source> <translation><b>Aller à la parenthèse correspondante</b><p>A partir d'une parenthèse ouvrante ou fermante, déplace le curseur jusqu'à l'autre parenthèse.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3939" /> - <location filename="../ViewManager/ViewManager.py" line="3926" /> + <location filename="../ViewManager/ViewManager.py" line="3949" /> + <location filename="../ViewManager/ViewManager.py" line="3936" /> <source>Goto Last Edit Location</source> <translation>Aller à la dernière modification</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3928" /> + <location filename="../ViewManager/ViewManager.py" line="3938" /> <source>Goto Last &Edit Location</source> <translation>Aller à la dernièr&e modification</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3930" /> + <location filename="../ViewManager/ViewManager.py" line="3940" /> <source>Ctrl+Shift+G</source> <comment>Search|Goto Last Edit Location</comment> <translation>Ctrl+Shift+G</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3942" /> + <location filename="../ViewManager/ViewManager.py" line="3952" /> <source><b>Goto Last Edit Location</b><p>Go to the location of the last edit in the current editor.</p></source> <translation><b>Aller à la dernière modification</b><p>Aller à l'endroit de la derniére modification dans l'éditeur actuel.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3954" /> - <location filename="../ViewManager/ViewManager.py" line="3953" /> + <location filename="../ViewManager/ViewManager.py" line="3964" /> + <location filename="../ViewManager/ViewManager.py" line="3963" /> <source>Goto Previous Method or Class</source> <translation>Aller à la classe ou fonction précédentes</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3956" /> + <location filename="../ViewManager/ViewManager.py" line="3966" /> <source>Ctrl+Shift+Up</source> <comment>Search|Goto Previous Method or Class</comment> <translation>Ctrl+Shift+Up</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3967" /> + <location filename="../ViewManager/ViewManager.py" line="3977" /> <source>Go to the previous method or class definition</source> <translation>Aller à la définition de classe ou de fonction précédente</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3972" /> + <location filename="../ViewManager/ViewManager.py" line="3982" /> <source><b>Goto Previous Method or Class</b><p>Goes to the line of the previous method or class definition and highlights the name.</p></source> <translation><b>Aller à la classe ou fonction précédente</b><p>Va à la ligne de classe ou fonction précédent et surligne le nom. </p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3984" /> - <location filename="../ViewManager/ViewManager.py" line="3983" /> + <location filename="../ViewManager/ViewManager.py" line="3994" /> + <location filename="../ViewManager/ViewManager.py" line="3993" /> <source>Goto Next Method or Class</source> <translation>Aller à la classe ou fonction suivante</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3986" /> + <location filename="../ViewManager/ViewManager.py" line="3996" /> <source>Ctrl+Shift+Down</source> <comment>Search|Goto Next Method or Class</comment> <translation>Ctrl+Shift+Down</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3995" /> + <location filename="../ViewManager/ViewManager.py" line="4005" /> <source>Go to the next method or class definition</source> <translation>Aller à la définition de classe ou de fonction suivante</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4000" /> + <location filename="../ViewManager/ViewManager.py" line="4010" /> <source><b>Goto Next Method or Class</b><p>Goes to the line of the next method or class definition and highlights the name.</p></source> <translation><b>Aller à la classe ou fonction suivante</b><p>Va à la ligne de classe ou fonction suivante et surligne le nom. </p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4013" /> + <location filename="../ViewManager/ViewManager.py" line="4023" /> <source>Search in Files</source> <translation>Rechercher dans les fichiers</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4015" /> + <location filename="../ViewManager/ViewManager.py" line="4025" /> <source>Search in &Files...</source> <translation>Rechercher dans les &Fichiers...</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4017" /> + <location filename="../ViewManager/ViewManager.py" line="4027" /> <source>Shift+Ctrl+F</source> <comment>Search|Search Files</comment> <translation>Shift+Ctrl+F</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4026" /> + <location filename="../ViewManager/ViewManager.py" line="4036" /> <source>Search for a text in files</source> <translation>Rechercher un texte dans les fichiers</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4029" /> + <location filename="../ViewManager/ViewManager.py" line="4039" /> <source><b>Search in Files</b><p>Search for some text in the files of a directory tree or the project. A window is shown to enter the searchtext and options for the search and to display the result.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4041" /> + <location filename="../ViewManager/ViewManager.py" line="4051" /> <source>Replace in Files</source> <translation>Remplacer dans les fichiers</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4042" /> + <location filename="../ViewManager/ViewManager.py" line="4052" /> <source>Replace in F&iles...</source> <translation>Remplacer dans les f&ichiers...</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4044" /> + <location filename="../ViewManager/ViewManager.py" line="4054" /> <source>Shift+Ctrl+R</source> <comment>Search|Replace in Files</comment> <translation>Shift+Ctrl+R</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4053" /> + <location filename="../ViewManager/ViewManager.py" line="4063" /> <source>Search for a text in files and replace it</source> <translation>Recherche puis remplace un texte dans des fichiers</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4058" /> + <location filename="../ViewManager/ViewManager.py" line="4068" /> <source><b>Replace in Files</b><p>Search for some text in the files of a directory tree or the project and replace it. A window is shown to enter the searchtext, the replacement text and options for the search and to display the result.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4071" /> + <location filename="../ViewManager/ViewManager.py" line="4081" /> <source>Search in Open Files</source> <translation>Chercher dans les fichiers ouverts</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4073" /> + <location filename="../ViewManager/ViewManager.py" line="4083" /> <source>Search in Open Files...</source> <translation>Chercher dans les fichiers ouverts...</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4075" /> + <location filename="../ViewManager/ViewManager.py" line="4085" /> <source>Meta+Ctrl+Alt+F</source> <comment>Search|Search Open Files</comment> <translation>Meta+Ctrl+Alt+F</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4084" /> + <location filename="../ViewManager/ViewManager.py" line="4094" /> <source>Search for a text in open files</source> <translation>Chercher un texte dans les fichiers ouverts</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4087" /> + <location filename="../ViewManager/ViewManager.py" line="4097" /> <source><b>Search in Open Files</b><p>Search for some text in the currently opened files. A window is shown to enter the search text and options for the search and to display the result.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4099" /> + <location filename="../ViewManager/ViewManager.py" line="4109" /> <source>Replace in Open Files</source> <translation>Remplacer dans les fichiers ouverts</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4100" /> + <location filename="../ViewManager/ViewManager.py" line="4110" /> <source>Replace in Open Files...</source> <translation>Remplacer dans les fichiers ouverts...</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4102" /> + <location filename="../ViewManager/ViewManager.py" line="4112" /> <source>Meta+Ctrl+Alt+R</source> <comment>Search|Replace in Open Files</comment> <translation>Meta+Ctrl+Alt+R</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4111" /> + <location filename="../ViewManager/ViewManager.py" line="4121" /> <source>Search for a text in open files and replace it</source> <translation>Chercher un texte dans les fichiers ouverts et le remplacer</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4116" /> + <location filename="../ViewManager/ViewManager.py" line="4126" /> <source><b>Replace in Open Files</b><p>Search for some text in the currently opened files and replace it. A window is shown to enter the search text, the replacement text and options for the search and to display the result.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4137" /> + <location filename="../ViewManager/ViewManager.py" line="4147" /> <source>&Search</source> <translation>Re&chercher</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2793" /> <location filename="../QScintilla/ShellWindow.py" line="1020" /> - <location filename="../ViewManager/ViewManager.py" line="4208" /> + <location filename="../ViewManager/ViewManager.py" line="4218" /> <source>Zoom in</source> <translation>Zoom avant</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2795" /> <location filename="../QScintilla/ShellWindow.py" line="1022" /> - <location filename="../ViewManager/ViewManager.py" line="4210" /> + <location filename="../ViewManager/ViewManager.py" line="4220" /> <source>Zoom &in</source> <translation>Zoom a&vant</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2797" /> <location filename="../QScintilla/ShellWindow.py" line="1024" /> - <location filename="../ViewManager/ViewManager.py" line="4212" /> + <location filename="../ViewManager/ViewManager.py" line="4222" /> <source>Ctrl++</source> <comment>View|Zoom in</comment> <translation>Ctrl++</translation> @@ -97743,7 +97756,7 @@ <message> <location filename="../QScintilla/MiniEditor.py" line="2800" /> <location filename="../QScintilla/ShellWindow.py" line="1027" /> - <location filename="../ViewManager/ViewManager.py" line="4215" /> + <location filename="../ViewManager/ViewManager.py" line="4225" /> <source>Zoom In</source> <comment>View|Zoom in</comment> <translation>Zoom avant</translation> @@ -97751,35 +97764,35 @@ <message> <location filename="../QScintilla/MiniEditor.py" line="2806" /> <location filename="../QScintilla/ShellWindow.py" line="1033" /> - <location filename="../ViewManager/ViewManager.py" line="4221" /> + <location filename="../ViewManager/ViewManager.py" line="4231" /> <source>Zoom in on the text</source> <translation>Zoom sur le texte</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2809" /> <location filename="../QScintilla/ShellWindow.py" line="1036" /> - <location filename="../ViewManager/ViewManager.py" line="4224" /> + <location filename="../ViewManager/ViewManager.py" line="4234" /> <source><b>Zoom in</b><p>Zoom in on the text. This makes the text bigger.</p></source> <translation><b>Zoom avant</b><p>Zoom sur le texte. Affiche le texte en plus gros.</p></translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2819" /> <location filename="../QScintilla/ShellWindow.py" line="1046" /> - <location filename="../ViewManager/ViewManager.py" line="4234" /> + <location filename="../ViewManager/ViewManager.py" line="4244" /> <source>Zoom out</source> <translation>Zoom arrière</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2821" /> <location filename="../QScintilla/ShellWindow.py" line="1048" /> - <location filename="../ViewManager/ViewManager.py" line="4236" /> + <location filename="../ViewManager/ViewManager.py" line="4246" /> <source>Zoom &out</source> <translation>Zoom a&rrière</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2823" /> <location filename="../QScintilla/ShellWindow.py" line="1050" /> - <location filename="../ViewManager/ViewManager.py" line="4238" /> + <location filename="../ViewManager/ViewManager.py" line="4248" /> <source>Ctrl+-</source> <comment>View|Zoom out</comment> <translation>Ctrl+-</translation> @@ -97787,7 +97800,7 @@ <message> <location filename="../QScintilla/MiniEditor.py" line="2826" /> <location filename="../QScintilla/ShellWindow.py" line="1053" /> - <location filename="../ViewManager/ViewManager.py" line="4241" /> + <location filename="../ViewManager/ViewManager.py" line="4251" /> <source>Zoom Out</source> <comment>View|Zoom out</comment> <translation>Zoom arrière</translation> @@ -97795,35 +97808,35 @@ <message> <location filename="../QScintilla/MiniEditor.py" line="2832" /> <location filename="../QScintilla/ShellWindow.py" line="1059" /> - <location filename="../ViewManager/ViewManager.py" line="4247" /> + <location filename="../ViewManager/ViewManager.py" line="4257" /> <source>Zoom out on the text</source> <translation>Zoom arrière du texte</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2835" /> <location filename="../QScintilla/ShellWindow.py" line="1062" /> - <location filename="../ViewManager/ViewManager.py" line="4250" /> + <location filename="../ViewManager/ViewManager.py" line="4260" /> <source><b>Zoom out</b><p>Zoom out on the text. This makes the text smaller.</p></source> <translation><b>Zoom arrière</b><p>Zoom arrière du texte. Affiche le texte en plus petit.</p></translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2845" /> <location filename="../QScintilla/ShellWindow.py" line="1072" /> - <location filename="../ViewManager/ViewManager.py" line="4260" /> + <location filename="../ViewManager/ViewManager.py" line="4270" /> <source>Zoom reset</source> <translation>Annulation du zoom</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2847" /> <location filename="../QScintilla/ShellWindow.py" line="1074" /> - <location filename="../ViewManager/ViewManager.py" line="4262" /> + <location filename="../ViewManager/ViewManager.py" line="4272" /> <source>Zoom &reset</source> <translation>Annulation du &zoom</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2849" /> <location filename="../QScintilla/ShellWindow.py" line="1076" /> - <location filename="../ViewManager/ViewManager.py" line="4264" /> + <location filename="../ViewManager/ViewManager.py" line="4274" /> <source>Ctrl+0</source> <comment>View|Zoom reset</comment> <translation>Ctrl+0</translation> @@ -97831,894 +97844,894 @@ <message> <location filename="../QScintilla/MiniEditor.py" line="2856" /> <location filename="../QScintilla/ShellWindow.py" line="1083" /> - <location filename="../ViewManager/ViewManager.py" line="4271" /> + <location filename="../ViewManager/ViewManager.py" line="4281" /> <source>Reset the zoom of the text</source> <translation>Annulation du zoom du texte</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2859" /> <location filename="../QScintilla/ShellWindow.py" line="1086" /> - <location filename="../ViewManager/ViewManager.py" line="4274" /> + <location filename="../ViewManager/ViewManager.py" line="4284" /> <source><b>Zoom reset</b><p>Reset the zoom of the text. This sets the zoom factor to 100%.</p></source> <translation><b>Annulation du zoom</b><p>Annulation du zoom du texte. Ceci met le facteur de zoom à 100%. </p></translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2870" /> <location filename="../QScintilla/ShellWindow.py" line="1097" /> - <location filename="../ViewManager/ViewManager.py" line="4285" /> + <location filename="../ViewManager/ViewManager.py" line="4295" /> <source>Zoom</source> <translation>Zoom</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2872" /> <location filename="../QScintilla/ShellWindow.py" line="1099" /> - <location filename="../ViewManager/ViewManager.py" line="4287" /> + <location filename="../ViewManager/ViewManager.py" line="4297" /> <source>&Zoom</source> <translation>&Zoom</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2879" /> <location filename="../QScintilla/ShellWindow.py" line="1106" /> - <location filename="../ViewManager/ViewManager.py" line="4294" /> + <location filename="../ViewManager/ViewManager.py" line="4304" /> <source>Zoom the text</source> <translation>Zoom du texte</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2882" /> <location filename="../QScintilla/ShellWindow.py" line="1109" /> - <location filename="../ViewManager/ViewManager.py" line="4297" /> + <location filename="../ViewManager/ViewManager.py" line="4307" /> <source><b>Zoom</b><p>Zoom the text. This opens a dialog where the desired size can be entered.</p></source> <translation><b>Zoom</b><p>Zoom du texte. Ouvre une fenêtre pour entrer la taille souhaitée.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4316" /> - <location filename="../ViewManager/ViewManager.py" line="4308" /> + <location filename="../ViewManager/ViewManager.py" line="4326" /> + <location filename="../ViewManager/ViewManager.py" line="4318" /> <source>Toggle all folds</source> <translation>Contracte/Déploie tout le code</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4309" /> - <source>&Toggle all folds</source> - <translation type="unfinished">Contracte/Déploie &tout le code</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="4319" /> + <source>&Toggle all folds</source> + <translation type="unfinished">Contracte/Déploie &tout le code</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4329" /> <source><b>Toggle all folds</b><p>Toggle all folds of the current editor.</p></source> <translation><b>Contracte/Déploie tout le code</b><p>Contracte ou déploie tout le code de la page en cours.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4341" /> - <location filename="../ViewManager/ViewManager.py" line="4329" /> + <location filename="../ViewManager/ViewManager.py" line="4351" /> + <location filename="../ViewManager/ViewManager.py" line="4339" /> <source>Toggle all folds (including children)</source> <translation>Contracte/Déploie tout le code (sous-niveaux inclus)</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4332" /> + <location filename="../ViewManager/ViewManager.py" line="4342" /> <source>Toggle all &folds (including children)</source> <translation>Contracte/&Déploie tout le code (sous-niveaux inclus)</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4346" /> + <location filename="../ViewManager/ViewManager.py" line="4356" /> <source><b>Toggle all folds (including children)</b><p>Toggle all folds of the current editor including all children.</p></source> <translation><b>Contracte/Déploie tout le code (sous-niveaux inclus)</b><p>Contracte/Déploie tout le code de l'éditeur courant en incluant tous les sous-niveaux d'indentation</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4365" /> - <location filename="../ViewManager/ViewManager.py" line="4357" /> + <location filename="../ViewManager/ViewManager.py" line="4375" /> + <location filename="../ViewManager/ViewManager.py" line="4367" /> <source>Toggle current fold</source> <translation>Contracte/Déploie le paragraphe courant</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4358" /> - <source>Toggle &current fold</source> - <translation>Contracte/Déploie le paragraphe &courant</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="4368" /> + <source>Toggle &current fold</source> + <translation>Contracte/Déploie le paragraphe &courant</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4378" /> <source><b>Toggle current fold</b><p>Toggle the folds of the current line of the current editor.</p></source> <translation><b>Contracte/Déploie le paragraphe courant</b><p>Applique la contraction de code au paragraphe courant.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4387" /> - <location filename="../ViewManager/ViewManager.py" line="4379" /> + <location filename="../ViewManager/ViewManager.py" line="4397" /> + <location filename="../ViewManager/ViewManager.py" line="4389" /> <source>Clear all folds</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4380" /> - <source>Clear &all folds</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="4390" /> + <source>Clear &all folds</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4400" /> <source><b>Clear all folds</b><p>Clear all folds of the current editor, i.e. ensure that all lines are displayed unfolded.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4410" /> - <location filename="../ViewManager/ViewManager.py" line="4403" /> - <location filename="../ViewManager/ViewManager.py" line="4401" /> + <location filename="../ViewManager/ViewManager.py" line="4420" /> + <location filename="../ViewManager/ViewManager.py" line="4413" /> + <location filename="../ViewManager/ViewManager.py" line="4411" /> <source>Remove all highlights</source> <translation>Suppression de tous les surlignages</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4413" /> - <source><b>Remove all highlights</b><p>Remove the highlights of all editors.</p></source> - <translation><b>Suppression de tous les surlignages</b><p>Supprime tous les surlignage présents dans la page.</p></translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="4423" /> + <source><b>Remove all highlights</b><p>Remove the highlights of all editors.</p></source> + <translation><b>Suppression de tous les surlignages</b><p>Supprime tous les surlignage présents dans la page.</p></translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4433" /> <source>New Document View</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4425" /> + <location filename="../ViewManager/ViewManager.py" line="4435" /> <source>New &Document View</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4432" /> + <location filename="../ViewManager/ViewManager.py" line="4442" /> <source>Open a new view of the current document</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4437" /> + <location filename="../ViewManager/ViewManager.py" line="4447" /> <source><b>New Document View</b><p>Opens a new view of the current document. Both views show the same document. However, the cursors may be positioned independently.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4453" /> - <location filename="../ViewManager/ViewManager.py" line="4449" /> + <location filename="../ViewManager/ViewManager.py" line="4463" /> + <location filename="../ViewManager/ViewManager.py" line="4459" /> <source>New Document View (with new split)</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4462" /> + <location filename="../ViewManager/ViewManager.py" line="4472" /> <source>Open a new view of the current document in a new split</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4467" /> + <location filename="../ViewManager/ViewManager.py" line="4477" /> <source><b>New Document View</b><p>Opens a new view of the current document in a new split. Both views show the same document. However, the cursors may be positioned independently.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4479" /> + <location filename="../ViewManager/ViewManager.py" line="4489" /> <source>Split view</source> <translation>Diviser la fenêtre</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4481" /> - <source>&Split view</source> - <translation>&Diviser la fenêtre</translation> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="4488" /> - <source>Add a split to the view</source> - <translation>Ajoute une division de fenêtre</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="4491" /> - <source><b>Split view</b><p>Add a split to the view.</p></source> - <translation><b>Diviser la fenêtre</b><p>Ajoute un division supplémentaire à la fenêtre courante.</p></translation> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="4500" /> - <source>Arrange horizontally</source> - <translation>Division horizontale/verticale</translation> + <source>&Split view</source> + <translation>&Diviser la fenêtre</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4498" /> + <source>Add a split to the view</source> + <translation>Ajoute une division de fenêtre</translation> </message> <message> <location filename="../ViewManager/ViewManager.py" line="4501" /> + <source><b>Split view</b><p>Add a split to the view.</p></source> + <translation><b>Diviser la fenêtre</b><p>Ajoute un division supplémentaire à la fenêtre courante.</p></translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4510" /> + <source>Arrange horizontally</source> + <translation>Division horizontale/verticale</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4511" /> <source>Arrange &horizontally</source> <translation>Division &horizontale/verticale</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4509" /> + <location filename="../ViewManager/ViewManager.py" line="4519" /> <source>Arrange the splitted views horizontally</source> <translation>Bascule la division horizontalement ou verticalement</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4514" /> + <location filename="../ViewManager/ViewManager.py" line="4524" /> <source><b>Arrange horizontally</b><p>Arrange the splitted views horizontally.</p></source> <translation><b>Division horizontale/verticale</b><p>Bascule la division horizontalement ou verticalement, selon.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4525" /> + <location filename="../ViewManager/ViewManager.py" line="4535" /> <source>Remove split</source> <translation>Suppression du découpage</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4527" /> - <source>&Remove split</source> - <translation>&Suppression du découpage</translation> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="4534" /> - <source>Remove the current split</source> - <translation>Supprime le découpage de fenêtre courant</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="4537" /> - <source><b>Remove split</b><p>Remove the current split.</p></source> - <translation><b>Suppression du découpage</b><p>Supprime le découpage de fenêtre courant.</p></translation> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="4546" /> - <source>Next split</source> - <translation>Onglet suivant</translation> + <source>&Remove split</source> + <translation>&Suppression du découpage</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4544" /> + <source>Remove the current split</source> + <translation>Supprime le découpage de fenêtre courant</translation> </message> <message> <location filename="../ViewManager/ViewManager.py" line="4547" /> + <source><b>Remove split</b><p>Remove the current split.</p></source> + <translation><b>Suppression du découpage</b><p>Supprime le découpage de fenêtre courant.</p></translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4556" /> + <source>Next split</source> + <translation>Onglet suivant</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4557" /> <source>&Next split</source> <translation>O&nglet suivant</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4549" /> + <location filename="../ViewManager/ViewManager.py" line="4559" /> <source>Ctrl+Alt+N</source> <comment>View|Next split</comment> <translation>Ctrl+Alt+N</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4558" /> + <location filename="../ViewManager/ViewManager.py" line="4568" /> <source>Move to the next split</source> <translation>Basculer vers l'onglet suivant</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4561" /> - <source><b>Next split</b><p>Move to the next split.</p></source> - <translation><b>Onglet suivant</b><p>Basculer vers l'onglet suivant.</p></translation> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="4570" /> - <source>Previous split</source> - <translation>Onglet précédent</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="4571" /> + <source><b>Next split</b><p>Move to the next split.</p></source> + <translation><b>Onglet suivant</b><p>Basculer vers l'onglet suivant.</p></translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4580" /> + <source>Previous split</source> + <translation>Onglet précédent</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4581" /> <source>&Previous split</source> <translation>Onglet &précédent</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4573" /> + <location filename="../ViewManager/ViewManager.py" line="4583" /> <source>Ctrl+Alt+P</source> <comment>View|Previous split</comment> <translation>Ctrl+Alt+P</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4582" /> + <location filename="../ViewManager/ViewManager.py" line="4592" /> <source>Move to the previous split</source> <translation>Basculer vers l'onglet précédent</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4585" /> + <location filename="../ViewManager/ViewManager.py" line="4595" /> <source><b>Previous split</b><p>Move to the previous split.</p></source> <translation><b>Onglet précédent</b><p>Basculer vers l'onglet précédent.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4596" /> - <location filename="../ViewManager/ViewManager.py" line="4594" /> + <location filename="../ViewManager/ViewManager.py" line="4606" /> + <location filename="../ViewManager/ViewManager.py" line="4604" /> <source>Preview</source> <translation>Aperçu</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4604" /> + <location filename="../ViewManager/ViewManager.py" line="4614" /> <source>Preview the current file in the web browser</source> <translation>Avoir un aperçu du fichier courant dans le navigateur</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4609" /> + <location filename="../ViewManager/ViewManager.py" line="4619" /> <source><b>Preview</b><p>This opens the web browser with a preview of the current file.</p></source> <translation><b>Aperçu</b><p>Ceci ouvre le navigateur avec un aperçu du fichier courant.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4623" /> - <location filename="../ViewManager/ViewManager.py" line="4621" /> + <location filename="../ViewManager/ViewManager.py" line="4633" /> + <location filename="../ViewManager/ViewManager.py" line="4631" /> <source>Python AST Viewer</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4631" /> + <location filename="../ViewManager/ViewManager.py" line="4641" /> <source>Show the AST for the current Python file</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4636" /> + <location filename="../ViewManager/ViewManager.py" line="4646" /> <source><b>Python AST Viewer</b><p>This opens the a tree view of the AST of the current Python source file.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4650" /> - <location filename="../ViewManager/ViewManager.py" line="4648" /> + <location filename="../ViewManager/ViewManager.py" line="4660" /> + <location filename="../ViewManager/ViewManager.py" line="4658" /> <source>Python Disassembly Viewer</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4658" /> + <location filename="../ViewManager/ViewManager.py" line="4668" /> <source>Show the Disassembly for the current Python file</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4663" /> + <location filename="../ViewManager/ViewManager.py" line="4673" /> <source><b>Python Disassembly Viewer</b><p>This opens the a tree view of the Disassembly of the current Python source file.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4699" /> + <location filename="../ViewManager/ViewManager.py" line="4709" /> <source>&View</source> <translation>&Affichage</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4734" /> - <location filename="../ViewManager/ViewManager.py" line="4732" /> + <location filename="../ViewManager/ViewManager.py" line="4744" /> + <location filename="../ViewManager/ViewManager.py" line="4742" /> <source>View</source> <translation>Affichage</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4773" /> - <location filename="../ViewManager/ViewManager.py" line="4765" /> + <location filename="../ViewManager/ViewManager.py" line="4783" /> + <location filename="../ViewManager/ViewManager.py" line="4775" /> <source>Start Macro Recording</source> <translation>Démarrer l'enregistrement de la macro</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4766" /> - <source>S&tart Macro Recording</source> - <translation>&Démarrer l'enregistrement de la macro</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="4776" /> + <source>S&tart Macro Recording</source> + <translation>&Démarrer l'enregistrement de la macro</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4786" /> <source><b>Start Macro Recording</b><p>Start recording editor commands into a new macro.</p></source> <translation><b>Démarrer l'enregistrement de la macro</b><p>Démarre l'enregistrement des commandes de l'éditeur dans une nouvelle macro.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4794" /> - <location filename="../ViewManager/ViewManager.py" line="4786" /> + <location filename="../ViewManager/ViewManager.py" line="4804" /> + <location filename="../ViewManager/ViewManager.py" line="4796" /> <source>Stop Macro Recording</source> <translation>Arrêter l'enregistrement de la macro</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4787" /> - <source>Sto&p Macro Recording</source> - <translation>&Arrêter l'enregistrement de la macro</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="4797" /> + <source>Sto&p Macro Recording</source> + <translation>&Arrêter l'enregistrement de la macro</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4807" /> <source><b>Stop Macro Recording</b><p>Stop recording editor commands into a new macro.</p></source> <translation><b>Arrêter l'enregistrement de la macro</b><p>Arrête l'enregistrement des commandes de l'éditeur dans la nouvelle macro..</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4815" /> - <location filename="../ViewManager/ViewManager.py" line="4807" /> + <location filename="../ViewManager/ViewManager.py" line="4825" /> + <location filename="../ViewManager/ViewManager.py" line="4817" /> <source>Run Macro</source> <translation>Lancer une macro</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4808" /> - <source>&Run Macro</source> - <translation>&Lancer une macro</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="4818" /> + <source>&Run Macro</source> + <translation>&Lancer une macro</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4828" /> <source><b>Run Macro</b><p>Run a previously recorded editor macro.</p></source> <translation><b>Lancer une macro</b><p>Lance une macro déjà enregistrée.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4836" /> - <location filename="../ViewManager/ViewManager.py" line="4828" /> + <location filename="../ViewManager/ViewManager.py" line="4846" /> + <location filename="../ViewManager/ViewManager.py" line="4838" /> <source>Delete Macro</source> <translation>Supprimer une macro</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4829" /> - <source>&Delete Macro</source> - <translation>&Supprimer une macro</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="4839" /> + <source>&Delete Macro</source> + <translation>&Supprimer une macro</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4849" /> <source><b>Delete Macro</b><p>Delete a previously recorded editor macro.</p></source> <translation><b>Supprimer une macro</b><p>Supprime une macro déjà enregistrée.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4857" /> - <location filename="../ViewManager/ViewManager.py" line="4849" /> + <location filename="../ViewManager/ViewManager.py" line="4867" /> + <location filename="../ViewManager/ViewManager.py" line="4859" /> <source>Load Macro</source> <translation>Charger une macro</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4850" /> - <source>&Load Macro</source> - <translation>&Charger une macro</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="4860" /> - <source><b>Load Macro</b><p>Load an editor macro from a file.</p></source> - <translation><b>Charger une macro</b><p>Charger une macro déjà enregistrée à partir d'un fichier.</p></translation> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="4877" /> - <location filename="../ViewManager/ViewManager.py" line="4869" /> - <source>Save Macro</source> - <translation>Enregistrer une macro</translation> + <source>&Load Macro</source> + <translation>&Charger une macro</translation> </message> <message> <location filename="../ViewManager/ViewManager.py" line="4870" /> - <source>&Save Macro</source> - <translation>&Enregistrer la macro</translation> + <source><b>Load Macro</b><p>Load an editor macro from a file.</p></source> + <translation><b>Charger une macro</b><p>Charger une macro déjà enregistrée à partir d'un fichier.</p></translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4887" /> + <location filename="../ViewManager/ViewManager.py" line="4879" /> + <source>Save Macro</source> + <translation>Enregistrer une macro</translation> </message> <message> <location filename="../ViewManager/ViewManager.py" line="4880" /> + <source>&Save Macro</source> + <translation>&Enregistrer la macro</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4890" /> <source><b>Save Macro</b><p>Save a previously recorded editor macro to a file.</p></source> <translation><b>Enregistrer une macro</b><p>Enregistrer une macro dans un fichier.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4898" /> + <location filename="../ViewManager/ViewManager.py" line="4908" /> <source>&Macros</source> <translation>&Macros</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4929" /> - <location filename="../ViewManager/ViewManager.py" line="4916" /> + <location filename="../ViewManager/ViewManager.py" line="4939" /> + <location filename="../ViewManager/ViewManager.py" line="4926" /> <source>Toggle Bookmark</source> <translation>Placer/Supprimer un signet</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4918" /> + <location filename="../ViewManager/ViewManager.py" line="4928" /> <source>&Toggle Bookmark</source> <translation>&Placer/Supprimer un signet</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4920" /> + <location filename="../ViewManager/ViewManager.py" line="4930" /> <source>Alt+Ctrl+T</source> <comment>Bookmark|Toggle</comment> <translation>Alt+Ctrl+T</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4932" /> + <location filename="../ViewManager/ViewManager.py" line="4942" /> <source><b>Toggle Bookmark</b><p>Toggle a bookmark at the current line of the current editor.</p></source> <translation><b>Placer/Supprimer un signet</b><p>Place ou enlève un signet sur la ligne courante.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4956" /> - <location filename="../ViewManager/ViewManager.py" line="4943" /> + <location filename="../ViewManager/ViewManager.py" line="4966" /> + <location filename="../ViewManager/ViewManager.py" line="4953" /> <source>Next Bookmark</source> <translation>Signet suivant</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4945" /> + <location filename="../ViewManager/ViewManager.py" line="4955" /> <source>&Next Bookmark</source> <translation>Signet suiva&nt</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4947" /> + <location filename="../ViewManager/ViewManager.py" line="4957" /> <source>Ctrl+PgDown</source> <comment>Bookmark|Next</comment> <translation>Ctrl+PgDown</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4959" /> + <location filename="../ViewManager/ViewManager.py" line="4969" /> <source><b>Next Bookmark</b><p>Go to next bookmark of the current editor.</p></source> <translation><b>Signet suivant</b><p>Avance jusqu'au signet suivant.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4982" /> - <location filename="../ViewManager/ViewManager.py" line="4969" /> + <location filename="../ViewManager/ViewManager.py" line="4992" /> + <location filename="../ViewManager/ViewManager.py" line="4979" /> <source>Previous Bookmark</source> <translation>Signet précédent</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4971" /> + <location filename="../ViewManager/ViewManager.py" line="4981" /> <source>&Previous Bookmark</source> <translation>Signet &précédent</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4973" /> + <location filename="../ViewManager/ViewManager.py" line="4983" /> <source>Ctrl+PgUp</source> <comment>Bookmark|Previous</comment> <translation>Ctrl+PgUp</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4985" /> + <location filename="../ViewManager/ViewManager.py" line="4995" /> <source><b>Previous Bookmark</b><p>Go to previous bookmark of the current editor.</p></source> <translation><b>Signet précédent</b><p>Remonte au signet précédent.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5007" /> - <location filename="../ViewManager/ViewManager.py" line="4995" /> + <location filename="../ViewManager/ViewManager.py" line="5017" /> + <location filename="../ViewManager/ViewManager.py" line="5005" /> <source>Clear Bookmarks</source> <translation>Supprimer les signets</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4996" /> + <location filename="../ViewManager/ViewManager.py" line="5006" /> <source>&Clear Bookmarks</source> <translation>S&upprimer les signets</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4998" /> + <location filename="../ViewManager/ViewManager.py" line="5008" /> <source>Alt+Ctrl+C</source> <comment>Bookmark|Clear</comment> <translation>Alt+Ctrl+C</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5010" /> + <location filename="../ViewManager/ViewManager.py" line="5020" /> <source><b>Clear Bookmarks</b><p>Clear bookmarks of all editors.</p></source> <translation><b>Supprimer les signets</b><p>Supprime tous les signets de tous les éditeurs ouverts.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5029" /> - <location filename="../ViewManager/ViewManager.py" line="5020" /> + <location filename="../ViewManager/ViewManager.py" line="5039" /> + <location filename="../ViewManager/ViewManager.py" line="5030" /> <source>Goto Syntax Error</source> <translation>Aller à l'erreur de syntaxe suivante</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5022" /> - <source>&Goto Syntax Error</source> - <translation>Aller à l'erreur de s&yntaxe suivante</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="5032" /> + <source>&Goto Syntax Error</source> + <translation>Aller à l'erreur de s&yntaxe suivante</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="5042" /> <source><b>Goto Syntax Error</b><p>Go to next syntax error of the current editor.</p></source> <translation><b>Aller à l'erreur de syntaxe suivante</b><p>Avance jusqu'à l'erreur de syntaxe suivante.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5050" /> - <location filename="../ViewManager/ViewManager.py" line="5042" /> + <location filename="../ViewManager/ViewManager.py" line="5060" /> + <location filename="../ViewManager/ViewManager.py" line="5052" /> <source>Clear Syntax Errors</source> <translation>Effacer les erreurs de syntaxe</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5043" /> - <source>Clear &Syntax Errors</source> - <translation>E&ffacer les erreurs de syntaxe</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="5053" /> + <source>Clear &Syntax Errors</source> + <translation>E&ffacer les erreurs de syntaxe</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="5063" /> <source><b>Clear Syntax Errors</b><p>Clear syntax errors of all editors.</p></source> <translation><b>Effacer les erreurs de syntaxe</b><p>Supprime tous les flags d'erreurs de syntaxe de tous les éditeurs ouverts.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5072" /> - <location filename="../ViewManager/ViewManager.py" line="5063" /> + <location filename="../ViewManager/ViewManager.py" line="5082" /> + <location filename="../ViewManager/ViewManager.py" line="5073" /> <source>Next warning message</source> <translation>Message d'avertissement suivant</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5065" /> - <source>&Next warning message</source> - <translation>Message d'avertisseme&nt suivant</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="5075" /> + <source>&Next warning message</source> + <translation>Message d'avertisseme&nt suivant</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="5085" /> <source><b>Next warning message</b><p>Go to next line of the current editor having a pyflakes warning.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5095" /> - <location filename="../ViewManager/ViewManager.py" line="5086" /> + <location filename="../ViewManager/ViewManager.py" line="5105" /> + <location filename="../ViewManager/ViewManager.py" line="5096" /> <source>Previous warning message</source> <translation>Message d'avertissement précédente</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5088" /> - <source>&Previous warning message</source> - <translation>Message d'avertissement &précédente</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="5098" /> + <source>&Previous warning message</source> + <translation>Message d'avertissement &précédente</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="5108" /> <source><b>Previous warning message</b><p>Go to previous line of the current editor having a pyflakes warning.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5117" /> - <location filename="../ViewManager/ViewManager.py" line="5109" /> + <location filename="../ViewManager/ViewManager.py" line="5127" /> + <location filename="../ViewManager/ViewManager.py" line="5119" /> <source>Clear Warning Messages</source> <translation>Vider messages d'avertissement</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5110" /> - <source>Clear &Warning Messages</source> - <translation>Vider messages d'&avertissement</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="5120" /> + <source>Clear &Warning Messages</source> + <translation>Vider messages d'&avertissement</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="5130" /> <source><b>Clear Warning Messages</b><p>Clear pyflakes warning messages of all editors.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5139" /> - <location filename="../ViewManager/ViewManager.py" line="5130" /> + <location filename="../ViewManager/ViewManager.py" line="5149" /> + <location filename="../ViewManager/ViewManager.py" line="5140" /> <source>Next uncovered line</source> <translation>Ligne non executée suivante</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5132" /> - <source>&Next uncovered line</source> - <translation>Ligne non executée &suivante</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="5142" /> + <source>&Next uncovered line</source> + <translation>Ligne non executée &suivante</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="5152" /> <source><b>Next uncovered line</b><p>Go to next line of the current editor marked as not covered.</p></source> <translation><b>Ligne non executée suivante</b><p>Avance jusqu'à la prochaine ligne de l'éditeur marquée comme "jamais executée" par le code coverage.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5162" /> - <location filename="../ViewManager/ViewManager.py" line="5153" /> + <location filename="../ViewManager/ViewManager.py" line="5172" /> + <location filename="../ViewManager/ViewManager.py" line="5163" /> <source>Previous uncovered line</source> <translation>Ligne non executée précédente</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5155" /> - <source>&Previous uncovered line</source> - <translation>Ligne non executée &précédente</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="5165" /> + <source>&Previous uncovered line</source> + <translation>Ligne non executée &précédente</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="5175" /> <source><b>Previous uncovered line</b><p>Go to previous line of the current editor marked as not covered.</p></source> <translation><b>Ligne non executée précédente</b><p>Retourne à la dernière ligne de l'éditeur marquée comme "jamais executée" par le code coverage.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5185" /> - <location filename="../ViewManager/ViewManager.py" line="5176" /> + <location filename="../ViewManager/ViewManager.py" line="5195" /> + <location filename="../ViewManager/ViewManager.py" line="5186" /> <source>Next Task</source> <translation>Tâche suivante</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5178" /> - <source>&Next Task</source> - <translation>Tâche suiva&nte</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="5188" /> + <source>&Next Task</source> + <translation>Tâche suiva&nte</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="5198" /> <source><b>Next Task</b><p>Go to next line of the current editor having a task.</p></source> <translation><b>Tâche suivante</b><p>Avance jusqu'à la prochaine ligne ayant une tâche dans l'éditeur courant.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5207" /> - <location filename="../ViewManager/ViewManager.py" line="5198" /> + <location filename="../ViewManager/ViewManager.py" line="5217" /> + <location filename="../ViewManager/ViewManager.py" line="5208" /> <source>Previous Task</source> <translation>Tâche précédente</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5200" /> - <source>&Previous Task</source> - <translation>Tâche &précédente</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="5210" /> + <source>&Previous Task</source> + <translation>Tâche &précédente</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="5220" /> <source><b>Previous Task</b><p>Go to previous line of the current editor having a task.</p></source> <translation><b>Tâche précédente</b><p>Remonte jusqu'à la tâche précédente dans l'éditeur courant.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5230" /> - <location filename="../ViewManager/ViewManager.py" line="5221" /> + <location filename="../ViewManager/ViewManager.py" line="5240" /> + <location filename="../ViewManager/ViewManager.py" line="5231" /> <source>Next Change</source> <translation>Modification suivante</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5223" /> - <source>&Next Change</source> - <translation>Modificatio&n suivante</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="5233" /> + <source>&Next Change</source> + <translation>Modificatio&n suivante</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="5243" /> <source><b>Next Change</b><p>Go to next line of the current editor having a change marker.</p></source> <translation><b>Modification suivante</b><p>Aller à la ligne suivante ayant un marquer de modification sur l'éditeur courant. </p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5253" /> - <location filename="../ViewManager/ViewManager.py" line="5244" /> + <location filename="../ViewManager/ViewManager.py" line="5263" /> + <location filename="../ViewManager/ViewManager.py" line="5254" /> <source>Previous Change</source> <translation>Modification précédente</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5246" /> - <source>&Previous Change</source> - <translation>Modification &précédente</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="5256" /> + <source>&Previous Change</source> + <translation>Modification &précédente</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="5266" /> <source><b>Previous Change</b><p>Go to previous line of the current editor having a change marker.</p></source> <translation><b>Modification précédente </b><p>Aller à la ligne précédente ayant un marqueur de modification dans l'éditeur courant.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5277" /> - <location filename="../ViewManager/ViewManager.py" line="5275" /> + <location filename="../ViewManager/ViewManager.py" line="5287" /> + <location filename="../ViewManager/ViewManager.py" line="5285" /> <source>&Bookmarks</source> <translation>&Signets</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5321" /> - <location filename="../ViewManager/ViewManager.py" line="5319" /> + <location filename="../ViewManager/ViewManager.py" line="5331" /> + <location filename="../ViewManager/ViewManager.py" line="5329" /> <source>Bookmarks</source> <translation>Signets</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5355" /> + <location filename="../ViewManager/ViewManager.py" line="5365" /> <source>Check spelling</source> <translation>Vérification orthographique</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5357" /> + <location filename="../ViewManager/ViewManager.py" line="5367" /> <source>Check &spelling...</source> <translation>&Vérification orthographique...</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5359" /> + <location filename="../ViewManager/ViewManager.py" line="5369" /> <source>Shift+F7</source> <comment>Spelling|Spell Check</comment> <translation>Shift+F7</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5368" /> + <location filename="../ViewManager/ViewManager.py" line="5378" /> <source>Perform spell check of current editor</source> <translation>Effectue la vérification orthographique dans l'éditeur courant</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5373" /> - <source><b>Check spelling</b><p>Perform a spell check of the current editor.</p></source> - <translation type="unfinished" /> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="5383" /> - <source>Automatic spell checking</source> - <translation>Vérification orthographique automatique</translation> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="5385" /> - <source>&Automatic spell checking</source> - <translation>Vérification orthographique &automatique</translation> + <source><b>Check spelling</b><p>Perform a spell check of the current editor.</p></source> + <translation type="unfinished" /> </message> <message> <location filename="../ViewManager/ViewManager.py" line="5393" /> + <source>Automatic spell checking</source> + <translation>Vérification orthographique automatique</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="5395" /> + <source>&Automatic spell checking</source> + <translation>Vérification orthographique &automatique</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="5403" /> <source>(De-)Activate automatic spell checking</source> <translation>Active/Désactive la vérification orthographique automatique</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5398" /> + <location filename="../ViewManager/ViewManager.py" line="5408" /> <source><b>Automatic spell checking</b><p>Activate or deactivate the automatic spell checking function of all editors.</p></source> <translation><b>Vérification orthographique</b><p>Active ou désactive la vérification orthographique automatique dans tous les éditeurs.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5432" /> + <location filename="../ViewManager/ViewManager.py" line="5442" /> <source>Edit Dictionary</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5435" /> + <location filename="../ViewManager/ViewManager.py" line="5445" /> <source>Project Word List</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5439" /> + <location filename="../ViewManager/ViewManager.py" line="5449" /> <source>Project Exception List</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5444" /> + <location filename="../ViewManager/ViewManager.py" line="5454" /> <source>User Word List</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5448" /> + <location filename="../ViewManager/ViewManager.py" line="5458" /> <source>User Exception List</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5469" /> - <location filename="../ViewManager/ViewManager.py" line="5467" /> + <location filename="../ViewManager/ViewManager.py" line="5479" /> + <location filename="../ViewManager/ViewManager.py" line="5477" /> <source>Spelling</source> <translation>Orthographe</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5492" /> + <location filename="../ViewManager/ViewManager.py" line="5502" /> <source>Open Files</source> <translation type="unfinished">Ouvrir Fichiers</translation> </message> <message> + <location filename="../ViewManager/ViewManager.py" line="5531" /> <location filename="../ViewManager/ViewManager.py" line="5521" /> - <location filename="../ViewManager/ViewManager.py" line="5511" /> <source>Open Remote Files</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5578" /> + <location filename="../ViewManager/ViewManager.py" line="5588" /> <source>File Modified</source> <translation>Fichier Modifié</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5579" /> + <location filename="../ViewManager/ViewManager.py" line="5589" /> <source><p>The file <b>{0}</b> has unsaved changes.</p></source> <translation><p>Le fichier <b>{0}</b> a des modifications non enregistrées. </p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6078" /> + <location filename="../ViewManager/ViewManager.py" line="6090" /> <source>Line: {0:5}</source> <translation>Ligne: {0:5}</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6084" /> + <location filename="../ViewManager/ViewManager.py" line="6096" /> <source>Pos: {0:5}</source> <translation>Position: {0:5}</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6104" /> + <location filename="../ViewManager/ViewManager.py" line="6116" /> <source>Language: {0}</source> <translation>Langage : {0}</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6113" /> + <location filename="../ViewManager/ViewManager.py" line="6125" /> <source>EOL Mode: {0}</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6641" /> - <location filename="../ViewManager/ViewManager.py" line="6598" /> + <location filename="../ViewManager/ViewManager.py" line="6668" /> + <location filename="../ViewManager/ViewManager.py" line="6625" /> <source>&Clear</source> <translation>&Effacer</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6635" /> + <location filename="../ViewManager/ViewManager.py" line="6662" /> <source>&Add</source> <translation>&Ajouter</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6638" /> + <location filename="../ViewManager/ViewManager.py" line="6665" /> <source>&Edit...</source> <translation>&Editer...</translation> </message> <message> + <location filename="../ViewManager/ViewManager.py" line="7735" /> + <location filename="../ViewManager/ViewManager.py" line="7721" /> + <location filename="../ViewManager/ViewManager.py" line="7689" /> + <source>Edit Spelling Dictionary</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="7692" /> + <source><p>The spelling dictionary file <b>{0}</b> could not be read.</p><p>Reason: {1}</p></source> + <translation type="unfinished" /> + </message> + <message> <location filename="../ViewManager/ViewManager.py" line="7708" /> - <location filename="../ViewManager/ViewManager.py" line="7694" /> - <location filename="../ViewManager/ViewManager.py" line="7662" /> - <source>Edit Spelling Dictionary</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="7665" /> - <source><p>The spelling dictionary file <b>{0}</b> could not be read.</p><p>Reason: {1}</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="7681" /> <source>Editing {0}</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="7697" /> + <location filename="../ViewManager/ViewManager.py" line="7724" /> <source><p>The spelling dictionary file <b>{0}</b> could not be written.</p><p>Reason: {1}</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="7711" /> + <location filename="../ViewManager/ViewManager.py" line="7738" /> <source>The spelling dictionary was saved successfully.</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5522" /> + <location filename="../ViewManager/ViewManager.py" line="5532" /> <source>You must be connected to a remote eric-ide server. Aborting...</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6820" /> + <location filename="../ViewManager/ViewManager.py" line="6847" /> <source>Clear Editor</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6821" /> + <location filename="../ViewManager/ViewManager.py" line="6848" /> <source>Do you really want to delete all text of the current editor?</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="8241" /> - <location filename="../ViewManager/ViewManager.py" line="8224" /> + <location filename="../ViewManager/ViewManager.py" line="8268" /> + <location filename="../ViewManager/ViewManager.py" line="8251" /> <source>File System Watcher Error</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="8225" /> + <location filename="../ViewManager/ViewManager.py" line="8252" /> <source><p>The operating system resources for file system watches are exhausted. This limit should be increased. On a Linux system you should <ul><li>sudo nano /etc/sysctl.conf</li><li>add to the bottom "fs.inotify.max_user_instances = 1024"</li><li>save and close the editor</li><li>sudo sysctl -p</li></ul></p><p>Error Message: {0}</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="8242" /> + <location filename="../ViewManager/ViewManager.py" line="8269" /> <source>The file system watcher reported an error with code <b>{0}</b>.</p><p>Error Message: {1}</p></source> <translation type="unfinished" /> </message> @@ -99589,54 +99602,54 @@ <context> <name>VirtualenvManager</name> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="317" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="319" /> <source>Add Virtual Environment</source> <translation>Ajouter environnement virtuel</translation> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="318" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="320" /> <source>A virtual environment named <b>{0}</b> exists already. Shall it be replaced?</source> <translation>Un environnement virtuel nommé <b>{0}</b> existe déjà. Faut il le remplacer ?</translation> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="355" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="357" /> <source>Change Virtual Environment</source> <translation>Modifier l'environnement virtuel</translation> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="388" /> - <location filename="../VirtualEnv/VirtualenvManager.py" line="356" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="390" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="358" /> <source>A virtual environment named <b>{0}</b> does not exist. Aborting!</source> <translation type="unfinished" /> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="387" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="389" /> <source>Rename Virtual Environment</source> <translation>Renommer l'environnement virtuel</translation> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="479" /> - <location filename="../VirtualEnv/VirtualenvManager.py" line="412" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="481" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="414" /> <source>{0} - {1}</source> <translation>{0} - {1}</translation> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="419" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="421" /> <source>Delete Virtual Environments</source> <translation>Supprimer les environnements virtuels</translation> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="420" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="422" /> <source>Do you really want to delete these virtual environments?</source> <translation>Voulez-vous vraiment supprimer ces environnements virtuels ?</translation> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="486" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="488" /> <source>Remove Virtual Environments</source> <translation>Supprimer les environnements virtuels</translation> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="487" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="489" /> <source>Do you really want to remove these virtual environments?</source> <translation>Voulez-vous vraiment supprimer ces environnements virtuels ?</translation> </message> @@ -99644,7 +99657,7 @@ <context> <name>VirtualenvManagerDialog</name> <message> - <location filename="../VirtualEnv/VirtualenvManagerWidgets.py" line="442" /> + <location filename="../VirtualEnv/VirtualenvManagerWidgets.py" line="448" /> <source>Manage Virtual Environments</source> <translation>Gérer les environnements virtuels</translation> </message> @@ -99767,7 +99780,7 @@ <context> <name>VirtualenvManagerWindow</name> <message> - <location filename="../VirtualEnv/VirtualenvManagerWidgets.py" line="482" /> + <location filename="../VirtualEnv/VirtualenvManagerWidgets.py" line="488" /> <source>Manage Virtual Environments</source> <translation type="unfinished">Gérer les environnements virtuels</translation> </message>
--- a/src/eric7/i18n/eric7_it.ts Wed Oct 16 17:38:35 2024 +0200 +++ b/src/eric7/i18n/eric7_it.ts Wed Oct 16 17:39:40 2024 +0200 @@ -1638,27 +1638,27 @@ <context> <name>AssistantJedi</name> <message> - <location filename="../JediInterface/AssistantJedi.py" line="230" /> + <location filename="../JediInterface/AssistantJedi.py" line="236" /> <source>Refactoring</source> <translation type="unfinished" /> </message> <message> - <location filename="../JediInterface/AssistantJedi.py" line="232" /> - <source>Rename Variable</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../JediInterface/AssistantJedi.py" line="235" /> - <source>Extract Variable</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../JediInterface/AssistantJedi.py" line="238" /> + <source>Rename Variable</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../JediInterface/AssistantJedi.py" line="241" /> + <source>Extract Variable</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../JediInterface/AssistantJedi.py" line="244" /> <source>Inline Variable</source> <translation type="unfinished" /> </message> <message> - <location filename="../JediInterface/AssistantJedi.py" line="242" /> + <location filename="../JediInterface/AssistantJedi.py" line="248" /> <source>Extract Function</source> <translation type="unfinished" /> </message> @@ -9250,19 +9250,35 @@ <translation>Non connesso</translation> </message> <message> - <location filename="../Debugger/DebugServer.py" line="2109" /> + <location filename="../Debugger/DebugServer.py" line="2110" /> <source>Passive debug connection received </source> <translation type="unfinished" /> </message> <message> - <location filename="../Debugger/DebugServer.py" line="2123" /> + <location filename="../Debugger/DebugServer.py" line="2119" /> + <source>Passive debug connection received while not in passive mode. +</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Debugger/DebugServer.py" line="2125" /> + <source>Debug Client Connection</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Debugger/DebugServer.py" line="2126" /> + <source>Passive debug client connection received while not in passive mode. Enable this mode on the 'Debugger General' configuration page. The connection will be rejected.</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Debugger/DebugServer.py" line="2141" /> <source>Passive debug connection closed </source> <translation type="unfinished" /> </message> <message> - <location filename="../Debugger/DebugServer.py" line="2254" /> + <location filename="../Debugger/DebugServer.py" line="2272" /> <source><project></source> <translation type="unfinished" /> </message> @@ -10213,25 +10229,13 @@ </message> <message> <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" /> - <source>Enables the passive debug mode</source> - <translation>Abilita la modalità di debug passivo</translation> + <source>Debugger Type:</source> + <translation>Tipo Debugger:</translation> </message> <message> <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" /> - <source><b>Passive Debugger Enabled</b> -<p>This enables the passive debugging mode. In this mode the debug client (the script) connects to the debug server (the IDE). The script is started outside the IDE. This way mod_python or Zope scripts can be debugged.</p></source> - <translation><b>Debugger passivo attivato</b> -<p>Attiva la modaiità di debug passivo. In questa modalità, il clinet (lo script) si connette al server di debug (l'IDE). Lo script rimarrà esterno all'IDE. In questo modo mod_python o uno script Zope possono essere debuggati.</p></translation> - </message> - <message> - <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" /> - <source>Passive Debugger Enabled</source> - <translation>Debugger passivo attivato</translation> - </message> - <message> - <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" /> - <source>Debug Server Port:</source> - <translation>Porta del Debug server:</translation> + <source>Select the debugger type of the backend</source> + <translation>Seleziona il tipo di backend del debugger</translation> </message> <message> <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" /> @@ -10247,13 +10251,8 @@ </message> <message> <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" /> - <source>Debugger Type:</source> - <translation>Tipo Debugger:</translation> - </message> - <message> - <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" /> - <source>Select the debugger type of the backend</source> - <translation>Seleziona il tipo di backend del debugger</translation> + <source>Debug Server Port:</source> + <translation>Porta del Debug server:</translation> </message> <message> <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" /> @@ -10585,50 +10584,64 @@ <source>Automatically view source code</source> <translation>Vista codice sorgente in automatico</translation> </message> + <message> + <source>Enables the passive debug mode</source> + <translation type="vanished">Abilita la modalità di debug passivo</translation> + </message> + <message> + <source><b>Passive Debugger Enabled</b> +<p>This enables the passive debugging mode. In this mode the debug client (the script) connects to the debug server (the IDE). The script is started outside the IDE. This way mod_python or Zope scripts can be debugged.</p></source> + <translation type="vanished"><b>Debugger passivo attivato</b> +<p>Attiva la modaiità di debug passivo. In questa modalità, il clinet (lo script) si connette al server di debug (l'IDE). Lo script rimarrà esterno all'IDE. In questo modo mod_python o uno script Zope possono essere debuggati.</p></translation> + </message> + <message> + <source>Passive Debugger Enabled</source> + <translation type="vanished">Debugger passivo attivato</translation> + </message> </context> <context> <name>DebuggerInterfacePython</name> <message> - <location filename="../Debugger/DebuggerInterfacePython.py" line="727" /> - <location filename="../Debugger/DebuggerInterfacePython.py" line="704" /> - <location filename="../Debugger/DebuggerInterfacePython.py" line="611" /> - <location filename="../Debugger/DebuggerInterfacePython.py" line="565" /> - <location filename="../Debugger/DebuggerInterfacePython.py" line="446" /> - <location filename="../Debugger/DebuggerInterfacePython.py" line="423" /> - <location filename="../Debugger/DebuggerInterfacePython.py" line="346" /> - <location filename="../Debugger/DebuggerInterfacePython.py" line="322" /> - <location filename="../Debugger/DebuggerInterfacePython.py" line="259" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="728" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="705" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="609" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="563" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="445" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="422" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="345" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="321" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="258" /> <source>Start Debugger</source> <translation type="unfinished">Avvia Debugger</translation> </message> <message> - <location filename="../Debugger/DebuggerInterfacePython.py" line="566" /> - <location filename="../Debugger/DebuggerInterfacePython.py" line="260" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="564" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="259" /> <source><p>No suitable Python3 environment configured.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Debugger/DebuggerInterfacePython.py" line="728" /> - <location filename="../Debugger/DebuggerInterfacePython.py" line="705" /> - <location filename="../Debugger/DebuggerInterfacePython.py" line="612" /> - <location filename="../Debugger/DebuggerInterfacePython.py" line="447" /> - <location filename="../Debugger/DebuggerInterfacePython.py" line="424" /> - <location filename="../Debugger/DebuggerInterfacePython.py" line="323" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="729" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="706" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="610" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="446" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="423" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="322" /> <source><p>The debugger backend could not be started.</p></source> <translation type="unfinished"><p>Il debugger non può essere avviato.</p></translation> </message> <message> - <location filename="../Debugger/DebuggerInterfacePython.py" line="347" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="346" /> <source><p>Remote debugging is configured but no command for remote login was given.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Debugger/DebuggerInterfacePython.py" line="1659" /> - <source>Debug Protocol Error</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Debugger/DebuggerInterfacePython.py" line="1660" /> + <source>Debug Protocol Error</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Debugger/DebuggerInterfacePython.py" line="1661" /> <source><p>The response received from the debugger backend 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" /> </message> @@ -62110,7 +62123,7 @@ <context> <name>PreviewModel</name> <message> - <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="478" /> + <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="506" /> <source>Variable Name</source> <translation type="unfinished" /> </message> @@ -62992,8 +63005,8 @@ <translation>Rinomina File</translation> </message> <message> - <location filename="../Project/Project.py" line="8058" /> - <location filename="../Project/Project.py" line="3901" /> + <location filename="../Project/Project.py" line="8055" /> + <location filename="../Project/Project.py" line="3898" /> <location filename="../Project/Project.py" line="2398" /> <source><p>The file <b>{0}</b> already exists. Overwrite it?</p></source> <translation><p>Il file <b>{0}</b> esiste già. Sovrascriverlo ?</p></translation> @@ -63127,40 +63140,40 @@ <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="8044" /> - <location filename="../Project/Project.py" line="8038" /> - <location filename="../Project/Project.py" line="8028" /> - <location filename="../Project/Project.py" line="3886" /> - <location filename="../Project/Project.py" line="3876" /> + <location filename="../Project/Project.py" line="8041" /> + <location filename="../Project/Project.py" line="8035" /> + <location filename="../Project/Project.py" line="8025" /> + <location filename="../Project/Project.py" line="3883" /> + <location filename="../Project/Project.py" line="3873" /> <location filename="../Project/Project.py" line="3652" /> <source>Project Files (*.epj)</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="3900" /> - <location filename="../Project/Project.py" line="3884" /> + <location filename="../Project/Project.py" line="3897" /> + <location filename="../Project/Project.py" line="3881" /> <source>Save Project</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="3939" /> + <location filename="../Project/Project.py" line="3936" /> <source>Close Project</source> <translation>Chiudi progetto</translation> </message> <message> - <location filename="../Project/Project.py" line="3940" /> + <location filename="../Project/Project.py" line="3937" /> <source>The current project has unsaved changes.</source> <translation>Il progetto attuale ha delle modifiche non salvate.</translation> </message> <message> - <location filename="../Project/Project.py" line="4140" /> - <location filename="../Project/Project.py" line="4104" /> + <location filename="../Project/Project.py" line="4137" /> + <location filename="../Project/Project.py" line="4101" /> <source>Syntax Errors Detected</source> <translation type="unfinished" /> </message> <message numerus="yes"> - <location filename="../Project/Project.py" line="4141" /> - <location filename="../Project/Project.py" line="4105" /> + <location filename="../Project/Project.py" line="4138" /> + <location filename="../Project/Project.py" line="4102" /> <source>The project contains %n file(s) with syntax errors.</source> <translation> <numerusform>Il progetto contiene %n file con errori di sintassi.</numerusform> @@ -63168,1268 +63181,1268 @@ </translation> </message> <message> - <location filename="../Project/Project.py" line="4799" /> + <location filename="../Project/Project.py" line="4796" /> <source>New project</source> <translation>Nuovo progetto</translation> </message> <message> - <location filename="../Project/Project.py" line="4801" /> + <location filename="../Project/Project.py" line="4798" /> <source>&New...</source> <translation>&Nuovo...</translation> </message> <message> - <location filename="../Project/Project.py" line="4807" /> + <location filename="../Project/Project.py" line="4804" /> <source>Generate a new project</source> <translation>Genera un nuovo progetto</translation> </message> <message> - <location filename="../Project/Project.py" line="4809" /> + <location filename="../Project/Project.py" line="4806" /> <source><b>New...</b><p>This opens a dialog for entering the info for a new project.</p></source> <translation><b>Nuovo...</b><p>Apre un dialogo per l'inserimento delle informazioni per un nuovo progetto.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4819" /> + <location filename="../Project/Project.py" line="4816" /> <source>Open project</source> <translation>Apri progetto</translation> </message> <message> - <location filename="../Project/Project.py" line="4821" /> + <location filename="../Project/Project.py" line="4818" /> <source>&Open...</source> <translation>&Apri...</translation> </message> <message> - <location filename="../Project/Project.py" line="4827" /> + <location filename="../Project/Project.py" line="4824" /> <source>Open an existing project</source> <translation>Apri un progetto esistente</translation> </message> <message> - <location filename="../Project/Project.py" line="4829" /> + <location filename="../Project/Project.py" line="4826" /> <source><b>Open...</b><p>This opens an existing project.</p></source> <translation><b>Apri...</b><p>Apre un progetto esistente.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4835" /> + <location filename="../Project/Project.py" line="4832" /> <source>Open remote project</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="4837" /> + <location filename="../Project/Project.py" line="4834" /> <source>Open (Remote)...</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="4843" /> + <location filename="../Project/Project.py" line="4840" /> <source>Open an existing remote project</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="4845" /> + <location filename="../Project/Project.py" line="4842" /> <source><b>Open (Remote)...</b><p>This opens an existing remote project.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="4854" /> + <location filename="../Project/Project.py" line="4851" /> <source>Reload project</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="4856" /> + <location filename="../Project/Project.py" line="4853" /> <source>Re&load</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="4862" /> + <location filename="../Project/Project.py" line="4859" /> <source>Reload the current project</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="4864" /> + <location filename="../Project/Project.py" line="4861" /> <source><b>Reload</b><p>This reloads the current project.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="4870" /> + <location filename="../Project/Project.py" line="4867" /> <source>Close project</source> <translation>Chiudi progetto</translation> </message> <message> - <location filename="../Project/Project.py" line="4872" /> + <location filename="../Project/Project.py" line="4869" /> <source>&Close</source> <translation>&Chiudi</translation> </message> <message> - <location filename="../Project/Project.py" line="4878" /> + <location filename="../Project/Project.py" line="4875" /> <source>Close the current project</source> <translation>Chiudi il progetto corrente</translation> </message> <message> - <location filename="../Project/Project.py" line="4880" /> + <location filename="../Project/Project.py" line="4877" /> <source><b>Close</b><p>This closes the current project.</p></source> <translation><b>Chiudi</b><p>Chiude l'attuale progetto.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4886" /> + <location filename="../Project/Project.py" line="4883" /> <source>Save project</source> <translation>Salva progetto</translation> </message> <message> - <location filename="../Project/Project.py" line="5183" /> - <location filename="../Project/Project.py" line="4888" /> + <location filename="../Project/Project.py" line="5180" /> + <location filename="../Project/Project.py" line="4885" /> <source>&Save</source> <translation>&Salva</translation> </message> <message> - <location filename="../Project/Project.py" line="4894" /> + <location filename="../Project/Project.py" line="4891" /> <source>Save the current project</source> <translation>Salva il progetto corrente</translation> </message> <message> - <location filename="../Project/Project.py" line="4896" /> + <location filename="../Project/Project.py" line="4893" /> <source><b>Save</b><p>This saves the current project.</p></source> <translation><b>Salva</b><p>Salva l'attuale progetto.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4902" /> + <location filename="../Project/Project.py" line="4899" /> <source>Save project as</source> <translation>Salva progetto come</translation> </message> <message> - <location filename="../Project/Project.py" line="4904" /> + <location filename="../Project/Project.py" line="4901" /> <source>Save &as...</source> <translation>S&alva come...</translation> </message> <message> - <location filename="../Project/Project.py" line="4910" /> + <location filename="../Project/Project.py" line="4907" /> <source>Save the current project to a new file</source> <translation>Salva il progetto attuale come un nuovo file</translation> </message> <message> - <location filename="../Project/Project.py" line="4912" /> + <location filename="../Project/Project.py" line="4909" /> <source><b>Save as</b><p>This saves the current project to a new file.</p></source> <translation><b>Salva as </b><p>Salva l'attuale progetto come nuovo.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4921" /> + <location filename="../Project/Project.py" line="4918" /> <source>Save project as (Remote)</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="4923" /> + <location filename="../Project/Project.py" line="4920" /> <source>Save as (Remote)...</source> <translation type="unfinished" /> </message> <message> + <location filename="../Project/Project.py" line="4927" /> + <source>Save the current project to a new remote file</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../Project/Project.py" line="4930" /> - <source>Save the current project to a new remote file</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="4933" /> <source><b>Save as (Remote)</b><p>This saves the current project to a new remote file.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="4949" /> + <location filename="../Project/Project.py" line="4946" /> <source>Add files to project</source> <translation>Aggiungi file al progetto</translation> </message> <message> - <location filename="../Project/Project.py" line="4951" /> + <location filename="../Project/Project.py" line="4948" /> <source>Add &files...</source> <translation>Aggiungi &files...</translation> </message> <message> - <location filename="../Project/Project.py" line="4957" /> + <location filename="../Project/Project.py" line="4954" /> <source>Add files to the current project</source> <translation>Aggiungi file al progetto corrente</translation> </message> <message> - <location filename="../Project/Project.py" line="4959" /> + <location filename="../Project/Project.py" line="4956" /> <source><b>Add files...</b><p>This opens a dialog for adding files to the current project. The place to add is determined by the file extension.</p></source> <translation><b>Aggiungi files...</b><p>Apre un dialogo per aggiungere file al progetto corrente. Il posto dove aggiungerli è determinato dall'estensione.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4970" /> + <location filename="../Project/Project.py" line="4967" /> <source>Add directory to project</source> <translation>Aggiungi directory al progetto</translation> </message> <message> - <location filename="../Project/Project.py" line="4972" /> + <location filename="../Project/Project.py" line="4969" /> <source>Add directory...</source> <translation>Aggiungi directory...</translation> </message> <message> + <location filename="../Project/Project.py" line="4976" /> + <source>Add a directory to the current project</source> + <translation>Aggiungi una directory al progetto corrente</translation> + </message> + <message> <location filename="../Project/Project.py" line="4979" /> - <source>Add a directory to the current project</source> - <translation>Aggiungi una directory al progetto corrente</translation> - </message> - <message> - <location filename="../Project/Project.py" line="4982" /> <source><b>Add directory...</b><p>This opens a dialog for adding a directory to the current project.</p></source> <translation><b>Aggiungi directory...</b><p>Apre un dialogo per aggiungere una directory al progetto corrente.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4992" /> + <location filename="../Project/Project.py" line="4989" /> <source>Add translation to project</source> <translation>Aggiungi le traduzioni al progetto</translation> </message> <message> - <location filename="../Project/Project.py" line="4994" /> + <location filename="../Project/Project.py" line="4991" /> <source>Add &translation...</source> <translation>Aggiungi &traduzione...</translation> </message> <message> + <location filename="../Project/Project.py" line="4998" /> + <source>Add a translation to the current project</source> + <translation>Aggiungi le traduzioni al progetto corrente</translation> + </message> + <message> <location filename="../Project/Project.py" line="5001" /> - <source>Add a translation to the current project</source> - <translation>Aggiungi le traduzioni al progetto corrente</translation> - </message> - <message> - <location filename="../Project/Project.py" line="5004" /> <source><b>Add translation...</b><p>This opens a dialog for add a translation to the current project.</p></source> <translation><b>Aggiungi traduzione...</b><p>Apre un dialogo per aggiungere una traduzione al progetto corrente.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5014" /> + <location filename="../Project/Project.py" line="5011" /> <source>Search new files</source> <translation>Cerca nuovi file</translation> </message> <message> - <location filename="../Project/Project.py" line="5015" /> + <location filename="../Project/Project.py" line="5012" /> <source>Searc&h new files...</source> <translation>Cerca &nuovi file...</translation> </message> <message> - <location filename="../Project/Project.py" line="5021" /> + <location filename="../Project/Project.py" line="5018" /> <source>Search new files in the project directory.</source> <translation>Cerca nei file nella directory del progetto.</translation> </message> <message> - <location filename="../Project/Project.py" line="5023" /> + <location filename="../Project/Project.py" line="5020" /> <source><b>Search new files...</b><p>This searches for new files (sources, forms, ...) in the project directory and registered subdirectories.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5033" /> + <location filename="../Project/Project.py" line="5030" /> <source>Search Project File</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5034" /> + <location filename="../Project/Project.py" line="5031" /> <source>Search Project File...</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5035" /> + <location filename="../Project/Project.py" line="5032" /> <source>Alt+Ctrl+P</source> <comment>Project|Search Project File</comment> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5040" /> + <location filename="../Project/Project.py" line="5037" /> <source>Search for a file in the project list of files.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5042" /> + <location filename="../Project/Project.py" line="5039" /> <source><b>Search Project File</b><p>This searches for a file in the project list of files.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5051" /> + <location filename="../Project/Project.py" line="5048" /> <source>Project properties</source> <translation>Proprietà del progetto</translation> </message> <message> - <location filename="../Project/Project.py" line="5053" /> + <location filename="../Project/Project.py" line="5050" /> <source>&Properties...</source> <translation>&Proprietà...</translation> </message> <message> - <location filename="../Project/Project.py" line="5059" /> + <location filename="../Project/Project.py" line="5056" /> <source>Show the project properties</source> <translation>Mostra le proprietà del progetto</translation> </message> <message> - <location filename="../Project/Project.py" line="5061" /> + <location filename="../Project/Project.py" line="5058" /> <source><b>Properties...</b><p>This shows a dialog to edit the project properties.</p></source> <translation><b>Proprietà...</b><p>Mosta un dialogo per modificare le proprietà di un progetto.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5070" /> + <location filename="../Project/Project.py" line="5067" /> <source>User project properties</source> <translation>Proprietà utente del progetto</translation> </message> <message> - <location filename="../Project/Project.py" line="5072" /> + <location filename="../Project/Project.py" line="5069" /> <source>&User Properties...</source> <translation>Proprietà &utente...</translation> </message> <message> + <location filename="../Project/Project.py" line="5076" /> + <source>Show the user specific project properties</source> + <translation>Mostra le proprietà del multiprogetto specifiche dell'utente</translation> + </message> + <message> <location filename="../Project/Project.py" line="5079" /> - <source>Show the user specific project properties</source> - <translation>Mostra le proprietà del multiprogetto specifiche dell'utente</translation> - </message> - <message> - <location filename="../Project/Project.py" line="5082" /> <source><b>User Properties...</b><p>This shows a dialog to edit the user specific project properties.</p></source> <translation><b>Proprietà utente...</b><p>Mosta un dialogo per modificare le proprietà utente di un progetto.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5092" /> + <location filename="../Project/Project.py" line="5089" /> <source>Filetype Associations</source> <translation>Associazione tipi file</translation> </message> <message> - <location filename="../Project/Project.py" line="5093" /> + <location filename="../Project/Project.py" line="5090" /> <source>Filetype Associations...</source> <translation>Associazione tipi file...</translation> </message> <message> + <location filename="../Project/Project.py" line="5097" /> + <source>Show the project file type associations</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../Project/Project.py" line="5100" /> - <source>Show the project file type associations</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="5103" /> <source><b>Filetype Associations...</b><p>This shows a dialog to edit the file type associations of the project. These associations determine the type (source, form, interface, protocol or others) with a filename pattern. They are used when adding a file to the project and when performing a search for new files.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5116" /> + <location filename="../Project/Project.py" line="5113" /> <source>Lexer Associations</source> <translation>Associazioni analizzatore lessicale</translation> </message> <message> - <location filename="../Project/Project.py" line="5117" /> + <location filename="../Project/Project.py" line="5114" /> <source>Lexer Associations...</source> <translation>Associazioni analizzatore lessicale...</translation> </message> <message> + <location filename="../Project/Project.py" line="5121" /> + <source>Show the project lexer associations (overriding defaults)</source> + <translation>Mostra le associazioni degli analizzatori lessicali del progetto (sovrascrivendo i default)</translation> + </message> + <message> <location filename="../Project/Project.py" line="5124" /> - <source>Show the project lexer associations (overriding defaults)</source> - <translation>Mostra le associazioni degli analizzatori lessicali del progetto (sovrascrivendo i default)</translation> - </message> - <message> - <location filename="../Project/Project.py" line="5127" /> <source><b>Lexer Associations...</b><p>This shows a dialog to edit the lexer associations of the project. These associations override the global lexer associations. Lexers are used to highlight the editor text.</p></source> <translation><b>Associazioni analizzatore lessicale...</b><p>Mostra un dialogo per modificare le associazioni degli analizzatori lessicali dei progetti. Queste associazioni sovrascrivono the impostazioni globali. Gli analizzatori lessicali sono utilizzati per l'evidenziazione del testo nell'editor.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5145" /> + <location filename="../Project/Project.py" line="5142" /> <source>Debugger Properties</source> <translation>Proprietà Debugger</translation> </message> <message> - <location filename="../Project/Project.py" line="5146" /> + <location filename="../Project/Project.py" line="5143" /> <source>Debugger &Properties...</source> <translation>&Proprietà Debugger...</translation> </message> <message> - <location filename="../Project/Project.py" line="5152" /> + <location filename="../Project/Project.py" line="5149" /> <source>Show the debugger properties</source> <translation>Mostra le proprietàd el debugger</translation> </message> <message> - <location filename="../Project/Project.py" line="5154" /> + <location filename="../Project/Project.py" line="5151" /> <source><b>Debugger Properties...</b><p>This shows a dialog to edit project specific debugger settings.</p></source> <translation><b>Proprietà debugger...</b><p>Mostra un dialogo per modificare le impostazioni specifiche per il progetto del debugger.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5164" /> + <location filename="../Project/Project.py" line="5161" /> <source>Load</source> <translation>Carica</translation> </message> <message> - <location filename="../Project/Project.py" line="5165" /> + <location filename="../Project/Project.py" line="5162" /> <source>&Load</source> <translation>&Carica</translation> </message> <message> - <location filename="../Project/Project.py" line="5171" /> + <location filename="../Project/Project.py" line="5168" /> <source>Load the debugger properties</source> <translation>Carica le proprietàd el debugger</translation> </message> <message> - <location filename="../Project/Project.py" line="5173" /> + <location filename="../Project/Project.py" line="5170" /> <source><b>Load Debugger Properties</b><p>This loads the project specific debugger settings.</p></source> <translation><b>Carica le proprietà del debugger</b><p>Carica le proprietà del debugger specifiche per il progetto.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5182" /> + <location filename="../Project/Project.py" line="5179" /> <source>Save</source> <translation>Salva</translation> </message> <message> - <location filename="../Project/Project.py" line="5189" /> + <location filename="../Project/Project.py" line="5186" /> <source>Save the debugger properties</source> <translation>Salva le proprietà del debugger</translation> </message> <message> - <location filename="../Project/Project.py" line="5191" /> + <location filename="../Project/Project.py" line="5188" /> <source><b>Save Debugger Properties</b><p>This saves the project specific debugger settings.</p></source> <translation><b>Salva le proprietà del debugger</b><p>Salva le proprietà del debugger specifiche per il progetto.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5200" /> + <location filename="../Project/Project.py" line="5197" /> <source>Delete</source> <translation>Cancella</translation> </message> <message> - <location filename="../Project/Project.py" line="5201" /> + <location filename="../Project/Project.py" line="5198" /> <source>&Delete</source> <translation>&Cancella</translation> </message> <message> - <location filename="../Project/Project.py" line="5207" /> + <location filename="../Project/Project.py" line="5204" /> <source>Delete the debugger properties</source> <translation>Cancella le proprietà del debugger</translation> </message> <message> - <location filename="../Project/Project.py" line="5209" /> + <location filename="../Project/Project.py" line="5206" /> <source><b>Delete Debugger Properties</b><p>This deletes the file containing the project specific debugger settings.</p></source> <translation><b>Cancella le proprietà del debugger</b><p>Cancella il file che contiene le proprietà del debugger specifiche per il progetto.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5219" /> + <location filename="../Project/Project.py" line="5216" /> <source>Reset</source> <translation>Resetta</translation> </message> <message> - <location filename="../Project/Project.py" line="5220" /> + <location filename="../Project/Project.py" line="5217" /> <source>&Reset</source> <translation>&Resetta</translation> </message> <message> - <location filename="../Project/Project.py" line="5226" /> + <location filename="../Project/Project.py" line="5223" /> <source>Reset the debugger properties</source> <translation>Resetta le proprietà del debugger</translation> </message> <message> - <location filename="../Project/Project.py" line="5228" /> + <location filename="../Project/Project.py" line="5225" /> <source><b>Reset Debugger Properties</b><p>This resets the project specific debugger settings.</p></source> <translation><b>Azzera le proprietà del debugger</b><p>Azzera le proprietà del debugger specifiche per il progetto.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5244" /> - <location filename="../Project/Project.py" line="5243" /> + <location filename="../Project/Project.py" line="5241" /> + <location filename="../Project/Project.py" line="5240" /> <source>Load session</source> <translation>Carica sessione</translation> </message> <message> - <location filename="../Project/Project.py" line="5250" /> + <location filename="../Project/Project.py" line="5247" /> <source>Load the projects session file.</source> <translation>Carica il file di sessione del progetto.</translation> </message> <message> - <location filename="../Project/Project.py" line="5252" /> + <location filename="../Project/Project.py" line="5249" /> <source><b>Load session</b><p>This loads the projects session file. The session consists of the following data.<br>- all open source files<br>- all breakpoint<br>- the commandline arguments<br>- the working directory<br>- the exception reporting flag</p></source> <translation><b>Carica sessione</b><p>Questo carica la sessione del progetto.La sessione è composta dai seguenti dati.<br>- tutti i file sorgente aperti<br>- tutti i breakpoint<br>- gli argomenti alla riga di comango<br>- la directory di lavoro<br>- il flag di segnalazione delle eccezioni</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5268" /> - <location filename="../Project/Project.py" line="5267" /> + <location filename="../Project/Project.py" line="5265" /> + <location filename="../Project/Project.py" line="5264" /> <source>Save session</source> <translation>Salva sessione</translation> </message> <message> - <location filename="../Project/Project.py" line="5274" /> + <location filename="../Project/Project.py" line="5271" /> <source>Save the projects session file.</source> <translation>Salva il file sessione del progetto.</translation> </message> <message> - <location filename="../Project/Project.py" line="5276" /> + <location filename="../Project/Project.py" line="5273" /> <source><b>Save session</b><p>This saves the projects session file. The session consists of the following data.<br>- all open source files<br>- all breakpoint<br>- the commandline arguments<br>- the working directory<br>- the exception reporting flag</p></source> <translation><b>Salva sessione</b><p>Questo carica la sessione del progetto.La sessione è composta dai seguenti dati.<br>- tutti i file sorgente aperti<br>- tutti i breakpoint<br>- gli argomenti alla riga di comango<br>- la directory di lavoro<br>- il flag di segnalazione delle eccezioni</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5292" /> - <location filename="../Project/Project.py" line="5291" /> + <location filename="../Project/Project.py" line="5289" /> + <location filename="../Project/Project.py" line="5288" /> <source>Delete session</source> <translation>Cancella sessione</translation> </message> <message> - <location filename="../Project/Project.py" line="5298" /> + <location filename="../Project/Project.py" line="5295" /> <source>Delete the projects session file.</source> <translation>Cancella il file di sessione del progetto.</translation> </message> <message> - <location filename="../Project/Project.py" line="5300" /> + <location filename="../Project/Project.py" line="5297" /> <source><b>Delete session</b><p>This deletes the projects session file</p></source> <translation><b>Cancella sessione</b><p>Cancella la sessione del progetto.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5315" /> + <location filename="../Project/Project.py" line="5312" /> <source>Code Metrics</source> <translation>Statistiche codice</translation> </message> <message> - <location filename="../Project/Project.py" line="5316" /> + <location filename="../Project/Project.py" line="5313" /> <source>&Code Metrics...</source> <translation>Statistiche &codice...</translation> </message> <message> + <location filename="../Project/Project.py" line="5320" /> + <source>Show some code metrics for the project.</source> + <translation>Mostra alcune statistiche del codice per il progetto.</translation> + </message> + <message> <location filename="../Project/Project.py" line="5323" /> - <source>Show some code metrics for the project.</source> - <translation>Mostra alcune statistiche del codice per il progetto.</translation> - </message> - <message> - <location filename="../Project/Project.py" line="5326" /> <source><b>Code Metrics...</b><p>This shows some code metrics for all Python files in the project.</p></source> <translation><b>Statistiche codice...</b><p>Mostra alcune statistiche di tutti i file Python nel progetto.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5336" /> + <location filename="../Project/Project.py" line="5333" /> <source>Python Code Coverage</source> <translation>Analisi codice Python</translation> </message> <message> - <location filename="../Project/Project.py" line="5337" /> + <location filename="../Project/Project.py" line="5334" /> <source>Code Co&verage...</source> <translation>A&nalisi codice...</translation> </message> <message> + <location filename="../Project/Project.py" line="5341" /> + <source>Show code coverage information for the project.</source> + <translation>Mostra le informazioni dell'analisi del codice del progetto.</translation> + </message> + <message> <location filename="../Project/Project.py" line="5344" /> - <source>Show code coverage information for the project.</source> - <translation>Mostra le informazioni dell'analisi del codice del progetto.</translation> - </message> - <message> - <location filename="../Project/Project.py" line="5347" /> <source><b>Code Coverage...</b><p>This shows the code coverage information for all Python files in the project.</p></source> <translation><b>Analisi codice...</b><p>Mostra le analisi del codice di tutti i file Python nel progetto.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="6781" /> - <location filename="../Project/Project.py" line="6768" /> - <location filename="../Project/Project.py" line="5357" /> + <location filename="../Project/Project.py" line="6778" /> + <location filename="../Project/Project.py" line="6765" /> + <location filename="../Project/Project.py" line="5354" /> <source>Profile Data</source> <translation>Profilazione dati</translation> </message> <message> - <location filename="../Project/Project.py" line="5358" /> + <location filename="../Project/Project.py" line="5355" /> <source>&Profile Data...</source> <translation>&Profilazione dati...</translation> </message> <message> + <location filename="../Project/Project.py" line="5362" /> + <source>Show profiling data for the project.</source> + <translation>Mostra la profilazione dei dati per il progetto.</translation> + </message> + <message> <location filename="../Project/Project.py" line="5365" /> - <source>Show profiling data for the project.</source> - <translation>Mostra la profilazione dei dati per il progetto.</translation> - </message> - <message> - <location filename="../Project/Project.py" line="5368" /> <source><b>Profile Data...</b><p>This shows the profiling data for the project.</p></source> <translation><b>Profilazione dati...</b><p>Mostra la profilazione dei dati per il progetto.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="6833" /> - <location filename="../Project/Project.py" line="5383" /> + <location filename="../Project/Project.py" line="6830" /> + <location filename="../Project/Project.py" line="5380" /> <source>Application Diagram</source> <translation>Diagrammi dell'applicazione</translation> </message> <message> - <location filename="../Project/Project.py" line="5384" /> + <location filename="../Project/Project.py" line="5381" /> <source>&Application Diagram...</source> <translation>Diagramma dell' &Applicazione...</translation> </message> <message> + <location filename="../Project/Project.py" line="5388" /> + <source>Show a diagram of the project.</source> + <translation>Mostra un diagramma del progetto.</translation> + </message> + <message> <location filename="../Project/Project.py" line="5391" /> - <source>Show a diagram of the project.</source> - <translation>Mostra un diagramma del progetto.</translation> - </message> - <message> - <location filename="../Project/Project.py" line="5394" /> <source><b>Application Diagram...</b><p>This shows a diagram of the project.</p></source> <translation><b>Diagrammi dell'applicazione...</b><p>Mostra un diagramma del progetto.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5403" /> + <location filename="../Project/Project.py" line="5400" /> <source>Load Diagram</source> <translation type="unfinished">Carico Diagramma</translation> </message> <message> - <location filename="../Project/Project.py" line="5404" /> + <location filename="../Project/Project.py" line="5401" /> <source>&Load Diagram...</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5410" /> + <location filename="../Project/Project.py" line="5407" /> <source>Load a diagram from file.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5412" /> + <location filename="../Project/Project.py" line="5409" /> <source><b>Load Diagram...</b><p>This loads a diagram from file.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="7001" /> - <location filename="../Project/Project.py" line="6946" /> - <location filename="../Project/Project.py" line="5427" /> + <location filename="../Project/Project.py" line="6998" /> + <location filename="../Project/Project.py" line="6943" /> + <location filename="../Project/Project.py" line="5424" /> <source>Create Package List</source> <translation>Crea lista del package</translation> </message> <message> - <location filename="../Project/Project.py" line="5429" /> + <location filename="../Project/Project.py" line="5426" /> <source>Create &Package List</source> <translation type="unfinished">Crea un &archivio per il plugin</translation> </message> <message> + <location filename="../Project/Project.py" line="5433" /> + <source>Create an initial PKGLIST file for an eric plugin.</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../Project/Project.py" line="5436" /> - <source>Create an initial PKGLIST file for an eric plugin.</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="5439" /> <source><b>Create Package List</b><p>This creates an initial list of files to include in an eric plugin archive. The list is created from the project file.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="7071" /> - <location filename="../Project/Project.py" line="5450" /> + <location filename="../Project/Project.py" line="7068" /> + <location filename="../Project/Project.py" line="5447" /> <source>Create Plugin Archives</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5452" /> + <location filename="../Project/Project.py" line="5449" /> <source>Create Plugin &Archives</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5458" /> + <location filename="../Project/Project.py" line="5455" /> <source>Create eric plugin archive files.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5460" /> + <location filename="../Project/Project.py" line="5457" /> <source><b>Create Plugin Archives</b><p>This creates eric plugin archive files using the list of files given in a PKGLIST* file. The archive name is built from the main script name if not designated in the package list file.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5472" /> + <location filename="../Project/Project.py" line="5469" /> <source>Create Plugin Archives (Snapshot)</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5474" /> + <location filename="../Project/Project.py" line="5471" /> <source>Create Plugin Archives (&Snapshot)</source> <translation type="unfinished" /> </message> <message> + <location filename="../Project/Project.py" line="5478" /> + <source>Create eric plugin archive files (snapshot releases).</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../Project/Project.py" line="5481" /> - <source>Create eric plugin archive files (snapshot releases).</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="5484" /> <source><b>Create Plugin Archives (Snapshot)</b><p>This creates eric plugin archive files using the list of files given in the PKGLIST* file. The archive name is built from the main script name if not designated in the package list file. The version entry of the main script is modified to reflect a snapshot release.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="7513" /> - <location filename="../Project/Project.py" line="7484" /> - <location filename="../Project/Project.py" line="7438" /> - <location filename="../Project/Project.py" line="7390" /> - <location filename="../Project/Project.py" line="5503" /> + <location filename="../Project/Project.py" line="7510" /> + <location filename="../Project/Project.py" line="7481" /> + <location filename="../Project/Project.py" line="7435" /> + <location filename="../Project/Project.py" line="7387" /> + <location filename="../Project/Project.py" line="5500" /> <source>Execute Make</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5504" /> + <location filename="../Project/Project.py" line="5501" /> <source>&Execute Make</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5510" /> + <location filename="../Project/Project.py" line="5507" /> <source>Perform a 'make' run.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5512" /> + <location filename="../Project/Project.py" line="5509" /> <source><b>Execute Make</b><p>This performs a 'make' run to rebuild the configured target.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="7490" /> - <location filename="../Project/Project.py" line="5522" /> + <location filename="../Project/Project.py" line="7487" /> + <location filename="../Project/Project.py" line="5519" /> <source>Test for Changes</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5523" /> + <location filename="../Project/Project.py" line="5520" /> <source>&Test for Changes</source> <translation type="unfinished" /> </message> <message> + <location filename="../Project/Project.py" line="5527" /> + <source>Question 'make', if a rebuild is needed.</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../Project/Project.py" line="5530" /> - <source>Question 'make', if a rebuild is needed.</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="5533" /> <source><b>Test for Changes</b><p>This questions 'make', if a rebuild of the configured target is necessary.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5551" /> + <location filename="../Project/Project.py" line="5548" /> <source>Create SBOM File</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5552" /> + <location filename="../Project/Project.py" line="5549" /> <source>Create &SBOM File</source> <translation type="unfinished" /> </message> <message> + <location filename="../Project/Project.py" line="5556" /> + <source>Create a SBOM file of the project dependencies.</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../Project/Project.py" line="5559" /> - <source>Create a SBOM file of the project dependencies.</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="5562" /> <source><b>Create SBOM File</b><p>This allows the creation of a SBOM file of the project dependencies. This may be based on various input sources and will be saved as a CycloneDX SBOM file.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5573" /> + <location filename="../Project/Project.py" line="5570" /> <source>Clear Byte Code Caches</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5574" /> + <location filename="../Project/Project.py" line="5571" /> <source>Clear Byte Code &Caches</source> <translation type="unfinished" /> </message> <message> + <location filename="../Project/Project.py" line="5578" /> + <source>Clear the byte code caches of the project.</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../Project/Project.py" line="5581" /> - <source>Clear the byte code caches of the project.</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="5584" /> <source><b>Clear Byte Code Caches</b><p>This deletes all directories containing byte code cache files.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5600" /> + <location filename="../Project/Project.py" line="5597" /> <source>About Black</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5601" /> + <location filename="../Project/Project.py" line="5598" /> <source>&Black</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5607" /> + <location filename="../Project/Project.py" line="5604" /> <source>Show some information about 'Black'.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5609" /> + <location filename="../Project/Project.py" line="5606" /> <source><b>Black</b><p>This shows some information about the installed 'Black' tool.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5621" /> + <location filename="../Project/Project.py" line="5618" /> <source>Format Code</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5622" /> + <location filename="../Project/Project.py" line="5619" /> <source>&Format Code</source> <translation type="unfinished" /> </message> <message> + <location filename="../Project/Project.py" line="5626" /> + <source>Format the project sources with 'Black'.</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../Project/Project.py" line="5629" /> - <source>Format the project sources with 'Black'.</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="5632" /> <source><b>Format Code</b><p>This shows a dialog to enter parameters for the formatting run and reformats the project sources using 'Black'.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5644" /> + <location filename="../Project/Project.py" line="5641" /> <source>Check Code Formatting</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5645" /> + <location filename="../Project/Project.py" line="5642" /> <source>&Check Code Formatting</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5652" /> + <location filename="../Project/Project.py" line="5649" /> <source>Check, if the project sources need to be reformatted with 'Black'.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5657" /> + <location filename="../Project/Project.py" line="5654" /> <source><b>Check Code Formatting</b><p>This shows a dialog to enter parameters for the format check run and performs a check, if the project sources need to be reformatted using 'Black'.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5670" /> + <location filename="../Project/Project.py" line="5667" /> <source>Code Formatting Diff</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5671" /> + <location filename="../Project/Project.py" line="5668" /> <source>Code Formatting &Diff</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5678" /> + <location filename="../Project/Project.py" line="5675" /> <source>Generate a unified diff of potential project source reformatting with 'Black'.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5684" /> + <location filename="../Project/Project.py" line="5681" /> <source><b>Diff Code Formatting</b><p>This shows a dialog to enter parameters for the format diff run and generates a unified diff of potential project source reformatting using 'Black'.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5849" /> - <location filename="../Project/Project.py" line="5799" /> - <location filename="../Project/Project.py" line="5798" /> - <location filename="../Project/Project.py" line="5698" /> - <location filename="../Project/Project.py" line="5697" /> + <location filename="../Project/Project.py" line="5846" /> + <location filename="../Project/Project.py" line="5796" /> + <location filename="../Project/Project.py" line="5795" /> + <location filename="../Project/Project.py" line="5695" /> + <location filename="../Project/Project.py" line="5694" /> <source>Configure</source> <translation type="unfinished">Configura</translation> </message> <message> - <location filename="../Project/Project.py" line="5705" /> + <location filename="../Project/Project.py" line="5702" /> <source>Enter the parameters for formatting the project sources with 'Black'.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5710" /> + <location filename="../Project/Project.py" line="5707" /> <source><b>Configure</b><p>This shows a dialog to enter the parameters for formatting the project sources with 'Black'.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5726" /> + <location filename="../Project/Project.py" line="5723" /> <source>About isort</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5727" /> + <location filename="../Project/Project.py" line="5724" /> <source>&isort</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5733" /> + <location filename="../Project/Project.py" line="5730" /> <source>Show some information about 'isort'.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5735" /> + <location filename="../Project/Project.py" line="5732" /> <source><b>isort</b><p>This shows some information about the installed 'isort' tool.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5748" /> - <location filename="../Project/Project.py" line="5747" /> + <location filename="../Project/Project.py" line="5745" /> + <location filename="../Project/Project.py" line="5744" /> <source>Sort Imports</source> <translation type="unfinished" /> </message> <message> + <location filename="../Project/Project.py" line="5752" /> + <source>Sort the import statements of the project sources with 'isort'.</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../Project/Project.py" line="5755" /> - <source>Sort the import statements of the project sources with 'isort'.</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="5758" /> <source><b>Sort Imports</b><p>This shows a dialog to enter parameters for the imports sorting run and sorts the import statements of the project sources using 'isort'.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5772" /> - <location filename="../Project/Project.py" line="5771" /> + <location filename="../Project/Project.py" line="5769" /> + <location filename="../Project/Project.py" line="5768" /> <source>Imports Sorting Diff</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5779" /> + <location filename="../Project/Project.py" line="5776" /> <source>Generate a unified diff of potential project source imports resorting with 'isort'.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5785" /> + <location filename="../Project/Project.py" line="5782" /> <source><b>Imports Sorting Diff</b><p>This shows a dialog to enter parameters for the imports sorting diff run and generates a unified diff of potential project source changes using 'isort'.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5806" /> + <location filename="../Project/Project.py" line="5803" /> <source>Enter the parameters for resorting the project sources import statements with 'isort'.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5812" /> + <location filename="../Project/Project.py" line="5809" /> <source><b>Configure</b><p>This shows a dialog to enter the parameters for resorting the import statements of the project sources with 'isort'.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5828" /> + <location filename="../Project/Project.py" line="5825" /> <source>Install Project</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5829" /> + <location filename="../Project/Project.py" line="5826" /> <source>&Install Project</source> <translation type="unfinished" /> </message> <message> + <location filename="../Project/Project.py" line="5833" /> + <source>Install the project into the embedded environment.</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../Project/Project.py" line="5836" /> - <source>Install the project into the embedded environment.</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="5839" /> <source><b>Install Project</b><p>This installs the project into the embedded virtual environment in editable mode (i.e. development mode).</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5850" /> + <location filename="../Project/Project.py" line="5847" /> <source>&Configure</source> <translation type="unfinished" /> </message> <message> + <location filename="../Project/Project.py" line="5854" /> + <source>Configure the embedded environment.</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../Project/Project.py" line="5857" /> - <source>Configure the embedded environment.</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="5860" /> <source><b>Configure</b><p>This opens a dialog to configure the embedded virtual environment of the project.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5870" /> + <location filename="../Project/Project.py" line="5867" /> <source>Upgrade</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5871" /> + <location filename="../Project/Project.py" line="5868" /> <source>&Upgrade</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5877" /> + <location filename="../Project/Project.py" line="5874" /> <source>Upgrade the embedded environment.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5879" /> + <location filename="../Project/Project.py" line="5876" /> <source><b>Upgrade</b><p>This opens a dialog to enter the parameters to upgrade the embedded virtual environment of the project.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5891" /> + <location filename="../Project/Project.py" line="5888" /> <source>Recreate</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5892" /> + <location filename="../Project/Project.py" line="5889" /> <source>&Recreate</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5898" /> + <location filename="../Project/Project.py" line="5895" /> <source>Recreate the embedded environment.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5900" /> + <location filename="../Project/Project.py" line="5897" /> <source><b>Recreate</b><p>This opens a dialog to enter the parameters to recreate the embedded virtual environment of the project. The existing environment is cleared first.</p></source> <translation type="unfinished" /> </message> <message> + <location filename="../Project/Project.py" line="5929" /> + <source>&Project</source> + <translation>&Progetto</translation> + </message> + <message> + <location filename="../Project/Project.py" line="5930" /> + <source>Open &Recent Projects</source> + <translation>Apri un progetto &recente</translation> + </message> + <message> <location filename="../Project/Project.py" line="5932" /> - <source>&Project</source> - <translation>&Progetto</translation> + <source>Session</source> + <translation>Sessione</translation> </message> <message> <location filename="../Project/Project.py" line="5933" /> - <source>Open &Recent Projects</source> - <translation>Apri un progetto &recente</translation> - </message> - <message> - <location filename="../Project/Project.py" line="5935" /> - <source>Session</source> - <translation>Sessione</translation> + <source>Debugger</source> + <translation>Debugger</translation> + </message> + <message> + <location filename="../Project/Project.py" line="5934" /> + <source>Embedded Environment</source> + <translation type="unfinished" /> </message> <message> <location filename="../Project/Project.py" line="5936" /> - <source>Debugger</source> - <translation>Debugger</translation> + <source>Project-T&ools</source> + <translation type="unfinished" /> </message> <message> <location filename="../Project/Project.py" line="5937" /> - <source>Embedded Environment</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="5939" /> - <source>Project-T&ools</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="5940" /> <source>&Version Control</source> <translation>Controllo di &Versione</translation> </message> <message> - <location filename="../Project/Project.py" line="5944" /> + <location filename="../Project/Project.py" line="5941" /> <source>Chec&k</source> <translation>&Controlla</translation> </message> <message> + <location filename="../Project/Project.py" line="5943" /> + <source>Code &Formatting</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Project/Project.py" line="5945" /> + <source>Sho&w</source> + <translation>&Mostra</translation> + </message> + <message> <location filename="../Project/Project.py" line="5946" /> - <source>Code &Formatting</source> - <translation type="unfinished" /> + <source>&Diagrams</source> + <translation>&Diagrammi</translation> + </message> + <message> + <location filename="../Project/Project.py" line="5947" /> + <source>Pac&kagers</source> + <translation>Pac&kagers</translation> </message> <message> <location filename="../Project/Project.py" line="5948" /> - <source>Sho&w</source> - <translation>&Mostra</translation> - </message> - <message> - <location filename="../Project/Project.py" line="5949" /> - <source>&Diagrams</source> - <translation>&Diagrammi</translation> + <source>Source &Documentation</source> + <translation>&Documentazione sorgenti</translation> </message> <message> <location filename="../Project/Project.py" line="5950" /> - <source>Pac&kagers</source> - <translation>Pac&kagers</translation> + <source>Make</source> + <translation type="unfinished" /> </message> <message> <location filename="../Project/Project.py" line="5951" /> - <source>Source &Documentation</source> - <translation>&Documentazione sorgenti</translation> - </message> - <message> - <location filename="../Project/Project.py" line="5953" /> - <source>Make</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="5954" /> <source>Other Tools</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6116" /> - <location filename="../Project/Project.py" line="6114" /> + <location filename="../Project/Project.py" line="6113" /> + <location filename="../Project/Project.py" line="6111" /> <source>Project</source> <translation>Progetto</translation> </message> <message> - <location filename="../Project/Project.py" line="6198" /> + <location filename="../Project/Project.py" line="6195" /> <source>&Clear</source> <translation>Pulis&ci</translation> </message> <message> - <location filename="../Project/Project.py" line="6395" /> + <location filename="../Project/Project.py" line="6392" /> <source>Search New Files</source> <translation>Cerca Nuovi File</translation> </message> <message> - <location filename="../Project/Project.py" line="6396" /> + <location filename="../Project/Project.py" line="6393" /> <source>There were no new files found to be added.</source> <translation>Non sono stati trovati file da aggiungere.</translation> </message> <message> - <location filename="../Project/Project.py" line="6557" /> - <location filename="../Project/Project.py" line="6544" /> + <location filename="../Project/Project.py" line="6554" /> + <location filename="../Project/Project.py" line="6541" /> <source>Version Control System</source> <translation>Version Control System</translation> </message> <message> - <location filename="../Project/Project.py" line="6545" /> + <location filename="../Project/Project.py" line="6542" /> <source><p>The selected VCS <b>{0}</b> could not be found. <br/>Reverting override.</p><p>{1}</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6558" /> + <location filename="../Project/Project.py" line="6555" /> <source><p>The selected VCS <b>{0}</b> could not be found.<br/>Disabling version control.</p><p>{1}</p></source> <translation><p>VCS selezionato <b>{0}</b>non trovato.<br>Disabilito il controllo di versione.</p><p>{1}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="6715" /> + <location filename="../Project/Project.py" line="6712" /> <source>Coverage Data</source> <translation>Dati Analisi</translation> </message> <message> - <location filename="../Project/Project.py" line="6769" /> - <location filename="../Project/Project.py" line="6716" /> + <location filename="../Project/Project.py" line="6766" /> + <location filename="../Project/Project.py" line="6713" /> <source>There is no main script defined for the current project. Aborting</source> <translation>Non c'è uno script principale definito per il progetto. Esco</translation> </message> <message> - <location filename="../Project/Project.py" line="6728" /> + <location filename="../Project/Project.py" line="6725" /> <source>Code Coverage</source> <translation>Analisi codice</translation> </message> <message> - <location filename="../Project/Project.py" line="6729" /> + <location filename="../Project/Project.py" line="6726" /> <source>Please select a coverage file</source> <translation>Per favore seleziona un file per l'analisi</translation> </message> <message> - <location filename="../Project/Project.py" line="6782" /> + <location filename="../Project/Project.py" line="6779" /> <source>Please select a profile file</source> <translation>Per favore seleziona un file per la profilazione</translation> </message> <message> - <location filename="../Project/Project.py" line="6834" /> + <location filename="../Project/Project.py" line="6831" /> <source>Include module names?</source> <translation>Includi i nomi dei moduli ?</translation> </message> <message> - <location filename="../Project/Project.py" line="6947" /> + <location filename="../Project/Project.py" line="6944" /> <source><p>The file <b>PKGLIST</b> already exists.</p><p>Overwrite it?</p></source> <translation><p>Il file <b>PKGLIST</b> esiste già.</p><p>Sovrascriverlo?</p></translation> </message> <message> - <location filename="../Project/Project.py" line="7002" /> + <location filename="../Project/Project.py" line="6999" /> <source><p>The file <b>PKGLIST</b> could not be created.</p><p>Reason: {0}</p></source> <translation><p>Il file <b>PKGLIST</b> non può essere creato.<br />Motivo: {0}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="7298" /> - <location filename="../Project/Project.py" line="7254" /> - <location filename="../Project/Project.py" line="7204" /> - <location filename="../Project/Project.py" line="7193" /> - <location filename="../Project/Project.py" line="7175" /> - <location filename="../Project/Project.py" line="7142" /> - <location filename="../Project/Project.py" line="7112" /> - <location filename="../Project/Project.py" line="7084" /> - <location filename="../Project/Project.py" line="7054" /> - <location filename="../Project/Project.py" line="7040" /> - <location filename="../Project/Project.py" line="7023" /> + <location filename="../Project/Project.py" line="7295" /> + <location filename="../Project/Project.py" line="7251" /> + <location filename="../Project/Project.py" line="7201" /> + <location filename="../Project/Project.py" line="7190" /> + <location filename="../Project/Project.py" line="7172" /> + <location filename="../Project/Project.py" line="7139" /> + <location filename="../Project/Project.py" line="7109" /> + <location filename="../Project/Project.py" line="7081" /> + <location filename="../Project/Project.py" line="7051" /> + <location filename="../Project/Project.py" line="7037" /> + <location filename="../Project/Project.py" line="7020" /> <source>Create Plugin Archive</source> <translation>Crea un archivio per il plugin</translation> </message> <message> - <location filename="../Project/Project.py" line="7024" /> + <location filename="../Project/Project.py" line="7021" /> <source>The project does not have a main script defined. Aborting...</source> <translation>Non c'è uno script principale definito per il progetto. Esco...</translation> </message> <message> - <location filename="../Project/Project.py" line="7041" /> + <location filename="../Project/Project.py" line="7038" /> <source>Select package lists:</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="7055" /> + <location filename="../Project/Project.py" line="7052" /> <source><p>No package list files (PKGLIST*) available or selected. Aborting...</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="7063" /> + <location filename="../Project/Project.py" line="7060" /> <source>Creating plugin archives...</source> <translation type="unfinished" /> </message> <message> + <location filename="../Project/Project.py" line="7061" /> + <source>Abort</source> + <translation type="unfinished">Termina</translation> + </message> + <message> <location filename="../Project/Project.py" line="7064" /> - <source>Abort</source> - <translation type="unfinished">Termina</translation> - </message> - <message> - <location filename="../Project/Project.py" line="7067" /> <source>%v/%m Archives</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="7085" /> + <location filename="../Project/Project.py" line="7082" /> <source><p>The file <b>{0}</b> could not be read.</p><p>Reason: {1}</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="7113" /> + <location filename="../Project/Project.py" line="7110" /> <source><p>The file <b>{0}</b> is not ready yet.</p><p>Please rework it and delete the'; initial_list' line of the header.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="7143" /> + <location filename="../Project/Project.py" line="7140" /> <source><p>The eric plugin archive file <b>{0}</b> could not be created.</p><p>Reason: {1}</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="7176" /> + <location filename="../Project/Project.py" line="7173" /> <source><p>The file <b>{0}</b> could not be stored in the archive. Ignoring it.</p><p>Reason: {1}</p></source> <translation><p>Il file <b>{0}</b> non può essere aggiunto all'archivio.Lo ignoro.</p><p>Motivo: {1}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="7194" /> + <location filename="../Project/Project.py" line="7191" /> <source><p>The eric plugin archive files were created with some errors.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="7205" /> + <location filename="../Project/Project.py" line="7202" /> <source><p>The eric plugin archive files were created successfully.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="7255" /> + <location filename="../Project/Project.py" line="7252" /> <source><p>The plugin file <b>{0}</b> could not be read.</p><p>Reason: {1}</p></source> <translation><p>Il file plugin <b>{0}</b> non può essere salvato.<br />Motivo: {1}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="7299" /> + <location filename="../Project/Project.py" line="7296" /> <source><p>The plugin file <b>{0}</b> could not be read.</p> <p>Reason: {1}</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="7391" /> + <location filename="../Project/Project.py" line="7388" /> <source>'Make' is not supported for remote projects. Aborting...</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="7439" /> + <location filename="../Project/Project.py" line="7436" /> <source>The make process did not start.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="7485" /> + <location filename="../Project/Project.py" line="7482" /> <source>The make process crashed.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="7493" /> + <location filename="../Project/Project.py" line="7490" /> <source><p>There are changes that require the configured make target <b>{0}</b> to be rebuilt.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="7498" /> + <location filename="../Project/Project.py" line="7495" /> <source><p>There are changes that require the default make target to be rebuilt.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="7514" /> + <location filename="../Project/Project.py" line="7511" /> <source>The makefile contains errors.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="7944" /> + <location filename="../Project/Project.py" line="7941" /> <source>Interpreter Missing</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="7945" /> + <location filename="../Project/Project.py" line="7942" /> <source>The configured interpreter of the embedded environment does not exist anymore. Shall the environment be upgraded?</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="8026" /> + <location filename="../Project/Project.py" line="8023" /> <source>Open Remote Project</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="8057" /> - <location filename="../Project/Project.py" line="8042" /> + <location filename="../Project/Project.py" line="8054" /> + <location filename="../Project/Project.py" line="8039" /> <source>Save Remote Project</source> <translation type="unfinished" /> </message> @@ -64556,8 +64569,8 @@ <translation>Stato VCS</translation> </message> <message> - <location filename="../Project/ProjectBrowserModel.py" line="922" /> - <location filename="../Project/ProjectBrowserModel.py" line="900" /> + <location filename="../Project/ProjectBrowserModel.py" line="926" /> + <location filename="../Project/ProjectBrowserModel.py" line="904" /> <location filename="../Project/ProjectBrowserModel.py" line="548" /> <location filename="../Project/ProjectBrowserModel.py" line="418" /> <source>local</source> @@ -69046,7 +69059,7 @@ <context> <name>PythonDisViewer</name> <message> - <location filename="../UI/PythonDisViewer.py" line="61" /> + <location filename="../UI/PythonDisViewer.py" line="62" /> <location filename="../UI/PythonDisViewer.ui" line="0" /> <source>Disassembly</source> <translation type="unfinished" /> @@ -69062,160 +69075,160 @@ <translation type="unfinished" /> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="73" /> + <location filename="../UI/PythonDisViewer.py" line="74" /> <source>Line</source> <translation type="unfinished">Linea</translation> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="74" /> - <source>Offset</source> - <translation type="unfinished">Offset</translation> - </message> - <message> <location filename="../UI/PythonDisViewer.py" line="75" /> - <source>Operation</source> - <translation type="unfinished" /> + <source>Offset</source> + <translation type="unfinished">Offset</translation> </message> <message> <location filename="../UI/PythonDisViewer.py" line="76" /> - <source>Parameters</source> + <source>Operation</source> <translation type="unfinished" /> </message> <message> <location filename="../UI/PythonDisViewer.py" line="77" /> + <source>Parameters</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/PythonDisViewer.py" line="78" /> <source>Interpreted Parameters</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="80" /> + <location filename="../UI/PythonDisViewer.py" line="81" /> <source>Key</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="80" /> + <location filename="../UI/PythonDisViewer.py" line="81" /> <source>Value</source> <translation type="unfinished">Valore</translation> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="85" /> + <location filename="../UI/PythonDisViewer.py" line="86" /> <source>Show Code Info</source> <translation type="unfinished" /> </message> <message> + <location filename="../UI/PythonDisViewer.py" line="97" /> + <location filename="../UI/PythonDisViewer.py" line="89" /> + <source>Expand All</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/PythonDisViewer.py" line="99" /> + <location filename="../UI/PythonDisViewer.py" line="90" /> + <source>Collapse All</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/PythonDisViewer.py" line="102" /> + <location filename="../UI/PythonDisViewer.py" line="92" /> + <source>Configure...</source> + <translation type="unfinished">Configura...</translation> + </message> + <message> <location filename="../UI/PythonDisViewer.py" line="96" /> - <location filename="../UI/PythonDisViewer.py" line="88" /> - <source>Expand All</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/PythonDisViewer.py" line="98" /> - <location filename="../UI/PythonDisViewer.py" line="89" /> - <source>Collapse All</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/PythonDisViewer.py" line="101" /> - <location filename="../UI/PythonDisViewer.py" line="91" /> - <source>Configure...</source> - <translation type="unfinished">Configura...</translation> - </message> - <message> - <location filename="../UI/PythonDisViewer.py" line="95" /> <source>Hide</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="448" /> + <location filename="../UI/PythonDisViewer.py" line="455" /> <source>No editor has been opened.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="459" /> + <location filename="../UI/PythonDisViewer.py" line="466" /> <source>The current editor does not contain any source code.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="465" /> + <location filename="../UI/PythonDisViewer.py" line="472" /> <source>The current editor does not contain Python source code.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="509" /> + <location filename="../UI/PythonDisViewer.py" line="516" /> <source>Disassembly of last traceback</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="672" /> + <location filename="../UI/PythonDisViewer.py" line="694" /> <source>Code Object '{0}'</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="784" /> + <location filename="../UI/PythonDisViewer.py" line="806" /> <source>Name</source> <translation type="unfinished">Nome</translation> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="786" /> + <location filename="../UI/PythonDisViewer.py" line="808" /> <source>Filename</source> <translation type="unfinished">Nome file</translation> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="790" /> - <source>First Line</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/PythonDisViewer.py" line="794" /> - <source>Argument Count</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/PythonDisViewer.py" line="799" /> - <source>Positional-only Arguments</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/PythonDisViewer.py" line="805" /> - <source>Keyword-only Arguments</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/PythonDisViewer.py" line="809" /> - <source>Number of Locals</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../UI/PythonDisViewer.py" line="812" /> - <source>Stack Size</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/PythonDisViewer.py" line="814" /> - <source>Flags</source> + <source>First Line</source> <translation type="unfinished" /> </message> <message> <location filename="../UI/PythonDisViewer.py" line="816" /> + <source>Argument Count</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/PythonDisViewer.py" line="821" /> + <source>Positional-only Arguments</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/PythonDisViewer.py" line="827" /> + <source>Keyword-only Arguments</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/PythonDisViewer.py" line="831" /> + <source>Number of Locals</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/PythonDisViewer.py" line="834" /> + <source>Stack Size</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/PythonDisViewer.py" line="836" /> + <source>Flags</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/PythonDisViewer.py" line="838" /> <source>Constants</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="818" /> + <location filename="../UI/PythonDisViewer.py" line="840" /> <source>Names</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="820" /> + <location filename="../UI/PythonDisViewer.py" line="842" /> <source>Variable Names</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="822" /> + <location filename="../UI/PythonDisViewer.py" line="844" /> <source>Free Variables</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="824" /> + <location filename="../UI/PythonDisViewer.py" line="846" /> <source>Cell Variables</source> <translation type="unfinished" /> </message> @@ -74356,32 +74369,32 @@ <context> <name>SessionFile</name> <message> - <location filename="../Sessions/SessionFile.py" line="247" /> + <location filename="../Sessions/SessionFile.py" line="249" /> <source>Save Remote Session</source> <translation type="unfinished" /> </message> <message> - <location filename="../Sessions/SessionFile.py" line="250" /> + <location filename="../Sessions/SessionFile.py" line="252" /> <source>Save Session</source> <translation type="unfinished" /> </message> <message> - <location filename="../Sessions/SessionFile.py" line="258" /> + <location filename="../Sessions/SessionFile.py" line="260" /> <source><p>The session file <b>{0}</b> could not be written.</p><p>Reason: {1}</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Sessions/SessionFile.py" line="282" /> + <location filename="../Sessions/SessionFile.py" line="284" /> <source>Read Remote Session</source> <translation type="unfinished" /> </message> <message> - <location filename="../Sessions/SessionFile.py" line="285" /> + <location filename="../Sessions/SessionFile.py" line="287" /> <source>Read Session</source> <translation type="unfinished" /> </message> <message> - <location filename="../Sessions/SessionFile.py" line="293" /> + <location filename="../Sessions/SessionFile.py" line="295" /> <source><p>The session file <b>{0}</b> could not be read.</p><p>Reason: {1}</p></source> <translation type="unfinished" /> </message> @@ -94586,1052 +94599,1052 @@ <context> <name>ViewManager</name> <message> - <location filename="../ViewManager/ViewManager.py" line="615" /> + <location filename="../ViewManager/ViewManager.py" line="625" /> <source>New</source> <translation>Nuovo</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="617" /> + <location filename="../ViewManager/ViewManager.py" line="627" /> <source>&New</source> <translation>&Nuova</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="619" /> - <source>Ctrl+N</source> - <comment>File|New</comment> - <translation>Ctrl+N</translation> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="626" /> - <source>Open an empty editor window</source> - <translation>Apri una finestra vuota</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="629" /> + <source>Ctrl+N</source> + <comment>File|New</comment> + <translation>Ctrl+N</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="636" /> + <source>Open an empty editor window</source> + <translation>Apri una finestra vuota</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="639" /> <source><b>New</b><p>An empty editor window will be created.</p></source> <translation><b>Nuova</b><p>Verrà creata una nuova finestra vuota.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="638" /> + <location filename="../ViewManager/ViewManager.py" line="648" /> <source>Open</source> <translation>Apri</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="640" /> + <location filename="../ViewManager/ViewManager.py" line="650" /> <source>&Open...</source> <translation>&Apri...</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="642" /> + <location filename="../ViewManager/ViewManager.py" line="652" /> <source>Ctrl+O</source> <comment>File|Open</comment> <translation>Ctrl+O</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="649" /> + <location filename="../ViewManager/ViewManager.py" line="659" /> <source>Open a file</source> <translation>Apri un file</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="652" /> + <location filename="../ViewManager/ViewManager.py" line="662" /> <source><b>Open a file</b><p>You will be asked for the name of a file to be opened in an editor window.</p></source> <translation><b>Apri un file</b><p>Verrà richiesto il nome del file da aprire in una finestra dell'editor.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="663" /> + <location filename="../ViewManager/ViewManager.py" line="673" /> <source>Open (Remote)</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="665" /> - <source>Open (Remote)...</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="672" /> - <source>Open a remote file</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="675" /> + <source>Open (Remote)...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="682" /> + <source>Open a remote file</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="685" /> <source><b>Open a remote file</b><p>You will be asked for the name of a remote file to be opened in an editor window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="689" /> - <location filename="../ViewManager/ViewManager.py" line="687" /> - <source>Reload</source> - <translation type="unfinished">Ricarica</translation> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="696" /> - <source>Reload the current file</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="699" /> + <location filename="../ViewManager/ViewManager.py" line="697" /> + <source>Reload</source> + <translation type="unfinished">Ricarica</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="706" /> + <source>Reload the current file</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="709" /> <source><b>Reload</b><p>Reload the contents of current editor window. If the editor contents was modified, a warning will be issued.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="712" /> + <location filename="../ViewManager/ViewManager.py" line="722" /> <source>Close</source> <translation>Chiudi</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="714" /> + <location filename="../ViewManager/ViewManager.py" line="724" /> <source>&Close</source> <translation>&Chiudi</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="716" /> - <source>Ctrl+W</source> - <comment>File|Close</comment> - <translation>Ctrl+W</translation> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="723" /> - <source>Close the current window</source> - <translation>Chiudi la finestra attuale</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="726" /> - <source><b>Close Window</b><p>Close the current window.</p></source> - <translation><b>Chiudi finestra</b><p>Chiudi la finestra attuale.</b></translation> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="735" /> - <source>Close All</source> - <translation>Chiudi tutti</translation> + <source>Ctrl+W</source> + <comment>File|Close</comment> + <translation>Ctrl+W</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="733" /> + <source>Close the current window</source> + <translation>Chiudi la finestra attuale</translation> </message> <message> <location filename="../ViewManager/ViewManager.py" line="736" /> - <source>Clos&e All</source> - <translation>Chiudi &tutti</translation> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="743" /> - <source>Close all editor windows</source> - <translation>Chiudi tutte le finestre dell'editor</translation> + <source><b>Close Window</b><p>Close the current window.</p></source> + <translation><b>Chiudi finestra</b><p>Chiudi la finestra attuale.</b></translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="745" /> + <source>Close All</source> + <translation>Chiudi tutti</translation> </message> <message> <location filename="../ViewManager/ViewManager.py" line="746" /> + <source>Clos&e All</source> + <translation>Chiudi &tutti</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="753" /> + <source>Close all editor windows</source> + <translation>Chiudi tutte le finestre dell'editor</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="756" /> <source><b>Close All Windows</b><p>Close all editor windows.</p></source> <translation><b>Chiudi tutte le finestre</b><p>Chiudi tutte le finestre dell'editor.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="759" /> + <location filename="../ViewManager/ViewManager.py" line="769" /> <source>Save</source> <translation>Salva</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="761" /> + <location filename="../ViewManager/ViewManager.py" line="771" /> <source>&Save</source> <translation>&Salva</translation> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="316" /> - <location filename="../ViewManager/ViewManager.py" line="763" /> + <location filename="../ViewManager/ViewManager.py" line="773" /> <source>Ctrl+S</source> <comment>File|Save</comment> <translation>Ctrl+S</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="770" /> + <location filename="../ViewManager/ViewManager.py" line="780" /> <source>Save the current file</source> <translation>Salva il file corrente</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="773" /> - <source><b>Save File</b><p>Save the contents of current editor window.</p></source> - <translation><b>Salva fle</b><p>Salva il contenuto della finestra attuale.</p></translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="783" /> + <source><b>Save File</b><p>Save the contents of current editor window.</p></source> + <translation><b>Salva fle</b><p>Salva il contenuto della finestra attuale.</p></translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="793" /> <source>Save as</source> <translation>Salva come</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="785" /> + <location filename="../ViewManager/ViewManager.py" line="795" /> <source>Save &as...</source> <translation>S&alva come...</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="787" /> + <location filename="../ViewManager/ViewManager.py" line="797" /> <source>Shift+Ctrl+S</source> <comment>File|Save As</comment> <translation>Ctrl+Shift+S</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="796" /> + <location filename="../ViewManager/ViewManager.py" line="806" /> <source>Save the current file to a new one</source> <translation>Salva il file attuale come uno nuovo</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="801" /> + <location filename="../ViewManager/ViewManager.py" line="811" /> <source><b>Save File as</b><p>Save the contents of the current editor window to a new file. The file can be entered in a file selection dialog.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="812" /> + <location filename="../ViewManager/ViewManager.py" line="822" /> <source>Save as (Remote)</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="814" /> + <location filename="../ViewManager/ViewManager.py" line="824" /> <source>Save as (Remote)...</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="821" /> + <location filename="../ViewManager/ViewManager.py" line="831" /> <source>Save the current file to a new one on an eric-ide server</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="827" /> + <location filename="../ViewManager/ViewManager.py" line="837" /> <source><b>Save File as (Remote)</b><p>Save the contents of the current editor window to a new file on the connected eric-ide server. The file can be entered in a file selection dialog.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="839" /> + <location filename="../ViewManager/ViewManager.py" line="849" /> <source>Save Copy</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="841" /> - <source>Save &Copy...</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="848" /> - <source>Save a copy of the current file</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="851" /> + <source>Save &Copy...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="858" /> + <source>Save a copy of the current file</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="861" /> <source><b>Save Copy</b><p>Save a copy of the contents of current editor window. The file can be entered in a file selection dialog.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="862" /> + <location filename="../ViewManager/ViewManager.py" line="872" /> <source>Save all</source> <translation>Salva tutto</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="864" /> - <source>Save a&ll</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="871" /> - <source>Save all files</source> - <translation>Salva tutti i file</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="874" /> + <source>Save a&ll</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="881" /> + <source>Save all files</source> + <translation>Salva tutti i file</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="884" /> <source><b>Save All Files</b><p>Save the contents of all editor windows.</p></source> <translation><b>Salva tutti i file</b><p>Salva il contenuto di tutte le finestre dell'editor.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="886" /> + <location filename="../ViewManager/ViewManager.py" line="896" /> <source>Print</source> <translation>Stampa</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="888" /> + <location filename="../ViewManager/ViewManager.py" line="898" /> <source>&Print</source> <translation>Stam&pa</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="890" /> + <location filename="../ViewManager/ViewManager.py" line="900" /> <source>Ctrl+P</source> <comment>File|Print</comment> <translation>Ctrl+P</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="897" /> + <location filename="../ViewManager/ViewManager.py" line="907" /> <source>Print the current file</source> <translation>Stampa il file attuale</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="900" /> + <location filename="../ViewManager/ViewManager.py" line="910" /> <source><b>Print File</b><p>Print the contents of current editor window.</p></source> <translation><b>Stampa fle</b><p>Stampa il contenuto della finestra attuale.</p></translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="780" /> - <location filename="../ViewManager/ViewManager.py" line="913" /> - <location filename="../ViewManager/ViewManager.py" line="911" /> + <location filename="../ViewManager/ViewManager.py" line="923" /> + <location filename="../ViewManager/ViewManager.py" line="921" /> <source>Print Preview</source> <translation>Anteprima Stampa</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="920" /> + <location filename="../ViewManager/ViewManager.py" line="930" /> <source>Print preview of the current file</source> <translation>Antreprima del file corrente</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="925" /> + <location filename="../ViewManager/ViewManager.py" line="935" /> <source><b>Print Preview</b><p>Print preview of the current editor window.</p></source> <translation><b>Anteprima di stampa</b><p>Anteprima di stampa del file corrente.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="936" /> + <location filename="../ViewManager/ViewManager.py" line="946" /> <source>Find File</source> <translation type="unfinished">Trova file</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="938" /> + <location filename="../ViewManager/ViewManager.py" line="948" /> <source>Find &File...</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="940" /> + <location filename="../ViewManager/ViewManager.py" line="950" /> <source>Alt+Ctrl+F</source> <comment>File|Find File</comment> <translation type="unfinished">Alt+Ctrl+F</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="949" /> + <location filename="../ViewManager/ViewManager.py" line="959" /> <source>Search for a file by entering a search pattern</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="954" /> + <location filename="../ViewManager/ViewManager.py" line="964" /> <source><b>Find File</b><p>This searches for a file by entering a search pattern.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="970" /> + <location filename="../ViewManager/ViewManager.py" line="980" /> <source>&File</source> <translation>&File</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="972" /> + <location filename="../ViewManager/ViewManager.py" line="982" /> <source>Open &Recent Files</source> <translation>Apri file &recenti</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="976" /> + <location filename="../ViewManager/ViewManager.py" line="986" /> <source>Open &Bookmarked Files</source> <translation>Apri file presenti nel &Bookmark</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1024" /> - <location filename="../ViewManager/ViewManager.py" line="1022" /> + <location filename="../ViewManager/ViewManager.py" line="1034" /> + <location filename="../ViewManager/ViewManager.py" line="1032" /> <source>File</source> <translation>File</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1051" /> + <location filename="../ViewManager/ViewManager.py" line="1061" /> <source>Export as</source> <translation>Esporta come</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1074" /> + <location filename="../ViewManager/ViewManager.py" line="1084" /> <source>Undo</source> <translation>Undo</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1076" /> + <location filename="../ViewManager/ViewManager.py" line="1086" /> <source>&Undo</source> <translation>&Undo</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1078" /> + <location filename="../ViewManager/ViewManager.py" line="1088" /> <source>Ctrl+Z</source> <comment>Edit|Undo</comment> <translation>Ctrl+Z</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1081" /> + <location filename="../ViewManager/ViewManager.py" line="1091" /> <source>Alt+Backspace</source> <comment>Edit|Undo</comment> <translation>Alt+Backspace</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1087" /> + <location filename="../ViewManager/ViewManager.py" line="1097" /> <source>Undo the last change</source> <translation>Annulla l'ultima modifica</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1090" /> - <source><b>Undo</b><p>Undo the last change done in the current editor.</p></source> - <translation><b>Annulla</b><p>Annula l'ultima modifica nell'editor corrente.</p></translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="1100" /> + <source><b>Undo</b><p>Undo the last change done in the current editor.</p></source> + <translation><b>Annulla</b><p>Annula l'ultima modifica nell'editor corrente.</p></translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="1110" /> <source>Redo</source> <translation>Rifai</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1102" /> + <location filename="../ViewManager/ViewManager.py" line="1112" /> <source>&Redo</source> <translation>&Rifai</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1104" /> + <location filename="../ViewManager/ViewManager.py" line="1114" /> <source>Ctrl+Shift+Z</source> <comment>Edit|Redo</comment> <translation>Ctrl+Shift+Z</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1111" /> + <location filename="../ViewManager/ViewManager.py" line="1121" /> <source>Redo the last change</source> <translation>Rifai ultima modifica</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1114" /> + <location filename="../ViewManager/ViewManager.py" line="1124" /> <source><b>Redo</b><p>Redo the last change done in the current editor.</p></source> <translation><b>Rifai</b><p>Rifai l'ultima modifica nell'editor corrente.</p></translation> </message> <message> + <location filename="../ViewManager/ViewManager.py" line="1144" /> <location filename="../ViewManager/ViewManager.py" line="1134" /> - <location filename="../ViewManager/ViewManager.py" line="1124" /> <source>Revert to last saved state</source> <translation>Ritorna all'ultimo stato salvato</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1125" /> + <location filename="../ViewManager/ViewManager.py" line="1135" /> <source>Re&vert to last saved state</source> <translation>Ritorna all'ultimo stato sal&vato</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1127" /> + <location filename="../ViewManager/ViewManager.py" line="1137" /> <source>Ctrl+Y</source> <comment>Edit|Revert</comment> <translation>Ctrl+Y</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1137" /> + <location filename="../ViewManager/ViewManager.py" line="1147" /> <source><b>Revert to last saved state</b><p>Undo all changes up to the last saved state of the current editor.</p></source> <translation><b>Torna all'ultimo stato salvato</b><p>Annulla tutte le modifiche fino all'ultimo salvataggio dell'editor corrente.</p></translation> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="343" /> - <location filename="../ViewManager/ViewManager.py" line="1150" /> + <location filename="../ViewManager/ViewManager.py" line="1160" /> <source>Cut</source> <translation>Taglia</translation> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="345" /> - <location filename="../ViewManager/ViewManager.py" line="1152" /> + <location filename="../ViewManager/ViewManager.py" line="1162" /> <source>Cu&t</source> <translation>&Taglia</translation> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="347" /> - <location filename="../ViewManager/ViewManager.py" line="1154" /> + <location filename="../ViewManager/ViewManager.py" line="1164" /> <source>Ctrl+X</source> <comment>Edit|Cut</comment> <translation>Ctrl+X</translation> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="350" /> - <location filename="../ViewManager/ViewManager.py" line="1157" /> + <location filename="../ViewManager/ViewManager.py" line="1167" /> <source>Shift+Del</source> <comment>Edit|Cut</comment> <translation>Shift+Del</translation> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="356" /> - <location filename="../ViewManager/ViewManager.py" line="1163" /> + <location filename="../ViewManager/ViewManager.py" line="1173" /> <source>Cut the selection</source> <translation>Taglia la selezione</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1166" /> + <location filename="../ViewManager/ViewManager.py" line="1176" /> <source><b>Cut</b><p>Cut the selected text of the current editor to the clipboard.</p></source> <translation><b>Taglia</b><p>Taglia il testo selezionato nell'editor corrente.</p></translation> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="365" /> - <location filename="../ViewManager/ViewManager.py" line="1177" /> + <location filename="../ViewManager/ViewManager.py" line="1187" /> <source>Copy</source> <translation>Copia</translation> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="367" /> - <location filename="../ViewManager/ViewManager.py" line="1179" /> + <location filename="../ViewManager/ViewManager.py" line="1189" /> <source>&Copy</source> <translation>&Copia</translation> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="369" /> - <location filename="../ViewManager/ViewManager.py" line="1181" /> + <location filename="../ViewManager/ViewManager.py" line="1191" /> <source>Ctrl+C</source> <comment>Edit|Copy</comment> <translation>Ctrl+C</translation> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="372" /> - <location filename="../ViewManager/ViewManager.py" line="1184" /> + <location filename="../ViewManager/ViewManager.py" line="1194" /> <source>Ctrl+Ins</source> <comment>Edit|Copy</comment> <translation>Ctrl+Ins</translation> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="378" /> - <location filename="../ViewManager/ViewManager.py" line="1190" /> + <location filename="../ViewManager/ViewManager.py" line="1200" /> <source>Copy the selection</source> <translation>Copia la selezione</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1193" /> + <location filename="../ViewManager/ViewManager.py" line="1203" /> <source><b>Copy</b><p>Copy the selected text of the current editor to the clipboard.</p></source> <translation><b>Copia</b><p>Copia il testo selezionato nell'editor corrente.</p></translation> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="387" /> - <location filename="../ViewManager/ViewManager.py" line="1204" /> + <location filename="../ViewManager/ViewManager.py" line="1214" /> <source>Paste</source> <translation>Incolla</translation> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="389" /> - <location filename="../ViewManager/ViewManager.py" line="1206" /> + <location filename="../ViewManager/ViewManager.py" line="1216" /> <source>&Paste</source> <translation>&Incolla</translation> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="391" /> - <location filename="../ViewManager/ViewManager.py" line="1208" /> + <location filename="../ViewManager/ViewManager.py" line="1218" /> <source>Ctrl+V</source> <comment>Edit|Paste</comment> <translation>Ctrl+V</translation> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="394" /> - <location filename="../ViewManager/ViewManager.py" line="1211" /> + <location filename="../ViewManager/ViewManager.py" line="1221" /> <source>Shift+Ins</source> <comment>Edit|Paste</comment> <translation>Shift+Ins</translation> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="400" /> - <location filename="../ViewManager/ViewManager.py" line="1217" /> + <location filename="../ViewManager/ViewManager.py" line="1227" /> <source>Paste the last cut/copied text</source> <translation>Incolla l'ultimo testo tagliato/copiato</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1220" /> + <location filename="../ViewManager/ViewManager.py" line="1230" /> <source><b>Paste</b><p>Paste the last cut/copied text from the clipboard to the current editor.</p></source> <translation><b>Incolla</b><p>Incolla l'ultimo testo tagliato/copiato nell'editor corrente.</p></translation> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="414" /> <location filename="../QScintilla/ShellWindow.py" line="412" /> - <location filename="../ViewManager/ViewManager.py" line="1233" /> - <location filename="../ViewManager/ViewManager.py" line="1231" /> + <location filename="../ViewManager/ViewManager.py" line="1243" /> + <location filename="../ViewManager/ViewManager.py" line="1241" /> <source>Clear</source> <translation>Pulisci</translation> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="416" /> - <location filename="../ViewManager/ViewManager.py" line="1235" /> + <location filename="../ViewManager/ViewManager.py" line="1245" /> <source>Alt+Shift+C</source> <comment>Edit|Clear</comment> <translation>Alt+Shift+C</translation> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="423" /> - <location filename="../ViewManager/ViewManager.py" line="1242" /> + <location filename="../ViewManager/ViewManager.py" line="1252" /> <source>Clear all text</source> <translation>Pulisci tutto il testo</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1245" /> + <location filename="../ViewManager/ViewManager.py" line="1255" /> <source><b>Clear</b><p>Delete all text of the current editor.</p></source> <translation><b>Pulisci</b><p>Cancellal tutto il testo dell'editor corrente.</p></translation> </message> <message> + <location filename="../ViewManager/ViewManager.py" line="1274" /> + <location filename="../ViewManager/ViewManager.py" line="1265" /> <location filename="../ViewManager/ViewManager.py" line="1264" /> - <location filename="../ViewManager/ViewManager.py" line="1255" /> - <location filename="../ViewManager/ViewManager.py" line="1254" /> <source>Join Lines</source> <translation>Unisci linee</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1257" /> + <location filename="../ViewManager/ViewManager.py" line="1267" /> <source>Ctrl+J</source> <comment>Edit|Join Lines</comment> <translation>Ctrl+J</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1267" /> - <source><b>Join Lines</b><p>Join the current and the next lines.</p></source> - <translation><b>Unisci linee</b><p>Unisci la linea corrente e la successiva.</p></translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="1277" /> + <source><b>Join Lines</b><p>Join the current and the next lines.</p></source> + <translation><b>Unisci linee</b><p>Unisci la linea corrente e la successiva.</p></translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="1287" /> <source>Indent</source> <translation>Identa</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1279" /> + <location filename="../ViewManager/ViewManager.py" line="1289" /> <source>&Indent</source> <translation>&Identa</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1281" /> + <location filename="../ViewManager/ViewManager.py" line="1291" /> <source>Ctrl+I</source> <comment>Edit|Indent</comment> <translation>Ctrl+I</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1288" /> + <location filename="../ViewManager/ViewManager.py" line="1298" /> <source>Indent line</source> <translation>Identa riga</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1291" /> + <location filename="../ViewManager/ViewManager.py" line="1301" /> <source><b>Indent</b><p>Indents the current line or the lines of the selection by one level.</p></source> <translation><b>Indenta</b><p>Indenta la riga attuale o le righe selezionate di un livello.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1302" /> + <location filename="../ViewManager/ViewManager.py" line="1312" /> <source>Unindent</source> <translation>Annulla identazione</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1304" /> + <location filename="../ViewManager/ViewManager.py" line="1314" /> <source>U&nindent</source> <translation>A&nnulla identazione</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1306" /> + <location filename="../ViewManager/ViewManager.py" line="1316" /> <source>Ctrl+Shift+I</source> <comment>Edit|Unindent</comment> <translation /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1315" /> + <location filename="../ViewManager/ViewManager.py" line="1325" /> <source>Unindent line</source> <translation>Annulla identazione riga</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1318" /> + <location filename="../ViewManager/ViewManager.py" line="1328" /> <source><b>Unindent</b><p>Unindents the current line or the lines of the selection by one level.</p></source> <translation><b>Annulla indentazione</b><p>Annulla l'indentazioe della riga attuale o delle righe selezionate di un livello.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1331" /> - <location filename="../ViewManager/ViewManager.py" line="1329" /> - <source>Smart indent</source> - <translation>Smart indent</translation> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="1338" /> - <source>Smart indent Line or Selection</source> - <translation>Smart indent di una Linea o Selezione</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="1341" /> + <location filename="../ViewManager/ViewManager.py" line="1339" /> + <source>Smart indent</source> + <translation>Smart indent</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="1348" /> + <source>Smart indent Line or Selection</source> + <translation>Smart indent di una Linea o Selezione</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="1351" /> <source><b>Smart indent</b><p>Indents the current line or the lines of the current selection smartly.</p></source> <translation><b>Smart indent</b><p>Indenta la riga attuale o le righe selezionate in maniera furba.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1352" /> + <location filename="../ViewManager/ViewManager.py" line="1362" /> <source>Comment</source> <translation>Commenta</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1354" /> + <location filename="../ViewManager/ViewManager.py" line="1364" /> <source>C&omment</source> <translation>C&ommenta</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1356" /> + <location filename="../ViewManager/ViewManager.py" line="1366" /> <source>Ctrl+M</source> <comment>Edit|Comment</comment> <translation /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1363" /> + <location filename="../ViewManager/ViewManager.py" line="1373" /> <source>Comment Line or Selection</source> <translation>Commenta Riga o Selezione</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1366" /> + <location filename="../ViewManager/ViewManager.py" line="1376" /> <source><b>Comment</b><p>Comments the current line or the lines of the current selection.</p></source> <translation><b>Commenta</b><p>Commenta la riga attuale o le righe selezionate.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1377" /> + <location filename="../ViewManager/ViewManager.py" line="1387" /> <source>Uncomment</source> <translation>Annulla commenta</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1379" /> + <location filename="../ViewManager/ViewManager.py" line="1389" /> <source>Unco&mment</source> <translation>Annulla co&mmenta</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1381" /> + <location filename="../ViewManager/ViewManager.py" line="1391" /> <source>Ctrl+Shift+M</source> <comment>Edit|Uncomment</comment> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1390" /> + <location filename="../ViewManager/ViewManager.py" line="1400" /> <source>Uncomment Line or Selection</source> <translation>Annulla commenta Riga o Selezione</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1393" /> + <location filename="../ViewManager/ViewManager.py" line="1403" /> <source><b>Uncomment</b><p>Uncomments the current line or the lines of the current selection.</p></source> <translation><b>Annulla Commenta</b><p>Annula Commenta per la riga attuale o per le righe selezionate.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1406" /> - <location filename="../ViewManager/ViewManager.py" line="1404" /> + <location filename="../ViewManager/ViewManager.py" line="1416" /> + <location filename="../ViewManager/ViewManager.py" line="1414" /> <source>Toggle Comment</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1408" /> + <location filename="../ViewManager/ViewManager.py" line="1418" /> <source>Ctrl+#</source> <comment>Edit|Toggle Comment</comment> <translation type="unfinished">Ctrl+#</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1417" /> + <location filename="../ViewManager/ViewManager.py" line="1427" /> <source>Toggle the comment of the current line, selection or comment block</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1423" /> + <location filename="../ViewManager/ViewManager.py" line="1433" /> <source><b>Toggle Comment</b><p>If the current line does not start with a block comment, the current line or selection is commented. If it is already commented, this comment block is uncommented. </p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1436" /> - <location filename="../ViewManager/ViewManager.py" line="1435" /> + <location filename="../ViewManager/ViewManager.py" line="1446" /> + <location filename="../ViewManager/ViewManager.py" line="1445" /> <source>Stream Comment</source> <translation>Streaml commento</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1443" /> + <location filename="../ViewManager/ViewManager.py" line="1453" /> <source>Stream Comment Line or Selection</source> <translation>Stream commento per la Riga o la Selezione</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1448" /> + <location filename="../ViewManager/ViewManager.py" line="1458" /> <source><b>Stream Comment</b><p>Stream comments the current line or the current selection.</p></source> <translation><b>Stream commento</b><p>Stream commento per la riga attuale o le righe selezionate.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1460" /> - <location filename="../ViewManager/ViewManager.py" line="1459" /> - <source>Box Comment</source> - <translation>Box Comment</translation> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="1467" /> - <source>Box Comment Line or Selection</source> - <translation>Box Comment Riga o Selezione</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="1470" /> + <location filename="../ViewManager/ViewManager.py" line="1469" /> + <source>Box Comment</source> + <translation>Box Comment</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="1477" /> + <source>Box Comment Line or Selection</source> + <translation>Box Comment Riga o Selezione</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="1480" /> <source><b>Box Comment</b><p>Box comments the current line or the lines of the current selection.</p></source> <translation><b>Box commento</b><p>Box commento per la riga attuale o le righe selezionate.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1481" /> + <location filename="../ViewManager/ViewManager.py" line="1491" /> <source>Select to brace</source> <translation>Seleziona fino alla parentesi</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1482" /> + <location filename="../ViewManager/ViewManager.py" line="1492" /> <source>Select to &brace</source> <translation>Seleziona fino alla &parentesi</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1484" /> + <location filename="../ViewManager/ViewManager.py" line="1494" /> <source>Ctrl+E</source> <comment>Edit|Select to brace</comment> <translation>Ctrl+E</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1493" /> + <location filename="../ViewManager/ViewManager.py" line="1503" /> <source>Select text to the matching brace</source> <translation>Seleziona il testo fino alla parentesi corrispondente</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1498" /> + <location filename="../ViewManager/ViewManager.py" line="1508" /> <source><b>Select to brace</b><p>Select text of the current editor to the matching brace.</p></source> <translation><b>Seleziona fino alla parentesi</b><p>Seleziona il testo dell'editor fino alla parentesi corrispondente.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1509" /> + <location filename="../ViewManager/ViewManager.py" line="1519" /> <source>Select all</source> <translation>Seleziona tutti</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1511" /> + <location filename="../ViewManager/ViewManager.py" line="1521" /> <source>&Select all</source> <translation>&Seleziona tutto</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1513" /> + <location filename="../ViewManager/ViewManager.py" line="1523" /> <source>Ctrl+A</source> <comment>Edit|Select all</comment> <translation>Ctrl+A</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1520" /> + <location filename="../ViewManager/ViewManager.py" line="1530" /> <source>Select all text</source> <translation>Seleziona tutto il testo</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1523" /> - <source><b>Select All</b><p>Select all text of the current editor.</p></source> - <translation><b>Seleziona tutto</b><p>Seleziona tutto il testo dell'editor corrente.</p></translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="1533" /> + <source><b>Select All</b><p>Select all text of the current editor.</p></source> + <translation><b>Seleziona tutto</b><p>Seleziona tutto il testo dell'editor corrente.</p></translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="1543" /> <source>Deselect all</source> <translation>Deseleziona tutti</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1534" /> + <location filename="../ViewManager/ViewManager.py" line="1544" /> <source>&Deselect all</source> <translation>&Deseleziona tutti</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1536" /> + <location filename="../ViewManager/ViewManager.py" line="1546" /> <source>Alt+Ctrl+A</source> <comment>Edit|Deselect all</comment> <translation>Alt+Ctrl+A</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1545" /> + <location filename="../ViewManager/ViewManager.py" line="1555" /> <source>Deselect all text</source> <translation>Deseleziona tutto il testo</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1548" /> + <location filename="../ViewManager/ViewManager.py" line="1558" /> <source><b>Deselect All</b><p>Deselect all text of the current editor.</p></source> <translation><b>Deseleziona tutto</b><p>Deseleziona tutto il testo dell'editor corrente.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1566" /> - <location filename="../ViewManager/ViewManager.py" line="1559" /> - <location filename="../ViewManager/ViewManager.py" line="1558" /> + <location filename="../ViewManager/ViewManager.py" line="1576" /> + <location filename="../ViewManager/ViewManager.py" line="1569" /> + <location filename="../ViewManager/ViewManager.py" line="1568" /> <source>Convert Line End Characters</source> <translation>Converti il carattere di Line End</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1569" /> + <location filename="../ViewManager/ViewManager.py" line="1579" /> <source><b>Convert Line End Characters</b><p>Convert the line end characters to the currently set type.</p></source> <translation><b>Converti caratteri di Line End</b><p>Converte i caratteri di line end al tipo selezionato.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1588" /> - <location filename="../ViewManager/ViewManager.py" line="1581" /> - <location filename="../ViewManager/ViewManager.py" line="1580" /> - <source>Convert Tabs to Spaces</source> - <translation type="unfinished" /> - </message> - <message> + <location filename="../ViewManager/ViewManager.py" line="1598" /> <location filename="../ViewManager/ViewManager.py" line="1591" /> + <location filename="../ViewManager/ViewManager.py" line="1590" /> + <source>Convert Tabs to Spaces</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="1601" /> <source><b>Convert Tabs to Spaces</b><p>Convert tabulators to the configured amount of space characters.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1610" /> - <location filename="../ViewManager/ViewManager.py" line="1603" /> - <location filename="../ViewManager/ViewManager.py" line="1602" /> + <location filename="../ViewManager/ViewManager.py" line="1620" /> + <location filename="../ViewManager/ViewManager.py" line="1613" /> + <location filename="../ViewManager/ViewManager.py" line="1612" /> <source>Shorten empty lines</source> <translation>Abbrevia righe vuote</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1613" /> + <location filename="../ViewManager/ViewManager.py" line="1623" /> <source><b>Shorten empty lines</b><p>Shorten lines consisting solely of whitespace characters.</p></source> <translation><b>Accorcia righe vuote</b><p>Accorcia le righe contenenti solo spazi.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3497" /> - <location filename="../ViewManager/ViewManager.py" line="1624" /> + <location filename="../ViewManager/ViewManager.py" line="3507" /> + <location filename="../ViewManager/ViewManager.py" line="1634" /> <source>Complete</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1625" /> + <location filename="../ViewManager/ViewManager.py" line="1635" /> <source>&Complete</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1627" /> - <source>Ctrl+Space</source> - <comment>Edit|Complete</comment> - <translation type="unfinished">Ctrl+Space</translation> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="1634" /> - <source>Complete current word</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="1637" /> + <source>Ctrl+Space</source> + <comment>Edit|Complete</comment> + <translation type="unfinished">Ctrl+Space</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="1644" /> + <source>Complete current word</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="1647" /> <source><b>Complete</b><p>Performs a completion of the word containing the cursor.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1649" /> - <location filename="../ViewManager/ViewManager.py" line="1648" /> + <location filename="../ViewManager/ViewManager.py" line="1659" /> + <location filename="../ViewManager/ViewManager.py" line="1658" /> <source>Complete from Document</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1651" /> + <location filename="../ViewManager/ViewManager.py" line="1661" /> <source>Ctrl+Shift+Space</source> <comment>Edit|Complete from Document</comment> <translation type="unfinished">Ctrl+Shift+Space</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1660" /> + <location filename="../ViewManager/ViewManager.py" line="1670" /> <source>Complete current word from Document</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1665" /> + <location filename="../ViewManager/ViewManager.py" line="1675" /> <source><b>Complete from Document</b><p>Performs a completion from document of the word containing the cursor.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1677" /> - <location filename="../ViewManager/ViewManager.py" line="1676" /> + <location filename="../ViewManager/ViewManager.py" line="1687" /> + <location filename="../ViewManager/ViewManager.py" line="1686" /> <source>Complete from APIs</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1679" /> + <location filename="../ViewManager/ViewManager.py" line="1689" /> <source>Ctrl+Alt+Space</source> <comment>Edit|Complete from APIs</comment> <translation type="unfinished">Ctrl+Alt+Space</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1688" /> + <location filename="../ViewManager/ViewManager.py" line="1698" /> <source>Complete current word from APIs</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1691" /> + <location filename="../ViewManager/ViewManager.py" line="1701" /> <source><b>Complete from APIs</b><p>Performs a completion from APIs of the word containing the cursor.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1705" /> - <location filename="../ViewManager/ViewManager.py" line="1702" /> + <location filename="../ViewManager/ViewManager.py" line="1715" /> + <location filename="../ViewManager/ViewManager.py" line="1712" /> <source>Complete from Document and APIs</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1709" /> + <location filename="../ViewManager/ViewManager.py" line="1719" /> <source>Alt+Shift+Space</source> <comment>Edit|Complete from Document and APIs</comment> <translation type="unfinished">Alt+Shift+Space</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1720" /> + <location filename="../ViewManager/ViewManager.py" line="1730" /> <source>Complete current word from Document and APIs</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1725" /> + <location filename="../ViewManager/ViewManager.py" line="1735" /> <source><b>Complete from Document and APIs</b><p>Performs a completion from document and APIs of the word containing the cursor.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1736" /> + <location filename="../ViewManager/ViewManager.py" line="1746" /> <source>Calltip</source> <translation>Calltip</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1737" /> + <location filename="../ViewManager/ViewManager.py" line="1747" /> <source>&Calltip</source> <translation>&Calltip</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1739" /> + <location filename="../ViewManager/ViewManager.py" line="1749" /> <source>Meta+Alt+Space</source> <comment>Edit|Calltip</comment> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1748" /> + <location filename="../ViewManager/ViewManager.py" line="1758" /> <source>Show Calltips</source> <translation>Mostra Calltip</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1751" /> + <location filename="../ViewManager/ViewManager.py" line="1761" /> <source><b>Calltip</b><p>Show calltips based on the characters immediately to the left of the cursor.</p></source> <translation><b>Calltip</b><p>Mostra calltip basati sul carattere immediatamente a sinistra del cursore.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1764" /> - <location filename="../ViewManager/ViewManager.py" line="1762" /> + <location filename="../ViewManager/ViewManager.py" line="1774" /> + <location filename="../ViewManager/ViewManager.py" line="1772" /> <source>Code Info</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1766" /> + <location filename="../ViewManager/ViewManager.py" line="1776" /> <source>Ctrl+Alt+I</source> <comment>Edit|Code Info</comment> <translation type="unfinished">Ctrl+Alt+I</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1775" /> + <location filename="../ViewManager/ViewManager.py" line="1785" /> <source>Show Code Info</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1778" /> + <location filename="../ViewManager/ViewManager.py" line="1788" /> <source><b>Code Info</b><p>Show code information based on the cursor position.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1789" /> - <location filename="../ViewManager/ViewManager.py" line="1788" /> + <location filename="../ViewManager/ViewManager.py" line="1799" /> + <location filename="../ViewManager/ViewManager.py" line="1798" /> <source>Sort</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1791" /> + <location filename="../ViewManager/ViewManager.py" line="1801" /> <source>Ctrl+Alt+S</source> <comment>Edit|Sort</comment> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1798" /> + <location filename="../ViewManager/ViewManager.py" line="1808" /> <source>Sort the lines containing the rectangular selection</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1803" /> + <location filename="../ViewManager/ViewManager.py" line="1813" /> <source><b>Sort</b><p>Sort the lines spanned by a rectangular selection based on the selection ignoring leading and trailing whitespace.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1815" /> - <location filename="../ViewManager/ViewManager.py" line="1814" /> + <location filename="../ViewManager/ViewManager.py" line="1825" /> + <location filename="../ViewManager/ViewManager.py" line="1824" /> <source>Generate Docstring</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1817" /> + <location filename="../ViewManager/ViewManager.py" line="1827" /> <source>Ctrl+Alt+D</source> <comment>Edit|Generate Docstring</comment> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1826" /> + <location filename="../ViewManager/ViewManager.py" line="1836" /> <source>Generate a docstring for the current function/method</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1831" /> + <location filename="../ViewManager/ViewManager.py" line="1841" /> <source><b>Generate Docstring</b><p>Generate a docstring for the current function/method if the cursor is placed on the line starting the function definition or on the line thereafter. The docstring is inserted at the appropriate position and the cursor is placed at the end of the description line.</p></source> <translation type="unfinished" /> </message> @@ -95640,22 +95653,22 @@ <location filename="../QScintilla/MiniEditor.py" line="929" /> <location filename="../QScintilla/ShellWindow.py" line="579" /> <location filename="../QScintilla/ShellWindow.py" line="578" /> - <location filename="../ViewManager/ViewManager.py" line="1858" /> - <location filename="../ViewManager/ViewManager.py" line="1857" /> + <location filename="../ViewManager/ViewManager.py" line="1868" /> + <location filename="../ViewManager/ViewManager.py" line="1867" /> <source>Move left one character</source> <translation>Muovi a sinistra di 1 carattere</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="931" /> <location filename="../QScintilla/ShellWindow.py" line="580" /> - <location filename="../ViewManager/ViewManager.py" line="1859" /> + <location filename="../ViewManager/ViewManager.py" line="1869" /> <source>Left</source> <translation>Sinistra</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="939" /> <location filename="../QScintilla/ShellWindow.py" line="588" /> - <location filename="../ViewManager/ViewManager.py" line="1867" /> + <location filename="../ViewManager/ViewManager.py" line="1877" /> <source>Meta+B</source> <translation type="unfinished" /> </message> @@ -95664,22 +95677,22 @@ <location filename="../QScintilla/MiniEditor.py" line="945" /> <location filename="../QScintilla/ShellWindow.py" line="595" /> <location filename="../QScintilla/ShellWindow.py" line="594" /> - <location filename="../ViewManager/ViewManager.py" line="1874" /> - <location filename="../ViewManager/ViewManager.py" line="1873" /> + <location filename="../ViewManager/ViewManager.py" line="1884" /> + <location filename="../ViewManager/ViewManager.py" line="1883" /> <source>Move right one character</source> <translation>Muovi a destra di 1 carattere</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="947" /> <location filename="../QScintilla/ShellWindow.py" line="596" /> - <location filename="../ViewManager/ViewManager.py" line="1875" /> + <location filename="../ViewManager/ViewManager.py" line="1885" /> <source>Right</source> <translation>Destra</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="954" /> <location filename="../QScintilla/ShellWindow.py" line="603" /> - <location filename="../ViewManager/ViewManager.py" line="1882" /> + <location filename="../ViewManager/ViewManager.py" line="1892" /> <source>Meta+F</source> <translation type="unfinished" /> </message> @@ -95688,22 +95701,22 @@ <location filename="../QScintilla/MiniEditor.py" line="961" /> <location filename="../QScintilla/ShellWindow.py" line="687" /> <location filename="../QScintilla/ShellWindow.py" line="686" /> - <location filename="../ViewManager/ViewManager.py" line="1890" /> - <location filename="../ViewManager/ViewManager.py" line="1889" /> + <location filename="../ViewManager/ViewManager.py" line="1900" /> + <location filename="../ViewManager/ViewManager.py" line="1899" /> <source>Move up one line</source> <translation>Muovi in alto di una riga</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="963" /> <location filename="../QScintilla/ShellWindow.py" line="688" /> - <location filename="../ViewManager/ViewManager.py" line="1891" /> + <location filename="../ViewManager/ViewManager.py" line="1901" /> <source>Up</source> <translation>Su</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="970" /> <location filename="../QScintilla/ShellWindow.py" line="695" /> - <location filename="../ViewManager/ViewManager.py" line="1898" /> + <location filename="../ViewManager/ViewManager.py" line="1908" /> <source>Meta+P</source> <translation type="unfinished" /> </message> @@ -95712,30 +95725,30 @@ <location filename="../QScintilla/MiniEditor.py" line="977" /> <location filename="../QScintilla/ShellWindow.py" line="703" /> <location filename="../QScintilla/ShellWindow.py" line="702" /> - <location filename="../ViewManager/ViewManager.py" line="1906" /> - <location filename="../ViewManager/ViewManager.py" line="1905" /> + <location filename="../ViewManager/ViewManager.py" line="1916" /> + <location filename="../ViewManager/ViewManager.py" line="1915" /> <source>Move down one line</source> <translation>Muovi in basso di una riga</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="979" /> <location filename="../QScintilla/ShellWindow.py" line="704" /> - <location filename="../ViewManager/ViewManager.py" line="1907" /> + <location filename="../ViewManager/ViewManager.py" line="1917" /> <source>Down</source> <translation>Giù</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="986" /> <location filename="../QScintilla/ShellWindow.py" line="711" /> - <location filename="../ViewManager/ViewManager.py" line="1914" /> + <location filename="../ViewManager/ViewManager.py" line="1924" /> <source>Meta+N</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="994" /> <location filename="../QScintilla/MiniEditor.py" line="993" /> - <location filename="../ViewManager/ViewManager.py" line="1922" /> - <location filename="../ViewManager/ViewManager.py" line="1921" /> + <location filename="../ViewManager/ViewManager.py" line="1932" /> + <location filename="../ViewManager/ViewManager.py" line="1931" /> <source>Move left one word part</source> <translation>Muovi a sinistra di una parte di parola</translation> </message> @@ -95743,16 +95756,16 @@ <location filename="../QScintilla/MiniEditor.py" line="1034" /> <location filename="../QScintilla/MiniEditor.py" line="1002" /> <location filename="../QScintilla/ShellWindow.py" line="619" /> - <location filename="../ViewManager/ViewManager.py" line="1962" /> - <location filename="../ViewManager/ViewManager.py" line="1930" /> + <location filename="../ViewManager/ViewManager.py" line="1972" /> + <location filename="../ViewManager/ViewManager.py" line="1940" /> <source>Alt+Left</source> <translation>Alt+Sinistra</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1010" /> <location filename="../QScintilla/MiniEditor.py" line="1009" /> - <location filename="../ViewManager/ViewManager.py" line="1938" /> - <location filename="../ViewManager/ViewManager.py" line="1937" /> + <location filename="../ViewManager/ViewManager.py" line="1948" /> + <location filename="../ViewManager/ViewManager.py" line="1947" /> <source>Move right one word part</source> <translation>Muovi a destra di una parte di parola</translation> </message> @@ -95760,8 +95773,8 @@ <location filename="../QScintilla/MiniEditor.py" line="2164" /> <location filename="../QScintilla/MiniEditor.py" line="1054" /> <location filename="../QScintilla/MiniEditor.py" line="1018" /> - <location filename="../ViewManager/ViewManager.py" line="3071" /> - <location filename="../ViewManager/ViewManager.py" line="1946" /> + <location filename="../ViewManager/ViewManager.py" line="3081" /> + <location filename="../ViewManager/ViewManager.py" line="1956" /> <source>Alt+Right</source> <translation>Alt+Destra</translation> </message> @@ -95770,8 +95783,8 @@ <location filename="../QScintilla/MiniEditor.py" line="1025" /> <location filename="../QScintilla/ShellWindow.py" line="611" /> <location filename="../QScintilla/ShellWindow.py" line="610" /> - <location filename="../ViewManager/ViewManager.py" line="1954" /> - <location filename="../ViewManager/ViewManager.py" line="1953" /> + <location filename="../ViewManager/ViewManager.py" line="1964" /> + <location filename="../ViewManager/ViewManager.py" line="1963" /> <source>Move left one word</source> <translation>Muovi a sinistra una parola</translation> </message> @@ -95779,8 +95792,8 @@ <location filename="../QScintilla/MiniEditor.py" line="1094" /> <location filename="../QScintilla/MiniEditor.py" line="1038" /> <location filename="../QScintilla/ShellWindow.py" line="623" /> - <location filename="../ViewManager/ViewManager.py" line="2018" /> - <location filename="../ViewManager/ViewManager.py" line="1966" /> + <location filename="../ViewManager/ViewManager.py" line="2028" /> + <location filename="../ViewManager/ViewManager.py" line="1976" /> <source>Ctrl+Left</source> <translation>Ctrl+Left</translation> </message> @@ -95789,8 +95802,8 @@ <location filename="../QScintilla/MiniEditor.py" line="1045" /> <location filename="../QScintilla/ShellWindow.py" line="631" /> <location filename="../QScintilla/ShellWindow.py" line="630" /> - <location filename="../ViewManager/ViewManager.py" line="1974" /> - <location filename="../ViewManager/ViewManager.py" line="1973" /> + <location filename="../ViewManager/ViewManager.py" line="1984" /> + <location filename="../ViewManager/ViewManager.py" line="1983" /> <source>Move right one word</source> <translation>Muovi a destra una parola</translation> </message> @@ -95798,8 +95811,8 @@ <location filename="../QScintilla/MiniEditor.py" line="1848" /> <location filename="../QScintilla/MiniEditor.py" line="1058" /> <location filename="../QScintilla/ShellWindow.py" line="639" /> - <location filename="../ViewManager/ViewManager.py" line="2755" /> - <location filename="../ViewManager/ViewManager.py" line="1982" /> + <location filename="../ViewManager/ViewManager.py" line="2765" /> + <location filename="../ViewManager/ViewManager.py" line="1992" /> <source>Ctrl+Right</source> <translation>Ctrl+Right</translation> </message> @@ -95808,8 +95821,8 @@ <location filename="../QScintilla/MiniEditor.py" line="1065" /> <location filename="../QScintilla/ShellWindow.py" line="649" /> <location filename="../QScintilla/ShellWindow.py" line="646" /> - <location filename="../ViewManager/ViewManager.py" line="1992" /> - <location filename="../ViewManager/ViewManager.py" line="1989" /> + <location filename="../ViewManager/ViewManager.py" line="2002" /> + <location filename="../ViewManager/ViewManager.py" line="1999" /> <source>Move to first visible character in document line</source> <translation type="unfinished" /> </message> @@ -95817,22 +95830,22 @@ <location filename="../QScintilla/MiniEditor.py" line="2109" /> <location filename="../QScintilla/MiniEditor.py" line="1078" /> <location filename="../QScintilla/ShellWindow.py" line="659" /> - <location filename="../ViewManager/ViewManager.py" line="3016" /> - <location filename="../ViewManager/ViewManager.py" line="2002" /> + <location filename="../ViewManager/ViewManager.py" line="3026" /> + <location filename="../ViewManager/ViewManager.py" line="2012" /> <source>Home</source> <translation>Home</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1086" /> <location filename="../QScintilla/MiniEditor.py" line="1085" /> - <location filename="../ViewManager/ViewManager.py" line="2010" /> - <location filename="../ViewManager/ViewManager.py" line="2009" /> + <location filename="../ViewManager/ViewManager.py" line="2020" /> + <location filename="../ViewManager/ViewManager.py" line="2019" /> <source>Move to start of display line</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1098" /> - <location filename="../ViewManager/ViewManager.py" line="2022" /> + <location filename="../ViewManager/ViewManager.py" line="2032" /> <source>Alt+Home</source> <translation>Alt+Home</translation> </message> @@ -95841,15 +95854,15 @@ <location filename="../QScintilla/MiniEditor.py" line="1105" /> <location filename="../QScintilla/ShellWindow.py" line="667" /> <location filename="../QScintilla/ShellWindow.py" line="666" /> - <location filename="../ViewManager/ViewManager.py" line="2030" /> - <location filename="../ViewManager/ViewManager.py" line="2029" /> + <location filename="../ViewManager/ViewManager.py" line="2040" /> + <location filename="../ViewManager/ViewManager.py" line="2039" /> <source>Move to end of document line</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1114" /> <location filename="../QScintilla/ShellWindow.py" line="675" /> - <location filename="../ViewManager/ViewManager.py" line="2038" /> + <location filename="../ViewManager/ViewManager.py" line="2048" /> <source>Meta+E</source> <translation type="unfinished" /> </message> @@ -95857,16 +95870,16 @@ <location filename="../QScintilla/MiniEditor.py" line="2126" /> <location filename="../QScintilla/MiniEditor.py" line="1118" /> <location filename="../QScintilla/ShellWindow.py" line="679" /> - <location filename="../ViewManager/ViewManager.py" line="3033" /> - <location filename="../ViewManager/ViewManager.py" line="2042" /> + <location filename="../ViewManager/ViewManager.py" line="3043" /> + <location filename="../ViewManager/ViewManager.py" line="2052" /> <source>End</source> <translation>Fine</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1126" /> <location filename="../QScintilla/MiniEditor.py" line="1125" /> - <location filename="../ViewManager/ViewManager.py" line="2050" /> - <location filename="../ViewManager/ViewManager.py" line="2049" /> + <location filename="../ViewManager/ViewManager.py" line="2060" /> + <location filename="../ViewManager/ViewManager.py" line="2059" /> <source>Scroll view down one line</source> <translation>Scrolla la vista in basso di una riga</translation> </message> @@ -95874,16 +95887,16 @@ <location filename="../QScintilla/MiniEditor.py" line="1230" /> <location filename="../QScintilla/MiniEditor.py" line="1127" /> <location filename="../QScintilla/ShellWindow.py" line="720" /> - <location filename="../ViewManager/ViewManager.py" line="2154" /> - <location filename="../ViewManager/ViewManager.py" line="2051" /> + <location filename="../ViewManager/ViewManager.py" line="2164" /> + <location filename="../ViewManager/ViewManager.py" line="2061" /> <source>Ctrl+Down</source> <translation>Ctrl+Down</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1138" /> <location filename="../QScintilla/MiniEditor.py" line="1137" /> - <location filename="../ViewManager/ViewManager.py" line="2062" /> - <location filename="../ViewManager/ViewManager.py" line="2061" /> + <location filename="../ViewManager/ViewManager.py" line="2072" /> + <location filename="../ViewManager/ViewManager.py" line="2071" /> <source>Scroll view up one line</source> <translation>Scrolla la vista in alto di una riga</translation> </message> @@ -95891,36 +95904,36 @@ <location filename="../QScintilla/MiniEditor.py" line="1210" /> <location filename="../QScintilla/MiniEditor.py" line="1139" /> <location filename="../QScintilla/ShellWindow.py" line="732" /> - <location filename="../ViewManager/ViewManager.py" line="2134" /> - <location filename="../ViewManager/ViewManager.py" line="2063" /> + <location filename="../ViewManager/ViewManager.py" line="2144" /> + <location filename="../ViewManager/ViewManager.py" line="2073" /> <source>Ctrl+Up</source> <translation>Ctrl+Up</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1150" /> <location filename="../QScintilla/MiniEditor.py" line="1149" /> - <location filename="../ViewManager/ViewManager.py" line="2074" /> - <location filename="../ViewManager/ViewManager.py" line="2073" /> + <location filename="../ViewManager/ViewManager.py" line="2084" /> + <location filename="../ViewManager/ViewManager.py" line="2083" /> <source>Move up one paragraph</source> <translation>Muovi in alto di un paragrafo</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1151" /> - <location filename="../ViewManager/ViewManager.py" line="2075" /> + <location filename="../ViewManager/ViewManager.py" line="2085" /> <source>Alt+Up</source> <translation>Alt+Up</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1162" /> <location filename="../QScintilla/MiniEditor.py" line="1161" /> - <location filename="../ViewManager/ViewManager.py" line="2086" /> - <location filename="../ViewManager/ViewManager.py" line="2085" /> + <location filename="../ViewManager/ViewManager.py" line="2096" /> + <location filename="../ViewManager/ViewManager.py" line="2095" /> <source>Move down one paragraph</source> <translation>Muovi in basso di un paragrafo</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1163" /> - <location filename="../ViewManager/ViewManager.py" line="2087" /> + <location filename="../ViewManager/ViewManager.py" line="2097" /> <source>Alt+Down</source> <translation>Alt+Down</translation> </message> @@ -95929,15 +95942,15 @@ <location filename="../QScintilla/MiniEditor.py" line="1173" /> <location filename="../QScintilla/ShellWindow.py" line="743" /> <location filename="../QScintilla/ShellWindow.py" line="742" /> - <location filename="../ViewManager/ViewManager.py" line="2098" /> - <location filename="../ViewManager/ViewManager.py" line="2097" /> + <location filename="../ViewManager/ViewManager.py" line="2108" /> + <location filename="../ViewManager/ViewManager.py" line="2107" /> <source>Move up one page</source> <translation>Muovi in alto di una pagina</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1175" /> <location filename="../QScintilla/ShellWindow.py" line="744" /> - <location filename="../ViewManager/ViewManager.py" line="2099" /> + <location filename="../ViewManager/ViewManager.py" line="2109" /> <source>PgUp</source> <translation>PgUp</translation> </message> @@ -95946,50 +95959,50 @@ <location filename="../QScintilla/MiniEditor.py" line="1185" /> <location filename="../QScintilla/ShellWindow.py" line="755" /> <location filename="../QScintilla/ShellWindow.py" line="754" /> - <location filename="../ViewManager/ViewManager.py" line="2110" /> - <location filename="../ViewManager/ViewManager.py" line="2109" /> + <location filename="../ViewManager/ViewManager.py" line="2120" /> + <location filename="../ViewManager/ViewManager.py" line="2119" /> <source>Move down one page</source> <translation>Muovi in basso di una pagina</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1187" /> <location filename="../QScintilla/ShellWindow.py" line="756" /> - <location filename="../ViewManager/ViewManager.py" line="2111" /> + <location filename="../ViewManager/ViewManager.py" line="2121" /> <source>PgDown</source> <translation>PgDown</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1194" /> <location filename="../QScintilla/ShellWindow.py" line="763" /> - <location filename="../ViewManager/ViewManager.py" line="2118" /> + <location filename="../ViewManager/ViewManager.py" line="2128" /> <source>Meta+V</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1202" /> <location filename="../QScintilla/MiniEditor.py" line="1201" /> - <location filename="../ViewManager/ViewManager.py" line="2126" /> - <location filename="../ViewManager/ViewManager.py" line="2125" /> + <location filename="../ViewManager/ViewManager.py" line="2136" /> + <location filename="../ViewManager/ViewManager.py" line="2135" /> <source>Move to start of document</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1214" /> - <location filename="../ViewManager/ViewManager.py" line="2138" /> + <location filename="../ViewManager/ViewManager.py" line="2148" /> <source>Ctrl+Home</source> <translation>Ctrl+Home</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1222" /> <location filename="../QScintilla/MiniEditor.py" line="1221" /> - <location filename="../ViewManager/ViewManager.py" line="2146" /> - <location filename="../ViewManager/ViewManager.py" line="2145" /> + <location filename="../ViewManager/ViewManager.py" line="2156" /> + <location filename="../ViewManager/ViewManager.py" line="2155" /> <source>Move to end of document</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1234" /> - <location filename="../ViewManager/ViewManager.py" line="2158" /> + <location filename="../ViewManager/ViewManager.py" line="2168" /> <source>Ctrl+End</source> <translation>Ctrl+End</translation> </message> @@ -95998,29 +96011,29 @@ <location filename="../QScintilla/MiniEditor.py" line="1241" /> <location filename="../QScintilla/ShellWindow.py" line="457" /> <location filename="../QScintilla/ShellWindow.py" line="456" /> - <location filename="../ViewManager/ViewManager.py" line="2166" /> - <location filename="../ViewManager/ViewManager.py" line="2165" /> + <location filename="../ViewManager/ViewManager.py" line="2176" /> + <location filename="../ViewManager/ViewManager.py" line="2175" /> <source>Indent one level</source> <translation>Indenta un livello</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1243" /> <location filename="../QScintilla/ShellWindow.py" line="458" /> - <location filename="../ViewManager/ViewManager.py" line="2167" /> + <location filename="../ViewManager/ViewManager.py" line="2177" /> <source>Tab</source> <translation>Tab</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1254" /> <location filename="../QScintilla/MiniEditor.py" line="1253" /> - <location filename="../ViewManager/ViewManager.py" line="2178" /> - <location filename="../ViewManager/ViewManager.py" line="2177" /> + <location filename="../ViewManager/ViewManager.py" line="2188" /> + <location filename="../ViewManager/ViewManager.py" line="2187" /> <source>Unindent one level</source> <translation>Deindenta di un livello</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1255" /> - <location filename="../ViewManager/ViewManager.py" line="2179" /> + <location filename="../ViewManager/ViewManager.py" line="2189" /> <source>Shift+Tab</source> <translation>Shift+Tab</translation> </message> @@ -96029,22 +96042,22 @@ <location filename="../QScintilla/MiniEditor.py" line="1265" /> <location filename="../QScintilla/ShellWindow.py" line="785" /> <location filename="../QScintilla/ShellWindow.py" line="782" /> - <location filename="../ViewManager/ViewManager.py" line="2192" /> - <location filename="../ViewManager/ViewManager.py" line="2189" /> + <location filename="../ViewManager/ViewManager.py" line="2202" /> + <location filename="../ViewManager/ViewManager.py" line="2199" /> <source>Extend selection left one character</source> <translation>Estendi la selezione a sinistra di un carattere</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1271" /> <location filename="../QScintilla/ShellWindow.py" line="788" /> - <location filename="../ViewManager/ViewManager.py" line="2195" /> + <location filename="../ViewManager/ViewManager.py" line="2205" /> <source>Shift+Left</source> <translation>Shift+Left</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1278" /> <location filename="../QScintilla/ShellWindow.py" line="795" /> - <location filename="../ViewManager/ViewManager.py" line="2202" /> + <location filename="../ViewManager/ViewManager.py" line="2212" /> <source>Meta+Shift+B</source> <translation type="unfinished" /> </message> @@ -96053,70 +96066,70 @@ <location filename="../QScintilla/MiniEditor.py" line="1285" /> <location filename="../QScintilla/ShellWindow.py" line="805" /> <location filename="../QScintilla/ShellWindow.py" line="802" /> - <location filename="../ViewManager/ViewManager.py" line="2212" /> - <location filename="../ViewManager/ViewManager.py" line="2209" /> + <location filename="../ViewManager/ViewManager.py" line="2222" /> + <location filename="../ViewManager/ViewManager.py" line="2219" /> <source>Extend selection right one character</source> <translation>Estendi la selezione a destra di un carattere</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1291" /> <location filename="../QScintilla/ShellWindow.py" line="808" /> - <location filename="../ViewManager/ViewManager.py" line="2215" /> + <location filename="../ViewManager/ViewManager.py" line="2225" /> <source>Shift+Right</source> <translation>Shift+Right</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1298" /> <location filename="../QScintilla/ShellWindow.py" line="815" /> - <location filename="../ViewManager/ViewManager.py" line="2222" /> + <location filename="../ViewManager/ViewManager.py" line="2232" /> <source>Meta+Shift+F</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1306" /> <location filename="../QScintilla/MiniEditor.py" line="1305" /> - <location filename="../ViewManager/ViewManager.py" line="2230" /> - <location filename="../ViewManager/ViewManager.py" line="2229" /> + <location filename="../ViewManager/ViewManager.py" line="2240" /> + <location filename="../ViewManager/ViewManager.py" line="2239" /> <source>Extend selection up one line</source> <translation>Estendi selezione in alto di una riga</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1307" /> - <location filename="../ViewManager/ViewManager.py" line="2231" /> + <location filename="../ViewManager/ViewManager.py" line="2241" /> <source>Shift+Up</source> <translation>Shift+Up</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1314" /> - <location filename="../ViewManager/ViewManager.py" line="2238" /> + <location filename="../ViewManager/ViewManager.py" line="2248" /> <source>Meta+Shift+P</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1322" /> <location filename="../QScintilla/MiniEditor.py" line="1321" /> - <location filename="../ViewManager/ViewManager.py" line="2246" /> - <location filename="../ViewManager/ViewManager.py" line="2245" /> + <location filename="../ViewManager/ViewManager.py" line="2256" /> + <location filename="../ViewManager/ViewManager.py" line="2255" /> <source>Extend selection down one line</source> <translation>Estendi selezione in basso di una riga</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1323" /> - <location filename="../ViewManager/ViewManager.py" line="2247" /> + <location filename="../ViewManager/ViewManager.py" line="2257" /> <source>Shift+Down</source> <translation>Shift+Down</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1330" /> - <location filename="../ViewManager/ViewManager.py" line="2254" /> + <location filename="../ViewManager/ViewManager.py" line="2264" /> <source>Meta+Shift+N</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1340" /> <location filename="../QScintilla/MiniEditor.py" line="1337" /> - <location filename="../ViewManager/ViewManager.py" line="2264" /> - <location filename="../ViewManager/ViewManager.py" line="2261" /> + <location filename="../ViewManager/ViewManager.py" line="2274" /> + <location filename="../ViewManager/ViewManager.py" line="2271" /> <source>Extend selection left one word part</source> <translation>Estendi la selezione a sinistra di una parte di parola</translation> </message> @@ -96124,16 +96137,16 @@ <location filename="../QScintilla/MiniEditor.py" line="1391" /> <location filename="../QScintilla/MiniEditor.py" line="1351" /> <location filename="../QScintilla/ShellWindow.py" line="832" /> - <location filename="../ViewManager/ViewManager.py" line="2315" /> - <location filename="../ViewManager/ViewManager.py" line="2275" /> + <location filename="../ViewManager/ViewManager.py" line="2325" /> + <location filename="../ViewManager/ViewManager.py" line="2285" /> <source>Alt+Shift+Left</source> <translation>Alt+Shift+Left</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1362" /> <location filename="../QScintilla/MiniEditor.py" line="1359" /> - <location filename="../ViewManager/ViewManager.py" line="2286" /> - <location filename="../ViewManager/ViewManager.py" line="2283" /> + <location filename="../ViewManager/ViewManager.py" line="2296" /> + <location filename="../ViewManager/ViewManager.py" line="2293" /> <source>Extend selection right one word part</source> <translation>Estendi la selezione a destra di una parte di parola</translation> </message> @@ -96142,9 +96155,9 @@ <location filename="../QScintilla/MiniEditor.py" line="1419" /> <location filename="../QScintilla/MiniEditor.py" line="1373" /> <location filename="../QScintilla/ShellWindow.py" line="860" /> - <location filename="../ViewManager/ViewManager.py" line="3093" /> - <location filename="../ViewManager/ViewManager.py" line="2343" /> - <location filename="../ViewManager/ViewManager.py" line="2297" /> + <location filename="../ViewManager/ViewManager.py" line="3103" /> + <location filename="../ViewManager/ViewManager.py" line="2353" /> + <location filename="../ViewManager/ViewManager.py" line="2307" /> <source>Alt+Shift+Right</source> <translation>Alt+Shift+Right</translation> </message> @@ -96153,8 +96166,8 @@ <location filename="../QScintilla/MiniEditor.py" line="1381" /> <location filename="../QScintilla/ShellWindow.py" line="823" /> <location filename="../QScintilla/ShellWindow.py" line="822" /> - <location filename="../ViewManager/ViewManager.py" line="2306" /> - <location filename="../ViewManager/ViewManager.py" line="2305" /> + <location filename="../ViewManager/ViewManager.py" line="2316" /> + <location filename="../ViewManager/ViewManager.py" line="2315" /> <source>Extend selection left one word</source> <translation>Estendi la selezione a sinistra di una parola</translation> </message> @@ -96162,8 +96175,8 @@ <location filename="../QScintilla/MiniEditor.py" line="2312" /> <location filename="../QScintilla/MiniEditor.py" line="1397" /> <location filename="../QScintilla/ShellWindow.py" line="838" /> - <location filename="../ViewManager/ViewManager.py" line="3219" /> - <location filename="../ViewManager/ViewManager.py" line="2321" /> + <location filename="../ViewManager/ViewManager.py" line="3229" /> + <location filename="../ViewManager/ViewManager.py" line="2331" /> <source>Ctrl+Shift+Left</source> <translation>Ctrl+Shift+Left</translation> </message> @@ -96172,8 +96185,8 @@ <location filename="../QScintilla/MiniEditor.py" line="1405" /> <location filename="../QScintilla/ShellWindow.py" line="849" /> <location filename="../QScintilla/ShellWindow.py" line="846" /> - <location filename="../ViewManager/ViewManager.py" line="2332" /> - <location filename="../ViewManager/ViewManager.py" line="2329" /> + <location filename="../ViewManager/ViewManager.py" line="2342" /> + <location filename="../ViewManager/ViewManager.py" line="2339" /> <source>Extend selection right one word</source> <translation>Estendi la selezione a destra di una parola</translation> </message> @@ -96181,8 +96194,8 @@ <location filename="../QScintilla/MiniEditor.py" line="1873" /> <location filename="../QScintilla/MiniEditor.py" line="1425" /> <location filename="../QScintilla/ShellWindow.py" line="866" /> - <location filename="../ViewManager/ViewManager.py" line="2780" /> - <location filename="../ViewManager/ViewManager.py" line="2349" /> + <location filename="../ViewManager/ViewManager.py" line="2790" /> + <location filename="../ViewManager/ViewManager.py" line="2359" /> <source>Ctrl+Shift+Right</source> <translation>Ctrl+Shift+Right</translation> </message> @@ -96191,15 +96204,15 @@ <location filename="../QScintilla/MiniEditor.py" line="1433" /> <location filename="../QScintilla/ShellWindow.py" line="878" /> <location filename="../QScintilla/ShellWindow.py" line="874" /> - <location filename="../ViewManager/ViewManager.py" line="2361" /> - <location filename="../ViewManager/ViewManager.py" line="2357" /> + <location filename="../ViewManager/ViewManager.py" line="2371" /> + <location filename="../ViewManager/ViewManager.py" line="2367" /> <source>Extend selection to first visible character in document line</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1448" /> <location filename="../QScintilla/ShellWindow.py" line="889" /> - <location filename="../ViewManager/ViewManager.py" line="2372" /> + <location filename="../ViewManager/ViewManager.py" line="2382" /> <source>Shift+Home</source> <translation>Shift+Home</translation> </message> @@ -96208,124 +96221,124 @@ <location filename="../QScintilla/MiniEditor.py" line="1455" /> <location filename="../QScintilla/ShellWindow.py" line="899" /> <location filename="../QScintilla/ShellWindow.py" line="896" /> - <location filename="../ViewManager/ViewManager.py" line="2382" /> - <location filename="../ViewManager/ViewManager.py" line="2379" /> + <location filename="../ViewManager/ViewManager.py" line="2392" /> + <location filename="../ViewManager/ViewManager.py" line="2389" /> <source>Extend selection to end of document line</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1468" /> <location filename="../QScintilla/ShellWindow.py" line="909" /> - <location filename="../ViewManager/ViewManager.py" line="2392" /> + <location filename="../ViewManager/ViewManager.py" line="2402" /> <source>Meta+Shift+E</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1472" /> <location filename="../QScintilla/ShellWindow.py" line="913" /> - <location filename="../ViewManager/ViewManager.py" line="2396" /> + <location filename="../ViewManager/ViewManager.py" line="2406" /> <source>Shift+End</source> <translation>Shift+End</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1482" /> <location filename="../QScintilla/MiniEditor.py" line="1479" /> - <location filename="../ViewManager/ViewManager.py" line="2406" /> - <location filename="../ViewManager/ViewManager.py" line="2403" /> + <location filename="../ViewManager/ViewManager.py" line="2416" /> + <location filename="../ViewManager/ViewManager.py" line="2413" /> <source>Extend selection up one paragraph</source> <translation>Estendi selezione in alto di un paragrafo</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1485" /> - <location filename="../ViewManager/ViewManager.py" line="2409" /> + <location filename="../ViewManager/ViewManager.py" line="2419" /> <source>Alt+Shift+Up</source> <translation>Alt+Shift+Up</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1498" /> <location filename="../QScintilla/MiniEditor.py" line="1495" /> - <location filename="../ViewManager/ViewManager.py" line="2422" /> - <location filename="../ViewManager/ViewManager.py" line="2419" /> + <location filename="../ViewManager/ViewManager.py" line="2432" /> + <location filename="../ViewManager/ViewManager.py" line="2429" /> <source>Extend selection down one paragraph</source> <translation>Estendi selezione in basso di un paragrafo</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1501" /> - <location filename="../ViewManager/ViewManager.py" line="2425" /> + <location filename="../ViewManager/ViewManager.py" line="2435" /> <source>Alt+Shift+Down</source> <translation>Alt+Shift+Down</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1512" /> <location filename="../QScintilla/MiniEditor.py" line="1511" /> - <location filename="../ViewManager/ViewManager.py" line="2436" /> - <location filename="../ViewManager/ViewManager.py" line="2435" /> + <location filename="../ViewManager/ViewManager.py" line="2446" /> + <location filename="../ViewManager/ViewManager.py" line="2445" /> <source>Extend selection up one page</source> <translation>Estendi selezione in alto di una pagina</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1513" /> - <location filename="../ViewManager/ViewManager.py" line="2437" /> + <location filename="../ViewManager/ViewManager.py" line="2447" /> <source>Shift+PgUp</source> <translation>Shift+PgUp</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1524" /> <location filename="../QScintilla/MiniEditor.py" line="1523" /> - <location filename="../ViewManager/ViewManager.py" line="2448" /> - <location filename="../ViewManager/ViewManager.py" line="2447" /> + <location filename="../ViewManager/ViewManager.py" line="2458" /> + <location filename="../ViewManager/ViewManager.py" line="2457" /> <source>Extend selection down one page</source> <translation>Estendi selezione in basso di una pagina</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1525" /> - <location filename="../ViewManager/ViewManager.py" line="2449" /> + <location filename="../ViewManager/ViewManager.py" line="2459" /> <source>Shift+PgDown</source> <translation>Shift+PgDown</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1532" /> - <location filename="../ViewManager/ViewManager.py" line="2456" /> + <location filename="../ViewManager/ViewManager.py" line="2466" /> <source>Meta+Shift+V</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1542" /> <location filename="../QScintilla/MiniEditor.py" line="1539" /> - <location filename="../ViewManager/ViewManager.py" line="2466" /> - <location filename="../ViewManager/ViewManager.py" line="2463" /> + <location filename="../ViewManager/ViewManager.py" line="2476" /> + <location filename="../ViewManager/ViewManager.py" line="2473" /> <source>Extend selection to start of document</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1552" /> - <location filename="../ViewManager/ViewManager.py" line="2476" /> + <location filename="../ViewManager/ViewManager.py" line="2486" /> <source>Ctrl+Shift+Up</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1557" /> - <location filename="../ViewManager/ViewManager.py" line="2481" /> + <location filename="../ViewManager/ViewManager.py" line="2491" /> <source>Ctrl+Shift+Home</source> <translation>Ctrl+Shift+Home</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1568" /> <location filename="../QScintilla/MiniEditor.py" line="1565" /> - <location filename="../ViewManager/ViewManager.py" line="2492" /> - <location filename="../ViewManager/ViewManager.py" line="2489" /> + <location filename="../ViewManager/ViewManager.py" line="2502" /> + <location filename="../ViewManager/ViewManager.py" line="2499" /> <source>Extend selection to end of document</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1579" /> - <location filename="../ViewManager/ViewManager.py" line="2503" /> + <location filename="../ViewManager/ViewManager.py" line="2513" /> <source>Ctrl+Shift+Down</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1585" /> - <location filename="../ViewManager/ViewManager.py" line="2509" /> + <location filename="../ViewManager/ViewManager.py" line="2519" /> <source>Ctrl+Shift+End</source> <translation>Ctrl+Shift+End</translation> </message> @@ -96334,37 +96347,37 @@ <location filename="../QScintilla/MiniEditor.py" line="1593" /> <location filename="../QScintilla/ShellWindow.py" line="481" /> <location filename="../QScintilla/ShellWindow.py" line="480" /> - <location filename="../ViewManager/ViewManager.py" line="2518" /> - <location filename="../ViewManager/ViewManager.py" line="2517" /> + <location filename="../ViewManager/ViewManager.py" line="2528" /> + <location filename="../ViewManager/ViewManager.py" line="2527" /> <source>Delete previous character</source> <translation>Cancella caratteri precedenti</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1595" /> <location filename="../QScintilla/ShellWindow.py" line="482" /> - <location filename="../ViewManager/ViewManager.py" line="2519" /> + <location filename="../ViewManager/ViewManager.py" line="2529" /> <source>Backspace</source> <translation>Backspace</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1602" /> <location filename="../QScintilla/ShellWindow.py" line="489" /> - <location filename="../ViewManager/ViewManager.py" line="2526" /> + <location filename="../ViewManager/ViewManager.py" line="2536" /> <source>Meta+H</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1607" /> <location filename="../QScintilla/ShellWindow.py" line="494" /> - <location filename="../ViewManager/ViewManager.py" line="2531" /> + <location filename="../ViewManager/ViewManager.py" line="2541" /> <source>Shift+Backspace</source> <translation>Shift+Backspace</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1618" /> <location filename="../QScintilla/MiniEditor.py" line="1615" /> - <location filename="../ViewManager/ViewManager.py" line="2542" /> - <location filename="../ViewManager/ViewManager.py" line="2539" /> + <location filename="../ViewManager/ViewManager.py" line="2552" /> + <location filename="../ViewManager/ViewManager.py" line="2549" /> <source>Delete previous character if not at start of line</source> <translation type="unfinished" /> </message> @@ -96373,22 +96386,22 @@ <location filename="../QScintilla/MiniEditor.py" line="1631" /> <location filename="../QScintilla/ShellWindow.py" line="503" /> <location filename="../QScintilla/ShellWindow.py" line="502" /> - <location filename="../ViewManager/ViewManager.py" line="2556" /> - <location filename="../ViewManager/ViewManager.py" line="2555" /> + <location filename="../ViewManager/ViewManager.py" line="2566" /> + <location filename="../ViewManager/ViewManager.py" line="2565" /> <source>Delete current character</source> <translation>Cancella il carattere corrente</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1633" /> <location filename="../QScintilla/ShellWindow.py" line="504" /> - <location filename="../ViewManager/ViewManager.py" line="2557" /> + <location filename="../ViewManager/ViewManager.py" line="2567" /> <source>Del</source> <translation>Del</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1640" /> <location filename="../QScintilla/ShellWindow.py" line="511" /> - <location filename="../ViewManager/ViewManager.py" line="2564" /> + <location filename="../ViewManager/ViewManager.py" line="2574" /> <source>Meta+D</source> <translation type="unfinished" /> </message> @@ -96397,15 +96410,15 @@ <location filename="../QScintilla/MiniEditor.py" line="1647" /> <location filename="../QScintilla/ShellWindow.py" line="519" /> <location filename="../QScintilla/ShellWindow.py" line="518" /> - <location filename="../ViewManager/ViewManager.py" line="2572" /> - <location filename="../ViewManager/ViewManager.py" line="2571" /> + <location filename="../ViewManager/ViewManager.py" line="2582" /> + <location filename="../ViewManager/ViewManager.py" line="2581" /> <source>Delete word to left</source> <translation>Cancella parola a sinistra</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1649" /> <location filename="../QScintilla/ShellWindow.py" line="520" /> - <location filename="../ViewManager/ViewManager.py" line="2573" /> + <location filename="../ViewManager/ViewManager.py" line="2583" /> <source>Ctrl+Backspace</source> <translation>Ctrl+Backspace</translation> </message> @@ -96414,15 +96427,15 @@ <location filename="../QScintilla/MiniEditor.py" line="1659" /> <location filename="../QScintilla/ShellWindow.py" line="531" /> <location filename="../QScintilla/ShellWindow.py" line="530" /> - <location filename="../ViewManager/ViewManager.py" line="2584" /> - <location filename="../ViewManager/ViewManager.py" line="2583" /> + <location filename="../ViewManager/ViewManager.py" line="2594" /> + <location filename="../ViewManager/ViewManager.py" line="2593" /> <source>Delete word to right</source> <translation>Cancella parola a destra</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1661" /> <location filename="../QScintilla/ShellWindow.py" line="532" /> - <location filename="../ViewManager/ViewManager.py" line="2585" /> + <location filename="../ViewManager/ViewManager.py" line="2595" /> <source>Ctrl+Del</source> <translation>Ctrl+Del</translation> </message> @@ -96431,15 +96444,15 @@ <location filename="../QScintilla/MiniEditor.py" line="1671" /> <location filename="../QScintilla/ShellWindow.py" line="543" /> <location filename="../QScintilla/ShellWindow.py" line="542" /> - <location filename="../ViewManager/ViewManager.py" line="2596" /> - <location filename="../ViewManager/ViewManager.py" line="2595" /> + <location filename="../ViewManager/ViewManager.py" line="2606" /> + <location filename="../ViewManager/ViewManager.py" line="2605" /> <source>Delete line to left</source> <translation>Cancella riga a sinistra</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1674" /> <location filename="../QScintilla/ShellWindow.py" line="545" /> - <location filename="../ViewManager/ViewManager.py" line="2598" /> + <location filename="../ViewManager/ViewManager.py" line="2608" /> <source>Ctrl+Shift+Backspace</source> <translation>Ctrl+Shift+Backspace</translation> </message> @@ -96448,22 +96461,22 @@ <location filename="../QScintilla/MiniEditor.py" line="1685" /> <location filename="../QScintilla/ShellWindow.py" line="557" /> <location filename="../QScintilla/ShellWindow.py" line="556" /> - <location filename="../ViewManager/ViewManager.py" line="2610" /> - <location filename="../ViewManager/ViewManager.py" line="2609" /> + <location filename="../ViewManager/ViewManager.py" line="2620" /> + <location filename="../ViewManager/ViewManager.py" line="2619" /> <source>Delete line to right</source> <translation>Cancella riga a destra</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1694" /> <location filename="../QScintilla/ShellWindow.py" line="565" /> - <location filename="../ViewManager/ViewManager.py" line="2618" /> + <location filename="../ViewManager/ViewManager.py" line="2628" /> <source>Meta+K</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1699" /> <location filename="../QScintilla/ShellWindow.py" line="570" /> - <location filename="../ViewManager/ViewManager.py" line="2623" /> + <location filename="../ViewManager/ViewManager.py" line="2633" /> <source>Ctrl+Shift+Del</source> <translation>Ctrl+Shift+Del</translation> </message> @@ -96472,38 +96485,38 @@ <location filename="../QScintilla/MiniEditor.py" line="1707" /> <location filename="../QScintilla/ShellWindow.py" line="469" /> <location filename="../QScintilla/ShellWindow.py" line="468" /> - <location filename="../ViewManager/ViewManager.py" line="2632" /> - <location filename="../ViewManager/ViewManager.py" line="2631" /> + <location filename="../ViewManager/ViewManager.py" line="2642" /> + <location filename="../ViewManager/ViewManager.py" line="2641" /> <source>Insert new line</source> <translation>Inserisci riga</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1709" /> <location filename="../QScintilla/ShellWindow.py" line="470" /> - <location filename="../ViewManager/ViewManager.py" line="2633" /> + <location filename="../ViewManager/ViewManager.py" line="2643" /> <source>Return</source> <translation>Return</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1710" /> <location filename="../QScintilla/ShellWindow.py" line="471" /> - <location filename="../ViewManager/ViewManager.py" line="2634" /> + <location filename="../ViewManager/ViewManager.py" line="2644" /> <source>Enter</source> <translation>Enter</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="2646" /> - <location filename="../ViewManager/ViewManager.py" line="2643" /> + <location filename="../ViewManager/ViewManager.py" line="2656" /> + <location filename="../ViewManager/ViewManager.py" line="2653" /> <source>Insert new line below current line</source> <translation>Inserisci una nuova riga sotto la linea corrente</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="2649" /> + <location filename="../ViewManager/ViewManager.py" line="2659" /> <source>Shift+Return</source> <translation>Shift+Return</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="2650" /> + <location filename="../ViewManager/ViewManager.py" line="2660" /> <source>Shift+Enter</source> <translation>Shift+Enter</translation> </message> @@ -96512,129 +96525,129 @@ <location filename="../QScintilla/MiniEditor.py" line="1719" /> <location filename="../QScintilla/ShellWindow.py" line="445" /> <location filename="../QScintilla/ShellWindow.py" line="444" /> - <location filename="../ViewManager/ViewManager.py" line="2659" /> - <location filename="../ViewManager/ViewManager.py" line="2658" /> + <location filename="../ViewManager/ViewManager.py" line="2669" /> + <location filename="../ViewManager/ViewManager.py" line="2668" /> <source>Delete current line</source> <translation>Cancella riga</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1721" /> <location filename="../QScintilla/ShellWindow.py" line="446" /> - <location filename="../ViewManager/ViewManager.py" line="2660" /> + <location filename="../ViewManager/ViewManager.py" line="2670" /> <source>Ctrl+Shift+L</source> <translation>Ctrl+Shift+L</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1732" /> <location filename="../QScintilla/MiniEditor.py" line="1731" /> - <location filename="../ViewManager/ViewManager.py" line="2671" /> - <location filename="../ViewManager/ViewManager.py" line="2670" /> + <location filename="../ViewManager/ViewManager.py" line="2681" /> + <location filename="../ViewManager/ViewManager.py" line="2680" /> <source>Duplicate current line</source> <translation>Duplica riga</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1733" /> - <location filename="../ViewManager/ViewManager.py" line="2672" /> + <location filename="../ViewManager/ViewManager.py" line="2682" /> <source>Ctrl+D</source> <translation>Ctrl+D</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1746" /> <location filename="../QScintilla/MiniEditor.py" line="1743" /> - <location filename="../ViewManager/ViewManager.py" line="2685" /> - <location filename="../ViewManager/ViewManager.py" line="2682" /> + <location filename="../ViewManager/ViewManager.py" line="2695" /> + <location filename="../ViewManager/ViewManager.py" line="2692" /> <source>Swap current and previous lines</source> <translation>Scambia la riga con quella precedente</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1749" /> - <location filename="../ViewManager/ViewManager.py" line="2688" /> + <location filename="../ViewManager/ViewManager.py" line="2698" /> <source>Ctrl+T</source> <translation>Ctrl+T</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1760" /> <location filename="../QScintilla/MiniEditor.py" line="1759" /> - <location filename="../ViewManager/ViewManager.py" line="2699" /> - <location filename="../ViewManager/ViewManager.py" line="2698" /> + <location filename="../ViewManager/ViewManager.py" line="2709" /> + <location filename="../ViewManager/ViewManager.py" line="2708" /> <source>Reverse selected lines</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1761" /> - <location filename="../ViewManager/ViewManager.py" line="2700" /> + <location filename="../ViewManager/ViewManager.py" line="2710" /> <source>Meta+Alt+R</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1772" /> <location filename="../QScintilla/MiniEditor.py" line="1771" /> - <location filename="../ViewManager/ViewManager.py" line="2711" /> - <location filename="../ViewManager/ViewManager.py" line="2710" /> + <location filename="../ViewManager/ViewManager.py" line="2721" /> + <location filename="../ViewManager/ViewManager.py" line="2720" /> <source>Cut current line</source> <translation>Taglia riga</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1773" /> - <location filename="../ViewManager/ViewManager.py" line="2712" /> + <location filename="../ViewManager/ViewManager.py" line="2722" /> <source>Alt+Shift+L</source> <translation>Alt+Shift+L</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1784" /> <location filename="../QScintilla/MiniEditor.py" line="1783" /> - <location filename="../ViewManager/ViewManager.py" line="2723" /> - <location filename="../ViewManager/ViewManager.py" line="2722" /> + <location filename="../ViewManager/ViewManager.py" line="2733" /> + <location filename="../ViewManager/ViewManager.py" line="2732" /> <source>Copy current line</source> <translation>Copia riga</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1785" /> - <location filename="../ViewManager/ViewManager.py" line="2724" /> + <location filename="../ViewManager/ViewManager.py" line="2734" /> <source>Ctrl+Shift+T</source> <translation>Ctrl+Shift+T</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1796" /> <location filename="../QScintilla/MiniEditor.py" line="1795" /> - <location filename="../ViewManager/ViewManager.py" line="2735" /> - <location filename="../ViewManager/ViewManager.py" line="2734" /> + <location filename="../ViewManager/ViewManager.py" line="2745" /> + <location filename="../ViewManager/ViewManager.py" line="2744" /> <source>Toggle insert/overtype</source> <translation>Scambia inserisci/sovrascrivi</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1797" /> - <location filename="../ViewManager/ViewManager.py" line="2736" /> + <location filename="../ViewManager/ViewManager.py" line="2746" /> <source>Ins</source> <translation>Ins</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1840" /> <location filename="../QScintilla/MiniEditor.py" line="1839" /> - <location filename="../ViewManager/ViewManager.py" line="2747" /> - <location filename="../ViewManager/ViewManager.py" line="2746" /> + <location filename="../ViewManager/ViewManager.py" line="2757" /> + <location filename="../ViewManager/ViewManager.py" line="2756" /> <source>Move to end of display line</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1852" /> - <location filename="../ViewManager/ViewManager.py" line="2759" /> + <location filename="../ViewManager/ViewManager.py" line="2769" /> <source>Alt+End</source> <translation>Alt+End</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1862" /> <location filename="../QScintilla/MiniEditor.py" line="1859" /> - <location filename="../ViewManager/ViewManager.py" line="2769" /> - <location filename="../ViewManager/ViewManager.py" line="2766" /> + <location filename="../ViewManager/ViewManager.py" line="2779" /> + <location filename="../ViewManager/ViewManager.py" line="2776" /> <source>Extend selection to end of display line</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1882" /> <location filename="../QScintilla/MiniEditor.py" line="1881" /> - <location filename="../ViewManager/ViewManager.py" line="2789" /> - <location filename="../ViewManager/ViewManager.py" line="2788" /> + <location filename="../ViewManager/ViewManager.py" line="2799" /> + <location filename="../ViewManager/ViewManager.py" line="2798" /> <source>Formfeed</source> <translation>Formfeed</translation> </message> @@ -96643,163 +96656,163 @@ <location filename="../QScintilla/MiniEditor.py" line="1893" /> <location filename="../QScintilla/ShellWindow.py" line="771" /> <location filename="../QScintilla/ShellWindow.py" line="770" /> - <location filename="../ViewManager/ViewManager.py" line="2801" /> - <location filename="../ViewManager/ViewManager.py" line="2800" /> + <location filename="../ViewManager/ViewManager.py" line="2811" /> + <location filename="../ViewManager/ViewManager.py" line="2810" /> <source>Escape</source> <translation>Escape</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1895" /> <location filename="../QScintilla/ShellWindow.py" line="772" /> - <location filename="../ViewManager/ViewManager.py" line="2802" /> + <location filename="../ViewManager/ViewManager.py" line="2812" /> <source>Esc</source> <translation>Esc</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1908" /> <location filename="../QScintilla/MiniEditor.py" line="1905" /> - <location filename="../ViewManager/ViewManager.py" line="2815" /> - <location filename="../ViewManager/ViewManager.py" line="2812" /> + <location filename="../ViewManager/ViewManager.py" line="2825" /> + <location filename="../ViewManager/ViewManager.py" line="2822" /> <source>Extend rectangular selection down one line</source> <translation>Estendi selezione rettagolare in basso di una riga</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1911" /> - <location filename="../ViewManager/ViewManager.py" line="2818" /> + <location filename="../ViewManager/ViewManager.py" line="2828" /> <source>Alt+Ctrl+Down</source> <translation>Alt+Ctrl+Down</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1919" /> - <location filename="../ViewManager/ViewManager.py" line="2826" /> + <location filename="../ViewManager/ViewManager.py" line="2836" /> <source>Meta+Alt+Shift+N</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1930" /> <location filename="../QScintilla/MiniEditor.py" line="1927" /> - <location filename="../ViewManager/ViewManager.py" line="2837" /> - <location filename="../ViewManager/ViewManager.py" line="2834" /> + <location filename="../ViewManager/ViewManager.py" line="2847" /> + <location filename="../ViewManager/ViewManager.py" line="2844" /> <source>Extend rectangular selection up one line</source> <translation>Estendi selezione rettagolare in alto di una riga</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1933" /> - <location filename="../ViewManager/ViewManager.py" line="2840" /> + <location filename="../ViewManager/ViewManager.py" line="2850" /> <source>Alt+Ctrl+Up</source> <translation>Alt+Ctrl+Up</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1941" /> - <location filename="../ViewManager/ViewManager.py" line="2848" /> + <location filename="../ViewManager/ViewManager.py" line="2858" /> <source>Meta+Alt+Shift+P</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1952" /> <location filename="../QScintilla/MiniEditor.py" line="1949" /> - <location filename="../ViewManager/ViewManager.py" line="2859" /> - <location filename="../ViewManager/ViewManager.py" line="2856" /> + <location filename="../ViewManager/ViewManager.py" line="2869" /> + <location filename="../ViewManager/ViewManager.py" line="2866" /> <source>Extend rectangular selection left one character</source> <translation>Estendi selezione rettagolare a sinistra di un carattere</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1955" /> - <location filename="../ViewManager/ViewManager.py" line="2862" /> + <location filename="../ViewManager/ViewManager.py" line="2872" /> <source>Alt+Ctrl+Left</source> <translation>Alt+Ctrl+Left</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1963" /> - <location filename="../ViewManager/ViewManager.py" line="2870" /> + <location filename="../ViewManager/ViewManager.py" line="2880" /> <source>Meta+Alt+Shift+B</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1974" /> <location filename="../QScintilla/MiniEditor.py" line="1971" /> - <location filename="../ViewManager/ViewManager.py" line="2881" /> - <location filename="../ViewManager/ViewManager.py" line="2878" /> + <location filename="../ViewManager/ViewManager.py" line="2891" /> + <location filename="../ViewManager/ViewManager.py" line="2888" /> <source>Extend rectangular selection right one character</source> <translation>Estendi selezione rettagolare a destra di un carattere</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1977" /> - <location filename="../ViewManager/ViewManager.py" line="2884" /> + <location filename="../ViewManager/ViewManager.py" line="2894" /> <source>Alt+Ctrl+Right</source> <translation>Alt+Ctrl+Right</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1985" /> - <location filename="../ViewManager/ViewManager.py" line="2892" /> + <location filename="../ViewManager/ViewManager.py" line="2902" /> <source>Meta+Alt+Shift+F</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1998" /> <location filename="../QScintilla/MiniEditor.py" line="1993" /> - <location filename="../ViewManager/ViewManager.py" line="2905" /> - <location filename="../ViewManager/ViewManager.py" line="2900" /> + <location filename="../ViewManager/ViewManager.py" line="2915" /> + <location filename="../ViewManager/ViewManager.py" line="2910" /> <source>Extend rectangular selection to first visible character in document line</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2011" /> - <location filename="../ViewManager/ViewManager.py" line="2918" /> + <location filename="../ViewManager/ViewManager.py" line="2928" /> <source>Alt+Shift+Home</source> <translation>Alt+Shift+Home</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2022" /> <location filename="../QScintilla/MiniEditor.py" line="2019" /> - <location filename="../ViewManager/ViewManager.py" line="2929" /> - <location filename="../ViewManager/ViewManager.py" line="2926" /> + <location filename="../ViewManager/ViewManager.py" line="2939" /> + <location filename="../ViewManager/ViewManager.py" line="2936" /> <source>Extend rectangular selection to end of document line</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2033" /> - <location filename="../ViewManager/ViewManager.py" line="2940" /> + <location filename="../ViewManager/ViewManager.py" line="2950" /> <source>Meta+Alt+Shift+E</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2038" /> - <location filename="../ViewManager/ViewManager.py" line="2945" /> + <location filename="../ViewManager/ViewManager.py" line="2955" /> <source>Alt+Shift+End</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2048" /> <location filename="../QScintilla/MiniEditor.py" line="2045" /> - <location filename="../ViewManager/ViewManager.py" line="2955" /> - <location filename="../ViewManager/ViewManager.py" line="2952" /> + <location filename="../ViewManager/ViewManager.py" line="2965" /> + <location filename="../ViewManager/ViewManager.py" line="2962" /> <source>Extend rectangular selection up one page</source> <translation>Estendi selezione rettagolare in alto di una pagina</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2051" /> - <location filename="../ViewManager/ViewManager.py" line="2958" /> + <location filename="../ViewManager/ViewManager.py" line="2968" /> <source>Alt+Shift+PgUp</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2064" /> <location filename="../QScintilla/MiniEditor.py" line="2061" /> - <location filename="../ViewManager/ViewManager.py" line="2971" /> - <location filename="../ViewManager/ViewManager.py" line="2968" /> + <location filename="../ViewManager/ViewManager.py" line="2981" /> + <location filename="../ViewManager/ViewManager.py" line="2978" /> <source>Extend rectangular selection down one page</source> <translation>Estendi selezione rettagolare in basso di una pagina</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2067" /> - <location filename="../ViewManager/ViewManager.py" line="2974" /> + <location filename="../ViewManager/ViewManager.py" line="2984" /> <source>Alt+Shift+PgDown</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2075" /> - <location filename="../ViewManager/ViewManager.py" line="2982" /> + <location filename="../ViewManager/ViewManager.py" line="2992" /> <source>Meta+Alt+Shift+V</source> <translation type="unfinished" /> </message> @@ -96808,299 +96821,299 @@ <location filename="../QScintilla/MiniEditor.py" line="2549" /> <location filename="../QScintilla/MiniEditor.py" line="2084" /> <location filename="../QScintilla/MiniEditor.py" line="2083" /> - <location filename="../ViewManager/ViewManager.py" line="2991" /> - <location filename="../ViewManager/ViewManager.py" line="2990" /> + <location filename="../ViewManager/ViewManager.py" line="3001" /> + <location filename="../ViewManager/ViewManager.py" line="3000" /> <source>Duplicate current selection</source> <translation>Duplica la selezione corrente</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2551" /> <location filename="../QScintilla/MiniEditor.py" line="2085" /> - <location filename="../ViewManager/ViewManager.py" line="2992" /> + <location filename="../ViewManager/ViewManager.py" line="3002" /> <source>Ctrl+Shift+D</source> <translation>Ctrl+Shift+D</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2099" /> <location filename="../QScintilla/MiniEditor.py" line="2096" /> - <location filename="../ViewManager/ViewManager.py" line="3006" /> - <location filename="../ViewManager/ViewManager.py" line="3003" /> + <location filename="../ViewManager/ViewManager.py" line="3016" /> + <location filename="../ViewManager/ViewManager.py" line="3013" /> <source>Scroll to start of document</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2118" /> <location filename="../QScintilla/MiniEditor.py" line="2117" /> - <location filename="../ViewManager/ViewManager.py" line="3025" /> - <location filename="../ViewManager/ViewManager.py" line="3024" /> + <location filename="../ViewManager/ViewManager.py" line="3035" /> + <location filename="../ViewManager/ViewManager.py" line="3034" /> <source>Scroll to end of document</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2137" /> <location filename="../QScintilla/MiniEditor.py" line="2134" /> - <location filename="../ViewManager/ViewManager.py" line="3044" /> - <location filename="../ViewManager/ViewManager.py" line="3041" /> + <location filename="../ViewManager/ViewManager.py" line="3054" /> + <location filename="../ViewManager/ViewManager.py" line="3051" /> <source>Scroll vertically to center current line</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2147" /> - <location filename="../ViewManager/ViewManager.py" line="3054" /> + <location filename="../ViewManager/ViewManager.py" line="3064" /> <source>Meta+L</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2156" /> <location filename="../QScintilla/MiniEditor.py" line="2155" /> - <location filename="../ViewManager/ViewManager.py" line="3063" /> - <location filename="../ViewManager/ViewManager.py" line="3062" /> + <location filename="../ViewManager/ViewManager.py" line="3073" /> + <location filename="../ViewManager/ViewManager.py" line="3072" /> <source>Move to end of next word</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2175" /> <location filename="../QScintilla/MiniEditor.py" line="2172" /> - <location filename="../ViewManager/ViewManager.py" line="3082" /> - <location filename="../ViewManager/ViewManager.py" line="3079" /> + <location filename="../ViewManager/ViewManager.py" line="3092" /> + <location filename="../ViewManager/ViewManager.py" line="3089" /> <source>Extend selection to end of next word</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2198" /> <location filename="../QScintilla/MiniEditor.py" line="2195" /> - <location filename="../ViewManager/ViewManager.py" line="3105" /> - <location filename="../ViewManager/ViewManager.py" line="3102" /> + <location filename="../ViewManager/ViewManager.py" line="3115" /> + <location filename="../ViewManager/ViewManager.py" line="3112" /> <source>Move to end of previous word</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2215" /> <location filename="../QScintilla/MiniEditor.py" line="2212" /> - <location filename="../ViewManager/ViewManager.py" line="3122" /> - <location filename="../ViewManager/ViewManager.py" line="3119" /> + <location filename="../ViewManager/ViewManager.py" line="3132" /> + <location filename="../ViewManager/ViewManager.py" line="3129" /> <source>Extend selection to end of previous word</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2232" /> <location filename="../QScintilla/MiniEditor.py" line="2229" /> - <location filename="../ViewManager/ViewManager.py" line="3139" /> - <location filename="../ViewManager/ViewManager.py" line="3136" /> + <location filename="../ViewManager/ViewManager.py" line="3149" /> + <location filename="../ViewManager/ViewManager.py" line="3146" /> <source>Move to start of document line</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2242" /> - <location filename="../ViewManager/ViewManager.py" line="3149" /> + <location filename="../ViewManager/ViewManager.py" line="3159" /> <source>Meta+A</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2253" /> <location filename="../QScintilla/MiniEditor.py" line="2250" /> - <location filename="../ViewManager/ViewManager.py" line="3160" /> - <location filename="../ViewManager/ViewManager.py" line="3157" /> + <location filename="../ViewManager/ViewManager.py" line="3170" /> + <location filename="../ViewManager/ViewManager.py" line="3167" /> <source>Extend selection to start of document line</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2264" /> - <location filename="../ViewManager/ViewManager.py" line="3171" /> + <location filename="../ViewManager/ViewManager.py" line="3181" /> <source>Meta+Shift+A</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2277" /> <location filename="../QScintilla/MiniEditor.py" line="2273" /> - <location filename="../ViewManager/ViewManager.py" line="3184" /> - <location filename="../ViewManager/ViewManager.py" line="3180" /> + <location filename="../ViewManager/ViewManager.py" line="3194" /> + <location filename="../ViewManager/ViewManager.py" line="3190" /> <source>Extend rectangular selection to start of document line</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2289" /> - <location filename="../ViewManager/ViewManager.py" line="3196" /> + <location filename="../ViewManager/ViewManager.py" line="3206" /> <source>Meta+Alt+Shift+A</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2301" /> <location filename="../QScintilla/MiniEditor.py" line="2298" /> - <location filename="../ViewManager/ViewManager.py" line="3208" /> - <location filename="../ViewManager/ViewManager.py" line="3205" /> + <location filename="../ViewManager/ViewManager.py" line="3218" /> + <location filename="../ViewManager/ViewManager.py" line="3215" /> <source>Extend selection to start of display line</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2324" /> <location filename="../QScintilla/MiniEditor.py" line="2321" /> - <location filename="../ViewManager/ViewManager.py" line="3231" /> - <location filename="../ViewManager/ViewManager.py" line="3228" /> + <location filename="../ViewManager/ViewManager.py" line="3241" /> + <location filename="../ViewManager/ViewManager.py" line="3238" /> <source>Move to start of display or document line</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2342" /> <location filename="../QScintilla/MiniEditor.py" line="2338" /> - <location filename="../ViewManager/ViewManager.py" line="3249" /> - <location filename="../ViewManager/ViewManager.py" line="3245" /> + <location filename="../ViewManager/ViewManager.py" line="3259" /> + <location filename="../ViewManager/ViewManager.py" line="3255" /> <source>Extend selection to start of display or document line</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2361" /> <location filename="../QScintilla/MiniEditor.py" line="2357" /> - <location filename="../ViewManager/ViewManager.py" line="3268" /> - <location filename="../ViewManager/ViewManager.py" line="3264" /> + <location filename="../ViewManager/ViewManager.py" line="3278" /> + <location filename="../ViewManager/ViewManager.py" line="3274" /> <source>Move to first visible character in display or document line</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2381" /> <location filename="../QScintilla/MiniEditor.py" line="2376" /> - <location filename="../ViewManager/ViewManager.py" line="3288" /> - <location filename="../ViewManager/ViewManager.py" line="3283" /> + <location filename="../ViewManager/ViewManager.py" line="3298" /> + <location filename="../ViewManager/ViewManager.py" line="3293" /> <source>Extend selection to first visible character in display or document line</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2400" /> <location filename="../QScintilla/MiniEditor.py" line="2397" /> - <location filename="../ViewManager/ViewManager.py" line="3307" /> - <location filename="../ViewManager/ViewManager.py" line="3304" /> + <location filename="../ViewManager/ViewManager.py" line="3317" /> + <location filename="../ViewManager/ViewManager.py" line="3314" /> <source>Move to end of display or document line</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2417" /> <location filename="../QScintilla/MiniEditor.py" line="2414" /> - <location filename="../ViewManager/ViewManager.py" line="3324" /> - <location filename="../ViewManager/ViewManager.py" line="3321" /> + <location filename="../ViewManager/ViewManager.py" line="3334" /> + <location filename="../ViewManager/ViewManager.py" line="3331" /> <source>Extend selection to end of display or document line</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2432" /> <location filename="../QScintilla/MiniEditor.py" line="2431" /> - <location filename="../ViewManager/ViewManager.py" line="3339" /> - <location filename="../ViewManager/ViewManager.py" line="3338" /> + <location filename="../ViewManager/ViewManager.py" line="3349" /> + <location filename="../ViewManager/ViewManager.py" line="3348" /> <source>Stuttered move up one page</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2447" /> <location filename="../QScintilla/MiniEditor.py" line="2444" /> - <location filename="../ViewManager/ViewManager.py" line="3354" /> - <location filename="../ViewManager/ViewManager.py" line="3351" /> + <location filename="../ViewManager/ViewManager.py" line="3364" /> + <location filename="../ViewManager/ViewManager.py" line="3361" /> <source>Stuttered extend selection up one page</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2464" /> <location filename="../QScintilla/MiniEditor.py" line="2461" /> - <location filename="../ViewManager/ViewManager.py" line="3371" /> - <location filename="../ViewManager/ViewManager.py" line="3368" /> + <location filename="../ViewManager/ViewManager.py" line="3381" /> + <location filename="../ViewManager/ViewManager.py" line="3378" /> <source>Stuttered move down one page</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2481" /> <location filename="../QScintilla/MiniEditor.py" line="2478" /> - <location filename="../ViewManager/ViewManager.py" line="3388" /> - <location filename="../ViewManager/ViewManager.py" line="3385" /> + <location filename="../ViewManager/ViewManager.py" line="3398" /> + <location filename="../ViewManager/ViewManager.py" line="3395" /> <source>Stuttered extend selection down one page</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2498" /> <location filename="../QScintilla/MiniEditor.py" line="2495" /> - <location filename="../ViewManager/ViewManager.py" line="3405" /> - <location filename="../ViewManager/ViewManager.py" line="3402" /> + <location filename="../ViewManager/ViewManager.py" line="3415" /> + <location filename="../ViewManager/ViewManager.py" line="3412" /> <source>Delete right to end of next word</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2508" /> - <location filename="../ViewManager/ViewManager.py" line="3415" /> + <location filename="../ViewManager/ViewManager.py" line="3425" /> <source>Alt+Del</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2519" /> <location filename="../QScintilla/MiniEditor.py" line="2516" /> - <location filename="../ViewManager/ViewManager.py" line="3426" /> - <location filename="../ViewManager/ViewManager.py" line="3423" /> + <location filename="../ViewManager/ViewManager.py" line="3436" /> + <location filename="../ViewManager/ViewManager.py" line="3433" /> <source>Move selected lines up one line</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2536" /> <location filename="../QScintilla/MiniEditor.py" line="2533" /> - <location filename="../ViewManager/ViewManager.py" line="3443" /> - <location filename="../ViewManager/ViewManager.py" line="3440" /> + <location filename="../ViewManager/ViewManager.py" line="3453" /> + <location filename="../ViewManager/ViewManager.py" line="3450" /> <source>Move selected lines down one line</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1810" /> <location filename="../QScintilla/MiniEditor.py" line="1807" /> - <location filename="../ViewManager/ViewManager.py" line="3461" /> - <location filename="../ViewManager/ViewManager.py" line="3458" /> + <location filename="../ViewManager/ViewManager.py" line="3471" /> + <location filename="../ViewManager/ViewManager.py" line="3468" /> <source>Convert selection to lower case</source> <translation>Converti selezione in minuscolo</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1813" /> - <location filename="../ViewManager/ViewManager.py" line="3464" /> + <location filename="../ViewManager/ViewManager.py" line="3474" /> <source>Alt+Shift+U</source> <translation>Alt+Shift+U</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1826" /> <location filename="../QScintilla/MiniEditor.py" line="1823" /> - <location filename="../ViewManager/ViewManager.py" line="3477" /> - <location filename="../ViewManager/ViewManager.py" line="3474" /> + <location filename="../ViewManager/ViewManager.py" line="3487" /> + <location filename="../ViewManager/ViewManager.py" line="3484" /> <source>Convert selection to upper case</source> <translation>Converti selezione in maiuscolo</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1829" /> - <location filename="../ViewManager/ViewManager.py" line="3480" /> + <location filename="../ViewManager/ViewManager.py" line="3490" /> <source>Ctrl+Shift+U</source> <translation>Ctrl+Shift+U</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3506" /> + <location filename="../ViewManager/ViewManager.py" line="3516" /> <source>&Edit</source> <translation>&Edita</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3564" /> - <location filename="../ViewManager/ViewManager.py" line="3562" /> + <location filename="../ViewManager/ViewManager.py" line="3574" /> + <location filename="../ViewManager/ViewManager.py" line="3572" /> <source>Edit</source> <translation>Modifica</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2568" /> <location filename="../QScintilla/ShellWindow.py" line="927" /> - <location filename="../ViewManager/ViewManager.py" line="4167" /> - <location filename="../ViewManager/ViewManager.py" line="4165" /> - <location filename="../ViewManager/ViewManager.py" line="3598" /> + <location filename="../ViewManager/ViewManager.py" line="4177" /> + <location filename="../ViewManager/ViewManager.py" line="4175" /> + <location filename="../ViewManager/ViewManager.py" line="3608" /> <source>Search</source> <translation>Ricerca</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2570" /> <location filename="../QScintilla/ShellWindow.py" line="929" /> - <location filename="../ViewManager/ViewManager.py" line="3600" /> + <location filename="../ViewManager/ViewManager.py" line="3610" /> <source>&Search...</source> <translation>&Ricerca...</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2572" /> <location filename="../QScintilla/ShellWindow.py" line="931" /> - <location filename="../ViewManager/ViewManager.py" line="3602" /> + <location filename="../ViewManager/ViewManager.py" line="3612" /> <source>Ctrl+F</source> <comment>Search|Search</comment> <translation>Ctrl+F</translation> @@ -97108,34 +97121,34 @@ <message> <location filename="../QScintilla/MiniEditor.py" line="2579" /> <location filename="../QScintilla/ShellWindow.py" line="938" /> - <location filename="../ViewManager/ViewManager.py" line="3609" /> + <location filename="../ViewManager/ViewManager.py" line="3619" /> <source>Search for a text</source> <translation>Cerca per un testo</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2582" /> - <location filename="../ViewManager/ViewManager.py" line="3612" /> + <location filename="../ViewManager/ViewManager.py" line="3622" /> <source><b>Search</b><p>Search for some text in the current editor. A dialog is shown to enter the searchtext and options for the search.</p></source> <translation><b>Cerca</b><p>Cerca per del testo nell'editor corrente. Viene mostrato in dialogo per inserire il testo cercato e le opzioni per la ricerca.</p></translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2594" /> <location filename="../QScintilla/ShellWindow.py" line="953" /> - <location filename="../ViewManager/ViewManager.py" line="3624" /> + <location filename="../ViewManager/ViewManager.py" line="3634" /> <source>Search next</source> <translation>Cerca seguente</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2596" /> <location filename="../QScintilla/ShellWindow.py" line="955" /> - <location filename="../ViewManager/ViewManager.py" line="3626" /> + <location filename="../ViewManager/ViewManager.py" line="3636" /> <source>Search &next</source> <translation>Cerca segue&nte</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2598" /> <location filename="../QScintilla/ShellWindow.py" line="957" /> - <location filename="../ViewManager/ViewManager.py" line="3628" /> + <location filename="../ViewManager/ViewManager.py" line="3638" /> <source>F3</source> <comment>Search|Search next</comment> <translation>F3</translation> @@ -97143,34 +97156,34 @@ <message> <location filename="../QScintilla/MiniEditor.py" line="2605" /> <location filename="../QScintilla/ShellWindow.py" line="964" /> - <location filename="../ViewManager/ViewManager.py" line="3635" /> + <location filename="../ViewManager/ViewManager.py" line="3645" /> <source>Search next occurrence of text</source> <translation>Cerca prossima ricorrenza del testo</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2608" /> - <location filename="../ViewManager/ViewManager.py" line="3638" /> + <location filename="../ViewManager/ViewManager.py" line="3648" /> <source><b>Search next</b><p>Search the next occurrence of some text in the current editor. The previously entered searchtext and options are reused.</p></source> <translation><b>Trova successivo</b><p>Trova la prossima occorrenza di testo nell'editor corrente. Il testo inserito precedentemente e opzioni verranno riutilizzate.</p></translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2620" /> <location filename="../QScintilla/ShellWindow.py" line="981" /> - <location filename="../ViewManager/ViewManager.py" line="3650" /> + <location filename="../ViewManager/ViewManager.py" line="3660" /> <source>Search previous</source> <translation>Cerca precedente</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2622" /> <location filename="../QScintilla/ShellWindow.py" line="983" /> - <location filename="../ViewManager/ViewManager.py" line="3652" /> + <location filename="../ViewManager/ViewManager.py" line="3662" /> <source>Search &previous</source> <translation>Cerca &precedente</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2624" /> <location filename="../QScintilla/ShellWindow.py" line="985" /> - <location filename="../ViewManager/ViewManager.py" line="3654" /> + <location filename="../ViewManager/ViewManager.py" line="3664" /> <source>Shift+F3</source> <comment>Search|Search previous</comment> <translation>Shift+F3</translation> @@ -97178,436 +97191,436 @@ <message> <location filename="../QScintilla/MiniEditor.py" line="2633" /> <location filename="../QScintilla/ShellWindow.py" line="994" /> - <location filename="../ViewManager/ViewManager.py" line="3663" /> + <location filename="../ViewManager/ViewManager.py" line="3673" /> <source>Search previous occurrence of text</source> <translation>Cerca la precedente ricorrenza del testo</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2638" /> - <location filename="../ViewManager/ViewManager.py" line="3668" /> + <location filename="../ViewManager/ViewManager.py" line="3678" /> <source><b>Search previous</b><p>Search the previous occurrence of some text in the current editor. The previously entered searchtext and options are reused.</p></source> <translation><b>Trova precedente</b><p>Trova la precedente occorrenza di testo nell'editor corrente. Il testo inserito precedentemente e opzioni verranno riutilizzate.</p></translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2652" /> <location filename="../QScintilla/MiniEditor.py" line="2650" /> - <location filename="../ViewManager/ViewManager.py" line="3682" /> - <location filename="../ViewManager/ViewManager.py" line="3680" /> + <location filename="../ViewManager/ViewManager.py" line="3692" /> + <location filename="../ViewManager/ViewManager.py" line="3690" /> <source>Clear search markers</source> <translation>Pulisci marcatori di ricerca</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2654" /> - <location filename="../ViewManager/ViewManager.py" line="3684" /> + <location filename="../ViewManager/ViewManager.py" line="3694" /> <source>Ctrl+3</source> <comment>Search|Clear search markers</comment> <translation>Ctrl+3</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2663" /> - <location filename="../ViewManager/ViewManager.py" line="3693" /> + <location filename="../ViewManager/ViewManager.py" line="3703" /> <source>Clear all displayed search markers</source> <translation>Pulisci tutti i marcatori di ricerca mostrati</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2668" /> - <location filename="../ViewManager/ViewManager.py" line="3698" /> + <location filename="../ViewManager/ViewManager.py" line="3708" /> <source><b>Clear search markers</b><p>Clear all displayed search markers.</p></source> <translation><b>Pulisci marcatori di ricerca</b><p>Pulisci tutti i marcatori di ricerca mostrati.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3710" /> - <location filename="../ViewManager/ViewManager.py" line="3708" /> + <location filename="../ViewManager/ViewManager.py" line="3720" /> + <location filename="../ViewManager/ViewManager.py" line="3718" /> <source>Search current word forward</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3712" /> + <location filename="../ViewManager/ViewManager.py" line="3722" /> <source>Ctrl+.</source> <comment>Search|Search current word forward</comment> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3721" /> + <location filename="../ViewManager/ViewManager.py" line="3731" /> <source>Search next occurrence of the current word</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3726" /> + <location filename="../ViewManager/ViewManager.py" line="3736" /> <source><b>Search current word forward</b><p>Search the next occurrence of the current word of the current editor.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3739" /> - <location filename="../ViewManager/ViewManager.py" line="3737" /> + <location filename="../ViewManager/ViewManager.py" line="3749" /> + <location filename="../ViewManager/ViewManager.py" line="3747" /> <source>Search current word backward</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3741" /> + <location filename="../ViewManager/ViewManager.py" line="3751" /> <source>Ctrl+,</source> <comment>Search|Search current word backward</comment> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3750" /> + <location filename="../ViewManager/ViewManager.py" line="3760" /> <source>Search previous occurrence of the current word</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3755" /> + <location filename="../ViewManager/ViewManager.py" line="3765" /> <source><b>Search current word backward</b><p>Search the previous occurrence of the current word of the current editor.</p></source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2678" /> - <location filename="../ViewManager/ViewManager.py" line="3766" /> + <location filename="../ViewManager/ViewManager.py" line="3776" /> <source>Replace</source> <translation>Rimpiazza</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2679" /> - <location filename="../ViewManager/ViewManager.py" line="3767" /> + <location filename="../ViewManager/ViewManager.py" line="3777" /> <source>&Replace...</source> <translation>&Rimpiazza...</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2681" /> - <location filename="../ViewManager/ViewManager.py" line="3769" /> + <location filename="../ViewManager/ViewManager.py" line="3779" /> <source>Ctrl+R</source> <comment>Search|Replace</comment> <translation>Ctrl+R</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2688" /> - <location filename="../ViewManager/ViewManager.py" line="3776" /> + <location filename="../ViewManager/ViewManager.py" line="3786" /> <source>Replace some text</source> <translation>Sostituisci del testo</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2691" /> - <location filename="../ViewManager/ViewManager.py" line="3779" /> + <location filename="../ViewManager/ViewManager.py" line="3789" /> <source><b>Replace</b><p>Search for some text in the current editor and replace it. A dialog is shown to enter the searchtext, the replacement text and options for the search and replace.</p></source> <translation><b>Sostituisci</b><p>Cerca per del testo nell'editor corrente e lo sostituisce. Viene mostrato in dialogo per inserire il testo cercato, il testo sostituto e le opzioni per la ricerca e la sostituzione.</p></translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2705" /> <location filename="../QScintilla/MiniEditor.py" line="2703" /> - <location filename="../ViewManager/ViewManager.py" line="3793" /> - <location filename="../ViewManager/ViewManager.py" line="3791" /> + <location filename="../ViewManager/ViewManager.py" line="3803" /> + <location filename="../ViewManager/ViewManager.py" line="3801" /> <source>Replace and Search</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2707" /> - <location filename="../ViewManager/ViewManager.py" line="3795" /> + <location filename="../ViewManager/ViewManager.py" line="3805" /> <source>Meta+R</source> <comment>Search|Replace and Search</comment> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2716" /> - <location filename="../ViewManager/ViewManager.py" line="3804" /> + <location filename="../ViewManager/ViewManager.py" line="3814" /> <source>Replace the found text and search the next occurrence</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2721" /> - <location filename="../ViewManager/ViewManager.py" line="3809" /> + <location filename="../ViewManager/ViewManager.py" line="3819" /> <source><b>Replace and Search</b><p>Replace the found occurrence of text in the current editor and search for the next one. The previously entered search text and options are reused.</p></source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2737" /> <location filename="../QScintilla/MiniEditor.py" line="2735" /> - <location filename="../ViewManager/ViewManager.py" line="3825" /> - <location filename="../ViewManager/ViewManager.py" line="3823" /> + <location filename="../ViewManager/ViewManager.py" line="3835" /> + <location filename="../ViewManager/ViewManager.py" line="3833" /> <source>Replace Occurrence</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2739" /> - <location filename="../ViewManager/ViewManager.py" line="3827" /> + <location filename="../ViewManager/ViewManager.py" line="3837" /> <source>Ctrl+Meta+R</source> <comment>Search|Replace Occurrence</comment> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2748" /> - <location filename="../ViewManager/ViewManager.py" line="3836" /> + <location filename="../ViewManager/ViewManager.py" line="3846" /> <source>Replace the found text</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2751" /> - <location filename="../ViewManager/ViewManager.py" line="3839" /> + <location filename="../ViewManager/ViewManager.py" line="3849" /> <source><b>Replace Occurrence</b><p>Replace the found occurrence of the search text in the current editor.</p></source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2764" /> <location filename="../QScintilla/MiniEditor.py" line="2762" /> - <location filename="../ViewManager/ViewManager.py" line="3852" /> - <location filename="../ViewManager/ViewManager.py" line="3850" /> + <location filename="../ViewManager/ViewManager.py" line="3862" /> + <location filename="../ViewManager/ViewManager.py" line="3860" /> <source>Replace All</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2766" /> - <location filename="../ViewManager/ViewManager.py" line="3854" /> + <location filename="../ViewManager/ViewManager.py" line="3864" /> <source>Shift+Meta+R</source> <comment>Search|Replace All</comment> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2775" /> - <location filename="../ViewManager/ViewManager.py" line="3863" /> + <location filename="../ViewManager/ViewManager.py" line="3873" /> <source>Replace search text occurrences</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2778" /> - <location filename="../ViewManager/ViewManager.py" line="3866" /> + <location filename="../ViewManager/ViewManager.py" line="3876" /> <source><b>Replace All</b><p>Replace all occurrences of the search text in the current editor.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3888" /> - <location filename="../ViewManager/ViewManager.py" line="3877" /> + <location filename="../ViewManager/ViewManager.py" line="3898" /> + <location filename="../ViewManager/ViewManager.py" line="3887" /> <source>Goto Line</source> <translation>Vai a riga</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3879" /> + <location filename="../ViewManager/ViewManager.py" line="3889" /> <source>&Goto Line...</source> <translation>Vai a ri&ga...</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3881" /> + <location filename="../ViewManager/ViewManager.py" line="3891" /> <source>Ctrl+G</source> <comment>Search|Goto Line</comment> <translation>Ctrl+G</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3891" /> + <location filename="../ViewManager/ViewManager.py" line="3901" /> <source><b>Goto Line</b><p>Go to a specific line of text in the current editor. A dialog is shown to enter the linenumber.</p></source> <translation><b>Vai a Riga</b><p>Va ad una specifica riga di testo nell'editor corrente. Viene mostrato un dialogo per inserire il numero di riga</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3913" /> - <location filename="../ViewManager/ViewManager.py" line="3902" /> + <location filename="../ViewManager/ViewManager.py" line="3923" /> + <location filename="../ViewManager/ViewManager.py" line="3912" /> <source>Goto Brace</source> <translation>Vai alla parentesi</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3904" /> + <location filename="../ViewManager/ViewManager.py" line="3914" /> <source>Goto &Brace</source> <translation>Vai alla &parentesi</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3906" /> - <source>Ctrl+L</source> - <comment>Search|Goto Brace</comment> - <translation>Ctrl+L</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="3916" /> + <source>Ctrl+L</source> + <comment>Search|Goto Brace</comment> + <translation>Ctrl+L</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="3926" /> <source><b>Goto Brace</b><p>Go to the matching brace in the current editor.</p></source> <translation><b>Vai alla parentesi</b><p>Va alla parentesi corrispondete nell'editor corrente.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3939" /> - <location filename="../ViewManager/ViewManager.py" line="3926" /> + <location filename="../ViewManager/ViewManager.py" line="3949" /> + <location filename="../ViewManager/ViewManager.py" line="3936" /> <source>Goto Last Edit Location</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3928" /> + <location filename="../ViewManager/ViewManager.py" line="3938" /> <source>Goto Last &Edit Location</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3930" /> + <location filename="../ViewManager/ViewManager.py" line="3940" /> <source>Ctrl+Shift+G</source> <comment>Search|Goto Last Edit Location</comment> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3942" /> + <location filename="../ViewManager/ViewManager.py" line="3952" /> <source><b>Goto Last Edit Location</b><p>Go to the location of the last edit in the current editor.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3954" /> - <location filename="../ViewManager/ViewManager.py" line="3953" /> + <location filename="../ViewManager/ViewManager.py" line="3964" /> + <location filename="../ViewManager/ViewManager.py" line="3963" /> <source>Goto Previous Method or Class</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3956" /> + <location filename="../ViewManager/ViewManager.py" line="3966" /> <source>Ctrl+Shift+Up</source> <comment>Search|Goto Previous Method or Class</comment> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3967" /> + <location filename="../ViewManager/ViewManager.py" line="3977" /> <source>Go to the previous method or class definition</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3972" /> + <location filename="../ViewManager/ViewManager.py" line="3982" /> <source><b>Goto Previous Method or Class</b><p>Goes to the line of the previous method or class definition and highlights the name.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3984" /> - <location filename="../ViewManager/ViewManager.py" line="3983" /> + <location filename="../ViewManager/ViewManager.py" line="3994" /> + <location filename="../ViewManager/ViewManager.py" line="3993" /> <source>Goto Next Method or Class</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3986" /> + <location filename="../ViewManager/ViewManager.py" line="3996" /> <source>Ctrl+Shift+Down</source> <comment>Search|Goto Next Method or Class</comment> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3995" /> + <location filename="../ViewManager/ViewManager.py" line="4005" /> <source>Go to the next method or class definition</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4000" /> + <location filename="../ViewManager/ViewManager.py" line="4010" /> <source><b>Goto Next Method or Class</b><p>Goes to the line of the next method or class definition and highlights the name.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4013" /> + <location filename="../ViewManager/ViewManager.py" line="4023" /> <source>Search in Files</source> <translation>Cerca nei file</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4015" /> + <location filename="../ViewManager/ViewManager.py" line="4025" /> <source>Search in &Files...</source> <translation>Cerca nei &file...</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4017" /> + <location filename="../ViewManager/ViewManager.py" line="4027" /> <source>Shift+Ctrl+F</source> <comment>Search|Search Files</comment> <translation>Shift+Ctrl+F</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4026" /> + <location filename="../ViewManager/ViewManager.py" line="4036" /> <source>Search for a text in files</source> <translation>Cerca un testo nei file</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4029" /> + <location filename="../ViewManager/ViewManager.py" line="4039" /> <source><b>Search in Files</b><p>Search for some text in the files of a directory tree or the project. A window is shown to enter the searchtext and options for the search and to display the result.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4041" /> + <location filename="../ViewManager/ViewManager.py" line="4051" /> <source>Replace in Files</source> <translation>Sostituisci nei file</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4042" /> + <location filename="../ViewManager/ViewManager.py" line="4052" /> <source>Replace in F&iles...</source> <translation>Sostituisci nei f&ile...</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4044" /> + <location filename="../ViewManager/ViewManager.py" line="4054" /> <source>Shift+Ctrl+R</source> <comment>Search|Replace in Files</comment> <translation>Shift+Ctrl+R</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4053" /> + <location filename="../ViewManager/ViewManager.py" line="4063" /> <source>Search for a text in files and replace it</source> <translation>Cerca e sostituisci un testo nei file</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4058" /> + <location filename="../ViewManager/ViewManager.py" line="4068" /> <source><b>Replace in Files</b><p>Search for some text in the files of a directory tree or the project and replace it. A window is shown to enter the searchtext, the replacement text and options for the search and to display the result.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4071" /> + <location filename="../ViewManager/ViewManager.py" line="4081" /> <source>Search in Open Files</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4073" /> + <location filename="../ViewManager/ViewManager.py" line="4083" /> <source>Search in Open Files...</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4075" /> + <location filename="../ViewManager/ViewManager.py" line="4085" /> <source>Meta+Ctrl+Alt+F</source> <comment>Search|Search Open Files</comment> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4084" /> + <location filename="../ViewManager/ViewManager.py" line="4094" /> <source>Search for a text in open files</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4087" /> + <location filename="../ViewManager/ViewManager.py" line="4097" /> <source><b>Search in Open Files</b><p>Search for some text in the currently opened files. A window is shown to enter the search text and options for the search and to display the result.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4099" /> + <location filename="../ViewManager/ViewManager.py" line="4109" /> <source>Replace in Open Files</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4100" /> + <location filename="../ViewManager/ViewManager.py" line="4110" /> <source>Replace in Open Files...</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4102" /> + <location filename="../ViewManager/ViewManager.py" line="4112" /> <source>Meta+Ctrl+Alt+R</source> <comment>Search|Replace in Open Files</comment> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4111" /> + <location filename="../ViewManager/ViewManager.py" line="4121" /> <source>Search for a text in open files and replace it</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4116" /> + <location filename="../ViewManager/ViewManager.py" line="4126" /> <source><b>Replace in Open Files</b><p>Search for some text in the currently opened files and replace it. A window is shown to enter the search text, the replacement text and options for the search and to display the result.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4137" /> + <location filename="../ViewManager/ViewManager.py" line="4147" /> <source>&Search</source> <translation>&Ricerca</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2793" /> <location filename="../QScintilla/ShellWindow.py" line="1020" /> - <location filename="../ViewManager/ViewManager.py" line="4208" /> + <location filename="../ViewManager/ViewManager.py" line="4218" /> <source>Zoom in</source> <translation>Ingrandisci</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2795" /> <location filename="../QScintilla/ShellWindow.py" line="1022" /> - <location filename="../ViewManager/ViewManager.py" line="4210" /> + <location filename="../ViewManager/ViewManager.py" line="4220" /> <source>Zoom &in</source> <translation>Ingrand&isci</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2797" /> <location filename="../QScintilla/ShellWindow.py" line="1024" /> - <location filename="../ViewManager/ViewManager.py" line="4212" /> + <location filename="../ViewManager/ViewManager.py" line="4222" /> <source>Ctrl++</source> <comment>View|Zoom in</comment> <translation>Ctrl++</translation> @@ -97615,7 +97628,7 @@ <message> <location filename="../QScintilla/MiniEditor.py" line="2800" /> <location filename="../QScintilla/ShellWindow.py" line="1027" /> - <location filename="../ViewManager/ViewManager.py" line="4215" /> + <location filename="../ViewManager/ViewManager.py" line="4225" /> <source>Zoom In</source> <comment>View|Zoom in</comment> <translation type="unfinished" /> @@ -97623,35 +97636,35 @@ <message> <location filename="../QScintilla/MiniEditor.py" line="2806" /> <location filename="../QScintilla/ShellWindow.py" line="1033" /> - <location filename="../ViewManager/ViewManager.py" line="4221" /> + <location filename="../ViewManager/ViewManager.py" line="4231" /> <source>Zoom in on the text</source> <translation>Ingrandisci nel testo</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2809" /> <location filename="../QScintilla/ShellWindow.py" line="1036" /> - <location filename="../ViewManager/ViewManager.py" line="4224" /> + <location filename="../ViewManager/ViewManager.py" line="4234" /> <source><b>Zoom in</b><p>Zoom in on the text. This makes the text bigger.</p></source> <translation><b>Ingrandisci</b><p>Ingrandisci nel testo. Questo aumenta le dimensioni del testo.</p></translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2819" /> <location filename="../QScintilla/ShellWindow.py" line="1046" /> - <location filename="../ViewManager/ViewManager.py" line="4234" /> + <location filename="../ViewManager/ViewManager.py" line="4244" /> <source>Zoom out</source> <translation>Riduci</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2821" /> <location filename="../QScintilla/ShellWindow.py" line="1048" /> - <location filename="../ViewManager/ViewManager.py" line="4236" /> + <location filename="../ViewManager/ViewManager.py" line="4246" /> <source>Zoom &out</source> <translation>Rid&uci</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2823" /> <location filename="../QScintilla/ShellWindow.py" line="1050" /> - <location filename="../ViewManager/ViewManager.py" line="4238" /> + <location filename="../ViewManager/ViewManager.py" line="4248" /> <source>Ctrl+-</source> <comment>View|Zoom out</comment> <translation>Ctrl+-</translation> @@ -97659,7 +97672,7 @@ <message> <location filename="../QScintilla/MiniEditor.py" line="2826" /> <location filename="../QScintilla/ShellWindow.py" line="1053" /> - <location filename="../ViewManager/ViewManager.py" line="4241" /> + <location filename="../ViewManager/ViewManager.py" line="4251" /> <source>Zoom Out</source> <comment>View|Zoom out</comment> <translation type="unfinished" /> @@ -97667,35 +97680,35 @@ <message> <location filename="../QScintilla/MiniEditor.py" line="2832" /> <location filename="../QScintilla/ShellWindow.py" line="1059" /> - <location filename="../ViewManager/ViewManager.py" line="4247" /> + <location filename="../ViewManager/ViewManager.py" line="4257" /> <source>Zoom out on the text</source> <translation>Riduci il testo</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2835" /> <location filename="../QScintilla/ShellWindow.py" line="1062" /> - <location filename="../ViewManager/ViewManager.py" line="4250" /> + <location filename="../ViewManager/ViewManager.py" line="4260" /> <source><b>Zoom out</b><p>Zoom out on the text. This makes the text smaller.</p></source> <translation><b>Riduci</b><p>Riduci nel testo. Questo diminuisce le dimensioni del testo.</p></translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2845" /> <location filename="../QScintilla/ShellWindow.py" line="1072" /> - <location filename="../ViewManager/ViewManager.py" line="4260" /> + <location filename="../ViewManager/ViewManager.py" line="4270" /> <source>Zoom reset</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2847" /> <location filename="../QScintilla/ShellWindow.py" line="1074" /> - <location filename="../ViewManager/ViewManager.py" line="4262" /> + <location filename="../ViewManager/ViewManager.py" line="4272" /> <source>Zoom &reset</source> <translation type="unfinished">&Reset zoom</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2849" /> <location filename="../QScintilla/ShellWindow.py" line="1076" /> - <location filename="../ViewManager/ViewManager.py" line="4264" /> + <location filename="../ViewManager/ViewManager.py" line="4274" /> <source>Ctrl+0</source> <comment>View|Zoom reset</comment> <translation type="unfinished">Ctrl+0</translation> @@ -97703,894 +97716,894 @@ <message> <location filename="../QScintilla/MiniEditor.py" line="2856" /> <location filename="../QScintilla/ShellWindow.py" line="1083" /> - <location filename="../ViewManager/ViewManager.py" line="4271" /> + <location filename="../ViewManager/ViewManager.py" line="4281" /> <source>Reset the zoom of the text</source> <translation type="unfinished">Resetta lo zoom del testo</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2859" /> <location filename="../QScintilla/ShellWindow.py" line="1086" /> - <location filename="../ViewManager/ViewManager.py" line="4274" /> + <location filename="../ViewManager/ViewManager.py" line="4284" /> <source><b>Zoom reset</b><p>Reset the zoom of the text. This sets the zoom factor to 100%.</p></source> <translation type="unfinished"><b>Reset zoom</b><p>Reset dello zoom del testo. Imposta il fattore di zoom al 100%.</p></translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2870" /> <location filename="../QScintilla/ShellWindow.py" line="1097" /> - <location filename="../ViewManager/ViewManager.py" line="4285" /> + <location filename="../ViewManager/ViewManager.py" line="4295" /> <source>Zoom</source> <translation>Zoom</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2872" /> <location filename="../QScintilla/ShellWindow.py" line="1099" /> - <location filename="../ViewManager/ViewManager.py" line="4287" /> + <location filename="../ViewManager/ViewManager.py" line="4297" /> <source>&Zoom</source> <translation>&Zoom</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2879" /> <location filename="../QScintilla/ShellWindow.py" line="1106" /> - <location filename="../ViewManager/ViewManager.py" line="4294" /> + <location filename="../ViewManager/ViewManager.py" line="4304" /> <source>Zoom the text</source> <translation>Ingrandisci il testo</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2882" /> <location filename="../QScintilla/ShellWindow.py" line="1109" /> - <location filename="../ViewManager/ViewManager.py" line="4297" /> + <location filename="../ViewManager/ViewManager.py" line="4307" /> <source><b>Zoom</b><p>Zoom the text. This opens a dialog where the desired size can be entered.</p></source> <translation><b>Zoom</b><o>Zoom del testo. Apre un dialogo dove inserire la dimensione voluta.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4316" /> - <location filename="../ViewManager/ViewManager.py" line="4308" /> + <location filename="../ViewManager/ViewManager.py" line="4326" /> + <location filename="../ViewManager/ViewManager.py" line="4318" /> <source>Toggle all folds</source> <translation>Abilita/Disabilita tutti i raggruppamenti</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4309" /> - <source>&Toggle all folds</source> - <translation type="unfinished">Abilita/Disabilita tutti i r&aggruppamenti</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="4319" /> + <source>&Toggle all folds</source> + <translation type="unfinished">Abilita/Disabilita tutti i r&aggruppamenti</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4329" /> <source><b>Toggle all folds</b><p>Toggle all folds of the current editor.</p></source> <translation><b>Abilita/Disabilita tutti i raggruppamenti</b><p>Abilita/Disabilita tutti i raggruppamenti dell'editor corrente.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4341" /> - <location filename="../ViewManager/ViewManager.py" line="4329" /> + <location filename="../ViewManager/ViewManager.py" line="4351" /> + <location filename="../ViewManager/ViewManager.py" line="4339" /> <source>Toggle all folds (including children)</source> <translation>Abilita/Disabilita tutti i raggruppamenti (inclusi i figli)</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4332" /> + <location filename="../ViewManager/ViewManager.py" line="4342" /> <source>Toggle all &folds (including children)</source> <translation>Abilita/Disabilita tutti i raggruppamenti (inclusi i &figli)</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4346" /> + <location filename="../ViewManager/ViewManager.py" line="4356" /> <source><b>Toggle all folds (including children)</b><p>Toggle all folds of the current editor including all children.</p></source> <translation><b>Abilita/Disabilita tutti i raggruppamenti (inclusi i figli)</b><p>Abilita/Disabilita tutti i raggruppamenti dell'edito inclusi i figli.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4365" /> - <location filename="../ViewManager/ViewManager.py" line="4357" /> + <location filename="../ViewManager/ViewManager.py" line="4375" /> + <location filename="../ViewManager/ViewManager.py" line="4367" /> <source>Toggle current fold</source> <translation>Abilita/Disabilita il raggruppamento corrente</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4358" /> - <source>Toggle &current fold</source> - <translation>Abilita/Disabilita il raggruppamento &corrente</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="4368" /> + <source>Toggle &current fold</source> + <translation>Abilita/Disabilita il raggruppamento &corrente</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4378" /> <source><b>Toggle current fold</b><p>Toggle the folds of the current line of the current editor.</p></source> <translation><b>Abilita/Disabilita il raggruppamento corrente</b><p>Abilita/Disabilita il raggruppamento alla riga corrente dell'editor.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4387" /> - <location filename="../ViewManager/ViewManager.py" line="4379" /> + <location filename="../ViewManager/ViewManager.py" line="4397" /> + <location filename="../ViewManager/ViewManager.py" line="4389" /> <source>Clear all folds</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4380" /> - <source>Clear &all folds</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="4390" /> + <source>Clear &all folds</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4400" /> <source><b>Clear all folds</b><p>Clear all folds of the current editor, i.e. ensure that all lines are displayed unfolded.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4410" /> - <location filename="../ViewManager/ViewManager.py" line="4403" /> - <location filename="../ViewManager/ViewManager.py" line="4401" /> + <location filename="../ViewManager/ViewManager.py" line="4420" /> + <location filename="../ViewManager/ViewManager.py" line="4413" /> + <location filename="../ViewManager/ViewManager.py" line="4411" /> <source>Remove all highlights</source> <translation>Rimuovi tutti gli highlight</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4413" /> - <source><b>Remove all highlights</b><p>Remove the highlights of all editors.</p></source> - <translation><b>Rimuovi tutti gli highlight</b><p>Rimuovi tutti gli highlight da tutti gli editor.</p></translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="4423" /> + <source><b>Remove all highlights</b><p>Remove the highlights of all editors.</p></source> + <translation><b>Rimuovi tutti gli highlight</b><p>Rimuovi tutti gli highlight da tutti gli editor.</p></translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4433" /> <source>New Document View</source> <translation type="unfinished">Nuova vista Documento</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4425" /> + <location filename="../ViewManager/ViewManager.py" line="4435" /> <source>New &Document View</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4432" /> + <location filename="../ViewManager/ViewManager.py" line="4442" /> <source>Open a new view of the current document</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4437" /> + <location filename="../ViewManager/ViewManager.py" line="4447" /> <source><b>New Document View</b><p>Opens a new view of the current document. Both views show the same document. However, the cursors may be positioned independently.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4453" /> - <location filename="../ViewManager/ViewManager.py" line="4449" /> + <location filename="../ViewManager/ViewManager.py" line="4463" /> + <location filename="../ViewManager/ViewManager.py" line="4459" /> <source>New Document View (with new split)</source> <translation type="unfinished">Nuova vista Documento (con nuova divisione)</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4462" /> + <location filename="../ViewManager/ViewManager.py" line="4472" /> <source>Open a new view of the current document in a new split</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4467" /> + <location filename="../ViewManager/ViewManager.py" line="4477" /> <source><b>New Document View</b><p>Opens a new view of the current document in a new split. Both views show the same document. However, the cursors may be positioned independently.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4479" /> + <location filename="../ViewManager/ViewManager.py" line="4489" /> <source>Split view</source> <translation>Dividi vista</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4481" /> - <source>&Split view</source> - <translation>Dividi vi&sta</translation> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="4488" /> - <source>Add a split to the view</source> - <translation>Aggiungi un divisione alla vista</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="4491" /> - <source><b>Split view</b><p>Add a split to the view.</p></source> - <translation><b>Dividi vista</b><p>Aggiungi un divisione alla vista.</p></translation> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="4500" /> - <source>Arrange horizontally</source> - <translation>Sistema orizzontalmente</translation> + <source>&Split view</source> + <translation>Dividi vi&sta</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4498" /> + <source>Add a split to the view</source> + <translation>Aggiungi un divisione alla vista</translation> </message> <message> <location filename="../ViewManager/ViewManager.py" line="4501" /> + <source><b>Split view</b><p>Add a split to the view.</p></source> + <translation><b>Dividi vista</b><p>Aggiungi un divisione alla vista.</p></translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4510" /> + <source>Arrange horizontally</source> + <translation>Sistema orizzontalmente</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4511" /> <source>Arrange &horizontally</source> <translation>Sistema o&rizzontalmente</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4509" /> + <location filename="../ViewManager/ViewManager.py" line="4519" /> <source>Arrange the splitted views horizontally</source> <translation>Sistema le finestre divise orizzontalmente</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4514" /> + <location filename="../ViewManager/ViewManager.py" line="4524" /> <source><b>Arrange horizontally</b><p>Arrange the splitted views horizontally.</p></source> <translation><b>Sistema orizzontalmente</b><p>Sistema le finestre divise orizzontalmente.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4525" /> + <location filename="../ViewManager/ViewManager.py" line="4535" /> <source>Remove split</source> <translation>Rimuovi divisione</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4527" /> - <source>&Remove split</source> - <translation>&Rimuovi divisione</translation> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="4534" /> - <source>Remove the current split</source> - <translation>Rimuovi la divisione corrente</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="4537" /> - <source><b>Remove split</b><p>Remove the current split.</p></source> - <translation><b>Rimuovi divisione</b><p>Rimuovi la divisione corrente.</p></translation> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="4546" /> - <source>Next split</source> - <translation>Prossima divisione</translation> + <source>&Remove split</source> + <translation>&Rimuovi divisione</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4544" /> + <source>Remove the current split</source> + <translation>Rimuovi la divisione corrente</translation> </message> <message> <location filename="../ViewManager/ViewManager.py" line="4547" /> + <source><b>Remove split</b><p>Remove the current split.</p></source> + <translation><b>Rimuovi divisione</b><p>Rimuovi la divisione corrente.</p></translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4556" /> + <source>Next split</source> + <translation>Prossima divisione</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4557" /> <source>&Next split</source> <translation>Prossima divisio&ne</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4549" /> + <location filename="../ViewManager/ViewManager.py" line="4559" /> <source>Ctrl+Alt+N</source> <comment>View|Next split</comment> <translation>Ctrl+Alt+N</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4558" /> + <location filename="../ViewManager/ViewManager.py" line="4568" /> <source>Move to the next split</source> <translation>Vai alla prossima divisione</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4561" /> - <source><b>Next split</b><p>Move to the next split.</p></source> - <translation><b>Prossima divisione</b><p>Vai alla prossima divisione.</p></translation> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="4570" /> - <source>Previous split</source> - <translation>Divisione precedente</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="4571" /> + <source><b>Next split</b><p>Move to the next split.</p></source> + <translation><b>Prossima divisione</b><p>Vai alla prossima divisione.</p></translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4580" /> + <source>Previous split</source> + <translation>Divisione precedente</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4581" /> <source>&Previous split</source> <translation>Divisione &precedente</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4573" /> + <location filename="../ViewManager/ViewManager.py" line="4583" /> <source>Ctrl+Alt+P</source> <comment>View|Previous split</comment> <translation>Ctrl+Alt+P</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4582" /> + <location filename="../ViewManager/ViewManager.py" line="4592" /> <source>Move to the previous split</source> <translation>Vai alla divisione precedente</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4585" /> + <location filename="../ViewManager/ViewManager.py" line="4595" /> <source><b>Previous split</b><p>Move to the previous split.</p></source> <translation><b>Divisione precedente</b><p>Vai alla divisione precedente.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4596" /> - <location filename="../ViewManager/ViewManager.py" line="4594" /> + <location filename="../ViewManager/ViewManager.py" line="4606" /> + <location filename="../ViewManager/ViewManager.py" line="4604" /> <source>Preview</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4604" /> + <location filename="../ViewManager/ViewManager.py" line="4614" /> <source>Preview the current file in the web browser</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4609" /> + <location filename="../ViewManager/ViewManager.py" line="4619" /> <source><b>Preview</b><p>This opens the web browser with a preview of the current file.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4623" /> - <location filename="../ViewManager/ViewManager.py" line="4621" /> + <location filename="../ViewManager/ViewManager.py" line="4633" /> + <location filename="../ViewManager/ViewManager.py" line="4631" /> <source>Python AST Viewer</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4631" /> + <location filename="../ViewManager/ViewManager.py" line="4641" /> <source>Show the AST for the current Python file</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4636" /> + <location filename="../ViewManager/ViewManager.py" line="4646" /> <source><b>Python AST Viewer</b><p>This opens the a tree view of the AST of the current Python source file.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4650" /> - <location filename="../ViewManager/ViewManager.py" line="4648" /> + <location filename="../ViewManager/ViewManager.py" line="4660" /> + <location filename="../ViewManager/ViewManager.py" line="4658" /> <source>Python Disassembly Viewer</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4658" /> + <location filename="../ViewManager/ViewManager.py" line="4668" /> <source>Show the Disassembly for the current Python file</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4663" /> + <location filename="../ViewManager/ViewManager.py" line="4673" /> <source><b>Python Disassembly Viewer</b><p>This opens the a tree view of the Disassembly of the current Python source file.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4699" /> + <location filename="../ViewManager/ViewManager.py" line="4709" /> <source>&View</source> <translation>&Visualizza</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4734" /> - <location filename="../ViewManager/ViewManager.py" line="4732" /> + <location filename="../ViewManager/ViewManager.py" line="4744" /> + <location filename="../ViewManager/ViewManager.py" line="4742" /> <source>View</source> <translation>Visualizza</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4773" /> - <location filename="../ViewManager/ViewManager.py" line="4765" /> + <location filename="../ViewManager/ViewManager.py" line="4783" /> + <location filename="../ViewManager/ViewManager.py" line="4775" /> <source>Start Macro Recording</source> <translation>Avvia registrazione della macro</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4766" /> - <source>S&tart Macro Recording</source> - <translation>Avvia regis&trazione della macro</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="4776" /> + <source>S&tart Macro Recording</source> + <translation>Avvia regis&trazione della macro</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4786" /> <source><b>Start Macro Recording</b><p>Start recording editor commands into a new macro.</p></source> <translation><b>Avvia registrazione della macro</b><p>Avvia la registrazione dei comandi dell'editor in una nuova macro.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4794" /> - <location filename="../ViewManager/ViewManager.py" line="4786" /> + <location filename="../ViewManager/ViewManager.py" line="4804" /> + <location filename="../ViewManager/ViewManager.py" line="4796" /> <source>Stop Macro Recording</source> <translation>Interrompi registrazione macro</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4787" /> - <source>Sto&p Macro Recording</source> - <translation>Interrom&pi registrazione macro</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="4797" /> + <source>Sto&p Macro Recording</source> + <translation>Interrom&pi registrazione macro</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4807" /> <source><b>Stop Macro Recording</b><p>Stop recording editor commands into a new macro.</p></source> <translation><b>Interrompi registrazione macro</b><p>Interrompi la registrazione dei comandi dell'editor in una nuova macro.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4815" /> - <location filename="../ViewManager/ViewManager.py" line="4807" /> + <location filename="../ViewManager/ViewManager.py" line="4825" /> + <location filename="../ViewManager/ViewManager.py" line="4817" /> <source>Run Macro</source> <translation>Esegui Macro</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4808" /> - <source>&Run Macro</source> - <translation>Esegui Mac&ro</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="4818" /> + <source>&Run Macro</source> + <translation>Esegui Mac&ro</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4828" /> <source><b>Run Macro</b><p>Run a previously recorded editor macro.</p></source> <translation><b>Esegui Macro</b><p>Esegui una macro precedentemente registrata.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4836" /> - <location filename="../ViewManager/ViewManager.py" line="4828" /> + <location filename="../ViewManager/ViewManager.py" line="4846" /> + <location filename="../ViewManager/ViewManager.py" line="4838" /> <source>Delete Macro</source> <translation>Cancella Macro</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4829" /> - <source>&Delete Macro</source> - <translation>Canc&ella Macro</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="4839" /> + <source>&Delete Macro</source> + <translation>Canc&ella Macro</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4849" /> <source><b>Delete Macro</b><p>Delete a previously recorded editor macro.</p></source> <translation><b>Cancella Macro</b><p>Cancella una macro precedentemente registrata.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4857" /> - <location filename="../ViewManager/ViewManager.py" line="4849" /> + <location filename="../ViewManager/ViewManager.py" line="4867" /> + <location filename="../ViewManager/ViewManager.py" line="4859" /> <source>Load Macro</source> <translation>Carica Macro</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4850" /> - <source>&Load Macro</source> - <translation>C&arica Macro</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="4860" /> - <source><b>Load Macro</b><p>Load an editor macro from a file.</p></source> - <translation><b>Carica Macro</b><p>Carica una macro da un file.</p></translation> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="4877" /> - <location filename="../ViewManager/ViewManager.py" line="4869" /> - <source>Save Macro</source> - <translation>Salva Macro</translation> + <source>&Load Macro</source> + <translation>C&arica Macro</translation> </message> <message> <location filename="../ViewManager/ViewManager.py" line="4870" /> - <source>&Save Macro</source> - <translation>&Salva Macro</translation> + <source><b>Load Macro</b><p>Load an editor macro from a file.</p></source> + <translation><b>Carica Macro</b><p>Carica una macro da un file.</p></translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4887" /> + <location filename="../ViewManager/ViewManager.py" line="4879" /> + <source>Save Macro</source> + <translation>Salva Macro</translation> </message> <message> <location filename="../ViewManager/ViewManager.py" line="4880" /> + <source>&Save Macro</source> + <translation>&Salva Macro</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4890" /> <source><b>Save Macro</b><p>Save a previously recorded editor macro to a file.</p></source> <translation><b>Salva Macro</b><p>Salva una macro precedentemente registrata.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4898" /> + <location filename="../ViewManager/ViewManager.py" line="4908" /> <source>&Macros</source> <translation>&Macro</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4929" /> - <location filename="../ViewManager/ViewManager.py" line="4916" /> + <location filename="../ViewManager/ViewManager.py" line="4939" /> + <location filename="../ViewManager/ViewManager.py" line="4926" /> <source>Toggle Bookmark</source> <translation>Inverti bookmark</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4918" /> + <location filename="../ViewManager/ViewManager.py" line="4928" /> <source>&Toggle Bookmark</source> <translation>Inver&ti bookmark</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4920" /> + <location filename="../ViewManager/ViewManager.py" line="4930" /> <source>Alt+Ctrl+T</source> <comment>Bookmark|Toggle</comment> <translation>Alt+Ctrl+T</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4932" /> + <location filename="../ViewManager/ViewManager.py" line="4942" /> <source><b>Toggle Bookmark</b><p>Toggle a bookmark at the current line of the current editor.</p></source> <translation><b>Toggle bookmark</b><p>Attiva un bookmark sulla linea corrente dell'editor.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4956" /> - <location filename="../ViewManager/ViewManager.py" line="4943" /> + <location filename="../ViewManager/ViewManager.py" line="4966" /> + <location filename="../ViewManager/ViewManager.py" line="4953" /> <source>Next Bookmark</source> <translation>Prossimo segnalibro</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4945" /> + <location filename="../ViewManager/ViewManager.py" line="4955" /> <source>&Next Bookmark</source> <translation>Prossimo seg&nalibro</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4947" /> + <location filename="../ViewManager/ViewManager.py" line="4957" /> <source>Ctrl+PgDown</source> <comment>Bookmark|Next</comment> <translation>Ctrl+PgDown</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4959" /> + <location filename="../ViewManager/ViewManager.py" line="4969" /> <source><b>Next Bookmark</b><p>Go to next bookmark of the current editor.</p></source> <translation><b>Prossimo segnalibro</b><p>Vai al segnalibro seguente dell'editor.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4982" /> - <location filename="../ViewManager/ViewManager.py" line="4969" /> + <location filename="../ViewManager/ViewManager.py" line="4992" /> + <location filename="../ViewManager/ViewManager.py" line="4979" /> <source>Previous Bookmark</source> <translation>Segnalibro precedente</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4971" /> + <location filename="../ViewManager/ViewManager.py" line="4981" /> <source>&Previous Bookmark</source> <translation>Segnalibro &precedente</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4973" /> + <location filename="../ViewManager/ViewManager.py" line="4983" /> <source>Ctrl+PgUp</source> <comment>Bookmark|Previous</comment> <translation /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4985" /> + <location filename="../ViewManager/ViewManager.py" line="4995" /> <source><b>Previous Bookmark</b><p>Go to previous bookmark of the current editor.</p></source> <translation><b>Segnalibro precedente</b><p>Va al segnalibro precedente dell'editor corrente.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5007" /> - <location filename="../ViewManager/ViewManager.py" line="4995" /> + <location filename="../ViewManager/ViewManager.py" line="5017" /> + <location filename="../ViewManager/ViewManager.py" line="5005" /> <source>Clear Bookmarks</source> <translation>Pulisci segnalibri</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4996" /> + <location filename="../ViewManager/ViewManager.py" line="5006" /> <source>&Clear Bookmarks</source> <translation>Pulis&ci segnalibri</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4998" /> + <location filename="../ViewManager/ViewManager.py" line="5008" /> <source>Alt+Ctrl+C</source> <comment>Bookmark|Clear</comment> <translation>Alt+Ctrl+C</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5010" /> + <location filename="../ViewManager/ViewManager.py" line="5020" /> <source><b>Clear Bookmarks</b><p>Clear bookmarks of all editors.</p></source> <translation><b>Pulisci Segnalibri</b><p>Pulisci i segnalibri di tutti gli editor.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5029" /> - <location filename="../ViewManager/ViewManager.py" line="5020" /> + <location filename="../ViewManager/ViewManager.py" line="5039" /> + <location filename="../ViewManager/ViewManager.py" line="5030" /> <source>Goto Syntax Error</source> <translation>Vai all'errore di sintassi</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5022" /> - <source>&Goto Syntax Error</source> - <translation>&Vai all'errore di sintassi</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="5032" /> + <source>&Goto Syntax Error</source> + <translation>&Vai all'errore di sintassi</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="5042" /> <source><b>Goto Syntax Error</b><p>Go to next syntax error of the current editor.</p></source> <translation><b>Vai all'errore di sintassi</b><p>Vai all'errore di sintassi successivo dell'editor corrente.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5050" /> - <location filename="../ViewManager/ViewManager.py" line="5042" /> + <location filename="../ViewManager/ViewManager.py" line="5060" /> + <location filename="../ViewManager/ViewManager.py" line="5052" /> <source>Clear Syntax Errors</source> <translation>Pulisci errori di sintassi</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5043" /> - <source>Clear &Syntax Errors</source> - <translation>Pulisci errori di &sintassi</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="5053" /> + <source>Clear &Syntax Errors</source> + <translation>Pulisci errori di &sintassi</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="5063" /> <source><b>Clear Syntax Errors</b><p>Clear syntax errors of all editors.</p></source> <translation><b>Pulisci errori di sintassi</b><p>Pulisci gli errori di sintassi da tutti gli editor.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5072" /> - <location filename="../ViewManager/ViewManager.py" line="5063" /> + <location filename="../ViewManager/ViewManager.py" line="5082" /> + <location filename="../ViewManager/ViewManager.py" line="5073" /> <source>Next warning message</source> <translation>Warning successivo</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5065" /> - <source>&Next warning message</source> - <translation>Warni&ng successivo</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="5075" /> + <source>&Next warning message</source> + <translation>Warni&ng successivo</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="5085" /> <source><b>Next warning message</b><p>Go to next line of the current editor having a pyflakes warning.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5095" /> - <location filename="../ViewManager/ViewManager.py" line="5086" /> + <location filename="../ViewManager/ViewManager.py" line="5105" /> + <location filename="../ViewManager/ViewManager.py" line="5096" /> <source>Previous warning message</source> <translation>Messaggio di warning precedente</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5088" /> - <source>&Previous warning message</source> - <translation>Messaggio di warning &precedente</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="5098" /> + <source>&Previous warning message</source> + <translation>Messaggio di warning &precedente</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="5108" /> <source><b>Previous warning message</b><p>Go to previous line of the current editor having a pyflakes warning.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5117" /> - <location filename="../ViewManager/ViewManager.py" line="5109" /> + <location filename="../ViewManager/ViewManager.py" line="5127" /> + <location filename="../ViewManager/ViewManager.py" line="5119" /> <source>Clear Warning Messages</source> <translation>Pulisci messaggi di warning</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5110" /> - <source>Clear &Warning Messages</source> - <translation>Pulisci messaggi di &warning</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="5120" /> + <source>Clear &Warning Messages</source> + <translation>Pulisci messaggi di &warning</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="5130" /> <source><b>Clear Warning Messages</b><p>Clear pyflakes warning messages of all editors.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5139" /> - <location filename="../ViewManager/ViewManager.py" line="5130" /> + <location filename="../ViewManager/ViewManager.py" line="5149" /> + <location filename="../ViewManager/ViewManager.py" line="5140" /> <source>Next uncovered line</source> <translation>Prossima linea non analizzata</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5132" /> - <source>&Next uncovered line</source> - <translation>Prossima linea &non analizzata</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="5142" /> + <source>&Next uncovered line</source> + <translation>Prossima linea &non analizzata</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="5152" /> <source><b>Next uncovered line</b><p>Go to next line of the current editor marked as not covered.</p></source> <translation><b>Prossima linea non analizzata</b><p>Vai alla prossima riga dell'editor corrente marcato come non analizzata.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5162" /> - <location filename="../ViewManager/ViewManager.py" line="5153" /> + <location filename="../ViewManager/ViewManager.py" line="5172" /> + <location filename="../ViewManager/ViewManager.py" line="5163" /> <source>Previous uncovered line</source> <translation>Linea non analizzata precedente</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5155" /> - <source>&Previous uncovered line</source> - <translation>Linea non analizzata &precedente</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="5165" /> + <source>&Previous uncovered line</source> + <translation>Linea non analizzata &precedente</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="5175" /> <source><b>Previous uncovered line</b><p>Go to previous line of the current editor marked as not covered.</p></source> <translation><b>Linea non analizzata precedente</b><p>Vai alla prossima riga dell'editor corrente marcato come non analizzata.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5185" /> - <location filename="../ViewManager/ViewManager.py" line="5176" /> + <location filename="../ViewManager/ViewManager.py" line="5195" /> + <location filename="../ViewManager/ViewManager.py" line="5186" /> <source>Next Task</source> <translation>Task seguente</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5178" /> - <source>&Next Task</source> - <translation>Task segue&nte</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="5188" /> + <source>&Next Task</source> + <translation>Task segue&nte</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="5198" /> <source><b>Next Task</b><p>Go to next line of the current editor having a task.</p></source> <translation><b>Task seguente</b><p>Vai alla prossima riga dell'editor che ha un task.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5207" /> - <location filename="../ViewManager/ViewManager.py" line="5198" /> + <location filename="../ViewManager/ViewManager.py" line="5217" /> + <location filename="../ViewManager/ViewManager.py" line="5208" /> <source>Previous Task</source> <translation>Task Precedente</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5200" /> - <source>&Previous Task</source> - <translation>Task &Precedente</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="5210" /> + <source>&Previous Task</source> + <translation>Task &Precedente</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="5220" /> <source><b>Previous Task</b><p>Go to previous line of the current editor having a task.</p></source> <translation><b>Task Precedente</b><p>Vai alla precedente riga dell'editor che ha un task.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5230" /> - <location filename="../ViewManager/ViewManager.py" line="5221" /> + <location filename="../ViewManager/ViewManager.py" line="5240" /> + <location filename="../ViewManager/ViewManager.py" line="5231" /> <source>Next Change</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5223" /> - <source>&Next Change</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="5233" /> + <source>&Next Change</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="5243" /> <source><b>Next Change</b><p>Go to next line of the current editor having a change marker.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5253" /> - <location filename="../ViewManager/ViewManager.py" line="5244" /> + <location filename="../ViewManager/ViewManager.py" line="5263" /> + <location filename="../ViewManager/ViewManager.py" line="5254" /> <source>Previous Change</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5246" /> - <source>&Previous Change</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="5256" /> + <source>&Previous Change</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="5266" /> <source><b>Previous Change</b><p>Go to previous line of the current editor having a change marker.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5277" /> - <location filename="../ViewManager/ViewManager.py" line="5275" /> + <location filename="../ViewManager/ViewManager.py" line="5287" /> + <location filename="../ViewManager/ViewManager.py" line="5285" /> <source>&Bookmarks</source> <translation>Segnali&bri</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5321" /> - <location filename="../ViewManager/ViewManager.py" line="5319" /> + <location filename="../ViewManager/ViewManager.py" line="5331" /> + <location filename="../ViewManager/ViewManager.py" line="5329" /> <source>Bookmarks</source> <translation>Segnalibri</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5355" /> + <location filename="../ViewManager/ViewManager.py" line="5365" /> <source>Check spelling</source> <translation type="unfinished">Controllo sillabazione</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5357" /> + <location filename="../ViewManager/ViewManager.py" line="5367" /> <source>Check &spelling...</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5359" /> + <location filename="../ViewManager/ViewManager.py" line="5369" /> <source>Shift+F7</source> <comment>Spelling|Spell Check</comment> <translation>Shift+F7</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5368" /> + <location filename="../ViewManager/ViewManager.py" line="5378" /> <source>Perform spell check of current editor</source> <translation>Esegui la correzione automatica nella finestra corrente</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5373" /> - <source><b>Check spelling</b><p>Perform a spell check of the current editor.</p></source> - <translation type="unfinished" /> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="5383" /> - <source>Automatic spell checking</source> - <translation>Controllo sintassi automatico</translation> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="5385" /> - <source>&Automatic spell checking</source> - <translation>Controllo sintassi &automatico</translation> + <source><b>Check spelling</b><p>Perform a spell check of the current editor.</p></source> + <translation type="unfinished" /> </message> <message> <location filename="../ViewManager/ViewManager.py" line="5393" /> + <source>Automatic spell checking</source> + <translation>Controllo sintassi automatico</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="5395" /> + <source>&Automatic spell checking</source> + <translation>Controllo sintassi &automatico</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="5403" /> <source>(De-)Activate automatic spell checking</source> <translation>(Dis-)Attiva il controllo sintassi automatico</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5398" /> + <location filename="../ViewManager/ViewManager.py" line="5408" /> <source><b>Automatic spell checking</b><p>Activate or deactivate the automatic spell checking function of all editors.</p></source> <translation><b>Controllo sintassi automatico</b><p>Attiva o disattiva la funzione di controllo sintassi automatico per tutti gli editor.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5432" /> + <location filename="../ViewManager/ViewManager.py" line="5442" /> <source>Edit Dictionary</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5435" /> + <location filename="../ViewManager/ViewManager.py" line="5445" /> <source>Project Word List</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5439" /> + <location filename="../ViewManager/ViewManager.py" line="5449" /> <source>Project Exception List</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5444" /> + <location filename="../ViewManager/ViewManager.py" line="5454" /> <source>User Word List</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5448" /> + <location filename="../ViewManager/ViewManager.py" line="5458" /> <source>User Exception List</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5469" /> - <location filename="../ViewManager/ViewManager.py" line="5467" /> + <location filename="../ViewManager/ViewManager.py" line="5479" /> + <location filename="../ViewManager/ViewManager.py" line="5477" /> <source>Spelling</source> <translation>Spelling</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5492" /> + <location filename="../ViewManager/ViewManager.py" line="5502" /> <source>Open Files</source> <translation type="unfinished">Apri Files</translation> </message> <message> + <location filename="../ViewManager/ViewManager.py" line="5531" /> <location filename="../ViewManager/ViewManager.py" line="5521" /> - <location filename="../ViewManager/ViewManager.py" line="5511" /> <source>Open Remote Files</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5578" /> + <location filename="../ViewManager/ViewManager.py" line="5588" /> <source>File Modified</source> <translation>File modificato</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5579" /> + <location filename="../ViewManager/ViewManager.py" line="5589" /> <source><p>The file <b>{0}</b> has unsaved changes.</p></source> <translation><p>Il file <b>{0}</b> contiene modifiche non salvate.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6078" /> + <location filename="../ViewManager/ViewManager.py" line="6090" /> <source>Line: {0:5}</source> <translation>Linea: {0:5}</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6084" /> + <location filename="../ViewManager/ViewManager.py" line="6096" /> <source>Pos: {0:5}</source> <translation>Pos: {0:5}</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6104" /> + <location filename="../ViewManager/ViewManager.py" line="6116" /> <source>Language: {0}</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6113" /> + <location filename="../ViewManager/ViewManager.py" line="6125" /> <source>EOL Mode: {0}</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6641" /> - <location filename="../ViewManager/ViewManager.py" line="6598" /> + <location filename="../ViewManager/ViewManager.py" line="6668" /> + <location filename="../ViewManager/ViewManager.py" line="6625" /> <source>&Clear</source> <translation>Pulis&ci</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6635" /> + <location filename="../ViewManager/ViewManager.py" line="6662" /> <source>&Add</source> <translation>&Aggiungi</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6638" /> + <location filename="../ViewManager/ViewManager.py" line="6665" /> <source>&Edit...</source> <translation>&Modifica...</translation> </message> <message> + <location filename="../ViewManager/ViewManager.py" line="7735" /> + <location filename="../ViewManager/ViewManager.py" line="7721" /> + <location filename="../ViewManager/ViewManager.py" line="7689" /> + <source>Edit Spelling Dictionary</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="7692" /> + <source><p>The spelling dictionary file <b>{0}</b> could not be read.</p><p>Reason: {1}</p></source> + <translation type="unfinished" /> + </message> + <message> <location filename="../ViewManager/ViewManager.py" line="7708" /> - <location filename="../ViewManager/ViewManager.py" line="7694" /> - <location filename="../ViewManager/ViewManager.py" line="7662" /> - <source>Edit Spelling Dictionary</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="7665" /> - <source><p>The spelling dictionary file <b>{0}</b> could not be read.</p><p>Reason: {1}</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="7681" /> <source>Editing {0}</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="7697" /> + <location filename="../ViewManager/ViewManager.py" line="7724" /> <source><p>The spelling dictionary file <b>{0}</b> could not be written.</p><p>Reason: {1}</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="7711" /> + <location filename="../ViewManager/ViewManager.py" line="7738" /> <source>The spelling dictionary was saved successfully.</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5522" /> + <location filename="../ViewManager/ViewManager.py" line="5532" /> <source>You must be connected to a remote eric-ide server. Aborting...</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6820" /> + <location filename="../ViewManager/ViewManager.py" line="6847" /> <source>Clear Editor</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6821" /> + <location filename="../ViewManager/ViewManager.py" line="6848" /> <source>Do you really want to delete all text of the current editor?</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="8241" /> - <location filename="../ViewManager/ViewManager.py" line="8224" /> + <location filename="../ViewManager/ViewManager.py" line="8268" /> + <location filename="../ViewManager/ViewManager.py" line="8251" /> <source>File System Watcher Error</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="8225" /> + <location filename="../ViewManager/ViewManager.py" line="8252" /> <source><p>The operating system resources for file system watches are exhausted. This limit should be increased. On a Linux system you should <ul><li>sudo nano /etc/sysctl.conf</li><li>add to the bottom "fs.inotify.max_user_instances = 1024"</li><li>save and close the editor</li><li>sudo sysctl -p</li></ul></p><p>Error Message: {0}</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="8242" /> + <location filename="../ViewManager/ViewManager.py" line="8269" /> <source>The file system watcher reported an error with code <b>{0}</b>.</p><p>Error Message: {1}</p></source> <translation type="unfinished" /> </message> @@ -99441,54 +99454,54 @@ <context> <name>VirtualenvManager</name> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="317" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="319" /> <source>Add Virtual Environment</source> <translation type="unfinished" /> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="318" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="320" /> <source>A virtual environment named <b>{0}</b> exists already. Shall it be replaced?</source> <translation type="unfinished" /> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="355" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="357" /> <source>Change Virtual Environment</source> <translation type="unfinished" /> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="388" /> - <location filename="../VirtualEnv/VirtualenvManager.py" line="356" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="390" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="358" /> <source>A virtual environment named <b>{0}</b> does not exist. Aborting!</source> <translation type="unfinished" /> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="387" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="389" /> <source>Rename Virtual Environment</source> <translation type="unfinished" /> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="479" /> - <location filename="../VirtualEnv/VirtualenvManager.py" line="412" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="481" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="414" /> <source>{0} - {1}</source> <translation type="unfinished">{0} - {1}</translation> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="419" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="421" /> <source>Delete Virtual Environments</source> <translation type="unfinished" /> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="420" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="422" /> <source>Do you really want to delete these virtual environments?</source> <translation type="unfinished" /> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="486" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="488" /> <source>Remove Virtual Environments</source> <translation type="unfinished" /> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="487" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="489" /> <source>Do you really want to remove these virtual environments?</source> <translation type="unfinished" /> </message> @@ -99496,7 +99509,7 @@ <context> <name>VirtualenvManagerDialog</name> <message> - <location filename="../VirtualEnv/VirtualenvManagerWidgets.py" line="442" /> + <location filename="../VirtualEnv/VirtualenvManagerWidgets.py" line="448" /> <source>Manage Virtual Environments</source> <translation type="unfinished" /> </message> @@ -99619,7 +99632,7 @@ <context> <name>VirtualenvManagerWindow</name> <message> - <location filename="../VirtualEnv/VirtualenvManagerWidgets.py" line="482" /> + <location filename="../VirtualEnv/VirtualenvManagerWidgets.py" line="488" /> <source>Manage Virtual Environments</source> <translation type="unfinished" /> </message>
--- a/src/eric7/i18n/eric7_pt.ts Wed Oct 16 17:38:35 2024 +0200 +++ b/src/eric7/i18n/eric7_pt.ts Wed Oct 16 17:39:40 2024 +0200 @@ -1640,27 +1640,27 @@ <context> <name>AssistantJedi</name> <message> - <location filename="../JediInterface/AssistantJedi.py" line="230" /> + <location filename="../JediInterface/AssistantJedi.py" line="236" /> <source>Refactoring</source> <translation type="unfinished" /> </message> <message> - <location filename="../JediInterface/AssistantJedi.py" line="232" /> - <source>Rename Variable</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../JediInterface/AssistantJedi.py" line="235" /> - <source>Extract Variable</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../JediInterface/AssistantJedi.py" line="238" /> + <source>Rename Variable</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../JediInterface/AssistantJedi.py" line="241" /> + <source>Extract Variable</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../JediInterface/AssistantJedi.py" line="244" /> <source>Inline Variable</source> <translation type="unfinished" /> </message> <message> - <location filename="../JediInterface/AssistantJedi.py" line="242" /> + <location filename="../JediInterface/AssistantJedi.py" line="248" /> <source>Extract Function</source> <translation type="unfinished" /> </message> @@ -9251,21 +9251,37 @@ </translation> </message> <message> - <location filename="../Debugger/DebugServer.py" line="2109" /> + <location filename="../Debugger/DebugServer.py" line="2110" /> <source>Passive debug connection received </source> <translation>Conexão de depuração passiva recebida </translation> </message> <message> - <location filename="../Debugger/DebugServer.py" line="2123" /> + <location filename="../Debugger/DebugServer.py" line="2119" /> + <source>Passive debug connection received while not in passive mode. +</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Debugger/DebugServer.py" line="2125" /> + <source>Debug Client Connection</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Debugger/DebugServer.py" line="2126" /> + <source>Passive debug client connection received while not in passive mode. Enable this mode on the 'Debugger General' configuration page. The connection will be rejected.</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Debugger/DebugServer.py" line="2141" /> <source>Passive debug connection closed </source> <translation>Conexão de depuração passiva fechada </translation> </message> <message> - <location filename="../Debugger/DebugServer.py" line="2254" /> + <location filename="../Debugger/DebugServer.py" line="2272" /> <source><project></source> <translation type="unfinished" /> </message> @@ -10216,25 +10232,13 @@ </message> <message> <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" /> - <source>Enables the passive debug mode</source> - <translation>Habilita o modo de depuração passiva</translation> + <source>Debugger Type:</source> + <translation>Tipo de Depurador:</translation> </message> <message> <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" /> - <source><b>Passive Debugger Enabled</b> -<p>This enables the passive debugging mode. In this mode the debug client (the script) connects to the debug server (the IDE). The script is started outside the IDE. This way mod_python or Zope scripts can be debugged.</p></source> - <translation><b>Depurador Passivo Habilitado</b> -<p>Habilita o modo depuração passiva. Neste modo, o cliente de depuração (o script) conecta ao servidor de depuração (o IDE). O script é iniciado fora do IDE. Assim podem ser depurados os scripts mod_python ou Zope.</p></translation> - </message> - <message> - <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" /> - <source>Passive Debugger Enabled</source> - <translation>Depurador Passivo Habilitado</translation> - </message> - <message> - <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" /> - <source>Debug Server Port:</source> - <translation>Porto de Depuração do Servidor:</translation> + <source>Select the debugger type of the backend</source> + <translation>Selecionar o tipo de instalação de retaguarda do depurador</translation> </message> <message> <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" /> @@ -10250,13 +10254,8 @@ </message> <message> <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" /> - <source>Debugger Type:</source> - <translation>Tipo de Depurador:</translation> - </message> - <message> - <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" /> - <source>Select the debugger type of the backend</source> - <translation>Selecionar o tipo de instalação de retaguarda do depurador</translation> + <source>Debug Server Port:</source> + <translation>Porto de Depuração do Servidor:</translation> </message> <message> <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" /> @@ -10588,50 +10587,64 @@ <source>Automatically view source code</source> <translation>Ver código fonte automáticamente</translation> </message> + <message> + <source>Enables the passive debug mode</source> + <translation type="vanished">Habilita o modo de depuração passiva</translation> + </message> + <message> + <source><b>Passive Debugger Enabled</b> +<p>This enables the passive debugging mode. In this mode the debug client (the script) connects to the debug server (the IDE). The script is started outside the IDE. This way mod_python or Zope scripts can be debugged.</p></source> + <translation type="vanished"><b>Depurador Passivo Habilitado</b> +<p>Habilita o modo depuração passiva. Neste modo, o cliente de depuração (o script) conecta ao servidor de depuração (o IDE). O script é iniciado fora do IDE. Assim podem ser depurados os scripts mod_python ou Zope.</p></translation> + </message> + <message> + <source>Passive Debugger Enabled</source> + <translation type="vanished">Depurador Passivo Habilitado</translation> + </message> </context> <context> <name>DebuggerInterfacePython</name> <message> - <location filename="../Debugger/DebuggerInterfacePython.py" line="727" /> - <location filename="../Debugger/DebuggerInterfacePython.py" line="704" /> - <location filename="../Debugger/DebuggerInterfacePython.py" line="611" /> - <location filename="../Debugger/DebuggerInterfacePython.py" line="565" /> - <location filename="../Debugger/DebuggerInterfacePython.py" line="446" /> - <location filename="../Debugger/DebuggerInterfacePython.py" line="423" /> - <location filename="../Debugger/DebuggerInterfacePython.py" line="346" /> - <location filename="../Debugger/DebuggerInterfacePython.py" line="322" /> - <location filename="../Debugger/DebuggerInterfacePython.py" line="259" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="728" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="705" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="609" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="563" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="445" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="422" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="345" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="321" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="258" /> <source>Start Debugger</source> <translation type="unfinished">Iniciar o Depurador</translation> </message> <message> - <location filename="../Debugger/DebuggerInterfacePython.py" line="566" /> - <location filename="../Debugger/DebuggerInterfacePython.py" line="260" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="564" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="259" /> <source><p>No suitable Python3 environment configured.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Debugger/DebuggerInterfacePython.py" line="728" /> - <location filename="../Debugger/DebuggerInterfacePython.py" line="705" /> - <location filename="../Debugger/DebuggerInterfacePython.py" line="612" /> - <location filename="../Debugger/DebuggerInterfacePython.py" line="447" /> - <location filename="../Debugger/DebuggerInterfacePython.py" line="424" /> - <location filename="../Debugger/DebuggerInterfacePython.py" line="323" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="729" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="706" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="610" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="446" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="423" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="322" /> <source><p>The debugger backend could not be started.</p></source> <translation type="unfinished"><p>A instalação de retaguarda do depurador não pode iniciar.</p></translation> </message> <message> - <location filename="../Debugger/DebuggerInterfacePython.py" line="347" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="346" /> <source><p>Remote debugging is configured but no command for remote login was given.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Debugger/DebuggerInterfacePython.py" line="1659" /> - <source>Debug Protocol Error</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Debugger/DebuggerInterfacePython.py" line="1660" /> + <source>Debug Protocol Error</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Debugger/DebuggerInterfacePython.py" line="1661" /> <source><p>The response received from the debugger backend 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" /> </message> @@ -62098,7 +62111,7 @@ <context> <name>PreviewModel</name> <message> - <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="478" /> + <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="506" /> <source>Variable Name</source> <translation type="unfinished" /> </message> @@ -62980,8 +62993,8 @@ <translation>Renomear Ficheiro</translation> </message> <message> - <location filename="../Project/Project.py" line="8058" /> - <location filename="../Project/Project.py" line="3901" /> + <location filename="../Project/Project.py" line="8055" /> + <location filename="../Project/Project.py" line="3898" /> <location filename="../Project/Project.py" line="2398" /> <source><p>The file <b>{0}</b> already exists. Overwrite it?</p></source> <translation><p>O ficheiro <b>{0}</b> já existe. Sobreescrever?</p></translation> @@ -63115,40 +63128,40 @@ <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="8044" /> - <location filename="../Project/Project.py" line="8038" /> - <location filename="../Project/Project.py" line="8028" /> - <location filename="../Project/Project.py" line="3886" /> - <location filename="../Project/Project.py" line="3876" /> + <location filename="../Project/Project.py" line="8041" /> + <location filename="../Project/Project.py" line="8035" /> + <location filename="../Project/Project.py" line="8025" /> + <location filename="../Project/Project.py" line="3883" /> + <location filename="../Project/Project.py" line="3873" /> <location filename="../Project/Project.py" line="3652" /> <source>Project Files (*.epj)</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="3900" /> - <location filename="../Project/Project.py" line="3884" /> + <location filename="../Project/Project.py" line="3897" /> + <location filename="../Project/Project.py" line="3881" /> <source>Save Project</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="3939" /> + <location filename="../Project/Project.py" line="3936" /> <source>Close Project</source> <translation>Fechar Projeto</translation> </message> <message> - <location filename="../Project/Project.py" line="3940" /> + <location filename="../Project/Project.py" line="3937" /> <source>The current project has unsaved changes.</source> <translation>O projeto atual tem alterações por gravar.</translation> </message> <message> - <location filename="../Project/Project.py" line="4140" /> - <location filename="../Project/Project.py" line="4104" /> + <location filename="../Project/Project.py" line="4137" /> + <location filename="../Project/Project.py" line="4101" /> <source>Syntax Errors Detected</source> <translation type="unfinished" /> </message> <message numerus="yes"> - <location filename="../Project/Project.py" line="4141" /> - <location filename="../Project/Project.py" line="4105" /> + <location filename="../Project/Project.py" line="4138" /> + <location filename="../Project/Project.py" line="4102" /> <source>The project contains %n file(s) with syntax errors.</source> <translation> <numerusform>O projeto tem um ficheiro com erros de síntaxe.</numerusform> @@ -63156,1268 +63169,1268 @@ </translation> </message> <message> - <location filename="../Project/Project.py" line="4799" /> + <location filename="../Project/Project.py" line="4796" /> <source>New project</source> <translation>Projeto novo</translation> </message> <message> - <location filename="../Project/Project.py" line="4801" /> + <location filename="../Project/Project.py" line="4798" /> <source>&New...</source> <translation>&Novo...</translation> </message> <message> - <location filename="../Project/Project.py" line="4807" /> + <location filename="../Project/Project.py" line="4804" /> <source>Generate a new project</source> <translation>Criar um projeto novo</translation> </message> <message> - <location filename="../Project/Project.py" line="4809" /> + <location filename="../Project/Project.py" line="4806" /> <source><b>New...</b><p>This opens a dialog for entering the info for a new project.</p></source> <translation><b>Novo...</b><p>Abre uma caixa de diálogo para introduzir a informação para um projeto novo.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4819" /> + <location filename="../Project/Project.py" line="4816" /> <source>Open project</source> <translation>Abrir projeto</translation> </message> <message> - <location filename="../Project/Project.py" line="4821" /> + <location filename="../Project/Project.py" line="4818" /> <source>&Open...</source> <translation>&Abrir...</translation> </message> <message> - <location filename="../Project/Project.py" line="4827" /> + <location filename="../Project/Project.py" line="4824" /> <source>Open an existing project</source> <translation>Abrir um projeto existente</translation> </message> <message> - <location filename="../Project/Project.py" line="4829" /> + <location filename="../Project/Project.py" line="4826" /> <source><b>Open...</b><p>This opens an existing project.</p></source> <translation><b>Abrir...</b><p>Isto abre um projeto existente.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4835" /> + <location filename="../Project/Project.py" line="4832" /> <source>Open remote project</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="4837" /> + <location filename="../Project/Project.py" line="4834" /> <source>Open (Remote)...</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="4843" /> + <location filename="../Project/Project.py" line="4840" /> <source>Open an existing remote project</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="4845" /> + <location filename="../Project/Project.py" line="4842" /> <source><b>Open (Remote)...</b><p>This opens an existing remote project.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="4854" /> + <location filename="../Project/Project.py" line="4851" /> <source>Reload project</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="4856" /> + <location filename="../Project/Project.py" line="4853" /> <source>Re&load</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="4862" /> + <location filename="../Project/Project.py" line="4859" /> <source>Reload the current project</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="4864" /> + <location filename="../Project/Project.py" line="4861" /> <source><b>Reload</b><p>This reloads the current project.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="4870" /> + <location filename="../Project/Project.py" line="4867" /> <source>Close project</source> <translation>Fechar projeto</translation> </message> <message> - <location filename="../Project/Project.py" line="4872" /> + <location filename="../Project/Project.py" line="4869" /> <source>&Close</source> <translation>&Fechar</translation> </message> <message> - <location filename="../Project/Project.py" line="4878" /> + <location filename="../Project/Project.py" line="4875" /> <source>Close the current project</source> <translation>Fechar o projeto atual</translation> </message> <message> - <location filename="../Project/Project.py" line="4880" /> + <location filename="../Project/Project.py" line="4877" /> <source><b>Close</b><p>This closes the current project.</p></source> <translation><b>Fechar</b><p>Fecha o projeto atual</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4886" /> + <location filename="../Project/Project.py" line="4883" /> <source>Save project</source> <translation>Gravar projeto</translation> </message> <message> - <location filename="../Project/Project.py" line="5183" /> - <location filename="../Project/Project.py" line="4888" /> + <location filename="../Project/Project.py" line="5180" /> + <location filename="../Project/Project.py" line="4885" /> <source>&Save</source> <translation>&Gravar</translation> </message> <message> - <location filename="../Project/Project.py" line="4894" /> + <location filename="../Project/Project.py" line="4891" /> <source>Save the current project</source> <translation>Gravar o projeto actual</translation> </message> <message> - <location filename="../Project/Project.py" line="4896" /> + <location filename="../Project/Project.py" line="4893" /> <source><b>Save</b><p>This saves the current project.</p></source> <translation><b>Gravar</b><p>Guarda o projeto atual.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4902" /> + <location filename="../Project/Project.py" line="4899" /> <source>Save project as</source> <translation>Gravar projeto como</translation> </message> <message> - <location filename="../Project/Project.py" line="4904" /> + <location filename="../Project/Project.py" line="4901" /> <source>Save &as...</source> <translation>Gravar &como...</translation> </message> <message> - <location filename="../Project/Project.py" line="4910" /> + <location filename="../Project/Project.py" line="4907" /> <source>Save the current project to a new file</source> <translation>Gravar o projeto atual para um ficheiro novo</translation> </message> <message> - <location filename="../Project/Project.py" line="4912" /> + <location filename="../Project/Project.py" line="4909" /> <source><b>Save as</b><p>This saves the current project to a new file.</p></source> <translation><b>Gravar como</b><p>Guarda o projeto atual para um ficheiro novo.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4921" /> + <location filename="../Project/Project.py" line="4918" /> <source>Save project as (Remote)</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="4923" /> + <location filename="../Project/Project.py" line="4920" /> <source>Save as (Remote)...</source> <translation type="unfinished" /> </message> <message> + <location filename="../Project/Project.py" line="4927" /> + <source>Save the current project to a new remote file</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../Project/Project.py" line="4930" /> - <source>Save the current project to a new remote file</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="4933" /> <source><b>Save as (Remote)</b><p>This saves the current project to a new remote file.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="4949" /> + <location filename="../Project/Project.py" line="4946" /> <source>Add files to project</source> <translation>Adicionar ficheiros ao projeto</translation> </message> <message> - <location filename="../Project/Project.py" line="4951" /> + <location filename="../Project/Project.py" line="4948" /> <source>Add &files...</source> <translation>Adicionar &ficheiros...</translation> </message> <message> - <location filename="../Project/Project.py" line="4957" /> + <location filename="../Project/Project.py" line="4954" /> <source>Add files to the current project</source> <translation>Adicionar ficheiros ao projeto atual</translation> </message> <message> - <location filename="../Project/Project.py" line="4959" /> + <location filename="../Project/Project.py" line="4956" /> <source><b>Add files...</b><p>This opens a dialog for adding files to the current project. The place to add is determined by the file extension.</p></source> <translation><b>Adicionar ficheiros...</b><p>Abre uma caixa de diálogo para adicionar ficheiros ao projeto atual. O lugar para adicionar determina-se pela extensão de ficheiro.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4970" /> + <location filename="../Project/Project.py" line="4967" /> <source>Add directory to project</source> <translation>Adicionar diretório ao projeto</translation> </message> <message> - <location filename="../Project/Project.py" line="4972" /> + <location filename="../Project/Project.py" line="4969" /> <source>Add directory...</source> <translation>Adicionar diretório...</translation> </message> <message> + <location filename="../Project/Project.py" line="4976" /> + <source>Add a directory to the current project</source> + <translation>Adicionar um diretório ao projeto atual</translation> + </message> + <message> <location filename="../Project/Project.py" line="4979" /> - <source>Add a directory to the current project</source> - <translation>Adicionar um diretório ao projeto atual</translation> - </message> - <message> - <location filename="../Project/Project.py" line="4982" /> <source><b>Add directory...</b><p>This opens a dialog for adding a directory to the current project.</p></source> <translation><b>Adicionar diretório</b><p>Abre uma caixa de diálogo para adicionar um diretório ao projeto atual.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4992" /> + <location filename="../Project/Project.py" line="4989" /> <source>Add translation to project</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="4994" /> + <location filename="../Project/Project.py" line="4991" /> <source>Add &translation...</source> <translation>Adicionar &tradução...</translation> </message> <message> + <location filename="../Project/Project.py" line="4998" /> + <source>Add a translation to the current project</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../Project/Project.py" line="5001" /> - <source>Add a translation to the current project</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="5004" /> <source><b>Add translation...</b><p>This opens a dialog for add a translation to the current project.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5014" /> + <location filename="../Project/Project.py" line="5011" /> <source>Search new files</source> <translation>Procurar ficheiros novos</translation> </message> <message> - <location filename="../Project/Project.py" line="5015" /> + <location filename="../Project/Project.py" line="5012" /> <source>Searc&h new files...</source> <translation>&Procurar ficheiros novos...</translation> </message> <message> - <location filename="../Project/Project.py" line="5021" /> + <location filename="../Project/Project.py" line="5018" /> <source>Search new files in the project directory.</source> <translation>Procurar ficheiros novos no diretório do projeto.</translation> </message> <message> - <location filename="../Project/Project.py" line="5023" /> + <location filename="../Project/Project.py" line="5020" /> <source><b>Search new files...</b><p>This searches for new files (sources, forms, ...) in the project directory and registered subdirectories.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5033" /> + <location filename="../Project/Project.py" line="5030" /> <source>Search Project File</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5034" /> + <location filename="../Project/Project.py" line="5031" /> <source>Search Project File...</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5035" /> + <location filename="../Project/Project.py" line="5032" /> <source>Alt+Ctrl+P</source> <comment>Project|Search Project File</comment> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5040" /> + <location filename="../Project/Project.py" line="5037" /> <source>Search for a file in the project list of files.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5042" /> + <location filename="../Project/Project.py" line="5039" /> <source><b>Search Project File</b><p>This searches for a file in the project list of files.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5051" /> + <location filename="../Project/Project.py" line="5048" /> <source>Project properties</source> <translation>Propriedades do projeto</translation> </message> <message> - <location filename="../Project/Project.py" line="5053" /> + <location filename="../Project/Project.py" line="5050" /> <source>&Properties...</source> <translation>&Propriedades...</translation> </message> <message> - <location filename="../Project/Project.py" line="5059" /> + <location filename="../Project/Project.py" line="5056" /> <source>Show the project properties</source> <translation>Mostrar as propriedades do projeto</translation> </message> <message> - <location filename="../Project/Project.py" line="5061" /> + <location filename="../Project/Project.py" line="5058" /> <source><b>Properties...</b><p>This shows a dialog to edit the project properties.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5070" /> + <location filename="../Project/Project.py" line="5067" /> <source>User project properties</source> <translation>Propriedades de projecto do usuário</translation> </message> <message> - <location filename="../Project/Project.py" line="5072" /> + <location filename="../Project/Project.py" line="5069" /> <source>&User Properties...</source> <translation>Propriedades de &Usuário...</translation> </message> <message> + <location filename="../Project/Project.py" line="5076" /> + <source>Show the user specific project properties</source> + <translation>Mostrar as propriedades do projeto específicas do usuário</translation> + </message> + <message> <location filename="../Project/Project.py" line="5079" /> - <source>Show the user specific project properties</source> - <translation>Mostrar as propriedades do projeto específicas do usuário</translation> - </message> - <message> - <location filename="../Project/Project.py" line="5082" /> <source><b>User Properties...</b><p>This shows a dialog to edit the user specific project properties.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5092" /> + <location filename="../Project/Project.py" line="5089" /> <source>Filetype Associations</source> <translation>Associações de Tipos de Ficheiros</translation> </message> <message> - <location filename="../Project/Project.py" line="5093" /> + <location filename="../Project/Project.py" line="5090" /> <source>Filetype Associations...</source> <translation>Associações de Tipos de Ficheiros...</translation> </message> <message> + <location filename="../Project/Project.py" line="5097" /> + <source>Show the project file type associations</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../Project/Project.py" line="5100" /> - <source>Show the project file type associations</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="5103" /> <source><b>Filetype Associations...</b><p>This shows a dialog to edit the file type associations of the project. These associations determine the type (source, form, interface, protocol or others) with a filename pattern. They are used when adding a file to the project and when performing a search for new files.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5116" /> + <location filename="../Project/Project.py" line="5113" /> <source>Lexer Associations</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5117" /> + <location filename="../Project/Project.py" line="5114" /> <source>Lexer Associations...</source> <translation type="unfinished" /> </message> <message> + <location filename="../Project/Project.py" line="5121" /> + <source>Show the project lexer associations (overriding defaults)</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../Project/Project.py" line="5124" /> - <source>Show the project lexer associations (overriding defaults)</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="5127" /> <source><b>Lexer Associations...</b><p>This shows a dialog to edit the lexer associations of the project. These associations override the global lexer associations. Lexers are used to highlight the editor text.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5145" /> + <location filename="../Project/Project.py" line="5142" /> <source>Debugger Properties</source> <translation>Propriedades do Depurador</translation> </message> <message> - <location filename="../Project/Project.py" line="5146" /> + <location filename="../Project/Project.py" line="5143" /> <source>Debugger &Properties...</source> <translation>&Propriedades do Depurador...</translation> </message> <message> - <location filename="../Project/Project.py" line="5152" /> + <location filename="../Project/Project.py" line="5149" /> <source>Show the debugger properties</source> <translation>Mostrar as propriedades do depurador</translation> </message> <message> - <location filename="../Project/Project.py" line="5154" /> + <location filename="../Project/Project.py" line="5151" /> <source><b>Debugger Properties...</b><p>This shows a dialog to edit project specific debugger settings.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5164" /> + <location filename="../Project/Project.py" line="5161" /> <source>Load</source> <translation>Carregar</translation> </message> <message> - <location filename="../Project/Project.py" line="5165" /> + <location filename="../Project/Project.py" line="5162" /> <source>&Load</source> <translation>&Carregar</translation> </message> <message> - <location filename="../Project/Project.py" line="5171" /> + <location filename="../Project/Project.py" line="5168" /> <source>Load the debugger properties</source> <translation>Carregar propriedades do depurador</translation> </message> <message> - <location filename="../Project/Project.py" line="5173" /> + <location filename="../Project/Project.py" line="5170" /> <source><b>Load Debugger Properties</b><p>This loads the project specific debugger settings.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5182" /> + <location filename="../Project/Project.py" line="5179" /> <source>Save</source> <translation>Gravar</translation> </message> <message> - <location filename="../Project/Project.py" line="5189" /> + <location filename="../Project/Project.py" line="5186" /> <source>Save the debugger properties</source> <translation>Gravar propriedades do depurador</translation> </message> <message> - <location filename="../Project/Project.py" line="5191" /> + <location filename="../Project/Project.py" line="5188" /> <source><b>Save Debugger Properties</b><p>This saves the project specific debugger settings.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5200" /> + <location filename="../Project/Project.py" line="5197" /> <source>Delete</source> <translation>Apagar</translation> </message> <message> - <location filename="../Project/Project.py" line="5201" /> + <location filename="../Project/Project.py" line="5198" /> <source>&Delete</source> <translation>&Apagar</translation> </message> <message> - <location filename="../Project/Project.py" line="5207" /> + <location filename="../Project/Project.py" line="5204" /> <source>Delete the debugger properties</source> <translation>Apagar as propriedades do depurador</translation> </message> <message> - <location filename="../Project/Project.py" line="5209" /> + <location filename="../Project/Project.py" line="5206" /> <source><b>Delete Debugger Properties</b><p>This deletes the file containing the project specific debugger settings.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5219" /> + <location filename="../Project/Project.py" line="5216" /> <source>Reset</source> <translation>Reinicializar</translation> </message> <message> - <location filename="../Project/Project.py" line="5220" /> + <location filename="../Project/Project.py" line="5217" /> <source>&Reset</source> <translation>&Reinicializar</translation> </message> <message> - <location filename="../Project/Project.py" line="5226" /> + <location filename="../Project/Project.py" line="5223" /> <source>Reset the debugger properties</source> <translation>Reinicializar as propriedades do depurador</translation> </message> <message> - <location filename="../Project/Project.py" line="5228" /> + <location filename="../Project/Project.py" line="5225" /> <source><b>Reset Debugger Properties</b><p>This resets the project specific debugger settings.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5244" /> - <location filename="../Project/Project.py" line="5243" /> + <location filename="../Project/Project.py" line="5241" /> + <location filename="../Project/Project.py" line="5240" /> <source>Load session</source> <translation>Carregar sessão</translation> </message> <message> - <location filename="../Project/Project.py" line="5250" /> + <location filename="../Project/Project.py" line="5247" /> <source>Load the projects session file.</source> <translation>Carregar o ficheiro de sessão do projeto.</translation> </message> <message> - <location filename="../Project/Project.py" line="5252" /> + <location filename="../Project/Project.py" line="5249" /> <source><b>Load session</b><p>This loads the projects session file. The session consists of the following data.<br>- all open source files<br>- all breakpoint<br>- the commandline arguments<br>- the working directory<br>- the exception reporting flag</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5268" /> - <location filename="../Project/Project.py" line="5267" /> + <location filename="../Project/Project.py" line="5265" /> + <location filename="../Project/Project.py" line="5264" /> <source>Save session</source> <translation>Guargar sessão</translation> </message> <message> - <location filename="../Project/Project.py" line="5274" /> + <location filename="../Project/Project.py" line="5271" /> <source>Save the projects session file.</source> <translation>Gravar ficheiro de sessão do projeto.</translation> </message> <message> - <location filename="../Project/Project.py" line="5276" /> + <location filename="../Project/Project.py" line="5273" /> <source><b>Save session</b><p>This saves the projects session file. The session consists of the following data.<br>- all open source files<br>- all breakpoint<br>- the commandline arguments<br>- the working directory<br>- the exception reporting flag</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5292" /> - <location filename="../Project/Project.py" line="5291" /> + <location filename="../Project/Project.py" line="5289" /> + <location filename="../Project/Project.py" line="5288" /> <source>Delete session</source> <translation>Apagar sessão</translation> </message> <message> - <location filename="../Project/Project.py" line="5298" /> + <location filename="../Project/Project.py" line="5295" /> <source>Delete the projects session file.</source> <translation>Apagar o ficheiro de sessão do projeto.</translation> </message> <message> - <location filename="../Project/Project.py" line="5300" /> + <location filename="../Project/Project.py" line="5297" /> <source><b>Delete session</b><p>This deletes the projects session file</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5315" /> + <location filename="../Project/Project.py" line="5312" /> <source>Code Metrics</source> <translation type="unfinished">Métricas de Código</translation> </message> <message> - <location filename="../Project/Project.py" line="5316" /> + <location filename="../Project/Project.py" line="5313" /> <source>&Code Metrics...</source> <translation type="unfinished" /> </message> <message> + <location filename="../Project/Project.py" line="5320" /> + <source>Show some code metrics for the project.</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../Project/Project.py" line="5323" /> - <source>Show some code metrics for the project.</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="5326" /> <source><b>Code Metrics...</b><p>This shows some code metrics for all Python files in the project.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5336" /> + <location filename="../Project/Project.py" line="5333" /> <source>Python Code Coverage</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5337" /> + <location filename="../Project/Project.py" line="5334" /> <source>Code Co&verage...</source> <translation type="unfinished" /> </message> <message> + <location filename="../Project/Project.py" line="5341" /> + <source>Show code coverage information for the project.</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../Project/Project.py" line="5344" /> - <source>Show code coverage information for the project.</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="5347" /> <source><b>Code Coverage...</b><p>This shows the code coverage information for all Python files in the project.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6781" /> - <location filename="../Project/Project.py" line="6768" /> - <location filename="../Project/Project.py" line="5357" /> + <location filename="../Project/Project.py" line="6778" /> + <location filename="../Project/Project.py" line="6765" /> + <location filename="../Project/Project.py" line="5354" /> <source>Profile Data</source> <translation type="unfinished">Dados de Perfil</translation> </message> <message> - <location filename="../Project/Project.py" line="5358" /> + <location filename="../Project/Project.py" line="5355" /> <source>&Profile Data...</source> <translation type="unfinished" /> </message> <message> + <location filename="../Project/Project.py" line="5362" /> + <source>Show profiling data for the project.</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../Project/Project.py" line="5365" /> - <source>Show profiling data for the project.</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="5368" /> <source><b>Profile Data...</b><p>This shows the profiling data for the project.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6833" /> - <location filename="../Project/Project.py" line="5383" /> + <location filename="../Project/Project.py" line="6830" /> + <location filename="../Project/Project.py" line="5380" /> <source>Application Diagram</source> <translation>Diagrama da Aplicação</translation> </message> <message> - <location filename="../Project/Project.py" line="5384" /> + <location filename="../Project/Project.py" line="5381" /> <source>&Application Diagram...</source> <translation>Diagrama da &Aplicação...</translation> </message> <message> + <location filename="../Project/Project.py" line="5388" /> + <source>Show a diagram of the project.</source> + <translation>Mostrar o diagrama do projeto.</translation> + </message> + <message> <location filename="../Project/Project.py" line="5391" /> - <source>Show a diagram of the project.</source> - <translation>Mostrar o diagrama do projeto.</translation> - </message> - <message> - <location filename="../Project/Project.py" line="5394" /> <source><b>Application Diagram...</b><p>This shows a diagram of the project.</p></source> <translation><b>Diagrama da Aplicação...</b><p>Mostra um diagrama do projeto.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5403" /> + <location filename="../Project/Project.py" line="5400" /> <source>Load Diagram</source> <translation>Carregar Diagrama</translation> </message> <message> - <location filename="../Project/Project.py" line="5404" /> + <location filename="../Project/Project.py" line="5401" /> <source>&Load Diagram...</source> <translation>&Carregar Diagrama...</translation> </message> <message> - <location filename="../Project/Project.py" line="5410" /> + <location filename="../Project/Project.py" line="5407" /> <source>Load a diagram from file.</source> <translation>Carregar um diagrama desde um ficheiro.</translation> </message> <message> - <location filename="../Project/Project.py" line="5412" /> + <location filename="../Project/Project.py" line="5409" /> <source><b>Load Diagram...</b><p>This loads a diagram from file.</p></source> <translation><b>Carregar Diagrama...</b><p>Carga um diagrama desde um ficheiro.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="7001" /> - <location filename="../Project/Project.py" line="6946" /> - <location filename="../Project/Project.py" line="5427" /> + <location filename="../Project/Project.py" line="6998" /> + <location filename="../Project/Project.py" line="6943" /> + <location filename="../Project/Project.py" line="5424" /> <source>Create Package List</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5429" /> + <location filename="../Project/Project.py" line="5426" /> <source>Create &Package List</source> <translation type="unfinished" /> </message> <message> + <location filename="../Project/Project.py" line="5433" /> + <source>Create an initial PKGLIST file for an eric plugin.</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../Project/Project.py" line="5436" /> - <source>Create an initial PKGLIST file for an eric plugin.</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="5439" /> <source><b>Create Package List</b><p>This creates an initial list of files to include in an eric plugin archive. The list is created from the project file.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="7071" /> - <location filename="../Project/Project.py" line="5450" /> + <location filename="../Project/Project.py" line="7068" /> + <location filename="../Project/Project.py" line="5447" /> <source>Create Plugin Archives</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5452" /> + <location filename="../Project/Project.py" line="5449" /> <source>Create Plugin &Archives</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5458" /> + <location filename="../Project/Project.py" line="5455" /> <source>Create eric plugin archive files.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5460" /> + <location filename="../Project/Project.py" line="5457" /> <source><b>Create Plugin Archives</b><p>This creates eric plugin archive files using the list of files given in a PKGLIST* file. The archive name is built from the main script name if not designated in the package list file.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5472" /> + <location filename="../Project/Project.py" line="5469" /> <source>Create Plugin Archives (Snapshot)</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5474" /> + <location filename="../Project/Project.py" line="5471" /> <source>Create Plugin Archives (&Snapshot)</source> <translation type="unfinished" /> </message> <message> + <location filename="../Project/Project.py" line="5478" /> + <source>Create eric plugin archive files (snapshot releases).</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../Project/Project.py" line="5481" /> - <source>Create eric plugin archive files (snapshot releases).</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="5484" /> <source><b>Create Plugin Archives (Snapshot)</b><p>This creates eric plugin archive files using the list of files given in the PKGLIST* file. The archive name is built from the main script name if not designated in the package list file. The version entry of the main script is modified to reflect a snapshot release.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="7513" /> - <location filename="../Project/Project.py" line="7484" /> - <location filename="../Project/Project.py" line="7438" /> - <location filename="../Project/Project.py" line="7390" /> - <location filename="../Project/Project.py" line="5503" /> + <location filename="../Project/Project.py" line="7510" /> + <location filename="../Project/Project.py" line="7481" /> + <location filename="../Project/Project.py" line="7435" /> + <location filename="../Project/Project.py" line="7387" /> + <location filename="../Project/Project.py" line="5500" /> <source>Execute Make</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5504" /> + <location filename="../Project/Project.py" line="5501" /> <source>&Execute Make</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5510" /> + <location filename="../Project/Project.py" line="5507" /> <source>Perform a 'make' run.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5512" /> + <location filename="../Project/Project.py" line="5509" /> <source><b>Execute Make</b><p>This performs a 'make' run to rebuild the configured target.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="7490" /> - <location filename="../Project/Project.py" line="5522" /> + <location filename="../Project/Project.py" line="7487" /> + <location filename="../Project/Project.py" line="5519" /> <source>Test for Changes</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5523" /> + <location filename="../Project/Project.py" line="5520" /> <source>&Test for Changes</source> <translation type="unfinished" /> </message> <message> + <location filename="../Project/Project.py" line="5527" /> + <source>Question 'make', if a rebuild is needed.</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../Project/Project.py" line="5530" /> - <source>Question 'make', if a rebuild is needed.</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="5533" /> <source><b>Test for Changes</b><p>This questions 'make', if a rebuild of the configured target is necessary.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5551" /> + <location filename="../Project/Project.py" line="5548" /> <source>Create SBOM File</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5552" /> + <location filename="../Project/Project.py" line="5549" /> <source>Create &SBOM File</source> <translation type="unfinished" /> </message> <message> + <location filename="../Project/Project.py" line="5556" /> + <source>Create a SBOM file of the project dependencies.</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../Project/Project.py" line="5559" /> - <source>Create a SBOM file of the project dependencies.</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="5562" /> <source><b>Create SBOM File</b><p>This allows the creation of a SBOM file of the project dependencies. This may be based on various input sources and will be saved as a CycloneDX SBOM file.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5573" /> + <location filename="../Project/Project.py" line="5570" /> <source>Clear Byte Code Caches</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5574" /> + <location filename="../Project/Project.py" line="5571" /> <source>Clear Byte Code &Caches</source> <translation type="unfinished" /> </message> <message> + <location filename="../Project/Project.py" line="5578" /> + <source>Clear the byte code caches of the project.</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../Project/Project.py" line="5581" /> - <source>Clear the byte code caches of the project.</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="5584" /> <source><b>Clear Byte Code Caches</b><p>This deletes all directories containing byte code cache files.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5600" /> + <location filename="../Project/Project.py" line="5597" /> <source>About Black</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5601" /> + <location filename="../Project/Project.py" line="5598" /> <source>&Black</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5607" /> + <location filename="../Project/Project.py" line="5604" /> <source>Show some information about 'Black'.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5609" /> + <location filename="../Project/Project.py" line="5606" /> <source><b>Black</b><p>This shows some information about the installed 'Black' tool.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5621" /> + <location filename="../Project/Project.py" line="5618" /> <source>Format Code</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5622" /> + <location filename="../Project/Project.py" line="5619" /> <source>&Format Code</source> <translation type="unfinished" /> </message> <message> + <location filename="../Project/Project.py" line="5626" /> + <source>Format the project sources with 'Black'.</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../Project/Project.py" line="5629" /> - <source>Format the project sources with 'Black'.</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="5632" /> <source><b>Format Code</b><p>This shows a dialog to enter parameters for the formatting run and reformats the project sources using 'Black'.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5644" /> + <location filename="../Project/Project.py" line="5641" /> <source>Check Code Formatting</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5645" /> + <location filename="../Project/Project.py" line="5642" /> <source>&Check Code Formatting</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5652" /> + <location filename="../Project/Project.py" line="5649" /> <source>Check, if the project sources need to be reformatted with 'Black'.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5657" /> + <location filename="../Project/Project.py" line="5654" /> <source><b>Check Code Formatting</b><p>This shows a dialog to enter parameters for the format check run and performs a check, if the project sources need to be reformatted using 'Black'.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5670" /> + <location filename="../Project/Project.py" line="5667" /> <source>Code Formatting Diff</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5671" /> + <location filename="../Project/Project.py" line="5668" /> <source>Code Formatting &Diff</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5678" /> + <location filename="../Project/Project.py" line="5675" /> <source>Generate a unified diff of potential project source reformatting with 'Black'.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5684" /> + <location filename="../Project/Project.py" line="5681" /> <source><b>Diff Code Formatting</b><p>This shows a dialog to enter parameters for the format diff run and generates a unified diff of potential project source reformatting using 'Black'.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5849" /> - <location filename="../Project/Project.py" line="5799" /> - <location filename="../Project/Project.py" line="5798" /> - <location filename="../Project/Project.py" line="5698" /> - <location filename="../Project/Project.py" line="5697" /> + <location filename="../Project/Project.py" line="5846" /> + <location filename="../Project/Project.py" line="5796" /> + <location filename="../Project/Project.py" line="5795" /> + <location filename="../Project/Project.py" line="5695" /> + <location filename="../Project/Project.py" line="5694" /> <source>Configure</source> <translation type="unfinished">Configurar</translation> </message> <message> - <location filename="../Project/Project.py" line="5705" /> + <location filename="../Project/Project.py" line="5702" /> <source>Enter the parameters for formatting the project sources with 'Black'.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5710" /> + <location filename="../Project/Project.py" line="5707" /> <source><b>Configure</b><p>This shows a dialog to enter the parameters for formatting the project sources with 'Black'.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5726" /> + <location filename="../Project/Project.py" line="5723" /> <source>About isort</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5727" /> + <location filename="../Project/Project.py" line="5724" /> <source>&isort</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5733" /> + <location filename="../Project/Project.py" line="5730" /> <source>Show some information about 'isort'.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5735" /> + <location filename="../Project/Project.py" line="5732" /> <source><b>isort</b><p>This shows some information about the installed 'isort' tool.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5748" /> - <location filename="../Project/Project.py" line="5747" /> + <location filename="../Project/Project.py" line="5745" /> + <location filename="../Project/Project.py" line="5744" /> <source>Sort Imports</source> <translation type="unfinished" /> </message> <message> + <location filename="../Project/Project.py" line="5752" /> + <source>Sort the import statements of the project sources with 'isort'.</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../Project/Project.py" line="5755" /> - <source>Sort the import statements of the project sources with 'isort'.</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="5758" /> <source><b>Sort Imports</b><p>This shows a dialog to enter parameters for the imports sorting run and sorts the import statements of the project sources using 'isort'.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5772" /> - <location filename="../Project/Project.py" line="5771" /> + <location filename="../Project/Project.py" line="5769" /> + <location filename="../Project/Project.py" line="5768" /> <source>Imports Sorting Diff</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5779" /> + <location filename="../Project/Project.py" line="5776" /> <source>Generate a unified diff of potential project source imports resorting with 'isort'.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5785" /> + <location filename="../Project/Project.py" line="5782" /> <source><b>Imports Sorting Diff</b><p>This shows a dialog to enter parameters for the imports sorting diff run and generates a unified diff of potential project source changes using 'isort'.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5806" /> + <location filename="../Project/Project.py" line="5803" /> <source>Enter the parameters for resorting the project sources import statements with 'isort'.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5812" /> + <location filename="../Project/Project.py" line="5809" /> <source><b>Configure</b><p>This shows a dialog to enter the parameters for resorting the import statements of the project sources with 'isort'.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5828" /> + <location filename="../Project/Project.py" line="5825" /> <source>Install Project</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5829" /> + <location filename="../Project/Project.py" line="5826" /> <source>&Install Project</source> <translation type="unfinished" /> </message> <message> + <location filename="../Project/Project.py" line="5833" /> + <source>Install the project into the embedded environment.</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../Project/Project.py" line="5836" /> - <source>Install the project into the embedded environment.</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="5839" /> <source><b>Install Project</b><p>This installs the project into the embedded virtual environment in editable mode (i.e. development mode).</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5850" /> + <location filename="../Project/Project.py" line="5847" /> <source>&Configure</source> <translation type="unfinished" /> </message> <message> + <location filename="../Project/Project.py" line="5854" /> + <source>Configure the embedded environment.</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../Project/Project.py" line="5857" /> - <source>Configure the embedded environment.</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="5860" /> <source><b>Configure</b><p>This opens a dialog to configure the embedded virtual environment of the project.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5870" /> + <location filename="../Project/Project.py" line="5867" /> <source>Upgrade</source> <translation type="unfinished">Atualizar</translation> </message> <message> - <location filename="../Project/Project.py" line="5871" /> + <location filename="../Project/Project.py" line="5868" /> <source>&Upgrade</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5877" /> + <location filename="../Project/Project.py" line="5874" /> <source>Upgrade the embedded environment.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5879" /> + <location filename="../Project/Project.py" line="5876" /> <source><b>Upgrade</b><p>This opens a dialog to enter the parameters to upgrade the embedded virtual environment of the project.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5891" /> + <location filename="../Project/Project.py" line="5888" /> <source>Recreate</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5892" /> + <location filename="../Project/Project.py" line="5889" /> <source>&Recreate</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5898" /> + <location filename="../Project/Project.py" line="5895" /> <source>Recreate the embedded environment.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5900" /> + <location filename="../Project/Project.py" line="5897" /> <source><b>Recreate</b><p>This opens a dialog to enter the parameters to recreate the embedded virtual environment of the project. The existing environment is cleared first.</p></source> <translation type="unfinished" /> </message> <message> + <location filename="../Project/Project.py" line="5929" /> + <source>&Project</source> + <translation>&Projeto</translation> + </message> + <message> + <location filename="../Project/Project.py" line="5930" /> + <source>Open &Recent Projects</source> + <translation>Abrir Projetos &Recentes</translation> + </message> + <message> <location filename="../Project/Project.py" line="5932" /> - <source>&Project</source> - <translation>&Projeto</translation> + <source>Session</source> + <translation>Sessão</translation> </message> <message> <location filename="../Project/Project.py" line="5933" /> - <source>Open &Recent Projects</source> - <translation>Abrir Projetos &Recentes</translation> - </message> - <message> - <location filename="../Project/Project.py" line="5935" /> - <source>Session</source> - <translation>Sessão</translation> + <source>Debugger</source> + <translation>Depurador</translation> + </message> + <message> + <location filename="../Project/Project.py" line="5934" /> + <source>Embedded Environment</source> + <translation type="unfinished" /> </message> <message> <location filename="../Project/Project.py" line="5936" /> - <source>Debugger</source> - <translation>Depurador</translation> + <source>Project-T&ools</source> + <translation type="unfinished" /> </message> <message> <location filename="../Project/Project.py" line="5937" /> - <source>Embedded Environment</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="5939" /> - <source>Project-T&ools</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="5940" /> <source>&Version Control</source> <translation>Contro&l de Versão</translation> </message> <message> - <location filename="../Project/Project.py" line="5944" /> + <location filename="../Project/Project.py" line="5941" /> <source>Chec&k</source> <translation>&Verificar</translation> </message> <message> + <location filename="../Project/Project.py" line="5943" /> + <source>Code &Formatting</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Project/Project.py" line="5945" /> + <source>Sho&w</source> + <translation>&Mostrar</translation> + </message> + <message> <location filename="../Project/Project.py" line="5946" /> - <source>Code &Formatting</source> + <source>&Diagrams</source> + <translation>&Diagramas</translation> + </message> + <message> + <location filename="../Project/Project.py" line="5947" /> + <source>Pac&kagers</source> <translation type="unfinished" /> </message> <message> <location filename="../Project/Project.py" line="5948" /> - <source>Sho&w</source> - <translation>&Mostrar</translation> - </message> - <message> - <location filename="../Project/Project.py" line="5949" /> - <source>&Diagrams</source> - <translation>&Diagramas</translation> + <source>Source &Documentation</source> + <translation>&Documentação Fonte</translation> </message> <message> <location filename="../Project/Project.py" line="5950" /> - <source>Pac&kagers</source> + <source>Make</source> <translation type="unfinished" /> </message> <message> <location filename="../Project/Project.py" line="5951" /> - <source>Source &Documentation</source> - <translation>&Documentação Fonte</translation> - </message> - <message> - <location filename="../Project/Project.py" line="5953" /> - <source>Make</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="5954" /> <source>Other Tools</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6116" /> - <location filename="../Project/Project.py" line="6114" /> + <location filename="../Project/Project.py" line="6113" /> + <location filename="../Project/Project.py" line="6111" /> <source>Project</source> <translation>Projeto</translation> </message> <message> - <location filename="../Project/Project.py" line="6198" /> + <location filename="../Project/Project.py" line="6195" /> <source>&Clear</source> <translation>&Limpar</translation> </message> <message> - <location filename="../Project/Project.py" line="6395" /> + <location filename="../Project/Project.py" line="6392" /> <source>Search New Files</source> <translation>Procurar Ficheiros Novos</translation> </message> <message> - <location filename="../Project/Project.py" line="6396" /> + <location filename="../Project/Project.py" line="6393" /> <source>There were no new files found to be added.</source> <translation>Não se encontraram ficheiros novos para adicionar.</translation> </message> <message> - <location filename="../Project/Project.py" line="6557" /> - <location filename="../Project/Project.py" line="6544" /> + <location filename="../Project/Project.py" line="6554" /> + <location filename="../Project/Project.py" line="6541" /> <source>Version Control System</source> <translation>Sistema de Control de Versão</translation> </message> <message> - <location filename="../Project/Project.py" line="6545" /> + <location filename="../Project/Project.py" line="6542" /> <source><p>The selected VCS <b>{0}</b> could not be found. <br/>Reverting override.</p><p>{1}</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6558" /> + <location filename="../Project/Project.py" line="6555" /> <source><p>The selected VCS <b>{0}</b> could not be found.<br/>Disabling version control.</p><p>{1}</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6715" /> + <location filename="../Project/Project.py" line="6712" /> <source>Coverage Data</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6769" /> - <location filename="../Project/Project.py" line="6716" /> + <location filename="../Project/Project.py" line="6766" /> + <location filename="../Project/Project.py" line="6713" /> <source>There is no main script defined for the current project. Aborting</source> <translation>O projeto atual não tem um script principal definido. A cancelar</translation> </message> <message> - <location filename="../Project/Project.py" line="6728" /> + <location filename="../Project/Project.py" line="6725" /> <source>Code Coverage</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6729" /> + <location filename="../Project/Project.py" line="6726" /> <source>Please select a coverage file</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6782" /> + <location filename="../Project/Project.py" line="6779" /> <source>Please select a profile file</source> <translation>Escolha um ficheiro de perfil por favor</translation> </message> <message> - <location filename="../Project/Project.py" line="6834" /> + <location filename="../Project/Project.py" line="6831" /> <source>Include module names?</source> <translation>Incluir nomes de módulos?</translation> </message> <message> - <location filename="../Project/Project.py" line="6947" /> + <location filename="../Project/Project.py" line="6944" /> <source><p>The file <b>PKGLIST</b> already exists.</p><p>Overwrite it?</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="7002" /> + <location filename="../Project/Project.py" line="6999" /> <source><p>The file <b>PKGLIST</b> could not be created.</p><p>Reason: {0}</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="7298" /> - <location filename="../Project/Project.py" line="7254" /> - <location filename="../Project/Project.py" line="7204" /> - <location filename="../Project/Project.py" line="7193" /> - <location filename="../Project/Project.py" line="7175" /> - <location filename="../Project/Project.py" line="7142" /> - <location filename="../Project/Project.py" line="7112" /> - <location filename="../Project/Project.py" line="7084" /> - <location filename="../Project/Project.py" line="7054" /> - <location filename="../Project/Project.py" line="7040" /> - <location filename="../Project/Project.py" line="7023" /> + <location filename="../Project/Project.py" line="7295" /> + <location filename="../Project/Project.py" line="7251" /> + <location filename="../Project/Project.py" line="7201" /> + <location filename="../Project/Project.py" line="7190" /> + <location filename="../Project/Project.py" line="7172" /> + <location filename="../Project/Project.py" line="7139" /> + <location filename="../Project/Project.py" line="7109" /> + <location filename="../Project/Project.py" line="7081" /> + <location filename="../Project/Project.py" line="7051" /> + <location filename="../Project/Project.py" line="7037" /> + <location filename="../Project/Project.py" line="7020" /> <source>Create Plugin Archive</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="7024" /> + <location filename="../Project/Project.py" line="7021" /> <source>The project does not have a main script defined. Aborting...</source> <translation>O projeto atual não tem um script principal definido. A cancelar...</translation> </message> <message> - <location filename="../Project/Project.py" line="7041" /> + <location filename="../Project/Project.py" line="7038" /> <source>Select package lists:</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="7055" /> + <location filename="../Project/Project.py" line="7052" /> <source><p>No package list files (PKGLIST*) available or selected. Aborting...</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="7063" /> + <location filename="../Project/Project.py" line="7060" /> <source>Creating plugin archives...</source> <translation type="unfinished" /> </message> <message> + <location filename="../Project/Project.py" line="7061" /> + <source>Abort</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../Project/Project.py" line="7064" /> - <source>Abort</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="7067" /> <source>%v/%m Archives</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="7085" /> + <location filename="../Project/Project.py" line="7082" /> <source><p>The file <b>{0}</b> could not be read.</p><p>Reason: {1}</p></source> <translation type="unfinished"><p>O ficheiro <b>{0}</b> não se pôde ler. </p><p>Motivo: {1}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="7113" /> + <location filename="../Project/Project.py" line="7110" /> <source><p>The file <b>{0}</b> is not ready yet.</p><p>Please rework it and delete the'; initial_list' line of the header.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="7143" /> + <location filename="../Project/Project.py" line="7140" /> <source><p>The eric plugin archive file <b>{0}</b> could not be created.</p><p>Reason: {1}</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="7176" /> + <location filename="../Project/Project.py" line="7173" /> <source><p>The file <b>{0}</b> could not be stored in the archive. Ignoring it.</p><p>Reason: {1}</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="7194" /> + <location filename="../Project/Project.py" line="7191" /> <source><p>The eric plugin archive files were created with some errors.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="7205" /> + <location filename="../Project/Project.py" line="7202" /> <source><p>The eric plugin archive files were created successfully.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="7255" /> + <location filename="../Project/Project.py" line="7252" /> <source><p>The plugin file <b>{0}</b> could not be read.</p><p>Reason: {1}</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="7299" /> + <location filename="../Project/Project.py" line="7296" /> <source><p>The plugin file <b>{0}</b> could not be read.</p> <p>Reason: {1}</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="7391" /> + <location filename="../Project/Project.py" line="7388" /> <source>'Make' is not supported for remote projects. Aborting...</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="7439" /> + <location filename="../Project/Project.py" line="7436" /> <source>The make process did not start.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="7485" /> + <location filename="../Project/Project.py" line="7482" /> <source>The make process crashed.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="7493" /> + <location filename="../Project/Project.py" line="7490" /> <source><p>There are changes that require the configured make target <b>{0}</b> to be rebuilt.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="7498" /> + <location filename="../Project/Project.py" line="7495" /> <source><p>There are changes that require the default make target to be rebuilt.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="7514" /> + <location filename="../Project/Project.py" line="7511" /> <source>The makefile contains errors.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="7944" /> + <location filename="../Project/Project.py" line="7941" /> <source>Interpreter Missing</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="7945" /> + <location filename="../Project/Project.py" line="7942" /> <source>The configured interpreter of the embedded environment does not exist anymore. Shall the environment be upgraded?</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="8026" /> + <location filename="../Project/Project.py" line="8023" /> <source>Open Remote Project</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="8057" /> - <location filename="../Project/Project.py" line="8042" /> + <location filename="../Project/Project.py" line="8054" /> + <location filename="../Project/Project.py" line="8039" /> <source>Save Remote Project</source> <translation type="unfinished" /> </message> @@ -64544,8 +64557,8 @@ <translation>Estado VCS</translation> </message> <message> - <location filename="../Project/ProjectBrowserModel.py" line="922" /> - <location filename="../Project/ProjectBrowserModel.py" line="900" /> + <location filename="../Project/ProjectBrowserModel.py" line="926" /> + <location filename="../Project/ProjectBrowserModel.py" line="904" /> <location filename="../Project/ProjectBrowserModel.py" line="548" /> <location filename="../Project/ProjectBrowserModel.py" line="418" /> <source>local</source> @@ -68989,7 +69002,7 @@ <context> <name>PythonDisViewer</name> <message> - <location filename="../UI/PythonDisViewer.py" line="61" /> + <location filename="../UI/PythonDisViewer.py" line="62" /> <location filename="../UI/PythonDisViewer.ui" line="0" /> <source>Disassembly</source> <translation type="unfinished" /> @@ -69005,160 +69018,160 @@ <translation type="unfinished" /> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="73" /> + <location filename="../UI/PythonDisViewer.py" line="74" /> <source>Line</source> <translation type="unfinished">Linha</translation> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="74" /> - <source>Offset</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../UI/PythonDisViewer.py" line="75" /> - <source>Operation</source> + <source>Offset</source> <translation type="unfinished" /> </message> <message> <location filename="../UI/PythonDisViewer.py" line="76" /> - <source>Parameters</source> + <source>Operation</source> <translation type="unfinished" /> </message> <message> <location filename="../UI/PythonDisViewer.py" line="77" /> + <source>Parameters</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/PythonDisViewer.py" line="78" /> <source>Interpreted Parameters</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="80" /> + <location filename="../UI/PythonDisViewer.py" line="81" /> <source>Key</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="80" /> + <location filename="../UI/PythonDisViewer.py" line="81" /> <source>Value</source> <translation type="unfinished">Valor</translation> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="85" /> + <location filename="../UI/PythonDisViewer.py" line="86" /> <source>Show Code Info</source> <translation type="unfinished" /> </message> <message> + <location filename="../UI/PythonDisViewer.py" line="97" /> + <location filename="../UI/PythonDisViewer.py" line="89" /> + <source>Expand All</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/PythonDisViewer.py" line="99" /> + <location filename="../UI/PythonDisViewer.py" line="90" /> + <source>Collapse All</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/PythonDisViewer.py" line="102" /> + <location filename="../UI/PythonDisViewer.py" line="92" /> + <source>Configure...</source> + <translation type="unfinished">Configurar...</translation> + </message> + <message> <location filename="../UI/PythonDisViewer.py" line="96" /> - <location filename="../UI/PythonDisViewer.py" line="88" /> - <source>Expand All</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/PythonDisViewer.py" line="98" /> - <location filename="../UI/PythonDisViewer.py" line="89" /> - <source>Collapse All</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/PythonDisViewer.py" line="101" /> - <location filename="../UI/PythonDisViewer.py" line="91" /> - <source>Configure...</source> - <translation type="unfinished">Configurar...</translation> - </message> - <message> - <location filename="../UI/PythonDisViewer.py" line="95" /> <source>Hide</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="448" /> + <location filename="../UI/PythonDisViewer.py" line="455" /> <source>No editor has been opened.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="459" /> + <location filename="../UI/PythonDisViewer.py" line="466" /> <source>The current editor does not contain any source code.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="465" /> + <location filename="../UI/PythonDisViewer.py" line="472" /> <source>The current editor does not contain Python source code.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="509" /> + <location filename="../UI/PythonDisViewer.py" line="516" /> <source>Disassembly of last traceback</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="672" /> + <location filename="../UI/PythonDisViewer.py" line="694" /> <source>Code Object '{0}'</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="784" /> + <location filename="../UI/PythonDisViewer.py" line="806" /> <source>Name</source> <translation type="unfinished">Nome</translation> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="786" /> + <location filename="../UI/PythonDisViewer.py" line="808" /> <source>Filename</source> <translation type="unfinished">Nome do Ficheiro</translation> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="790" /> - <source>First Line</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/PythonDisViewer.py" line="794" /> - <source>Argument Count</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/PythonDisViewer.py" line="799" /> - <source>Positional-only Arguments</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/PythonDisViewer.py" line="805" /> - <source>Keyword-only Arguments</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/PythonDisViewer.py" line="809" /> - <source>Number of Locals</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../UI/PythonDisViewer.py" line="812" /> - <source>Stack Size</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/PythonDisViewer.py" line="814" /> - <source>Flags</source> + <source>First Line</source> <translation type="unfinished" /> </message> <message> <location filename="../UI/PythonDisViewer.py" line="816" /> + <source>Argument Count</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/PythonDisViewer.py" line="821" /> + <source>Positional-only Arguments</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/PythonDisViewer.py" line="827" /> + <source>Keyword-only Arguments</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/PythonDisViewer.py" line="831" /> + <source>Number of Locals</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/PythonDisViewer.py" line="834" /> + <source>Stack Size</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/PythonDisViewer.py" line="836" /> + <source>Flags</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/PythonDisViewer.py" line="838" /> <source>Constants</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="818" /> + <location filename="../UI/PythonDisViewer.py" line="840" /> <source>Names</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="820" /> + <location filename="../UI/PythonDisViewer.py" line="842" /> <source>Variable Names</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="822" /> + <location filename="../UI/PythonDisViewer.py" line="844" /> <source>Free Variables</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="824" /> + <location filename="../UI/PythonDisViewer.py" line="846" /> <source>Cell Variables</source> <translation type="unfinished" /> </message> @@ -74264,32 +74277,32 @@ <context> <name>SessionFile</name> <message> - <location filename="../Sessions/SessionFile.py" line="247" /> + <location filename="../Sessions/SessionFile.py" line="249" /> <source>Save Remote Session</source> <translation type="unfinished" /> </message> <message> - <location filename="../Sessions/SessionFile.py" line="250" /> + <location filename="../Sessions/SessionFile.py" line="252" /> <source>Save Session</source> <translation type="unfinished" /> </message> <message> - <location filename="../Sessions/SessionFile.py" line="258" /> + <location filename="../Sessions/SessionFile.py" line="260" /> <source><p>The session file <b>{0}</b> could not be written.</p><p>Reason: {1}</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Sessions/SessionFile.py" line="282" /> + <location filename="../Sessions/SessionFile.py" line="284" /> <source>Read Remote Session</source> <translation type="unfinished" /> </message> <message> - <location filename="../Sessions/SessionFile.py" line="285" /> + <location filename="../Sessions/SessionFile.py" line="287" /> <source>Read Session</source> <translation type="unfinished" /> </message> <message> - <location filename="../Sessions/SessionFile.py" line="293" /> + <location filename="../Sessions/SessionFile.py" line="295" /> <source><p>The session file <b>{0}</b> could not be read.</p><p>Reason: {1}</p></source> <translation type="unfinished" /> </message> @@ -94413,1052 +94426,1052 @@ <context> <name>ViewManager</name> <message> - <location filename="../ViewManager/ViewManager.py" line="615" /> + <location filename="../ViewManager/ViewManager.py" line="625" /> <source>New</source> <translation>Novo</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="617" /> + <location filename="../ViewManager/ViewManager.py" line="627" /> <source>&New</source> <translation>&Novo</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="619" /> - <source>Ctrl+N</source> - <comment>File|New</comment> - <translation /> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="626" /> - <source>Open an empty editor window</source> - <translation>Abrir uma janela do editor vazia</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="629" /> + <source>Ctrl+N</source> + <comment>File|New</comment> + <translation /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="636" /> + <source>Open an empty editor window</source> + <translation>Abrir uma janela do editor vazia</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="639" /> <source><b>New</b><p>An empty editor window will be created.</p></source> <translation><b>Novo</b><p>Será criada uma janela do editor vazia.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="638" /> + <location filename="../ViewManager/ViewManager.py" line="648" /> <source>Open</source> <translation>Abrir</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="640" /> + <location filename="../ViewManager/ViewManager.py" line="650" /> <source>&Open...</source> <translation>&Abrir...</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="642" /> - <source>Ctrl+O</source> - <comment>File|Open</comment> - <translation /> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="649" /> - <source>Open a file</source> - <translation>Abrir um ficheiro</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="652" /> + <source>Ctrl+O</source> + <comment>File|Open</comment> + <translation /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="659" /> + <source>Open a file</source> + <translation>Abrir um ficheiro</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="662" /> <source><b>Open a file</b><p>You will be asked for the name of a file to be opened in an editor window.</p></source> <translation><b>Abrir um ficheiro</b><p>Será perguntado pelo nome de um ficheiro para abrir numa janela do editor.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="663" /> + <location filename="../ViewManager/ViewManager.py" line="673" /> <source>Open (Remote)</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="665" /> - <source>Open (Remote)...</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="672" /> - <source>Open a remote file</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="675" /> + <source>Open (Remote)...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="682" /> + <source>Open a remote file</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="685" /> <source><b>Open a remote file</b><p>You will be asked for the name of a remote file to be opened in an editor window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="689" /> - <location filename="../ViewManager/ViewManager.py" line="687" /> - <source>Reload</source> - <translation type="unfinished">Recarregar</translation> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="696" /> - <source>Reload the current file</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="699" /> + <location filename="../ViewManager/ViewManager.py" line="697" /> + <source>Reload</source> + <translation type="unfinished">Recarregar</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="706" /> + <source>Reload the current file</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="709" /> <source><b>Reload</b><p>Reload the contents of current editor window. If the editor contents was modified, a warning will be issued.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="712" /> + <location filename="../ViewManager/ViewManager.py" line="722" /> <source>Close</source> <translation>Fechar</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="714" /> + <location filename="../ViewManager/ViewManager.py" line="724" /> <source>&Close</source> <translation>Fe&char</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="716" /> - <source>Ctrl+W</source> - <comment>File|Close</comment> - <translation /> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="723" /> - <source>Close the current window</source> - <translation>Fechar a janela atual</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="726" /> - <source><b>Close Window</b><p>Close the current window.</p></source> - <translation><b>Fechar Janela</b><p>Fecha a janela atual.</p></translation> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="735" /> - <source>Close All</source> - <translation>Fechar Tudo</translation> + <source>Ctrl+W</source> + <comment>File|Close</comment> + <translation /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="733" /> + <source>Close the current window</source> + <translation>Fechar a janela atual</translation> </message> <message> <location filename="../ViewManager/ViewManager.py" line="736" /> - <source>Clos&e All</source> - <translation>F&echar Tudo</translation> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="743" /> - <source>Close all editor windows</source> - <translation>Fechar todas as janelas do editor</translation> + <source><b>Close Window</b><p>Close the current window.</p></source> + <translation><b>Fechar Janela</b><p>Fecha a janela atual.</p></translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="745" /> + <source>Close All</source> + <translation>Fechar Tudo</translation> </message> <message> <location filename="../ViewManager/ViewManager.py" line="746" /> + <source>Clos&e All</source> + <translation>F&echar Tudo</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="753" /> + <source>Close all editor windows</source> + <translation>Fechar todas as janelas do editor</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="756" /> <source><b>Close All Windows</b><p>Close all editor windows.</p></source> <translation><b>Fechar as Janelas Todas</b><p>Fecha todas as janelas do editor.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="759" /> + <location filename="../ViewManager/ViewManager.py" line="769" /> <source>Save</source> <translation>Gravar</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="761" /> + <location filename="../ViewManager/ViewManager.py" line="771" /> <source>&Save</source> <translation>&Gravar</translation> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="316" /> - <location filename="../ViewManager/ViewManager.py" line="763" /> + <location filename="../ViewManager/ViewManager.py" line="773" /> <source>Ctrl+S</source> <comment>File|Save</comment> <translation /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="770" /> + <location filename="../ViewManager/ViewManager.py" line="780" /> <source>Save the current file</source> <translation>Gravar o ficheiro atual</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="773" /> - <source><b>Save File</b><p>Save the contents of current editor window.</p></source> - <translation><b>Gravar Ficheiro</b><p>Grava o conteúdo da janela atual do editor.</p></translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="783" /> + <source><b>Save File</b><p>Save the contents of current editor window.</p></source> + <translation><b>Gravar Ficheiro</b><p>Grava o conteúdo da janela atual do editor.</p></translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="793" /> <source>Save as</source> <translation>Gravar como</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="785" /> + <location filename="../ViewManager/ViewManager.py" line="795" /> <source>Save &as...</source> <translation>Gravar co&mo...</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="787" /> + <location filename="../ViewManager/ViewManager.py" line="797" /> <source>Shift+Ctrl+S</source> <comment>File|Save As</comment> <translation /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="796" /> + <location filename="../ViewManager/ViewManager.py" line="806" /> <source>Save the current file to a new one</source> <translation>Gravar o ficheiro atual para um novo</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="801" /> + <location filename="../ViewManager/ViewManager.py" line="811" /> <source><b>Save File as</b><p>Save the contents of the current editor window to a new file. The file can be entered in a file selection dialog.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="812" /> + <location filename="../ViewManager/ViewManager.py" line="822" /> <source>Save as (Remote)</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="814" /> + <location filename="../ViewManager/ViewManager.py" line="824" /> <source>Save as (Remote)...</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="821" /> + <location filename="../ViewManager/ViewManager.py" line="831" /> <source>Save the current file to a new one on an eric-ide server</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="827" /> + <location filename="../ViewManager/ViewManager.py" line="837" /> <source><b>Save File as (Remote)</b><p>Save the contents of the current editor window to a new file on the connected eric-ide server. The file can be entered in a file selection dialog.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="839" /> + <location filename="../ViewManager/ViewManager.py" line="849" /> <source>Save Copy</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="841" /> - <source>Save &Copy...</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="848" /> - <source>Save a copy of the current file</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="851" /> + <source>Save &Copy...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="858" /> + <source>Save a copy of the current file</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="861" /> <source><b>Save Copy</b><p>Save a copy of the contents of current editor window. The file can be entered in a file selection dialog.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="862" /> + <location filename="../ViewManager/ViewManager.py" line="872" /> <source>Save all</source> <translation>Gravar tudo</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="864" /> - <source>Save a&ll</source> - <translation>Gravar &tudo</translation> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="871" /> - <source>Save all files</source> - <translation>Gravar os ficheiros todos</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="874" /> + <source>Save a&ll</source> + <translation>Gravar &tudo</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="881" /> + <source>Save all files</source> + <translation>Gravar os ficheiros todos</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="884" /> <source><b>Save All Files</b><p>Save the contents of all editor windows.</p></source> <translation><b>Gravar os Ficheiros Todos</b><p>Gravar os conteúdos de todas as janaelas do editor.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="886" /> + <location filename="../ViewManager/ViewManager.py" line="896" /> <source>Print</source> <translation>Imprimir</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="888" /> + <location filename="../ViewManager/ViewManager.py" line="898" /> <source>&Print</source> <translation>Im&primir</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="890" /> - <source>Ctrl+P</source> - <comment>File|Print</comment> - <translation /> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="897" /> - <source>Print the current file</source> - <translation>Imprimir o ficheiro atual</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="900" /> + <source>Ctrl+P</source> + <comment>File|Print</comment> + <translation /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="907" /> + <source>Print the current file</source> + <translation>Imprimir o ficheiro atual</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="910" /> <source><b>Print File</b><p>Print the contents of current editor window.</p></source> <translation><b>Imprimir Ficheiro</b><p>Imprime o conteúdo da janela do editor atual.</p></translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="780" /> - <location filename="../ViewManager/ViewManager.py" line="913" /> - <location filename="../ViewManager/ViewManager.py" line="911" /> + <location filename="../ViewManager/ViewManager.py" line="923" /> + <location filename="../ViewManager/ViewManager.py" line="921" /> <source>Print Preview</source> <translation>Antevisão da Impressão</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="920" /> + <location filename="../ViewManager/ViewManager.py" line="930" /> <source>Print preview of the current file</source> <translation>Antevisão da impressão do ficheiro atual</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="925" /> + <location filename="../ViewManager/ViewManager.py" line="935" /> <source><b>Print Preview</b><p>Print preview of the current editor window.</p></source> <translation><b>Antevisão da Impressão</b><p>Antevisão de impressão da janela do editor atual.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="936" /> + <location filename="../ViewManager/ViewManager.py" line="946" /> <source>Find File</source> <translation type="unfinished">Encontrar Ficheiro</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="938" /> + <location filename="../ViewManager/ViewManager.py" line="948" /> <source>Find &File...</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="940" /> + <location filename="../ViewManager/ViewManager.py" line="950" /> <source>Alt+Ctrl+F</source> <comment>File|Find File</comment> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="949" /> + <location filename="../ViewManager/ViewManager.py" line="959" /> <source>Search for a file by entering a search pattern</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="954" /> + <location filename="../ViewManager/ViewManager.py" line="964" /> <source><b>Find File</b><p>This searches for a file by entering a search pattern.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="970" /> + <location filename="../ViewManager/ViewManager.py" line="980" /> <source>&File</source> <translation>&Ficheiro</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="972" /> + <location filename="../ViewManager/ViewManager.py" line="982" /> <source>Open &Recent Files</source> <translation>Abrir Ficheiros Rece&ntes</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="976" /> + <location filename="../ViewManager/ViewManager.py" line="986" /> <source>Open &Bookmarked Files</source> <translation>Abrir Ficheiros &Marcados</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1024" /> - <location filename="../ViewManager/ViewManager.py" line="1022" /> + <location filename="../ViewManager/ViewManager.py" line="1034" /> + <location filename="../ViewManager/ViewManager.py" line="1032" /> <source>File</source> <translation>Ficheiro</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1051" /> + <location filename="../ViewManager/ViewManager.py" line="1061" /> <source>Export as</source> <translation>Exportar como</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1074" /> + <location filename="../ViewManager/ViewManager.py" line="1084" /> <source>Undo</source> <translation>Desfazer</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1076" /> + <location filename="../ViewManager/ViewManager.py" line="1086" /> <source>&Undo</source> <translation>Desfa&zer</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1078" /> + <location filename="../ViewManager/ViewManager.py" line="1088" /> <source>Ctrl+Z</source> <comment>Edit|Undo</comment> <translation /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1081" /> + <location filename="../ViewManager/ViewManager.py" line="1091" /> <source>Alt+Backspace</source> <comment>Edit|Undo</comment> <translation /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1087" /> + <location filename="../ViewManager/ViewManager.py" line="1097" /> <source>Undo the last change</source> <translation>Desfazer a última alteração</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1090" /> - <source><b>Undo</b><p>Undo the last change done in the current editor.</p></source> - <translation><b>Desfazer</b><p>Desfazer a última alteração feita no editor atual.</p></translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="1100" /> + <source><b>Undo</b><p>Undo the last change done in the current editor.</p></source> + <translation><b>Desfazer</b><p>Desfazer a última alteração feita no editor atual.</p></translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="1110" /> <source>Redo</source> <translation>Refazer</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1102" /> + <location filename="../ViewManager/ViewManager.py" line="1112" /> <source>&Redo</source> <translation>&Refazer</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1104" /> - <source>Ctrl+Shift+Z</source> - <comment>Edit|Redo</comment> - <translation /> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="1111" /> - <source>Redo the last change</source> - <translation>Refazer a última alteração</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="1114" /> + <source>Ctrl+Shift+Z</source> + <comment>Edit|Redo</comment> + <translation /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="1121" /> + <source>Redo the last change</source> + <translation>Refazer a última alteração</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="1124" /> <source><b>Redo</b><p>Redo the last change done in the current editor.</p></source> <translation><b>Refazer</b><p>Refazer a últma alteração feita no editor atual.</p></translation> </message> <message> + <location filename="../ViewManager/ViewManager.py" line="1144" /> <location filename="../ViewManager/ViewManager.py" line="1134" /> - <location filename="../ViewManager/ViewManager.py" line="1124" /> <source>Revert to last saved state</source> <translation>Voltar ao último estado gravado</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1125" /> + <location filename="../ViewManager/ViewManager.py" line="1135" /> <source>Re&vert to last saved state</source> <translation>&Voltar ao último estado gravado</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1127" /> - <source>Ctrl+Y</source> - <comment>Edit|Revert</comment> - <translation /> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="1137" /> + <source>Ctrl+Y</source> + <comment>Edit|Revert</comment> + <translation /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="1147" /> <source><b>Revert to last saved state</b><p>Undo all changes up to the last saved state of the current editor.</p></source> <translation><b>Voltar ao último estado gravado</b><p>Desfazer todas as alterações feitas no editor atual depois da última vez que foi gravado.</p></translation> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="343" /> - <location filename="../ViewManager/ViewManager.py" line="1150" /> + <location filename="../ViewManager/ViewManager.py" line="1160" /> <source>Cut</source> <translation>Cortar</translation> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="345" /> - <location filename="../ViewManager/ViewManager.py" line="1152" /> + <location filename="../ViewManager/ViewManager.py" line="1162" /> <source>Cu&t</source> <translation>Cor&tar</translation> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="347" /> - <location filename="../ViewManager/ViewManager.py" line="1154" /> + <location filename="../ViewManager/ViewManager.py" line="1164" /> <source>Ctrl+X</source> <comment>Edit|Cut</comment> <translation /> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="350" /> - <location filename="../ViewManager/ViewManager.py" line="1157" /> + <location filename="../ViewManager/ViewManager.py" line="1167" /> <source>Shift+Del</source> <comment>Edit|Cut</comment> <translation /> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="356" /> - <location filename="../ViewManager/ViewManager.py" line="1163" /> + <location filename="../ViewManager/ViewManager.py" line="1173" /> <source>Cut the selection</source> <translation>Cortar a seleção</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1166" /> + <location filename="../ViewManager/ViewManager.py" line="1176" /> <source><b>Cut</b><p>Cut the selected text of the current editor to the clipboard.</p></source> <translation><b>Cortar</b><p>Cortar a seleção do texto do editor atual para a Área de Transferência.<p></translation> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="365" /> - <location filename="../ViewManager/ViewManager.py" line="1177" /> + <location filename="../ViewManager/ViewManager.py" line="1187" /> <source>Copy</source> <translation>Copiar</translation> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="367" /> - <location filename="../ViewManager/ViewManager.py" line="1179" /> + <location filename="../ViewManager/ViewManager.py" line="1189" /> <source>&Copy</source> <translation>&Copiar</translation> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="369" /> - <location filename="../ViewManager/ViewManager.py" line="1181" /> + <location filename="../ViewManager/ViewManager.py" line="1191" /> <source>Ctrl+C</source> <comment>Edit|Copy</comment> <translation /> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="372" /> - <location filename="../ViewManager/ViewManager.py" line="1184" /> + <location filename="../ViewManager/ViewManager.py" line="1194" /> <source>Ctrl+Ins</source> <comment>Edit|Copy</comment> <translation /> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="378" /> - <location filename="../ViewManager/ViewManager.py" line="1190" /> + <location filename="../ViewManager/ViewManager.py" line="1200" /> <source>Copy the selection</source> <translation>Copiar a seleção</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1193" /> + <location filename="../ViewManager/ViewManager.py" line="1203" /> <source><b>Copy</b><p>Copy the selected text of the current editor to the clipboard.</p></source> <translation type="unfinished"><b>Copiar</b><p>Copia a seleção de texto do editor atual para a Área de Transferência.<p></translation> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="387" /> - <location filename="../ViewManager/ViewManager.py" line="1204" /> + <location filename="../ViewManager/ViewManager.py" line="1214" /> <source>Paste</source> <translation>Colar</translation> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="389" /> - <location filename="../ViewManager/ViewManager.py" line="1206" /> + <location filename="../ViewManager/ViewManager.py" line="1216" /> <source>&Paste</source> <translation>Co&lar</translation> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="391" /> - <location filename="../ViewManager/ViewManager.py" line="1208" /> + <location filename="../ViewManager/ViewManager.py" line="1218" /> <source>Ctrl+V</source> <comment>Edit|Paste</comment> <translation /> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="394" /> - <location filename="../ViewManager/ViewManager.py" line="1211" /> + <location filename="../ViewManager/ViewManager.py" line="1221" /> <source>Shift+Ins</source> <comment>Edit|Paste</comment> <translation /> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="400" /> - <location filename="../ViewManager/ViewManager.py" line="1217" /> + <location filename="../ViewManager/ViewManager.py" line="1227" /> <source>Paste the last cut/copied text</source> <translation>Colar o último texto cortado/copiado</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1220" /> + <location filename="../ViewManager/ViewManager.py" line="1230" /> <source><b>Paste</b><p>Paste the last cut/copied text from the clipboard to the current editor.</p></source> <translation type="unfinished"><b>Colar</b><p>Cola o último texto cortado/copiado da área de transferência ao editor atual.</p></translation> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="414" /> <location filename="../QScintilla/ShellWindow.py" line="412" /> - <location filename="../ViewManager/ViewManager.py" line="1233" /> - <location filename="../ViewManager/ViewManager.py" line="1231" /> + <location filename="../ViewManager/ViewManager.py" line="1243" /> + <location filename="../ViewManager/ViewManager.py" line="1241" /> <source>Clear</source> <translation>Limpar</translation> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="416" /> - <location filename="../ViewManager/ViewManager.py" line="1235" /> + <location filename="../ViewManager/ViewManager.py" line="1245" /> <source>Alt+Shift+C</source> <comment>Edit|Clear</comment> <translation /> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="423" /> - <location filename="../ViewManager/ViewManager.py" line="1242" /> + <location filename="../ViewManager/ViewManager.py" line="1252" /> <source>Clear all text</source> <translation>Limpar todo o texto</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1245" /> + <location filename="../ViewManager/ViewManager.py" line="1255" /> <source><b>Clear</b><p>Delete all text of the current editor.</p></source> <translation><b>Limpar</b><p>Apaga o texto todo do editor atual.</p></translation> </message> <message> + <location filename="../ViewManager/ViewManager.py" line="1274" /> + <location filename="../ViewManager/ViewManager.py" line="1265" /> <location filename="../ViewManager/ViewManager.py" line="1264" /> - <location filename="../ViewManager/ViewManager.py" line="1255" /> - <location filename="../ViewManager/ViewManager.py" line="1254" /> <source>Join Lines</source> <translation>Juntar Linhas</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1257" /> - <source>Ctrl+J</source> - <comment>Edit|Join Lines</comment> - <translation /> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="1267" /> - <source><b>Join Lines</b><p>Join the current and the next lines.</p></source> - <translation type="unfinished" /> + <source>Ctrl+J</source> + <comment>Edit|Join Lines</comment> + <translation /> </message> <message> <location filename="../ViewManager/ViewManager.py" line="1277" /> + <source><b>Join Lines</b><p>Join the current and the next lines.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="1287" /> <source>Indent</source> <translation>Indentar</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1279" /> + <location filename="../ViewManager/ViewManager.py" line="1289" /> <source>&Indent</source> <translation>&Indentar</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1281" /> - <source>Ctrl+I</source> - <comment>Edit|Indent</comment> - <translation /> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="1288" /> - <source>Indent line</source> - <translation>Indentar linha</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="1291" /> + <source>Ctrl+I</source> + <comment>Edit|Indent</comment> + <translation /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="1298" /> + <source>Indent line</source> + <translation>Indentar linha</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="1301" /> <source><b>Indent</b><p>Indents the current line or the lines of the selection by one level.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1302" /> + <location filename="../ViewManager/ViewManager.py" line="1312" /> <source>Unindent</source> <translation>Tirar Indentação</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1304" /> + <location filename="../ViewManager/ViewManager.py" line="1314" /> <source>U&nindent</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1306" /> + <location filename="../ViewManager/ViewManager.py" line="1316" /> <source>Ctrl+Shift+I</source> <comment>Edit|Unindent</comment> <translation /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1315" /> + <location filename="../ViewManager/ViewManager.py" line="1325" /> <source>Unindent line</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1318" /> + <location filename="../ViewManager/ViewManager.py" line="1328" /> <source><b>Unindent</b><p>Unindents the current line or the lines of the selection by one level.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1331" /> - <location filename="../ViewManager/ViewManager.py" line="1329" /> - <source>Smart indent</source> - <translation>Indentação Inteligente</translation> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="1338" /> - <source>Smart indent Line or Selection</source> - <translation>Indentação inteligente de Linha ou Seleção</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="1341" /> + <location filename="../ViewManager/ViewManager.py" line="1339" /> + <source>Smart indent</source> + <translation>Indentação Inteligente</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="1348" /> + <source>Smart indent Line or Selection</source> + <translation>Indentação inteligente de Linha ou Seleção</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="1351" /> <source><b>Smart indent</b><p>Indents the current line or the lines of the current selection smartly.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1352" /> + <location filename="../ViewManager/ViewManager.py" line="1362" /> <source>Comment</source> <translation>Comentar</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1354" /> + <location filename="../ViewManager/ViewManager.py" line="1364" /> <source>C&omment</source> <translation>C&omentar</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1356" /> - <source>Ctrl+M</source> - <comment>Edit|Comment</comment> - <translation /> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="1363" /> - <source>Comment Line or Selection</source> - <translation>Comentar Linha ou Seleção</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="1366" /> + <source>Ctrl+M</source> + <comment>Edit|Comment</comment> + <translation /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="1373" /> + <source>Comment Line or Selection</source> + <translation>Comentar Linha ou Seleção</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="1376" /> <source><b>Comment</b><p>Comments the current line or the lines of the current selection.</p></source> <translation><b>Comentar</b><p>Comenta a linha atual ou as linhas da seleção atual.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1377" /> + <location filename="../ViewManager/ViewManager.py" line="1387" /> <source>Uncomment</source> <translation>Descomentar</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1379" /> + <location filename="../ViewManager/ViewManager.py" line="1389" /> <source>Unco&mment</source> <translation>Desco&mentar</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1381" /> + <location filename="../ViewManager/ViewManager.py" line="1391" /> <source>Ctrl+Shift+M</source> <comment>Edit|Uncomment</comment> <translation type="unfinished">Ctrl+Shift+M</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1390" /> + <location filename="../ViewManager/ViewManager.py" line="1400" /> <source>Uncomment Line or Selection</source> <translation>Descomentar Linha ou Seleção</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1393" /> + <location filename="../ViewManager/ViewManager.py" line="1403" /> <source><b>Uncomment</b><p>Uncomments the current line or the lines of the current selection.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1406" /> - <location filename="../ViewManager/ViewManager.py" line="1404" /> + <location filename="../ViewManager/ViewManager.py" line="1416" /> + <location filename="../ViewManager/ViewManager.py" line="1414" /> <source>Toggle Comment</source> <translation>Alternar Comentário</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1408" /> + <location filename="../ViewManager/ViewManager.py" line="1418" /> <source>Ctrl+#</source> <comment>Edit|Toggle Comment</comment> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1417" /> + <location filename="../ViewManager/ViewManager.py" line="1427" /> <source>Toggle the comment of the current line, selection or comment block</source> <translation>Alternar o comentário da linha atual ou do bloque selecionado</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1423" /> + <location filename="../ViewManager/ViewManager.py" line="1433" /> <source><b>Toggle Comment</b><p>If the current line does not start with a block comment, the current line or selection is commented. If it is already commented, this comment block is uncommented. </p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1436" /> - <location filename="../ViewManager/ViewManager.py" line="1435" /> + <location filename="../ViewManager/ViewManager.py" line="1446" /> + <location filename="../ViewManager/ViewManager.py" line="1445" /> <source>Stream Comment</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1443" /> + <location filename="../ViewManager/ViewManager.py" line="1453" /> <source>Stream Comment Line or Selection</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1448" /> + <location filename="../ViewManager/ViewManager.py" line="1458" /> <source><b>Stream Comment</b><p>Stream comments the current line or the current selection.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1460" /> - <location filename="../ViewManager/ViewManager.py" line="1459" /> - <source>Box Comment</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="1467" /> - <source>Box Comment Line or Selection</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="1470" /> + <location filename="../ViewManager/ViewManager.py" line="1469" /> + <source>Box Comment</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="1477" /> + <source>Box Comment Line or Selection</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="1480" /> <source><b>Box Comment</b><p>Box comments the current line or the lines of the current selection.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1481" /> + <location filename="../ViewManager/ViewManager.py" line="1491" /> <source>Select to brace</source> <translation>Selecionar até parentesis</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1482" /> + <location filename="../ViewManager/ViewManager.py" line="1492" /> <source>Select to &brace</source> <translation>Selecionar até &parentesis</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1484" /> + <location filename="../ViewManager/ViewManager.py" line="1494" /> <source>Ctrl+E</source> <comment>Edit|Select to brace</comment> <translation /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1493" /> + <location filename="../ViewManager/ViewManager.py" line="1503" /> <source>Select text to the matching brace</source> <translation>Selecionar o texto até ao parentesis par</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1498" /> + <location filename="../ViewManager/ViewManager.py" line="1508" /> <source><b>Select to brace</b><p>Select text of the current editor to the matching brace.</p></source> <translation><b>Selecionar até parentesis</b><p>Selecionar o texto do editor atual até ao parentesis par.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1509" /> + <location filename="../ViewManager/ViewManager.py" line="1519" /> <source>Select all</source> <translation>Selecionar tudo</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1511" /> + <location filename="../ViewManager/ViewManager.py" line="1521" /> <source>&Select all</source> <translation>&Selecionar tudo</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1513" /> - <source>Ctrl+A</source> - <comment>Edit|Select all</comment> - <translation /> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="1520" /> - <source>Select all text</source> - <translation>Selecionar o texto todo</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="1523" /> - <source><b>Select All</b><p>Select all text of the current editor.</p></source> - <translation type="unfinished" /> + <source>Ctrl+A</source> + <comment>Edit|Select all</comment> + <translation /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="1530" /> + <source>Select all text</source> + <translation>Selecionar o texto todo</translation> </message> <message> <location filename="../ViewManager/ViewManager.py" line="1533" /> + <source><b>Select All</b><p>Select all text of the current editor.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="1543" /> <source>Deselect all</source> <translation>Desselecionar tudo</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1534" /> + <location filename="../ViewManager/ViewManager.py" line="1544" /> <source>&Deselect all</source> <translation>&Desselecionar tudo</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1536" /> + <location filename="../ViewManager/ViewManager.py" line="1546" /> <source>Alt+Ctrl+A</source> <comment>Edit|Deselect all</comment> <translation /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1545" /> + <location filename="../ViewManager/ViewManager.py" line="1555" /> <source>Deselect all text</source> <translation>Desselecionar todo o texto</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1548" /> + <location filename="../ViewManager/ViewManager.py" line="1558" /> <source><b>Deselect All</b><p>Deselect all text of the current editor.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1566" /> - <location filename="../ViewManager/ViewManager.py" line="1559" /> - <location filename="../ViewManager/ViewManager.py" line="1558" /> + <location filename="../ViewManager/ViewManager.py" line="1576" /> + <location filename="../ViewManager/ViewManager.py" line="1569" /> + <location filename="../ViewManager/ViewManager.py" line="1568" /> <source>Convert Line End Characters</source> <translation>Convertir Caráteres de Fim de Linha</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1569" /> + <location filename="../ViewManager/ViewManager.py" line="1579" /> <source><b>Convert Line End Characters</b><p>Convert the line end characters to the currently set type.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1588" /> - <location filename="../ViewManager/ViewManager.py" line="1581" /> - <location filename="../ViewManager/ViewManager.py" line="1580" /> + <location filename="../ViewManager/ViewManager.py" line="1598" /> + <location filename="../ViewManager/ViewManager.py" line="1591" /> + <location filename="../ViewManager/ViewManager.py" line="1590" /> <source>Convert Tabs to Spaces</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1591" /> + <location filename="../ViewManager/ViewManager.py" line="1601" /> <source><b>Convert Tabs to Spaces</b><p>Convert tabulators to the configured amount of space characters.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1610" /> - <location filename="../ViewManager/ViewManager.py" line="1603" /> - <location filename="../ViewManager/ViewManager.py" line="1602" /> + <location filename="../ViewManager/ViewManager.py" line="1620" /> + <location filename="../ViewManager/ViewManager.py" line="1613" /> + <location filename="../ViewManager/ViewManager.py" line="1612" /> <source>Shorten empty lines</source> <translation>Mostrar linhas vazias</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1613" /> + <location filename="../ViewManager/ViewManager.py" line="1623" /> <source><b>Shorten empty lines</b><p>Shorten lines consisting solely of whitespace characters.</p></source> <translation><b>Encolher linhas vazias</b><p>Encolhe as linhas que apenas contêm caráters em branco.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3497" /> - <location filename="../ViewManager/ViewManager.py" line="1624" /> + <location filename="../ViewManager/ViewManager.py" line="3507" /> + <location filename="../ViewManager/ViewManager.py" line="1634" /> <source>Complete</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1625" /> + <location filename="../ViewManager/ViewManager.py" line="1635" /> <source>&Complete</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1627" /> - <source>Ctrl+Space</source> - <comment>Edit|Complete</comment> - <translation type="unfinished" /> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="1634" /> - <source>Complete current word</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="1637" /> + <source>Ctrl+Space</source> + <comment>Edit|Complete</comment> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="1644" /> + <source>Complete current word</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="1647" /> <source><b>Complete</b><p>Performs a completion of the word containing the cursor.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1649" /> - <location filename="../ViewManager/ViewManager.py" line="1648" /> + <location filename="../ViewManager/ViewManager.py" line="1659" /> + <location filename="../ViewManager/ViewManager.py" line="1658" /> <source>Complete from Document</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1651" /> + <location filename="../ViewManager/ViewManager.py" line="1661" /> <source>Ctrl+Shift+Space</source> <comment>Edit|Complete from Document</comment> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1660" /> + <location filename="../ViewManager/ViewManager.py" line="1670" /> <source>Complete current word from Document</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1665" /> + <location filename="../ViewManager/ViewManager.py" line="1675" /> <source><b>Complete from Document</b><p>Performs a completion from document of the word containing the cursor.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1677" /> - <location filename="../ViewManager/ViewManager.py" line="1676" /> + <location filename="../ViewManager/ViewManager.py" line="1687" /> + <location filename="../ViewManager/ViewManager.py" line="1686" /> <source>Complete from APIs</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1679" /> + <location filename="../ViewManager/ViewManager.py" line="1689" /> <source>Ctrl+Alt+Space</source> <comment>Edit|Complete from APIs</comment> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1688" /> + <location filename="../ViewManager/ViewManager.py" line="1698" /> <source>Complete current word from APIs</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1691" /> + <location filename="../ViewManager/ViewManager.py" line="1701" /> <source><b>Complete from APIs</b><p>Performs a completion from APIs of the word containing the cursor.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1705" /> - <location filename="../ViewManager/ViewManager.py" line="1702" /> + <location filename="../ViewManager/ViewManager.py" line="1715" /> + <location filename="../ViewManager/ViewManager.py" line="1712" /> <source>Complete from Document and APIs</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1709" /> + <location filename="../ViewManager/ViewManager.py" line="1719" /> <source>Alt+Shift+Space</source> <comment>Edit|Complete from Document and APIs</comment> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1720" /> + <location filename="../ViewManager/ViewManager.py" line="1730" /> <source>Complete current word from Document and APIs</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1725" /> + <location filename="../ViewManager/ViewManager.py" line="1735" /> <source><b>Complete from Document and APIs</b><p>Performs a completion from document and APIs of the word containing the cursor.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1736" /> + <location filename="../ViewManager/ViewManager.py" line="1746" /> <source>Calltip</source> <translation type="unfinished">Dica</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1737" /> + <location filename="../ViewManager/ViewManager.py" line="1747" /> <source>&Calltip</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1739" /> + <location filename="../ViewManager/ViewManager.py" line="1749" /> <source>Meta+Alt+Space</source> <comment>Edit|Calltip</comment> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1748" /> + <location filename="../ViewManager/ViewManager.py" line="1758" /> <source>Show Calltips</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1751" /> + <location filename="../ViewManager/ViewManager.py" line="1761" /> <source><b>Calltip</b><p>Show calltips based on the characters immediately to the left of the cursor.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1764" /> - <location filename="../ViewManager/ViewManager.py" line="1762" /> + <location filename="../ViewManager/ViewManager.py" line="1774" /> + <location filename="../ViewManager/ViewManager.py" line="1772" /> <source>Code Info</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1766" /> + <location filename="../ViewManager/ViewManager.py" line="1776" /> <source>Ctrl+Alt+I</source> <comment>Edit|Code Info</comment> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1775" /> + <location filename="../ViewManager/ViewManager.py" line="1785" /> <source>Show Code Info</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1778" /> + <location filename="../ViewManager/ViewManager.py" line="1788" /> <source><b>Code Info</b><p>Show code information based on the cursor position.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1789" /> - <location filename="../ViewManager/ViewManager.py" line="1788" /> + <location filename="../ViewManager/ViewManager.py" line="1799" /> + <location filename="../ViewManager/ViewManager.py" line="1798" /> <source>Sort</source> <translation>Ordenar</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1791" /> + <location filename="../ViewManager/ViewManager.py" line="1801" /> <source>Ctrl+Alt+S</source> <comment>Edit|Sort</comment> <translation>Ctrl+Alt+S</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1798" /> + <location filename="../ViewManager/ViewManager.py" line="1808" /> <source>Sort the lines containing the rectangular selection</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1803" /> + <location filename="../ViewManager/ViewManager.py" line="1813" /> <source><b>Sort</b><p>Sort the lines spanned by a rectangular selection based on the selection ignoring leading and trailing whitespace.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1815" /> - <location filename="../ViewManager/ViewManager.py" line="1814" /> + <location filename="../ViewManager/ViewManager.py" line="1825" /> + <location filename="../ViewManager/ViewManager.py" line="1824" /> <source>Generate Docstring</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1817" /> + <location filename="../ViewManager/ViewManager.py" line="1827" /> <source>Ctrl+Alt+D</source> <comment>Edit|Generate Docstring</comment> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1826" /> + <location filename="../ViewManager/ViewManager.py" line="1836" /> <source>Generate a docstring for the current function/method</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1831" /> + <location filename="../ViewManager/ViewManager.py" line="1841" /> <source><b>Generate Docstring</b><p>Generate a docstring for the current function/method if the cursor is placed on the line starting the function definition or on the line thereafter. The docstring is inserted at the appropriate position and the cursor is placed at the end of the description line.</p></source> <translation type="unfinished" /> </message> @@ -95467,22 +95480,22 @@ <location filename="../QScintilla/MiniEditor.py" line="929" /> <location filename="../QScintilla/ShellWindow.py" line="579" /> <location filename="../QScintilla/ShellWindow.py" line="578" /> - <location filename="../ViewManager/ViewManager.py" line="1858" /> - <location filename="../ViewManager/ViewManager.py" line="1857" /> + <location filename="../ViewManager/ViewManager.py" line="1868" /> + <location filename="../ViewManager/ViewManager.py" line="1867" /> <source>Move left one character</source> <translation>Mover um caráter à esquerda</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="931" /> <location filename="../QScintilla/ShellWindow.py" line="580" /> - <location filename="../ViewManager/ViewManager.py" line="1859" /> + <location filename="../ViewManager/ViewManager.py" line="1869" /> <source>Left</source> <translation /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="939" /> <location filename="../QScintilla/ShellWindow.py" line="588" /> - <location filename="../ViewManager/ViewManager.py" line="1867" /> + <location filename="../ViewManager/ViewManager.py" line="1877" /> <source>Meta+B</source> <translation>Meta+B</translation> </message> @@ -95491,22 +95504,22 @@ <location filename="../QScintilla/MiniEditor.py" line="945" /> <location filename="../QScintilla/ShellWindow.py" line="595" /> <location filename="../QScintilla/ShellWindow.py" line="594" /> - <location filename="../ViewManager/ViewManager.py" line="1874" /> - <location filename="../ViewManager/ViewManager.py" line="1873" /> + <location filename="../ViewManager/ViewManager.py" line="1884" /> + <location filename="../ViewManager/ViewManager.py" line="1883" /> <source>Move right one character</source> <translation>Mover um caráter à direita</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="947" /> <location filename="../QScintilla/ShellWindow.py" line="596" /> - <location filename="../ViewManager/ViewManager.py" line="1875" /> + <location filename="../ViewManager/ViewManager.py" line="1885" /> <source>Right</source> <translation /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="954" /> <location filename="../QScintilla/ShellWindow.py" line="603" /> - <location filename="../ViewManager/ViewManager.py" line="1882" /> + <location filename="../ViewManager/ViewManager.py" line="1892" /> <source>Meta+F</source> <translation>Meta+F</translation> </message> @@ -95515,22 +95528,22 @@ <location filename="../QScintilla/MiniEditor.py" line="961" /> <location filename="../QScintilla/ShellWindow.py" line="687" /> <location filename="../QScintilla/ShellWindow.py" line="686" /> - <location filename="../ViewManager/ViewManager.py" line="1890" /> - <location filename="../ViewManager/ViewManager.py" line="1889" /> + <location filename="../ViewManager/ViewManager.py" line="1900" /> + <location filename="../ViewManager/ViewManager.py" line="1899" /> <source>Move up one line</source> <translation>Mover uma linha acima</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="963" /> <location filename="../QScintilla/ShellWindow.py" line="688" /> - <location filename="../ViewManager/ViewManager.py" line="1891" /> + <location filename="../ViewManager/ViewManager.py" line="1901" /> <source>Up</source> <translation /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="970" /> <location filename="../QScintilla/ShellWindow.py" line="695" /> - <location filename="../ViewManager/ViewManager.py" line="1898" /> + <location filename="../ViewManager/ViewManager.py" line="1908" /> <source>Meta+P</source> <translation type="unfinished">Meta+P</translation> </message> @@ -95539,30 +95552,30 @@ <location filename="../QScintilla/MiniEditor.py" line="977" /> <location filename="../QScintilla/ShellWindow.py" line="703" /> <location filename="../QScintilla/ShellWindow.py" line="702" /> - <location filename="../ViewManager/ViewManager.py" line="1906" /> - <location filename="../ViewManager/ViewManager.py" line="1905" /> + <location filename="../ViewManager/ViewManager.py" line="1916" /> + <location filename="../ViewManager/ViewManager.py" line="1915" /> <source>Move down one line</source> <translation>Mover uma linha abaixo</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="979" /> <location filename="../QScintilla/ShellWindow.py" line="704" /> - <location filename="../ViewManager/ViewManager.py" line="1907" /> + <location filename="../ViewManager/ViewManager.py" line="1917" /> <source>Down</source> <translation /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="986" /> <location filename="../QScintilla/ShellWindow.py" line="711" /> - <location filename="../ViewManager/ViewManager.py" line="1914" /> + <location filename="../ViewManager/ViewManager.py" line="1924" /> <source>Meta+N</source> <translation type="unfinished">Meta+N</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="994" /> <location filename="../QScintilla/MiniEditor.py" line="993" /> - <location filename="../ViewManager/ViewManager.py" line="1922" /> - <location filename="../ViewManager/ViewManager.py" line="1921" /> + <location filename="../ViewManager/ViewManager.py" line="1932" /> + <location filename="../ViewManager/ViewManager.py" line="1931" /> <source>Move left one word part</source> <translation type="unfinished" /> </message> @@ -95570,16 +95583,16 @@ <location filename="../QScintilla/MiniEditor.py" line="1034" /> <location filename="../QScintilla/MiniEditor.py" line="1002" /> <location filename="../QScintilla/ShellWindow.py" line="619" /> - <location filename="../ViewManager/ViewManager.py" line="1962" /> - <location filename="../ViewManager/ViewManager.py" line="1930" /> + <location filename="../ViewManager/ViewManager.py" line="1972" /> + <location filename="../ViewManager/ViewManager.py" line="1940" /> <source>Alt+Left</source> <translation /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1010" /> <location filename="../QScintilla/MiniEditor.py" line="1009" /> - <location filename="../ViewManager/ViewManager.py" line="1938" /> - <location filename="../ViewManager/ViewManager.py" line="1937" /> + <location filename="../ViewManager/ViewManager.py" line="1948" /> + <location filename="../ViewManager/ViewManager.py" line="1947" /> <source>Move right one word part</source> <translation type="unfinished" /> </message> @@ -95587,8 +95600,8 @@ <location filename="../QScintilla/MiniEditor.py" line="2164" /> <location filename="../QScintilla/MiniEditor.py" line="1054" /> <location filename="../QScintilla/MiniEditor.py" line="1018" /> - <location filename="../ViewManager/ViewManager.py" line="3071" /> - <location filename="../ViewManager/ViewManager.py" line="1946" /> + <location filename="../ViewManager/ViewManager.py" line="3081" /> + <location filename="../ViewManager/ViewManager.py" line="1956" /> <source>Alt+Right</source> <translation /> </message> @@ -95597,8 +95610,8 @@ <location filename="../QScintilla/MiniEditor.py" line="1025" /> <location filename="../QScintilla/ShellWindow.py" line="611" /> <location filename="../QScintilla/ShellWindow.py" line="610" /> - <location filename="../ViewManager/ViewManager.py" line="1954" /> - <location filename="../ViewManager/ViewManager.py" line="1953" /> + <location filename="../ViewManager/ViewManager.py" line="1964" /> + <location filename="../ViewManager/ViewManager.py" line="1963" /> <source>Move left one word</source> <translation>Mover uma palavra à esquerda</translation> </message> @@ -95606,8 +95619,8 @@ <location filename="../QScintilla/MiniEditor.py" line="1094" /> <location filename="../QScintilla/MiniEditor.py" line="1038" /> <location filename="../QScintilla/ShellWindow.py" line="623" /> - <location filename="../ViewManager/ViewManager.py" line="2018" /> - <location filename="../ViewManager/ViewManager.py" line="1966" /> + <location filename="../ViewManager/ViewManager.py" line="2028" /> + <location filename="../ViewManager/ViewManager.py" line="1976" /> <source>Ctrl+Left</source> <translation /> </message> @@ -95616,8 +95629,8 @@ <location filename="../QScintilla/MiniEditor.py" line="1045" /> <location filename="../QScintilla/ShellWindow.py" line="631" /> <location filename="../QScintilla/ShellWindow.py" line="630" /> - <location filename="../ViewManager/ViewManager.py" line="1974" /> - <location filename="../ViewManager/ViewManager.py" line="1973" /> + <location filename="../ViewManager/ViewManager.py" line="1984" /> + <location filename="../ViewManager/ViewManager.py" line="1983" /> <source>Move right one word</source> <translation>Mover uma palavra à direita</translation> </message> @@ -95625,8 +95638,8 @@ <location filename="../QScintilla/MiniEditor.py" line="1848" /> <location filename="../QScintilla/MiniEditor.py" line="1058" /> <location filename="../QScintilla/ShellWindow.py" line="639" /> - <location filename="../ViewManager/ViewManager.py" line="2755" /> - <location filename="../ViewManager/ViewManager.py" line="1982" /> + <location filename="../ViewManager/ViewManager.py" line="2765" /> + <location filename="../ViewManager/ViewManager.py" line="1992" /> <source>Ctrl+Right</source> <translation /> </message> @@ -95635,8 +95648,8 @@ <location filename="../QScintilla/MiniEditor.py" line="1065" /> <location filename="../QScintilla/ShellWindow.py" line="649" /> <location filename="../QScintilla/ShellWindow.py" line="646" /> - <location filename="../ViewManager/ViewManager.py" line="1992" /> - <location filename="../ViewManager/ViewManager.py" line="1989" /> + <location filename="../ViewManager/ViewManager.py" line="2002" /> + <location filename="../ViewManager/ViewManager.py" line="1999" /> <source>Move to first visible character in document line</source> <translation>Mover ao primeiro caráter vísivel da linha do documento</translation> </message> @@ -95644,22 +95657,22 @@ <location filename="../QScintilla/MiniEditor.py" line="2109" /> <location filename="../QScintilla/MiniEditor.py" line="1078" /> <location filename="../QScintilla/ShellWindow.py" line="659" /> - <location filename="../ViewManager/ViewManager.py" line="3016" /> - <location filename="../ViewManager/ViewManager.py" line="2002" /> + <location filename="../ViewManager/ViewManager.py" line="3026" /> + <location filename="../ViewManager/ViewManager.py" line="2012" /> <source>Home</source> <translation type="unfinished">Página Inicial</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1086" /> <location filename="../QScintilla/MiniEditor.py" line="1085" /> - <location filename="../ViewManager/ViewManager.py" line="2010" /> - <location filename="../ViewManager/ViewManager.py" line="2009" /> + <location filename="../ViewManager/ViewManager.py" line="2020" /> + <location filename="../ViewManager/ViewManager.py" line="2019" /> <source>Move to start of display line</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1098" /> - <location filename="../ViewManager/ViewManager.py" line="2022" /> + <location filename="../ViewManager/ViewManager.py" line="2032" /> <source>Alt+Home</source> <translation /> </message> @@ -95668,15 +95681,15 @@ <location filename="../QScintilla/MiniEditor.py" line="1105" /> <location filename="../QScintilla/ShellWindow.py" line="667" /> <location filename="../QScintilla/ShellWindow.py" line="666" /> - <location filename="../ViewManager/ViewManager.py" line="2030" /> - <location filename="../ViewManager/ViewManager.py" line="2029" /> + <location filename="../ViewManager/ViewManager.py" line="2040" /> + <location filename="../ViewManager/ViewManager.py" line="2039" /> <source>Move to end of document line</source> <translation>Mover ao fim da linha do documento</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1114" /> <location filename="../QScintilla/ShellWindow.py" line="675" /> - <location filename="../ViewManager/ViewManager.py" line="2038" /> + <location filename="../ViewManager/ViewManager.py" line="2048" /> <source>Meta+E</source> <translation type="unfinished">Meta+E</translation> </message> @@ -95684,16 +95697,16 @@ <location filename="../QScintilla/MiniEditor.py" line="2126" /> <location filename="../QScintilla/MiniEditor.py" line="1118" /> <location filename="../QScintilla/ShellWindow.py" line="679" /> - <location filename="../ViewManager/ViewManager.py" line="3033" /> - <location filename="../ViewManager/ViewManager.py" line="2042" /> + <location filename="../ViewManager/ViewManager.py" line="3043" /> + <location filename="../ViewManager/ViewManager.py" line="2052" /> <source>End</source> <translation type="unfinished">Fim</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1126" /> <location filename="../QScintilla/MiniEditor.py" line="1125" /> - <location filename="../ViewManager/ViewManager.py" line="2050" /> - <location filename="../ViewManager/ViewManager.py" line="2049" /> + <location filename="../ViewManager/ViewManager.py" line="2060" /> + <location filename="../ViewManager/ViewManager.py" line="2059" /> <source>Scroll view down one line</source> <translation type="unfinished" /> </message> @@ -95701,16 +95714,16 @@ <location filename="../QScintilla/MiniEditor.py" line="1230" /> <location filename="../QScintilla/MiniEditor.py" line="1127" /> <location filename="../QScintilla/ShellWindow.py" line="720" /> - <location filename="../ViewManager/ViewManager.py" line="2154" /> - <location filename="../ViewManager/ViewManager.py" line="2051" /> + <location filename="../ViewManager/ViewManager.py" line="2164" /> + <location filename="../ViewManager/ViewManager.py" line="2061" /> <source>Ctrl+Down</source> <translation /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1138" /> <location filename="../QScintilla/MiniEditor.py" line="1137" /> - <location filename="../ViewManager/ViewManager.py" line="2062" /> - <location filename="../ViewManager/ViewManager.py" line="2061" /> + <location filename="../ViewManager/ViewManager.py" line="2072" /> + <location filename="../ViewManager/ViewManager.py" line="2071" /> <source>Scroll view up one line</source> <translation type="unfinished" /> </message> @@ -95718,36 +95731,36 @@ <location filename="../QScintilla/MiniEditor.py" line="1210" /> <location filename="../QScintilla/MiniEditor.py" line="1139" /> <location filename="../QScintilla/ShellWindow.py" line="732" /> - <location filename="../ViewManager/ViewManager.py" line="2134" /> - <location filename="../ViewManager/ViewManager.py" line="2063" /> + <location filename="../ViewManager/ViewManager.py" line="2144" /> + <location filename="../ViewManager/ViewManager.py" line="2073" /> <source>Ctrl+Up</source> <translation /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1150" /> <location filename="../QScintilla/MiniEditor.py" line="1149" /> - <location filename="../ViewManager/ViewManager.py" line="2074" /> - <location filename="../ViewManager/ViewManager.py" line="2073" /> + <location filename="../ViewManager/ViewManager.py" line="2084" /> + <location filename="../ViewManager/ViewManager.py" line="2083" /> <source>Move up one paragraph</source> <translation>Mover um parágrafo acima</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1151" /> - <location filename="../ViewManager/ViewManager.py" line="2075" /> + <location filename="../ViewManager/ViewManager.py" line="2085" /> <source>Alt+Up</source> <translation /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1162" /> <location filename="../QScintilla/MiniEditor.py" line="1161" /> - <location filename="../ViewManager/ViewManager.py" line="2086" /> - <location filename="../ViewManager/ViewManager.py" line="2085" /> + <location filename="../ViewManager/ViewManager.py" line="2096" /> + <location filename="../ViewManager/ViewManager.py" line="2095" /> <source>Move down one paragraph</source> <translation>Mover um parágrafo abaixo</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1163" /> - <location filename="../ViewManager/ViewManager.py" line="2087" /> + <location filename="../ViewManager/ViewManager.py" line="2097" /> <source>Alt+Down</source> <translation /> </message> @@ -95756,15 +95769,15 @@ <location filename="../QScintilla/MiniEditor.py" line="1173" /> <location filename="../QScintilla/ShellWindow.py" line="743" /> <location filename="../QScintilla/ShellWindow.py" line="742" /> - <location filename="../ViewManager/ViewManager.py" line="2098" /> - <location filename="../ViewManager/ViewManager.py" line="2097" /> + <location filename="../ViewManager/ViewManager.py" line="2108" /> + <location filename="../ViewManager/ViewManager.py" line="2107" /> <source>Move up one page</source> <translation>Mover uma página acima</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1175" /> <location filename="../QScintilla/ShellWindow.py" line="744" /> - <location filename="../ViewManager/ViewManager.py" line="2099" /> + <location filename="../ViewManager/ViewManager.py" line="2109" /> <source>PgUp</source> <translation /> </message> @@ -95773,50 +95786,50 @@ <location filename="../QScintilla/MiniEditor.py" line="1185" /> <location filename="../QScintilla/ShellWindow.py" line="755" /> <location filename="../QScintilla/ShellWindow.py" line="754" /> - <location filename="../ViewManager/ViewManager.py" line="2110" /> - <location filename="../ViewManager/ViewManager.py" line="2109" /> + <location filename="../ViewManager/ViewManager.py" line="2120" /> + <location filename="../ViewManager/ViewManager.py" line="2119" /> <source>Move down one page</source> <translation>Mover uma pagina abaixo</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1187" /> <location filename="../QScintilla/ShellWindow.py" line="756" /> - <location filename="../ViewManager/ViewManager.py" line="2111" /> + <location filename="../ViewManager/ViewManager.py" line="2121" /> <source>PgDown</source> <translation /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1194" /> <location filename="../QScintilla/ShellWindow.py" line="763" /> - <location filename="../ViewManager/ViewManager.py" line="2118" /> + <location filename="../ViewManager/ViewManager.py" line="2128" /> <source>Meta+V</source> <translation type="unfinished">Meta+V</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1202" /> <location filename="../QScintilla/MiniEditor.py" line="1201" /> - <location filename="../ViewManager/ViewManager.py" line="2126" /> - <location filename="../ViewManager/ViewManager.py" line="2125" /> + <location filename="../ViewManager/ViewManager.py" line="2136" /> + <location filename="../ViewManager/ViewManager.py" line="2135" /> <source>Move to start of document</source> <translation>Mover ao princípio do documento</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1214" /> - <location filename="../ViewManager/ViewManager.py" line="2138" /> + <location filename="../ViewManager/ViewManager.py" line="2148" /> <source>Ctrl+Home</source> <translation /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1222" /> <location filename="../QScintilla/MiniEditor.py" line="1221" /> - <location filename="../ViewManager/ViewManager.py" line="2146" /> - <location filename="../ViewManager/ViewManager.py" line="2145" /> + <location filename="../ViewManager/ViewManager.py" line="2156" /> + <location filename="../ViewManager/ViewManager.py" line="2155" /> <source>Move to end of document</source> <translation>Mover ao final do documento</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1234" /> - <location filename="../ViewManager/ViewManager.py" line="2158" /> + <location filename="../ViewManager/ViewManager.py" line="2168" /> <source>Ctrl+End</source> <translation /> </message> @@ -95825,29 +95838,29 @@ <location filename="../QScintilla/MiniEditor.py" line="1241" /> <location filename="../QScintilla/ShellWindow.py" line="457" /> <location filename="../QScintilla/ShellWindow.py" line="456" /> - <location filename="../ViewManager/ViewManager.py" line="2166" /> - <location filename="../ViewManager/ViewManager.py" line="2165" /> + <location filename="../ViewManager/ViewManager.py" line="2176" /> + <location filename="../ViewManager/ViewManager.py" line="2175" /> <source>Indent one level</source> <translation>Indentar um nivel</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1243" /> <location filename="../QScintilla/ShellWindow.py" line="458" /> - <location filename="../ViewManager/ViewManager.py" line="2167" /> + <location filename="../ViewManager/ViewManager.py" line="2177" /> <source>Tab</source> <translation /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1254" /> <location filename="../QScintilla/MiniEditor.py" line="1253" /> - <location filename="../ViewManager/ViewManager.py" line="2178" /> - <location filename="../ViewManager/ViewManager.py" line="2177" /> + <location filename="../ViewManager/ViewManager.py" line="2188" /> + <location filename="../ViewManager/ViewManager.py" line="2187" /> <source>Unindent one level</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1255" /> - <location filename="../ViewManager/ViewManager.py" line="2179" /> + <location filename="../ViewManager/ViewManager.py" line="2189" /> <source>Shift+Tab</source> <translation /> </message> @@ -95856,22 +95869,22 @@ <location filename="../QScintilla/MiniEditor.py" line="1265" /> <location filename="../QScintilla/ShellWindow.py" line="785" /> <location filename="../QScintilla/ShellWindow.py" line="782" /> - <location filename="../ViewManager/ViewManager.py" line="2192" /> - <location filename="../ViewManager/ViewManager.py" line="2189" /> + <location filename="../ViewManager/ViewManager.py" line="2202" /> + <location filename="../ViewManager/ViewManager.py" line="2199" /> <source>Extend selection left one character</source> <translation>Estende a seleção um caráter à esquerda</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1271" /> <location filename="../QScintilla/ShellWindow.py" line="788" /> - <location filename="../ViewManager/ViewManager.py" line="2195" /> + <location filename="../ViewManager/ViewManager.py" line="2205" /> <source>Shift+Left</source> <translation /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1278" /> <location filename="../QScintilla/ShellWindow.py" line="795" /> - <location filename="../ViewManager/ViewManager.py" line="2202" /> + <location filename="../ViewManager/ViewManager.py" line="2212" /> <source>Meta+Shift+B</source> <translation /> </message> @@ -95880,70 +95893,70 @@ <location filename="../QScintilla/MiniEditor.py" line="1285" /> <location filename="../QScintilla/ShellWindow.py" line="805" /> <location filename="../QScintilla/ShellWindow.py" line="802" /> - <location filename="../ViewManager/ViewManager.py" line="2212" /> - <location filename="../ViewManager/ViewManager.py" line="2209" /> + <location filename="../ViewManager/ViewManager.py" line="2222" /> + <location filename="../ViewManager/ViewManager.py" line="2219" /> <source>Extend selection right one character</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1291" /> <location filename="../QScintilla/ShellWindow.py" line="808" /> - <location filename="../ViewManager/ViewManager.py" line="2215" /> + <location filename="../ViewManager/ViewManager.py" line="2225" /> <source>Shift+Right</source> <translation /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1298" /> <location filename="../QScintilla/ShellWindow.py" line="815" /> - <location filename="../ViewManager/ViewManager.py" line="2222" /> + <location filename="../ViewManager/ViewManager.py" line="2232" /> <source>Meta+Shift+F</source> <translation /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1306" /> <location filename="../QScintilla/MiniEditor.py" line="1305" /> - <location filename="../ViewManager/ViewManager.py" line="2230" /> - <location filename="../ViewManager/ViewManager.py" line="2229" /> + <location filename="../ViewManager/ViewManager.py" line="2240" /> + <location filename="../ViewManager/ViewManager.py" line="2239" /> <source>Extend selection up one line</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1307" /> - <location filename="../ViewManager/ViewManager.py" line="2231" /> + <location filename="../ViewManager/ViewManager.py" line="2241" /> <source>Shift+Up</source> <translation /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1314" /> - <location filename="../ViewManager/ViewManager.py" line="2238" /> + <location filename="../ViewManager/ViewManager.py" line="2248" /> <source>Meta+Shift+P</source> <translation /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1322" /> <location filename="../QScintilla/MiniEditor.py" line="1321" /> - <location filename="../ViewManager/ViewManager.py" line="2246" /> - <location filename="../ViewManager/ViewManager.py" line="2245" /> + <location filename="../ViewManager/ViewManager.py" line="2256" /> + <location filename="../ViewManager/ViewManager.py" line="2255" /> <source>Extend selection down one line</source> <translation>Estende a seleção abaixo uma linha</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1323" /> - <location filename="../ViewManager/ViewManager.py" line="2247" /> + <location filename="../ViewManager/ViewManager.py" line="2257" /> <source>Shift+Down</source> <translation /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1330" /> - <location filename="../ViewManager/ViewManager.py" line="2254" /> + <location filename="../ViewManager/ViewManager.py" line="2264" /> <source>Meta+Shift+N</source> <translation>Meta+Shift+N</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1340" /> <location filename="../QScintilla/MiniEditor.py" line="1337" /> - <location filename="../ViewManager/ViewManager.py" line="2264" /> - <location filename="../ViewManager/ViewManager.py" line="2261" /> + <location filename="../ViewManager/ViewManager.py" line="2274" /> + <location filename="../ViewManager/ViewManager.py" line="2271" /> <source>Extend selection left one word part</source> <translation type="unfinished" /> </message> @@ -95951,16 +95964,16 @@ <location filename="../QScintilla/MiniEditor.py" line="1391" /> <location filename="../QScintilla/MiniEditor.py" line="1351" /> <location filename="../QScintilla/ShellWindow.py" line="832" /> - <location filename="../ViewManager/ViewManager.py" line="2315" /> - <location filename="../ViewManager/ViewManager.py" line="2275" /> + <location filename="../ViewManager/ViewManager.py" line="2325" /> + <location filename="../ViewManager/ViewManager.py" line="2285" /> <source>Alt+Shift+Left</source> <translation /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1362" /> <location filename="../QScintilla/MiniEditor.py" line="1359" /> - <location filename="../ViewManager/ViewManager.py" line="2286" /> - <location filename="../ViewManager/ViewManager.py" line="2283" /> + <location filename="../ViewManager/ViewManager.py" line="2296" /> + <location filename="../ViewManager/ViewManager.py" line="2293" /> <source>Extend selection right one word part</source> <translation type="unfinished" /> </message> @@ -95969,9 +95982,9 @@ <location filename="../QScintilla/MiniEditor.py" line="1419" /> <location filename="../QScintilla/MiniEditor.py" line="1373" /> <location filename="../QScintilla/ShellWindow.py" line="860" /> - <location filename="../ViewManager/ViewManager.py" line="3093" /> - <location filename="../ViewManager/ViewManager.py" line="2343" /> - <location filename="../ViewManager/ViewManager.py" line="2297" /> + <location filename="../ViewManager/ViewManager.py" line="3103" /> + <location filename="../ViewManager/ViewManager.py" line="2353" /> + <location filename="../ViewManager/ViewManager.py" line="2307" /> <source>Alt+Shift+Right</source> <translation /> </message> @@ -95980,8 +95993,8 @@ <location filename="../QScintilla/MiniEditor.py" line="1381" /> <location filename="../QScintilla/ShellWindow.py" line="823" /> <location filename="../QScintilla/ShellWindow.py" line="822" /> - <location filename="../ViewManager/ViewManager.py" line="2306" /> - <location filename="../ViewManager/ViewManager.py" line="2305" /> + <location filename="../ViewManager/ViewManager.py" line="2316" /> + <location filename="../ViewManager/ViewManager.py" line="2315" /> <source>Extend selection left one word</source> <translation>Estende a seleção uma palavra à esquerda</translation> </message> @@ -95989,8 +96002,8 @@ <location filename="../QScintilla/MiniEditor.py" line="2312" /> <location filename="../QScintilla/MiniEditor.py" line="1397" /> <location filename="../QScintilla/ShellWindow.py" line="838" /> - <location filename="../ViewManager/ViewManager.py" line="3219" /> - <location filename="../ViewManager/ViewManager.py" line="2321" /> + <location filename="../ViewManager/ViewManager.py" line="3229" /> + <location filename="../ViewManager/ViewManager.py" line="2331" /> <source>Ctrl+Shift+Left</source> <translation /> </message> @@ -95999,8 +96012,8 @@ <location filename="../QScintilla/MiniEditor.py" line="1405" /> <location filename="../QScintilla/ShellWindow.py" line="849" /> <location filename="../QScintilla/ShellWindow.py" line="846" /> - <location filename="../ViewManager/ViewManager.py" line="2332" /> - <location filename="../ViewManager/ViewManager.py" line="2329" /> + <location filename="../ViewManager/ViewManager.py" line="2342" /> + <location filename="../ViewManager/ViewManager.py" line="2339" /> <source>Extend selection right one word</source> <translation type="unfinished" /> </message> @@ -96008,8 +96021,8 @@ <location filename="../QScintilla/MiniEditor.py" line="1873" /> <location filename="../QScintilla/MiniEditor.py" line="1425" /> <location filename="../QScintilla/ShellWindow.py" line="866" /> - <location filename="../ViewManager/ViewManager.py" line="2780" /> - <location filename="../ViewManager/ViewManager.py" line="2349" /> + <location filename="../ViewManager/ViewManager.py" line="2790" /> + <location filename="../ViewManager/ViewManager.py" line="2359" /> <source>Ctrl+Shift+Right</source> <translation /> </message> @@ -96018,15 +96031,15 @@ <location filename="../QScintilla/MiniEditor.py" line="1433" /> <location filename="../QScintilla/ShellWindow.py" line="878" /> <location filename="../QScintilla/ShellWindow.py" line="874" /> - <location filename="../ViewManager/ViewManager.py" line="2361" /> - <location filename="../ViewManager/ViewManager.py" line="2357" /> + <location filename="../ViewManager/ViewManager.py" line="2371" /> + <location filename="../ViewManager/ViewManager.py" line="2367" /> <source>Extend selection to first visible character in document line</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1448" /> <location filename="../QScintilla/ShellWindow.py" line="889" /> - <location filename="../ViewManager/ViewManager.py" line="2372" /> + <location filename="../ViewManager/ViewManager.py" line="2382" /> <source>Shift+Home</source> <translation /> </message> @@ -96035,124 +96048,124 @@ <location filename="../QScintilla/MiniEditor.py" line="1455" /> <location filename="../QScintilla/ShellWindow.py" line="899" /> <location filename="../QScintilla/ShellWindow.py" line="896" /> - <location filename="../ViewManager/ViewManager.py" line="2382" /> - <location filename="../ViewManager/ViewManager.py" line="2379" /> + <location filename="../ViewManager/ViewManager.py" line="2392" /> + <location filename="../ViewManager/ViewManager.py" line="2389" /> <source>Extend selection to end of document line</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1468" /> <location filename="../QScintilla/ShellWindow.py" line="909" /> - <location filename="../ViewManager/ViewManager.py" line="2392" /> + <location filename="../ViewManager/ViewManager.py" line="2402" /> <source>Meta+Shift+E</source> <translation>Meta+Shift+E</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1472" /> <location filename="../QScintilla/ShellWindow.py" line="913" /> - <location filename="../ViewManager/ViewManager.py" line="2396" /> + <location filename="../ViewManager/ViewManager.py" line="2406" /> <source>Shift+End</source> <translation /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1482" /> <location filename="../QScintilla/MiniEditor.py" line="1479" /> - <location filename="../ViewManager/ViewManager.py" line="2406" /> - <location filename="../ViewManager/ViewManager.py" line="2403" /> + <location filename="../ViewManager/ViewManager.py" line="2416" /> + <location filename="../ViewManager/ViewManager.py" line="2413" /> <source>Extend selection up one paragraph</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1485" /> - <location filename="../ViewManager/ViewManager.py" line="2409" /> + <location filename="../ViewManager/ViewManager.py" line="2419" /> <source>Alt+Shift+Up</source> <translation /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1498" /> <location filename="../QScintilla/MiniEditor.py" line="1495" /> - <location filename="../ViewManager/ViewManager.py" line="2422" /> - <location filename="../ViewManager/ViewManager.py" line="2419" /> + <location filename="../ViewManager/ViewManager.py" line="2432" /> + <location filename="../ViewManager/ViewManager.py" line="2429" /> <source>Extend selection down one paragraph</source> <translation>Estende a seleção abaixo uma parágrafo</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1501" /> - <location filename="../ViewManager/ViewManager.py" line="2425" /> + <location filename="../ViewManager/ViewManager.py" line="2435" /> <source>Alt+Shift+Down</source> <translation /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1512" /> <location filename="../QScintilla/MiniEditor.py" line="1511" /> - <location filename="../ViewManager/ViewManager.py" line="2436" /> - <location filename="../ViewManager/ViewManager.py" line="2435" /> + <location filename="../ViewManager/ViewManager.py" line="2446" /> + <location filename="../ViewManager/ViewManager.py" line="2445" /> <source>Extend selection up one page</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1513" /> - <location filename="../ViewManager/ViewManager.py" line="2437" /> + <location filename="../ViewManager/ViewManager.py" line="2447" /> <source>Shift+PgUp</source> <translation /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1524" /> <location filename="../QScintilla/MiniEditor.py" line="1523" /> - <location filename="../ViewManager/ViewManager.py" line="2448" /> - <location filename="../ViewManager/ViewManager.py" line="2447" /> + <location filename="../ViewManager/ViewManager.py" line="2458" /> + <location filename="../ViewManager/ViewManager.py" line="2457" /> <source>Extend selection down one page</source> <translation>Estende a seleção abaixo uma página</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1525" /> - <location filename="../ViewManager/ViewManager.py" line="2449" /> + <location filename="../ViewManager/ViewManager.py" line="2459" /> <source>Shift+PgDown</source> <translation /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1532" /> - <location filename="../ViewManager/ViewManager.py" line="2456" /> + <location filename="../ViewManager/ViewManager.py" line="2466" /> <source>Meta+Shift+V</source> <translation>Meta+Shift+V</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1542" /> <location filename="../QScintilla/MiniEditor.py" line="1539" /> - <location filename="../ViewManager/ViewManager.py" line="2466" /> - <location filename="../ViewManager/ViewManager.py" line="2463" /> + <location filename="../ViewManager/ViewManager.py" line="2476" /> + <location filename="../ViewManager/ViewManager.py" line="2473" /> <source>Extend selection to start of document</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1552" /> - <location filename="../ViewManager/ViewManager.py" line="2476" /> + <location filename="../ViewManager/ViewManager.py" line="2486" /> <source>Ctrl+Shift+Up</source> <translation>Ctrl+Shift+Up</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1557" /> - <location filename="../ViewManager/ViewManager.py" line="2481" /> + <location filename="../ViewManager/ViewManager.py" line="2491" /> <source>Ctrl+Shift+Home</source> <translation /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1568" /> <location filename="../QScintilla/MiniEditor.py" line="1565" /> - <location filename="../ViewManager/ViewManager.py" line="2492" /> - <location filename="../ViewManager/ViewManager.py" line="2489" /> + <location filename="../ViewManager/ViewManager.py" line="2502" /> + <location filename="../ViewManager/ViewManager.py" line="2499" /> <source>Extend selection to end of document</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1579" /> - <location filename="../ViewManager/ViewManager.py" line="2503" /> + <location filename="../ViewManager/ViewManager.py" line="2513" /> <source>Ctrl+Shift+Down</source> <translation /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1585" /> - <location filename="../ViewManager/ViewManager.py" line="2509" /> + <location filename="../ViewManager/ViewManager.py" line="2519" /> <source>Ctrl+Shift+End</source> <translation /> </message> @@ -96161,37 +96174,37 @@ <location filename="../QScintilla/MiniEditor.py" line="1593" /> <location filename="../QScintilla/ShellWindow.py" line="481" /> <location filename="../QScintilla/ShellWindow.py" line="480" /> - <location filename="../ViewManager/ViewManager.py" line="2518" /> - <location filename="../ViewManager/ViewManager.py" line="2517" /> + <location filename="../ViewManager/ViewManager.py" line="2528" /> + <location filename="../ViewManager/ViewManager.py" line="2527" /> <source>Delete previous character</source> <translation>Apagar o caratér anterior</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1595" /> <location filename="../QScintilla/ShellWindow.py" line="482" /> - <location filename="../ViewManager/ViewManager.py" line="2519" /> + <location filename="../ViewManager/ViewManager.py" line="2529" /> <source>Backspace</source> <translation /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1602" /> <location filename="../QScintilla/ShellWindow.py" line="489" /> - <location filename="../ViewManager/ViewManager.py" line="2526" /> + <location filename="../ViewManager/ViewManager.py" line="2536" /> <source>Meta+H</source> <translation>Meta+H</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1607" /> <location filename="../QScintilla/ShellWindow.py" line="494" /> - <location filename="../ViewManager/ViewManager.py" line="2531" /> + <location filename="../ViewManager/ViewManager.py" line="2541" /> <source>Shift+Backspace</source> <translation /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1618" /> <location filename="../QScintilla/MiniEditor.py" line="1615" /> - <location filename="../ViewManager/ViewManager.py" line="2542" /> - <location filename="../ViewManager/ViewManager.py" line="2539" /> + <location filename="../ViewManager/ViewManager.py" line="2552" /> + <location filename="../ViewManager/ViewManager.py" line="2549" /> <source>Delete previous character if not at start of line</source> <translation>Apagar o caratér anterior se não está ao princípio da linha</translation> </message> @@ -96200,22 +96213,22 @@ <location filename="../QScintilla/MiniEditor.py" line="1631" /> <location filename="../QScintilla/ShellWindow.py" line="503" /> <location filename="../QScintilla/ShellWindow.py" line="502" /> - <location filename="../ViewManager/ViewManager.py" line="2556" /> - <location filename="../ViewManager/ViewManager.py" line="2555" /> + <location filename="../ViewManager/ViewManager.py" line="2566" /> + <location filename="../ViewManager/ViewManager.py" line="2565" /> <source>Delete current character</source> <translation>Apagar o caratér atual</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1633" /> <location filename="../QScintilla/ShellWindow.py" line="504" /> - <location filename="../ViewManager/ViewManager.py" line="2557" /> + <location filename="../ViewManager/ViewManager.py" line="2567" /> <source>Del</source> <translation /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1640" /> <location filename="../QScintilla/ShellWindow.py" line="511" /> - <location filename="../ViewManager/ViewManager.py" line="2564" /> + <location filename="../ViewManager/ViewManager.py" line="2574" /> <source>Meta+D</source> <translation>Meta+D</translation> </message> @@ -96224,15 +96237,15 @@ <location filename="../QScintilla/MiniEditor.py" line="1647" /> <location filename="../QScintilla/ShellWindow.py" line="519" /> <location filename="../QScintilla/ShellWindow.py" line="518" /> - <location filename="../ViewManager/ViewManager.py" line="2572" /> - <location filename="../ViewManager/ViewManager.py" line="2571" /> + <location filename="../ViewManager/ViewManager.py" line="2582" /> + <location filename="../ViewManager/ViewManager.py" line="2581" /> <source>Delete word to left</source> <translation>Apagar palavra à esquerda</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1649" /> <location filename="../QScintilla/ShellWindow.py" line="520" /> - <location filename="../ViewManager/ViewManager.py" line="2573" /> + <location filename="../ViewManager/ViewManager.py" line="2583" /> <source>Ctrl+Backspace</source> <translation /> </message> @@ -96241,15 +96254,15 @@ <location filename="../QScintilla/MiniEditor.py" line="1659" /> <location filename="../QScintilla/ShellWindow.py" line="531" /> <location filename="../QScintilla/ShellWindow.py" line="530" /> - <location filename="../ViewManager/ViewManager.py" line="2584" /> - <location filename="../ViewManager/ViewManager.py" line="2583" /> + <location filename="../ViewManager/ViewManager.py" line="2594" /> + <location filename="../ViewManager/ViewManager.py" line="2593" /> <source>Delete word to right</source> <translation>Apagar palavra à direita</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1661" /> <location filename="../QScintilla/ShellWindow.py" line="532" /> - <location filename="../ViewManager/ViewManager.py" line="2585" /> + <location filename="../ViewManager/ViewManager.py" line="2595" /> <source>Ctrl+Del</source> <translation /> </message> @@ -96258,15 +96271,15 @@ <location filename="../QScintilla/MiniEditor.py" line="1671" /> <location filename="../QScintilla/ShellWindow.py" line="543" /> <location filename="../QScintilla/ShellWindow.py" line="542" /> - <location filename="../ViewManager/ViewManager.py" line="2596" /> - <location filename="../ViewManager/ViewManager.py" line="2595" /> + <location filename="../ViewManager/ViewManager.py" line="2606" /> + <location filename="../ViewManager/ViewManager.py" line="2605" /> <source>Delete line to left</source> <translation>Apagar a linha à esquerda</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1674" /> <location filename="../QScintilla/ShellWindow.py" line="545" /> - <location filename="../ViewManager/ViewManager.py" line="2598" /> + <location filename="../ViewManager/ViewManager.py" line="2608" /> <source>Ctrl+Shift+Backspace</source> <translation /> </message> @@ -96275,22 +96288,22 @@ <location filename="../QScintilla/MiniEditor.py" line="1685" /> <location filename="../QScintilla/ShellWindow.py" line="557" /> <location filename="../QScintilla/ShellWindow.py" line="556" /> - <location filename="../ViewManager/ViewManager.py" line="2610" /> - <location filename="../ViewManager/ViewManager.py" line="2609" /> + <location filename="../ViewManager/ViewManager.py" line="2620" /> + <location filename="../ViewManager/ViewManager.py" line="2619" /> <source>Delete line to right</source> <translation>Apagar a linha à direita</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1694" /> <location filename="../QScintilla/ShellWindow.py" line="565" /> - <location filename="../ViewManager/ViewManager.py" line="2618" /> + <location filename="../ViewManager/ViewManager.py" line="2628" /> <source>Meta+K</source> <translation>Meta+K</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1699" /> <location filename="../QScintilla/ShellWindow.py" line="570" /> - <location filename="../ViewManager/ViewManager.py" line="2623" /> + <location filename="../ViewManager/ViewManager.py" line="2633" /> <source>Ctrl+Shift+Del</source> <translation /> </message> @@ -96299,38 +96312,38 @@ <location filename="../QScintilla/MiniEditor.py" line="1707" /> <location filename="../QScintilla/ShellWindow.py" line="469" /> <location filename="../QScintilla/ShellWindow.py" line="468" /> - <location filename="../ViewManager/ViewManager.py" line="2632" /> - <location filename="../ViewManager/ViewManager.py" line="2631" /> + <location filename="../ViewManager/ViewManager.py" line="2642" /> + <location filename="../ViewManager/ViewManager.py" line="2641" /> <source>Insert new line</source> <translation>Inserir linha nova</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1709" /> <location filename="../QScintilla/ShellWindow.py" line="470" /> - <location filename="../ViewManager/ViewManager.py" line="2633" /> + <location filename="../ViewManager/ViewManager.py" line="2643" /> <source>Return</source> <translation /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1710" /> <location filename="../QScintilla/ShellWindow.py" line="471" /> - <location filename="../ViewManager/ViewManager.py" line="2634" /> + <location filename="../ViewManager/ViewManager.py" line="2644" /> <source>Enter</source> <translation /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="2646" /> - <location filename="../ViewManager/ViewManager.py" line="2643" /> + <location filename="../ViewManager/ViewManager.py" line="2656" /> + <location filename="../ViewManager/ViewManager.py" line="2653" /> <source>Insert new line below current line</source> <translation>Inserir linha nova abaixo da atual</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="2649" /> + <location filename="../ViewManager/ViewManager.py" line="2659" /> <source>Shift+Return</source> <translation /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="2650" /> + <location filename="../ViewManager/ViewManager.py" line="2660" /> <source>Shift+Enter</source> <translation /> </message> @@ -96339,129 +96352,129 @@ <location filename="../QScintilla/MiniEditor.py" line="1719" /> <location filename="../QScintilla/ShellWindow.py" line="445" /> <location filename="../QScintilla/ShellWindow.py" line="444" /> - <location filename="../ViewManager/ViewManager.py" line="2659" /> - <location filename="../ViewManager/ViewManager.py" line="2658" /> + <location filename="../ViewManager/ViewManager.py" line="2669" /> + <location filename="../ViewManager/ViewManager.py" line="2668" /> <source>Delete current line</source> <translation>Apagar a linha atual</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1721" /> <location filename="../QScintilla/ShellWindow.py" line="446" /> - <location filename="../ViewManager/ViewManager.py" line="2660" /> + <location filename="../ViewManager/ViewManager.py" line="2670" /> <source>Ctrl+Shift+L</source> <translation /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1732" /> <location filename="../QScintilla/MiniEditor.py" line="1731" /> - <location filename="../ViewManager/ViewManager.py" line="2671" /> - <location filename="../ViewManager/ViewManager.py" line="2670" /> + <location filename="../ViewManager/ViewManager.py" line="2681" /> + <location filename="../ViewManager/ViewManager.py" line="2680" /> <source>Duplicate current line</source> <translation>Duplicar a linha atual</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1733" /> - <location filename="../ViewManager/ViewManager.py" line="2672" /> + <location filename="../ViewManager/ViewManager.py" line="2682" /> <source>Ctrl+D</source> <translation /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1746" /> <location filename="../QScintilla/MiniEditor.py" line="1743" /> - <location filename="../ViewManager/ViewManager.py" line="2685" /> - <location filename="../ViewManager/ViewManager.py" line="2682" /> + <location filename="../ViewManager/ViewManager.py" line="2695" /> + <location filename="../ViewManager/ViewManager.py" line="2692" /> <source>Swap current and previous lines</source> <translation>Trocar a linha atual pela anterior</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1749" /> - <location filename="../ViewManager/ViewManager.py" line="2688" /> + <location filename="../ViewManager/ViewManager.py" line="2698" /> <source>Ctrl+T</source> <translation /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1760" /> <location filename="../QScintilla/MiniEditor.py" line="1759" /> - <location filename="../ViewManager/ViewManager.py" line="2699" /> - <location filename="../ViewManager/ViewManager.py" line="2698" /> + <location filename="../ViewManager/ViewManager.py" line="2709" /> + <location filename="../ViewManager/ViewManager.py" line="2708" /> <source>Reverse selected lines</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1761" /> - <location filename="../ViewManager/ViewManager.py" line="2700" /> + <location filename="../ViewManager/ViewManager.py" line="2710" /> <source>Meta+Alt+R</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1772" /> <location filename="../QScintilla/MiniEditor.py" line="1771" /> - <location filename="../ViewManager/ViewManager.py" line="2711" /> - <location filename="../ViewManager/ViewManager.py" line="2710" /> + <location filename="../ViewManager/ViewManager.py" line="2721" /> + <location filename="../ViewManager/ViewManager.py" line="2720" /> <source>Cut current line</source> <translation>Cortar a linha atual</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1773" /> - <location filename="../ViewManager/ViewManager.py" line="2712" /> + <location filename="../ViewManager/ViewManager.py" line="2722" /> <source>Alt+Shift+L</source> <translation /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1784" /> <location filename="../QScintilla/MiniEditor.py" line="1783" /> - <location filename="../ViewManager/ViewManager.py" line="2723" /> - <location filename="../ViewManager/ViewManager.py" line="2722" /> + <location filename="../ViewManager/ViewManager.py" line="2733" /> + <location filename="../ViewManager/ViewManager.py" line="2732" /> <source>Copy current line</source> <translation>Copiar a linha atual</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1785" /> - <location filename="../ViewManager/ViewManager.py" line="2724" /> + <location filename="../ViewManager/ViewManager.py" line="2734" /> <source>Ctrl+Shift+T</source> <translation /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1796" /> <location filename="../QScintilla/MiniEditor.py" line="1795" /> - <location filename="../ViewManager/ViewManager.py" line="2735" /> - <location filename="../ViewManager/ViewManager.py" line="2734" /> + <location filename="../ViewManager/ViewManager.py" line="2745" /> + <location filename="../ViewManager/ViewManager.py" line="2744" /> <source>Toggle insert/overtype</source> <translation>Alternar inserir/sobreescrever</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1797" /> - <location filename="../ViewManager/ViewManager.py" line="2736" /> + <location filename="../ViewManager/ViewManager.py" line="2746" /> <source>Ins</source> <translation /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1840" /> <location filename="../QScintilla/MiniEditor.py" line="1839" /> - <location filename="../ViewManager/ViewManager.py" line="2747" /> - <location filename="../ViewManager/ViewManager.py" line="2746" /> + <location filename="../ViewManager/ViewManager.py" line="2757" /> + <location filename="../ViewManager/ViewManager.py" line="2756" /> <source>Move to end of display line</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1852" /> - <location filename="../ViewManager/ViewManager.py" line="2759" /> + <location filename="../ViewManager/ViewManager.py" line="2769" /> <source>Alt+End</source> <translation /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1862" /> <location filename="../QScintilla/MiniEditor.py" line="1859" /> - <location filename="../ViewManager/ViewManager.py" line="2769" /> - <location filename="../ViewManager/ViewManager.py" line="2766" /> + <location filename="../ViewManager/ViewManager.py" line="2779" /> + <location filename="../ViewManager/ViewManager.py" line="2776" /> <source>Extend selection to end of display line</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1882" /> <location filename="../QScintilla/MiniEditor.py" line="1881" /> - <location filename="../ViewManager/ViewManager.py" line="2789" /> - <location filename="../ViewManager/ViewManager.py" line="2788" /> + <location filename="../ViewManager/ViewManager.py" line="2799" /> + <location filename="../ViewManager/ViewManager.py" line="2798" /> <source>Formfeed</source> <translation type="unfinished" /> </message> @@ -96470,163 +96483,163 @@ <location filename="../QScintilla/MiniEditor.py" line="1893" /> <location filename="../QScintilla/ShellWindow.py" line="771" /> <location filename="../QScintilla/ShellWindow.py" line="770" /> - <location filename="../ViewManager/ViewManager.py" line="2801" /> - <location filename="../ViewManager/ViewManager.py" line="2800" /> + <location filename="../ViewManager/ViewManager.py" line="2811" /> + <location filename="../ViewManager/ViewManager.py" line="2810" /> <source>Escape</source> <translation /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1895" /> <location filename="../QScintilla/ShellWindow.py" line="772" /> - <location filename="../ViewManager/ViewManager.py" line="2802" /> + <location filename="../ViewManager/ViewManager.py" line="2812" /> <source>Esc</source> <translation /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1908" /> <location filename="../QScintilla/MiniEditor.py" line="1905" /> - <location filename="../ViewManager/ViewManager.py" line="2815" /> - <location filename="../ViewManager/ViewManager.py" line="2812" /> + <location filename="../ViewManager/ViewManager.py" line="2825" /> + <location filename="../ViewManager/ViewManager.py" line="2822" /> <source>Extend rectangular selection down one line</source> <translation>Aumentar a seleção retangular uma linha abaixo</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1911" /> - <location filename="../ViewManager/ViewManager.py" line="2818" /> + <location filename="../ViewManager/ViewManager.py" line="2828" /> <source>Alt+Ctrl+Down</source> <translation /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1919" /> - <location filename="../ViewManager/ViewManager.py" line="2826" /> + <location filename="../ViewManager/ViewManager.py" line="2836" /> <source>Meta+Alt+Shift+N</source> <translation>Meta+Alt+Shift+N</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1930" /> <location filename="../QScintilla/MiniEditor.py" line="1927" /> - <location filename="../ViewManager/ViewManager.py" line="2837" /> - <location filename="../ViewManager/ViewManager.py" line="2834" /> + <location filename="../ViewManager/ViewManager.py" line="2847" /> + <location filename="../ViewManager/ViewManager.py" line="2844" /> <source>Extend rectangular selection up one line</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1933" /> - <location filename="../ViewManager/ViewManager.py" line="2840" /> + <location filename="../ViewManager/ViewManager.py" line="2850" /> <source>Alt+Ctrl+Up</source> <translation /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1941" /> - <location filename="../ViewManager/ViewManager.py" line="2848" /> + <location filename="../ViewManager/ViewManager.py" line="2858" /> <source>Meta+Alt+Shift+P</source> <translation>Meta+Alt+Shift+P</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1952" /> <location filename="../QScintilla/MiniEditor.py" line="1949" /> - <location filename="../ViewManager/ViewManager.py" line="2859" /> - <location filename="../ViewManager/ViewManager.py" line="2856" /> + <location filename="../ViewManager/ViewManager.py" line="2869" /> + <location filename="../ViewManager/ViewManager.py" line="2866" /> <source>Extend rectangular selection left one character</source> <translation>Aumentar a seleção retangular um caratér à esquerda</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1955" /> - <location filename="../ViewManager/ViewManager.py" line="2862" /> + <location filename="../ViewManager/ViewManager.py" line="2872" /> <source>Alt+Ctrl+Left</source> <translation /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1963" /> - <location filename="../ViewManager/ViewManager.py" line="2870" /> + <location filename="../ViewManager/ViewManager.py" line="2880" /> <source>Meta+Alt+Shift+B</source> <translation>Meta+Alt+Shift+B</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1974" /> <location filename="../QScintilla/MiniEditor.py" line="1971" /> - <location filename="../ViewManager/ViewManager.py" line="2881" /> - <location filename="../ViewManager/ViewManager.py" line="2878" /> + <location filename="../ViewManager/ViewManager.py" line="2891" /> + <location filename="../ViewManager/ViewManager.py" line="2888" /> <source>Extend rectangular selection right one character</source> <translation>Aumentar a seleção retangular um caratér à direita</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1977" /> - <location filename="../ViewManager/ViewManager.py" line="2884" /> + <location filename="../ViewManager/ViewManager.py" line="2894" /> <source>Alt+Ctrl+Right</source> <translation /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1985" /> - <location filename="../ViewManager/ViewManager.py" line="2892" /> + <location filename="../ViewManager/ViewManager.py" line="2902" /> <source>Meta+Alt+Shift+F</source> <translation>Meta+Alt+Shift+F</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1998" /> <location filename="../QScintilla/MiniEditor.py" line="1993" /> - <location filename="../ViewManager/ViewManager.py" line="2905" /> - <location filename="../ViewManager/ViewManager.py" line="2900" /> + <location filename="../ViewManager/ViewManager.py" line="2915" /> + <location filename="../ViewManager/ViewManager.py" line="2910" /> <source>Extend rectangular selection to first visible character in document line</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2011" /> - <location filename="../ViewManager/ViewManager.py" line="2918" /> + <location filename="../ViewManager/ViewManager.py" line="2928" /> <source>Alt+Shift+Home</source> <translation /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2022" /> <location filename="../QScintilla/MiniEditor.py" line="2019" /> - <location filename="../ViewManager/ViewManager.py" line="2929" /> - <location filename="../ViewManager/ViewManager.py" line="2926" /> + <location filename="../ViewManager/ViewManager.py" line="2939" /> + <location filename="../ViewManager/ViewManager.py" line="2936" /> <source>Extend rectangular selection to end of document line</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2033" /> - <location filename="../ViewManager/ViewManager.py" line="2940" /> + <location filename="../ViewManager/ViewManager.py" line="2950" /> <source>Meta+Alt+Shift+E</source> <translation>Meta+Alt+Shift+E</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2038" /> - <location filename="../ViewManager/ViewManager.py" line="2945" /> + <location filename="../ViewManager/ViewManager.py" line="2955" /> <source>Alt+Shift+End</source> <translation>Alt+Shift+End</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2048" /> <location filename="../QScintilla/MiniEditor.py" line="2045" /> - <location filename="../ViewManager/ViewManager.py" line="2955" /> - <location filename="../ViewManager/ViewManager.py" line="2952" /> + <location filename="../ViewManager/ViewManager.py" line="2965" /> + <location filename="../ViewManager/ViewManager.py" line="2962" /> <source>Extend rectangular selection up one page</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2051" /> - <location filename="../ViewManager/ViewManager.py" line="2958" /> + <location filename="../ViewManager/ViewManager.py" line="2968" /> <source>Alt+Shift+PgUp</source> <translation>Alt+Shift+PgUp</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2064" /> <location filename="../QScintilla/MiniEditor.py" line="2061" /> - <location filename="../ViewManager/ViewManager.py" line="2971" /> - <location filename="../ViewManager/ViewManager.py" line="2968" /> + <location filename="../ViewManager/ViewManager.py" line="2981" /> + <location filename="../ViewManager/ViewManager.py" line="2978" /> <source>Extend rectangular selection down one page</source> <translation>Aumentar a seleção retangular uma página abaixo</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2067" /> - <location filename="../ViewManager/ViewManager.py" line="2974" /> + <location filename="../ViewManager/ViewManager.py" line="2984" /> <source>Alt+Shift+PgDown</source> <translation>Alt+Shift+PgDown</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2075" /> - <location filename="../ViewManager/ViewManager.py" line="2982" /> + <location filename="../ViewManager/ViewManager.py" line="2992" /> <source>Meta+Alt+Shift+V</source> <translation>Meta+Alt+Shift+V</translation> </message> @@ -96635,299 +96648,299 @@ <location filename="../QScintilla/MiniEditor.py" line="2549" /> <location filename="../QScintilla/MiniEditor.py" line="2084" /> <location filename="../QScintilla/MiniEditor.py" line="2083" /> - <location filename="../ViewManager/ViewManager.py" line="2991" /> - <location filename="../ViewManager/ViewManager.py" line="2990" /> + <location filename="../ViewManager/ViewManager.py" line="3001" /> + <location filename="../ViewManager/ViewManager.py" line="3000" /> <source>Duplicate current selection</source> <translation>Duplicar a seleção atual</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2551" /> <location filename="../QScintilla/MiniEditor.py" line="2085" /> - <location filename="../ViewManager/ViewManager.py" line="2992" /> + <location filename="../ViewManager/ViewManager.py" line="3002" /> <source>Ctrl+Shift+D</source> <translation /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2099" /> <location filename="../QScintilla/MiniEditor.py" line="2096" /> - <location filename="../ViewManager/ViewManager.py" line="3006" /> - <location filename="../ViewManager/ViewManager.py" line="3003" /> + <location filename="../ViewManager/ViewManager.py" line="3016" /> + <location filename="../ViewManager/ViewManager.py" line="3013" /> <source>Scroll to start of document</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2118" /> <location filename="../QScintilla/MiniEditor.py" line="2117" /> - <location filename="../ViewManager/ViewManager.py" line="3025" /> - <location filename="../ViewManager/ViewManager.py" line="3024" /> + <location filename="../ViewManager/ViewManager.py" line="3035" /> + <location filename="../ViewManager/ViewManager.py" line="3034" /> <source>Scroll to end of document</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2137" /> <location filename="../QScintilla/MiniEditor.py" line="2134" /> - <location filename="../ViewManager/ViewManager.py" line="3044" /> - <location filename="../ViewManager/ViewManager.py" line="3041" /> + <location filename="../ViewManager/ViewManager.py" line="3054" /> + <location filename="../ViewManager/ViewManager.py" line="3051" /> <source>Scroll vertically to center current line</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2147" /> - <location filename="../ViewManager/ViewManager.py" line="3054" /> + <location filename="../ViewManager/ViewManager.py" line="3064" /> <source>Meta+L</source> <translation>Meta+L</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2156" /> <location filename="../QScintilla/MiniEditor.py" line="2155" /> - <location filename="../ViewManager/ViewManager.py" line="3063" /> - <location filename="../ViewManager/ViewManager.py" line="3062" /> + <location filename="../ViewManager/ViewManager.py" line="3073" /> + <location filename="../ViewManager/ViewManager.py" line="3072" /> <source>Move to end of next word</source> <translation>Mover ao fim da palavra seguinte</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2175" /> <location filename="../QScintilla/MiniEditor.py" line="2172" /> - <location filename="../ViewManager/ViewManager.py" line="3082" /> - <location filename="../ViewManager/ViewManager.py" line="3079" /> + <location filename="../ViewManager/ViewManager.py" line="3092" /> + <location filename="../ViewManager/ViewManager.py" line="3089" /> <source>Extend selection to end of next word</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2198" /> <location filename="../QScintilla/MiniEditor.py" line="2195" /> - <location filename="../ViewManager/ViewManager.py" line="3105" /> - <location filename="../ViewManager/ViewManager.py" line="3102" /> + <location filename="../ViewManager/ViewManager.py" line="3115" /> + <location filename="../ViewManager/ViewManager.py" line="3112" /> <source>Move to end of previous word</source> <translation>Mover ao fim da palavra anterior</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2215" /> <location filename="../QScintilla/MiniEditor.py" line="2212" /> - <location filename="../ViewManager/ViewManager.py" line="3122" /> - <location filename="../ViewManager/ViewManager.py" line="3119" /> + <location filename="../ViewManager/ViewManager.py" line="3132" /> + <location filename="../ViewManager/ViewManager.py" line="3129" /> <source>Extend selection to end of previous word</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2232" /> <location filename="../QScintilla/MiniEditor.py" line="2229" /> - <location filename="../ViewManager/ViewManager.py" line="3139" /> - <location filename="../ViewManager/ViewManager.py" line="3136" /> + <location filename="../ViewManager/ViewManager.py" line="3149" /> + <location filename="../ViewManager/ViewManager.py" line="3146" /> <source>Move to start of document line</source> <translation>Mover ao início da linha do documento</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2242" /> - <location filename="../ViewManager/ViewManager.py" line="3149" /> + <location filename="../ViewManager/ViewManager.py" line="3159" /> <source>Meta+A</source> <translation>Meta+A</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2253" /> <location filename="../QScintilla/MiniEditor.py" line="2250" /> - <location filename="../ViewManager/ViewManager.py" line="3160" /> - <location filename="../ViewManager/ViewManager.py" line="3157" /> + <location filename="../ViewManager/ViewManager.py" line="3170" /> + <location filename="../ViewManager/ViewManager.py" line="3167" /> <source>Extend selection to start of document line</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2264" /> - <location filename="../ViewManager/ViewManager.py" line="3171" /> + <location filename="../ViewManager/ViewManager.py" line="3181" /> <source>Meta+Shift+A</source> <translation>Meta+Shift+A</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2277" /> <location filename="../QScintilla/MiniEditor.py" line="2273" /> - <location filename="../ViewManager/ViewManager.py" line="3184" /> - <location filename="../ViewManager/ViewManager.py" line="3180" /> + <location filename="../ViewManager/ViewManager.py" line="3194" /> + <location filename="../ViewManager/ViewManager.py" line="3190" /> <source>Extend rectangular selection to start of document line</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2289" /> - <location filename="../ViewManager/ViewManager.py" line="3196" /> + <location filename="../ViewManager/ViewManager.py" line="3206" /> <source>Meta+Alt+Shift+A</source> <translation>Meta+Alt+Shift+A</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2301" /> <location filename="../QScintilla/MiniEditor.py" line="2298" /> - <location filename="../ViewManager/ViewManager.py" line="3208" /> - <location filename="../ViewManager/ViewManager.py" line="3205" /> + <location filename="../ViewManager/ViewManager.py" line="3218" /> + <location filename="../ViewManager/ViewManager.py" line="3215" /> <source>Extend selection to start of display line</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2324" /> <location filename="../QScintilla/MiniEditor.py" line="2321" /> - <location filename="../ViewManager/ViewManager.py" line="3231" /> - <location filename="../ViewManager/ViewManager.py" line="3228" /> + <location filename="../ViewManager/ViewManager.py" line="3241" /> + <location filename="../ViewManager/ViewManager.py" line="3238" /> <source>Move to start of display or document line</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2342" /> <location filename="../QScintilla/MiniEditor.py" line="2338" /> - <location filename="../ViewManager/ViewManager.py" line="3249" /> - <location filename="../ViewManager/ViewManager.py" line="3245" /> + <location filename="../ViewManager/ViewManager.py" line="3259" /> + <location filename="../ViewManager/ViewManager.py" line="3255" /> <source>Extend selection to start of display or document line</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2361" /> <location filename="../QScintilla/MiniEditor.py" line="2357" /> - <location filename="../ViewManager/ViewManager.py" line="3268" /> - <location filename="../ViewManager/ViewManager.py" line="3264" /> + <location filename="../ViewManager/ViewManager.py" line="3278" /> + <location filename="../ViewManager/ViewManager.py" line="3274" /> <source>Move to first visible character in display or document line</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2381" /> <location filename="../QScintilla/MiniEditor.py" line="2376" /> - <location filename="../ViewManager/ViewManager.py" line="3288" /> - <location filename="../ViewManager/ViewManager.py" line="3283" /> + <location filename="../ViewManager/ViewManager.py" line="3298" /> + <location filename="../ViewManager/ViewManager.py" line="3293" /> <source>Extend selection to first visible character in display or document line</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2400" /> <location filename="../QScintilla/MiniEditor.py" line="2397" /> - <location filename="../ViewManager/ViewManager.py" line="3307" /> - <location filename="../ViewManager/ViewManager.py" line="3304" /> + <location filename="../ViewManager/ViewManager.py" line="3317" /> + <location filename="../ViewManager/ViewManager.py" line="3314" /> <source>Move to end of display or document line</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2417" /> <location filename="../QScintilla/MiniEditor.py" line="2414" /> - <location filename="../ViewManager/ViewManager.py" line="3324" /> - <location filename="../ViewManager/ViewManager.py" line="3321" /> + <location filename="../ViewManager/ViewManager.py" line="3334" /> + <location filename="../ViewManager/ViewManager.py" line="3331" /> <source>Extend selection to end of display or document line</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2432" /> <location filename="../QScintilla/MiniEditor.py" line="2431" /> - <location filename="../ViewManager/ViewManager.py" line="3339" /> - <location filename="../ViewManager/ViewManager.py" line="3338" /> + <location filename="../ViewManager/ViewManager.py" line="3349" /> + <location filename="../ViewManager/ViewManager.py" line="3348" /> <source>Stuttered move up one page</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2447" /> <location filename="../QScintilla/MiniEditor.py" line="2444" /> - <location filename="../ViewManager/ViewManager.py" line="3354" /> - <location filename="../ViewManager/ViewManager.py" line="3351" /> + <location filename="../ViewManager/ViewManager.py" line="3364" /> + <location filename="../ViewManager/ViewManager.py" line="3361" /> <source>Stuttered extend selection up one page</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2464" /> <location filename="../QScintilla/MiniEditor.py" line="2461" /> - <location filename="../ViewManager/ViewManager.py" line="3371" /> - <location filename="../ViewManager/ViewManager.py" line="3368" /> + <location filename="../ViewManager/ViewManager.py" line="3381" /> + <location filename="../ViewManager/ViewManager.py" line="3378" /> <source>Stuttered move down one page</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2481" /> <location filename="../QScintilla/MiniEditor.py" line="2478" /> - <location filename="../ViewManager/ViewManager.py" line="3388" /> - <location filename="../ViewManager/ViewManager.py" line="3385" /> + <location filename="../ViewManager/ViewManager.py" line="3398" /> + <location filename="../ViewManager/ViewManager.py" line="3395" /> <source>Stuttered extend selection down one page</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2498" /> <location filename="../QScintilla/MiniEditor.py" line="2495" /> - <location filename="../ViewManager/ViewManager.py" line="3405" /> - <location filename="../ViewManager/ViewManager.py" line="3402" /> + <location filename="../ViewManager/ViewManager.py" line="3415" /> + <location filename="../ViewManager/ViewManager.py" line="3412" /> <source>Delete right to end of next word</source> <translation>Apagar até ao final da proxima palavra</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2508" /> - <location filename="../ViewManager/ViewManager.py" line="3415" /> + <location filename="../ViewManager/ViewManager.py" line="3425" /> <source>Alt+Del</source> <translation>Alt+Del</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2519" /> <location filename="../QScintilla/MiniEditor.py" line="2516" /> - <location filename="../ViewManager/ViewManager.py" line="3426" /> - <location filename="../ViewManager/ViewManager.py" line="3423" /> + <location filename="../ViewManager/ViewManager.py" line="3436" /> + <location filename="../ViewManager/ViewManager.py" line="3433" /> <source>Move selected lines up one line</source> <translation>Mover as linhas selecionadas acima uma linha</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2536" /> <location filename="../QScintilla/MiniEditor.py" line="2533" /> - <location filename="../ViewManager/ViewManager.py" line="3443" /> - <location filename="../ViewManager/ViewManager.py" line="3440" /> + <location filename="../ViewManager/ViewManager.py" line="3453" /> + <location filename="../ViewManager/ViewManager.py" line="3450" /> <source>Move selected lines down one line</source> <translation>Mover as linhas selecionadas abaixo uma linha</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1810" /> <location filename="../QScintilla/MiniEditor.py" line="1807" /> - <location filename="../ViewManager/ViewManager.py" line="3461" /> - <location filename="../ViewManager/ViewManager.py" line="3458" /> + <location filename="../ViewManager/ViewManager.py" line="3471" /> + <location filename="../ViewManager/ViewManager.py" line="3468" /> <source>Convert selection to lower case</source> <translation>Convertir a seleção para minúsculas</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1813" /> - <location filename="../ViewManager/ViewManager.py" line="3464" /> + <location filename="../ViewManager/ViewManager.py" line="3474" /> <source>Alt+Shift+U</source> <translation /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1826" /> <location filename="../QScintilla/MiniEditor.py" line="1823" /> - <location filename="../ViewManager/ViewManager.py" line="3477" /> - <location filename="../ViewManager/ViewManager.py" line="3474" /> + <location filename="../ViewManager/ViewManager.py" line="3487" /> + <location filename="../ViewManager/ViewManager.py" line="3484" /> <source>Convert selection to upper case</source> <translation>Convertir a seleção para maiúsculas</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1829" /> - <location filename="../ViewManager/ViewManager.py" line="3480" /> + <location filename="../ViewManager/ViewManager.py" line="3490" /> <source>Ctrl+Shift+U</source> <translation /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3506" /> + <location filename="../ViewManager/ViewManager.py" line="3516" /> <source>&Edit</source> <translation>&Editar</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3564" /> - <location filename="../ViewManager/ViewManager.py" line="3562" /> + <location filename="../ViewManager/ViewManager.py" line="3574" /> + <location filename="../ViewManager/ViewManager.py" line="3572" /> <source>Edit</source> <translation>Editar</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2568" /> <location filename="../QScintilla/ShellWindow.py" line="927" /> - <location filename="../ViewManager/ViewManager.py" line="4167" /> - <location filename="../ViewManager/ViewManager.py" line="4165" /> - <location filename="../ViewManager/ViewManager.py" line="3598" /> + <location filename="../ViewManager/ViewManager.py" line="4177" /> + <location filename="../ViewManager/ViewManager.py" line="4175" /> + <location filename="../ViewManager/ViewManager.py" line="3608" /> <source>Search</source> <translation>Procurar</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2570" /> <location filename="../QScintilla/ShellWindow.py" line="929" /> - <location filename="../ViewManager/ViewManager.py" line="3600" /> + <location filename="../ViewManager/ViewManager.py" line="3610" /> <source>&Search...</source> <translation>&Procurar...</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2572" /> <location filename="../QScintilla/ShellWindow.py" line="931" /> - <location filename="../ViewManager/ViewManager.py" line="3602" /> + <location filename="../ViewManager/ViewManager.py" line="3612" /> <source>Ctrl+F</source> <comment>Search|Search</comment> <translation /> @@ -96935,34 +96948,34 @@ <message> <location filename="../QScintilla/MiniEditor.py" line="2579" /> <location filename="../QScintilla/ShellWindow.py" line="938" /> - <location filename="../ViewManager/ViewManager.py" line="3609" /> + <location filename="../ViewManager/ViewManager.py" line="3619" /> <source>Search for a text</source> <translation>Procurar um texto</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2582" /> - <location filename="../ViewManager/ViewManager.py" line="3612" /> + <location filename="../ViewManager/ViewManager.py" line="3622" /> <source><b>Search</b><p>Search for some text in the current editor. A dialog is shown to enter the searchtext and options for the search.</p></source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2594" /> <location filename="../QScintilla/ShellWindow.py" line="953" /> - <location filename="../ViewManager/ViewManager.py" line="3624" /> + <location filename="../ViewManager/ViewManager.py" line="3634" /> <source>Search next</source> <translation>Procurar próximo</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2596" /> <location filename="../QScintilla/ShellWindow.py" line="955" /> - <location filename="../ViewManager/ViewManager.py" line="3626" /> + <location filename="../ViewManager/ViewManager.py" line="3636" /> <source>Search &next</source> <translation>Procurar &próximo</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2598" /> <location filename="../QScintilla/ShellWindow.py" line="957" /> - <location filename="../ViewManager/ViewManager.py" line="3628" /> + <location filename="../ViewManager/ViewManager.py" line="3638" /> <source>F3</source> <comment>Search|Search next</comment> <translation /> @@ -96970,34 +96983,34 @@ <message> <location filename="../QScintilla/MiniEditor.py" line="2605" /> <location filename="../QScintilla/ShellWindow.py" line="964" /> - <location filename="../ViewManager/ViewManager.py" line="3635" /> + <location filename="../ViewManager/ViewManager.py" line="3645" /> <source>Search next occurrence of text</source> <translation>Procurar a próxima ocurrência do texto</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2608" /> - <location filename="../ViewManager/ViewManager.py" line="3638" /> + <location filename="../ViewManager/ViewManager.py" line="3648" /> <source><b>Search next</b><p>Search the next occurrence of some text in the current editor. The previously entered searchtext and options are reused.</p></source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2620" /> <location filename="../QScintilla/ShellWindow.py" line="981" /> - <location filename="../ViewManager/ViewManager.py" line="3650" /> + <location filename="../ViewManager/ViewManager.py" line="3660" /> <source>Search previous</source> <translation>Procurar anterior</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2622" /> <location filename="../QScintilla/ShellWindow.py" line="983" /> - <location filename="../ViewManager/ViewManager.py" line="3652" /> + <location filename="../ViewManager/ViewManager.py" line="3662" /> <source>Search &previous</source> <translation>Procurar &anterior</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2624" /> <location filename="../QScintilla/ShellWindow.py" line="985" /> - <location filename="../ViewManager/ViewManager.py" line="3654" /> + <location filename="../ViewManager/ViewManager.py" line="3664" /> <source>Shift+F3</source> <comment>Search|Search previous</comment> <translation /> @@ -97005,436 +97018,436 @@ <message> <location filename="../QScintilla/MiniEditor.py" line="2633" /> <location filename="../QScintilla/ShellWindow.py" line="994" /> - <location filename="../ViewManager/ViewManager.py" line="3663" /> + <location filename="../ViewManager/ViewManager.py" line="3673" /> <source>Search previous occurrence of text</source> <translation>Procurar ocurrência anterior do texto</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2638" /> - <location filename="../ViewManager/ViewManager.py" line="3668" /> + <location filename="../ViewManager/ViewManager.py" line="3678" /> <source><b>Search previous</b><p>Search the previous occurrence of some text in the current editor. The previously entered searchtext and options are reused.</p></source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2652" /> <location filename="../QScintilla/MiniEditor.py" line="2650" /> - <location filename="../ViewManager/ViewManager.py" line="3682" /> - <location filename="../ViewManager/ViewManager.py" line="3680" /> + <location filename="../ViewManager/ViewManager.py" line="3692" /> + <location filename="../ViewManager/ViewManager.py" line="3690" /> <source>Clear search markers</source> <translation>Limpar marcadores de pesquisa</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2654" /> - <location filename="../ViewManager/ViewManager.py" line="3684" /> + <location filename="../ViewManager/ViewManager.py" line="3694" /> <source>Ctrl+3</source> <comment>Search|Clear search markers</comment> <translation /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2663" /> - <location filename="../ViewManager/ViewManager.py" line="3693" /> + <location filename="../ViewManager/ViewManager.py" line="3703" /> <source>Clear all displayed search markers</source> <translation>Limpar todos os marcadores de pesquisa mostrados</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2668" /> - <location filename="../ViewManager/ViewManager.py" line="3698" /> + <location filename="../ViewManager/ViewManager.py" line="3708" /> <source><b>Clear search markers</b><p>Clear all displayed search markers.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3710" /> - <location filename="../ViewManager/ViewManager.py" line="3708" /> + <location filename="../ViewManager/ViewManager.py" line="3720" /> + <location filename="../ViewManager/ViewManager.py" line="3718" /> <source>Search current word forward</source> <translation>Procurar para a frente à palavra atual</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3712" /> + <location filename="../ViewManager/ViewManager.py" line="3722" /> <source>Ctrl+.</source> <comment>Search|Search current word forward</comment> <translation>Ctrl+.</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3721" /> + <location filename="../ViewManager/ViewManager.py" line="3731" /> <source>Search next occurrence of the current word</source> <translation>Procurar a próxima ocurrência da palavra atual</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3726" /> + <location filename="../ViewManager/ViewManager.py" line="3736" /> <source><b>Search current word forward</b><p>Search the next occurrence of the current word of the current editor.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3739" /> - <location filename="../ViewManager/ViewManager.py" line="3737" /> + <location filename="../ViewManager/ViewManager.py" line="3749" /> + <location filename="../ViewManager/ViewManager.py" line="3747" /> <source>Search current word backward</source> <translation>Procurar para trás à palavra atual</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3741" /> + <location filename="../ViewManager/ViewManager.py" line="3751" /> <source>Ctrl+,</source> <comment>Search|Search current word backward</comment> <translation>Ctrl+,</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3750" /> + <location filename="../ViewManager/ViewManager.py" line="3760" /> <source>Search previous occurrence of the current word</source> <translation>Procurar ocurrência anterior da palavra atual</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3755" /> + <location filename="../ViewManager/ViewManager.py" line="3765" /> <source><b>Search current word backward</b><p>Search the previous occurrence of the current word of the current editor.</p></source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2678" /> - <location filename="../ViewManager/ViewManager.py" line="3766" /> + <location filename="../ViewManager/ViewManager.py" line="3776" /> <source>Replace</source> <translation>Substituir</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2679" /> - <location filename="../ViewManager/ViewManager.py" line="3767" /> + <location filename="../ViewManager/ViewManager.py" line="3777" /> <source>&Replace...</source> <translation>&Substituir...</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2681" /> - <location filename="../ViewManager/ViewManager.py" line="3769" /> + <location filename="../ViewManager/ViewManager.py" line="3779" /> <source>Ctrl+R</source> <comment>Search|Replace</comment> <translation /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2688" /> - <location filename="../ViewManager/ViewManager.py" line="3776" /> + <location filename="../ViewManager/ViewManager.py" line="3786" /> <source>Replace some text</source> <translation>Substituir algum texto</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2691" /> - <location filename="../ViewManager/ViewManager.py" line="3779" /> + <location filename="../ViewManager/ViewManager.py" line="3789" /> <source><b>Replace</b><p>Search for some text in the current editor and replace it. A dialog is shown to enter the searchtext, the replacement text and options for the search and replace.</p></source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2705" /> <location filename="../QScintilla/MiniEditor.py" line="2703" /> - <location filename="../ViewManager/ViewManager.py" line="3793" /> - <location filename="../ViewManager/ViewManager.py" line="3791" /> + <location filename="../ViewManager/ViewManager.py" line="3803" /> + <location filename="../ViewManager/ViewManager.py" line="3801" /> <source>Replace and Search</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2707" /> - <location filename="../ViewManager/ViewManager.py" line="3795" /> + <location filename="../ViewManager/ViewManager.py" line="3805" /> <source>Meta+R</source> <comment>Search|Replace and Search</comment> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2716" /> - <location filename="../ViewManager/ViewManager.py" line="3804" /> + <location filename="../ViewManager/ViewManager.py" line="3814" /> <source>Replace the found text and search the next occurrence</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2721" /> - <location filename="../ViewManager/ViewManager.py" line="3809" /> + <location filename="../ViewManager/ViewManager.py" line="3819" /> <source><b>Replace and Search</b><p>Replace the found occurrence of text in the current editor and search for the next one. The previously entered search text and options are reused.</p></source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2737" /> <location filename="../QScintilla/MiniEditor.py" line="2735" /> - <location filename="../ViewManager/ViewManager.py" line="3825" /> - <location filename="../ViewManager/ViewManager.py" line="3823" /> + <location filename="../ViewManager/ViewManager.py" line="3835" /> + <location filename="../ViewManager/ViewManager.py" line="3833" /> <source>Replace Occurrence</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2739" /> - <location filename="../ViewManager/ViewManager.py" line="3827" /> + <location filename="../ViewManager/ViewManager.py" line="3837" /> <source>Ctrl+Meta+R</source> <comment>Search|Replace Occurrence</comment> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2748" /> - <location filename="../ViewManager/ViewManager.py" line="3836" /> + <location filename="../ViewManager/ViewManager.py" line="3846" /> <source>Replace the found text</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2751" /> - <location filename="../ViewManager/ViewManager.py" line="3839" /> + <location filename="../ViewManager/ViewManager.py" line="3849" /> <source><b>Replace Occurrence</b><p>Replace the found occurrence of the search text in the current editor.</p></source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2764" /> <location filename="../QScintilla/MiniEditor.py" line="2762" /> - <location filename="../ViewManager/ViewManager.py" line="3852" /> - <location filename="../ViewManager/ViewManager.py" line="3850" /> + <location filename="../ViewManager/ViewManager.py" line="3862" /> + <location filename="../ViewManager/ViewManager.py" line="3860" /> <source>Replace All</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2766" /> - <location filename="../ViewManager/ViewManager.py" line="3854" /> + <location filename="../ViewManager/ViewManager.py" line="3864" /> <source>Shift+Meta+R</source> <comment>Search|Replace All</comment> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2775" /> - <location filename="../ViewManager/ViewManager.py" line="3863" /> + <location filename="../ViewManager/ViewManager.py" line="3873" /> <source>Replace search text occurrences</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2778" /> - <location filename="../ViewManager/ViewManager.py" line="3866" /> + <location filename="../ViewManager/ViewManager.py" line="3876" /> <source><b>Replace All</b><p>Replace all occurrences of the search text in the current editor.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3888" /> - <location filename="../ViewManager/ViewManager.py" line="3877" /> + <location filename="../ViewManager/ViewManager.py" line="3898" /> + <location filename="../ViewManager/ViewManager.py" line="3887" /> <source>Goto Line</source> <translation>Ir à linha</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3879" /> + <location filename="../ViewManager/ViewManager.py" line="3889" /> <source>&Goto Line...</source> <translation>Ir à &Linha...</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3881" /> - <source>Ctrl+G</source> - <comment>Search|Goto Line</comment> - <translation /> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="3891" /> + <source>Ctrl+G</source> + <comment>Search|Goto Line</comment> + <translation /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="3901" /> <source><b>Goto Line</b><p>Go to a specific line of text in the current editor. A dialog is shown to enter the linenumber.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3913" /> - <location filename="../ViewManager/ViewManager.py" line="3902" /> + <location filename="../ViewManager/ViewManager.py" line="3923" /> + <location filename="../ViewManager/ViewManager.py" line="3912" /> <source>Goto Brace</source> <translation>Ir ao Parentesis</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3904" /> + <location filename="../ViewManager/ViewManager.py" line="3914" /> <source>Goto &Brace</source> <translation>Ir ao &Parentesis</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3906" /> - <source>Ctrl+L</source> - <comment>Search|Goto Brace</comment> - <translation /> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="3916" /> + <source>Ctrl+L</source> + <comment>Search|Goto Brace</comment> + <translation /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="3926" /> <source><b>Goto Brace</b><p>Go to the matching brace in the current editor.</p></source> <translation><b>Ir ao Parentesis</b><p>Ir ao parentesis par correspondente no editor atual.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3939" /> - <location filename="../ViewManager/ViewManager.py" line="3926" /> + <location filename="../ViewManager/ViewManager.py" line="3949" /> + <location filename="../ViewManager/ViewManager.py" line="3936" /> <source>Goto Last Edit Location</source> <translation>Ir ao Local da Última Edição</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3928" /> + <location filename="../ViewManager/ViewManager.py" line="3938" /> <source>Goto Last &Edit Location</source> <translation>Ir ao Local da Última &Edição</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3930" /> + <location filename="../ViewManager/ViewManager.py" line="3940" /> <source>Ctrl+Shift+G</source> <comment>Search|Goto Last Edit Location</comment> <translation /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3942" /> + <location filename="../ViewManager/ViewManager.py" line="3952" /> <source><b>Goto Last Edit Location</b><p>Go to the location of the last edit in the current editor.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3954" /> - <location filename="../ViewManager/ViewManager.py" line="3953" /> + <location filename="../ViewManager/ViewManager.py" line="3964" /> + <location filename="../ViewManager/ViewManager.py" line="3963" /> <source>Goto Previous Method or Class</source> <translation>Ir ao Método ou Classe Anterior</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3956" /> + <location filename="../ViewManager/ViewManager.py" line="3966" /> <source>Ctrl+Shift+Up</source> <comment>Search|Goto Previous Method or Class</comment> <translation /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3967" /> + <location filename="../ViewManager/ViewManager.py" line="3977" /> <source>Go to the previous method or class definition</source> <translation>Ir à definição de método ou classe anterior</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3972" /> + <location filename="../ViewManager/ViewManager.py" line="3982" /> <source><b>Goto Previous Method or Class</b><p>Goes to the line of the previous method or class definition and highlights the name.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3984" /> - <location filename="../ViewManager/ViewManager.py" line="3983" /> + <location filename="../ViewManager/ViewManager.py" line="3994" /> + <location filename="../ViewManager/ViewManager.py" line="3993" /> <source>Goto Next Method or Class</source> <translation>Ir ao Método ou Classe Seguinte</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3986" /> + <location filename="../ViewManager/ViewManager.py" line="3996" /> <source>Ctrl+Shift+Down</source> <comment>Search|Goto Next Method or Class</comment> <translation /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3995" /> + <location filename="../ViewManager/ViewManager.py" line="4005" /> <source>Go to the next method or class definition</source> <translation>Ir à definição de método ou classe seguinte</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4000" /> + <location filename="../ViewManager/ViewManager.py" line="4010" /> <source><b>Goto Next Method or Class</b><p>Goes to the line of the next method or class definition and highlights the name.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4013" /> + <location filename="../ViewManager/ViewManager.py" line="4023" /> <source>Search in Files</source> <translation>Procurar em Ficheiros</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4015" /> + <location filename="../ViewManager/ViewManager.py" line="4025" /> <source>Search in &Files...</source> <translation>Procurar em &Ficheiros...</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4017" /> + <location filename="../ViewManager/ViewManager.py" line="4027" /> <source>Shift+Ctrl+F</source> <comment>Search|Search Files</comment> <translation /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4026" /> + <location filename="../ViewManager/ViewManager.py" line="4036" /> <source>Search for a text in files</source> <translation>Procurar um texto em ficheiros</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4029" /> + <location filename="../ViewManager/ViewManager.py" line="4039" /> <source><b>Search in Files</b><p>Search for some text in the files of a directory tree or the project. A window is shown to enter the searchtext and options for the search and to display the result.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4041" /> + <location filename="../ViewManager/ViewManager.py" line="4051" /> <source>Replace in Files</source> <translation>Substituir em Ficheiros</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4042" /> + <location filename="../ViewManager/ViewManager.py" line="4052" /> <source>Replace in F&iles...</source> <translation>Substituir em F&icheiros...</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4044" /> + <location filename="../ViewManager/ViewManager.py" line="4054" /> <source>Shift+Ctrl+R</source> <comment>Search|Replace in Files</comment> <translation /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4053" /> + <location filename="../ViewManager/ViewManager.py" line="4063" /> <source>Search for a text in files and replace it</source> <translation>Procurar e substituir um texto em ficheiros</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4058" /> + <location filename="../ViewManager/ViewManager.py" line="4068" /> <source><b>Replace in Files</b><p>Search for some text in the files of a directory tree or the project and replace it. A window is shown to enter the searchtext, the replacement text and options for the search and to display the result.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4071" /> + <location filename="../ViewManager/ViewManager.py" line="4081" /> <source>Search in Open Files</source> <translation>Procurar em Ficheiros Abertos</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4073" /> + <location filename="../ViewManager/ViewManager.py" line="4083" /> <source>Search in Open Files...</source> <translation>Procurar em Ficheiros Abertos...</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4075" /> + <location filename="../ViewManager/ViewManager.py" line="4085" /> <source>Meta+Ctrl+Alt+F</source> <comment>Search|Search Open Files</comment> <translation>Meta+Ctrl+Alt+F</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4084" /> + <location filename="../ViewManager/ViewManager.py" line="4094" /> <source>Search for a text in open files</source> <translation>Procurar um texto nos ficheiros abertos</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4087" /> + <location filename="../ViewManager/ViewManager.py" line="4097" /> <source><b>Search in Open Files</b><p>Search for some text in the currently opened files. A window is shown to enter the search text and options for the search and to display the result.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4099" /> + <location filename="../ViewManager/ViewManager.py" line="4109" /> <source>Replace in Open Files</source> <translation>Substituir em Ficheiros Abertos</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4100" /> + <location filename="../ViewManager/ViewManager.py" line="4110" /> <source>Replace in Open Files...</source> <translation>Substituir em Ficheiros Abertos...</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4102" /> + <location filename="../ViewManager/ViewManager.py" line="4112" /> <source>Meta+Ctrl+Alt+R</source> <comment>Search|Replace in Open Files</comment> <translation>Meta+Ctrl+Alt+R</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4111" /> + <location filename="../ViewManager/ViewManager.py" line="4121" /> <source>Search for a text in open files and replace it</source> <translation>Procurar e substituir um texto em ficheiros abertos</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4116" /> + <location filename="../ViewManager/ViewManager.py" line="4126" /> <source><b>Replace in Open Files</b><p>Search for some text in the currently opened files and replace it. A window is shown to enter the search text, the replacement text and options for the search and to display the result.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4137" /> + <location filename="../ViewManager/ViewManager.py" line="4147" /> <source>&Search</source> <translation>&Procurar</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2793" /> <location filename="../QScintilla/ShellWindow.py" line="1020" /> - <location filename="../ViewManager/ViewManager.py" line="4208" /> + <location filename="../ViewManager/ViewManager.py" line="4218" /> <source>Zoom in</source> <translation>Aproximar</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2795" /> <location filename="../QScintilla/ShellWindow.py" line="1022" /> - <location filename="../ViewManager/ViewManager.py" line="4210" /> + <location filename="../ViewManager/ViewManager.py" line="4220" /> <source>Zoom &in</source> <translation>Apro&ximar</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2797" /> <location filename="../QScintilla/ShellWindow.py" line="1024" /> - <location filename="../ViewManager/ViewManager.py" line="4212" /> + <location filename="../ViewManager/ViewManager.py" line="4222" /> <source>Ctrl++</source> <comment>View|Zoom in</comment> <translation /> @@ -97442,7 +97455,7 @@ <message> <location filename="../QScintilla/MiniEditor.py" line="2800" /> <location filename="../QScintilla/ShellWindow.py" line="1027" /> - <location filename="../ViewManager/ViewManager.py" line="4215" /> + <location filename="../ViewManager/ViewManager.py" line="4225" /> <source>Zoom In</source> <comment>View|Zoom in</comment> <translation>Aproximar</translation> @@ -97450,35 +97463,35 @@ <message> <location filename="../QScintilla/MiniEditor.py" line="2806" /> <location filename="../QScintilla/ShellWindow.py" line="1033" /> - <location filename="../ViewManager/ViewManager.py" line="4221" /> + <location filename="../ViewManager/ViewManager.py" line="4231" /> <source>Zoom in on the text</source> <translation>Aproximar no texto</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2809" /> <location filename="../QScintilla/ShellWindow.py" line="1036" /> - <location filename="../ViewManager/ViewManager.py" line="4224" /> + <location filename="../ViewManager/ViewManager.py" line="4234" /> <source><b>Zoom in</b><p>Zoom in on the text. This makes the text bigger.</p></source> <translation><b>Aproximar</b><p>Aproximar no texto. Isto faz o texto mais grande.</p></translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2819" /> <location filename="../QScintilla/ShellWindow.py" line="1046" /> - <location filename="../ViewManager/ViewManager.py" line="4234" /> + <location filename="../ViewManager/ViewManager.py" line="4244" /> <source>Zoom out</source> <translation>Afastar</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2821" /> <location filename="../QScintilla/ShellWindow.py" line="1048" /> - <location filename="../ViewManager/ViewManager.py" line="4236" /> + <location filename="../ViewManager/ViewManager.py" line="4246" /> <source>Zoom &out</source> <translation>A&fastar</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2823" /> <location filename="../QScintilla/ShellWindow.py" line="1050" /> - <location filename="../ViewManager/ViewManager.py" line="4238" /> + <location filename="../ViewManager/ViewManager.py" line="4248" /> <source>Ctrl+-</source> <comment>View|Zoom out</comment> <translation /> @@ -97486,7 +97499,7 @@ <message> <location filename="../QScintilla/MiniEditor.py" line="2826" /> <location filename="../QScintilla/ShellWindow.py" line="1053" /> - <location filename="../ViewManager/ViewManager.py" line="4241" /> + <location filename="../ViewManager/ViewManager.py" line="4251" /> <source>Zoom Out</source> <comment>View|Zoom out</comment> <translation>Afastar</translation> @@ -97494,35 +97507,35 @@ <message> <location filename="../QScintilla/MiniEditor.py" line="2832" /> <location filename="../QScintilla/ShellWindow.py" line="1059" /> - <location filename="../ViewManager/ViewManager.py" line="4247" /> + <location filename="../ViewManager/ViewManager.py" line="4257" /> <source>Zoom out on the text</source> <translation>Afastar no texto</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2835" /> <location filename="../QScintilla/ShellWindow.py" line="1062" /> - <location filename="../ViewManager/ViewManager.py" line="4250" /> + <location filename="../ViewManager/ViewManager.py" line="4260" /> <source><b>Zoom out</b><p>Zoom out on the text. This makes the text smaller.</p></source> <translation><b>Afastar</b><p>Afastar no texto. Isto faz o texto mais pequeno.</p></translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2845" /> <location filename="../QScintilla/ShellWindow.py" line="1072" /> - <location filename="../ViewManager/ViewManager.py" line="4260" /> + <location filename="../ViewManager/ViewManager.py" line="4270" /> <source>Zoom reset</source> <translation>Restaurar zoom</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2847" /> <location filename="../QScintilla/ShellWindow.py" line="1074" /> - <location filename="../ViewManager/ViewManager.py" line="4262" /> + <location filename="../ViewManager/ViewManager.py" line="4272" /> <source>Zoom &reset</source> <translation>&Restaurar zoom</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2849" /> <location filename="../QScintilla/ShellWindow.py" line="1076" /> - <location filename="../ViewManager/ViewManager.py" line="4264" /> + <location filename="../ViewManager/ViewManager.py" line="4274" /> <source>Ctrl+0</source> <comment>View|Zoom reset</comment> <translation>Ctrl+0</translation> @@ -97530,894 +97543,894 @@ <message> <location filename="../QScintilla/MiniEditor.py" line="2856" /> <location filename="../QScintilla/ShellWindow.py" line="1083" /> - <location filename="../ViewManager/ViewManager.py" line="4271" /> + <location filename="../ViewManager/ViewManager.py" line="4281" /> <source>Reset the zoom of the text</source> <translation>Reiniciar o zoom do texto</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2859" /> <location filename="../QScintilla/ShellWindow.py" line="1086" /> - <location filename="../ViewManager/ViewManager.py" line="4274" /> + <location filename="../ViewManager/ViewManager.py" line="4284" /> <source><b>Zoom reset</b><p>Reset the zoom of the text. This sets the zoom factor to 100%.</p></source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2870" /> <location filename="../QScintilla/ShellWindow.py" line="1097" /> - <location filename="../ViewManager/ViewManager.py" line="4285" /> + <location filename="../ViewManager/ViewManager.py" line="4295" /> <source>Zoom</source> <translation /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2872" /> <location filename="../QScintilla/ShellWindow.py" line="1099" /> - <location filename="../ViewManager/ViewManager.py" line="4287" /> + <location filename="../ViewManager/ViewManager.py" line="4297" /> <source>&Zoom</source> <translation /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2879" /> <location filename="../QScintilla/ShellWindow.py" line="1106" /> - <location filename="../ViewManager/ViewManager.py" line="4294" /> + <location filename="../ViewManager/ViewManager.py" line="4304" /> <source>Zoom the text</source> <translation>Zoom no texto</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2882" /> <location filename="../QScintilla/ShellWindow.py" line="1109" /> - <location filename="../ViewManager/ViewManager.py" line="4297" /> + <location filename="../ViewManager/ViewManager.py" line="4307" /> <source><b>Zoom</b><p>Zoom the text. This opens a dialog where the desired size can be entered.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4316" /> - <location filename="../ViewManager/ViewManager.py" line="4308" /> + <location filename="../ViewManager/ViewManager.py" line="4326" /> + <location filename="../ViewManager/ViewManager.py" line="4318" /> <source>Toggle all folds</source> <translation>Alternar as dobras todas</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4309" /> - <source>&Toggle all folds</source> - <translation type="unfinished">Alternar dobras &todas</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="4319" /> + <source>&Toggle all folds</source> + <translation type="unfinished">Alternar dobras &todas</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4329" /> <source><b>Toggle all folds</b><p>Toggle all folds of the current editor.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4341" /> - <location filename="../ViewManager/ViewManager.py" line="4329" /> + <location filename="../ViewManager/ViewManager.py" line="4351" /> + <location filename="../ViewManager/ViewManager.py" line="4339" /> <source>Toggle all folds (including children)</source> <translation>Alternar as dobras todas (incluindo filhos)</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4332" /> + <location filename="../ViewManager/ViewManager.py" line="4342" /> <source>Toggle all &folds (including children)</source> <translation>Alternar &dobras todas (incluindo filhos)</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4346" /> + <location filename="../ViewManager/ViewManager.py" line="4356" /> <source><b>Toggle all folds (including children)</b><p>Toggle all folds of the current editor including all children.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4365" /> - <location filename="../ViewManager/ViewManager.py" line="4357" /> + <location filename="../ViewManager/ViewManager.py" line="4375" /> + <location filename="../ViewManager/ViewManager.py" line="4367" /> <source>Toggle current fold</source> <translation>Alternar a dobra atual</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4358" /> - <source>Toggle &current fold</source> - <translation>Alternar dobra &atual</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="4368" /> + <source>Toggle &current fold</source> + <translation>Alternar dobra &atual</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4378" /> <source><b>Toggle current fold</b><p>Toggle the folds of the current line of the current editor.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4387" /> - <location filename="../ViewManager/ViewManager.py" line="4379" /> + <location filename="../ViewManager/ViewManager.py" line="4397" /> + <location filename="../ViewManager/ViewManager.py" line="4389" /> <source>Clear all folds</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4380" /> - <source>Clear &all folds</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="4390" /> + <source>Clear &all folds</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4400" /> <source><b>Clear all folds</b><p>Clear all folds of the current editor, i.e. ensure that all lines are displayed unfolded.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4410" /> - <location filename="../ViewManager/ViewManager.py" line="4403" /> - <location filename="../ViewManager/ViewManager.py" line="4401" /> + <location filename="../ViewManager/ViewManager.py" line="4420" /> + <location filename="../ViewManager/ViewManager.py" line="4413" /> + <location filename="../ViewManager/ViewManager.py" line="4411" /> <source>Remove all highlights</source> <translation>Retirar todo o ressaltado</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4413" /> - <source><b>Remove all highlights</b><p>Remove the highlights of all editors.</p></source> - <translation type="unfinished" /> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="4423" /> + <source><b>Remove all highlights</b><p>Remove the highlights of all editors.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4433" /> <source>New Document View</source> <translation>Novo Visor do Documento</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4425" /> + <location filename="../ViewManager/ViewManager.py" line="4435" /> <source>New &Document View</source> <translation>Novo Visor do &Documento</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4432" /> + <location filename="../ViewManager/ViewManager.py" line="4442" /> <source>Open a new view of the current document</source> <translation>Abrir um novo visor com o documento atual</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4437" /> + <location filename="../ViewManager/ViewManager.py" line="4447" /> <source><b>New Document View</b><p>Opens a new view of the current document. Both views show the same document. However, the cursors may be positioned independently.</p></source> <translation><b>Nova Vista de Documento</b><p>Abre uma vista nova do documento atual. Ambas vistas mostram o mesmo documento mas, os cursores podem estar em posições independentes.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4453" /> - <location filename="../ViewManager/ViewManager.py" line="4449" /> + <location filename="../ViewManager/ViewManager.py" line="4463" /> + <location filename="../ViewManager/ViewManager.py" line="4459" /> <source>New Document View (with new split)</source> <translation>Nova Vista de Documento (com divisão nova)</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4462" /> + <location filename="../ViewManager/ViewManager.py" line="4472" /> <source>Open a new view of the current document in a new split</source> <translation>Abrir uma nova vista do documento atual numa nova divisão</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4467" /> + <location filename="../ViewManager/ViewManager.py" line="4477" /> <source><b>New Document View</b><p>Opens a new view of the current document in a new split. Both views show the same document. However, the cursors may be positioned independently.</p></source> <translation><b>Nova Vista de Documento</b><p>Abre uma vista nova do documento atual numa divisão nova. Ambas vistas mostram o mesmo documento mas, os cursores podem estar em posições independentes.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4479" /> + <location filename="../ViewManager/ViewManager.py" line="4489" /> <source>Split view</source> <translation>Vista dividida</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4481" /> - <source>&Split view</source> - <translation>Vista &dividida</translation> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="4488" /> - <source>Add a split to the view</source> - <translation>Adicionar uma divisão à vista</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="4491" /> - <source><b>Split view</b><p>Add a split to the view.</p></source> - <translation><b>Vista dividida</b><p>Adiciona uma divisão ao visor.</p></translation> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="4500" /> - <source>Arrange horizontally</source> - <translation>Organizar horizontalmente</translation> + <source>&Split view</source> + <translation>Vista &dividida</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4498" /> + <source>Add a split to the view</source> + <translation>Adicionar uma divisão à vista</translation> </message> <message> <location filename="../ViewManager/ViewManager.py" line="4501" /> + <source><b>Split view</b><p>Add a split to the view.</p></source> + <translation><b>Vista dividida</b><p>Adiciona uma divisão ao visor.</p></translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4510" /> + <source>Arrange horizontally</source> + <translation>Organizar horizontalmente</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4511" /> <source>Arrange &horizontally</source> <translation>Organizar &horizontalmente</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4509" /> + <location filename="../ViewManager/ViewManager.py" line="4519" /> <source>Arrange the splitted views horizontally</source> <translation>Organizar horizontalmente os visores divididos</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4514" /> + <location filename="../ViewManager/ViewManager.py" line="4524" /> <source><b>Arrange horizontally</b><p>Arrange the splitted views horizontally.</p></source> <translation><b>Ordenar horizontalmente</b><p>Ordena horizontalmente os visores divididos.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4525" /> + <location filename="../ViewManager/ViewManager.py" line="4535" /> <source>Remove split</source> <translation>Retirar divisão</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4527" /> - <source>&Remove split</source> - <translation>&Retirar divisão</translation> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="4534" /> - <source>Remove the current split</source> - <translation>Retira a divisão atual</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="4537" /> - <source><b>Remove split</b><p>Remove the current split.</p></source> - <translation><b>Retirar divisão</b><p>Retira a divisão atual.</p></translation> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="4546" /> - <source>Next split</source> - <translation>Separação seguinte</translation> + <source>&Remove split</source> + <translation>&Retirar divisão</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4544" /> + <source>Remove the current split</source> + <translation>Retira a divisão atual</translation> </message> <message> <location filename="../ViewManager/ViewManager.py" line="4547" /> + <source><b>Remove split</b><p>Remove the current split.</p></source> + <translation><b>Retirar divisão</b><p>Retira a divisão atual.</p></translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4556" /> + <source>Next split</source> + <translation>Separação seguinte</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4557" /> <source>&Next split</source> <translation>Separação segui&nte</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4549" /> + <location filename="../ViewManager/ViewManager.py" line="4559" /> <source>Ctrl+Alt+N</source> <comment>View|Next split</comment> <translation /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4558" /> + <location filename="../ViewManager/ViewManager.py" line="4568" /> <source>Move to the next split</source> <translation>Mover à seguinte divisão</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4561" /> - <source><b>Next split</b><p>Move to the next split.</p></source> - <translation><b>Separação seguinte</b><p>Mover à proxima divisão.</p></translation> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="4570" /> - <source>Previous split</source> - <translation>Divisão anterior</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="4571" /> + <source><b>Next split</b><p>Move to the next split.</p></source> + <translation><b>Separação seguinte</b><p>Mover à proxima divisão.</p></translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4580" /> + <source>Previous split</source> + <translation>Divisão anterior</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4581" /> <source>&Previous split</source> <translation>Divisão &anterior</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4573" /> + <location filename="../ViewManager/ViewManager.py" line="4583" /> <source>Ctrl+Alt+P</source> <comment>View|Previous split</comment> <translation /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4582" /> + <location filename="../ViewManager/ViewManager.py" line="4592" /> <source>Move to the previous split</source> <translation>Mover à divisão anterior</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4585" /> + <location filename="../ViewManager/ViewManager.py" line="4595" /> <source><b>Previous split</b><p>Move to the previous split.</p></source> <translation><b>Separação anterior</b><p>Mover à divisão anterior.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4596" /> - <location filename="../ViewManager/ViewManager.py" line="4594" /> + <location filename="../ViewManager/ViewManager.py" line="4606" /> + <location filename="../ViewManager/ViewManager.py" line="4604" /> <source>Preview</source> <translation>Antevisão</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4604" /> + <location filename="../ViewManager/ViewManager.py" line="4614" /> <source>Preview the current file in the web browser</source> <translation>Antevisão do ficheiro atual no navegador web</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4609" /> + <location filename="../ViewManager/ViewManager.py" line="4619" /> <source><b>Preview</b><p>This opens the web browser with a preview of the current file.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4623" /> - <location filename="../ViewManager/ViewManager.py" line="4621" /> + <location filename="../ViewManager/ViewManager.py" line="4633" /> + <location filename="../ViewManager/ViewManager.py" line="4631" /> <source>Python AST Viewer</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4631" /> + <location filename="../ViewManager/ViewManager.py" line="4641" /> <source>Show the AST for the current Python file</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4636" /> + <location filename="../ViewManager/ViewManager.py" line="4646" /> <source><b>Python AST Viewer</b><p>This opens the a tree view of the AST of the current Python source file.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4650" /> - <location filename="../ViewManager/ViewManager.py" line="4648" /> + <location filename="../ViewManager/ViewManager.py" line="4660" /> + <location filename="../ViewManager/ViewManager.py" line="4658" /> <source>Python Disassembly Viewer</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4658" /> + <location filename="../ViewManager/ViewManager.py" line="4668" /> <source>Show the Disassembly for the current Python file</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4663" /> + <location filename="../ViewManager/ViewManager.py" line="4673" /> <source><b>Python Disassembly Viewer</b><p>This opens the a tree view of the Disassembly of the current Python source file.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4699" /> + <location filename="../ViewManager/ViewManager.py" line="4709" /> <source>&View</source> <translation>&Vista</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4734" /> - <location filename="../ViewManager/ViewManager.py" line="4732" /> + <location filename="../ViewManager/ViewManager.py" line="4744" /> + <location filename="../ViewManager/ViewManager.py" line="4742" /> <source>View</source> <translation>Vista</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4773" /> - <location filename="../ViewManager/ViewManager.py" line="4765" /> + <location filename="../ViewManager/ViewManager.py" line="4783" /> + <location filename="../ViewManager/ViewManager.py" line="4775" /> <source>Start Macro Recording</source> <translation>Iniciar Registo de Macro</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4766" /> - <source>S&tart Macro Recording</source> - <translation>Iniciar Regis&to de Macro</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="4776" /> + <source>S&tart Macro Recording</source> + <translation>Iniciar Regis&to de Macro</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4786" /> <source><b>Start Macro Recording</b><p>Start recording editor commands into a new macro.</p></source> <translation><b>Iniciar Registo de Macro</b><p>Inicia o registo de comandos do editor num macro novo.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4794" /> - <location filename="../ViewManager/ViewManager.py" line="4786" /> + <location filename="../ViewManager/ViewManager.py" line="4804" /> + <location filename="../ViewManager/ViewManager.py" line="4796" /> <source>Stop Macro Recording</source> <translation>Para Registo de Macro</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4787" /> - <source>Sto&p Macro Recording</source> - <translation>&Para Registo de Macro</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="4797" /> + <source>Sto&p Macro Recording</source> + <translation>&Para Registo de Macro</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4807" /> <source><b>Stop Macro Recording</b><p>Stop recording editor commands into a new macro.</p></source> <translation><b>Parar Registo de Macro</b><p>Pára o registo de comandos do editor num macro novo.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4815" /> - <location filename="../ViewManager/ViewManager.py" line="4807" /> + <location filename="../ViewManager/ViewManager.py" line="4825" /> + <location filename="../ViewManager/ViewManager.py" line="4817" /> <source>Run Macro</source> <translation>Executar Macro</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4808" /> - <source>&Run Macro</source> - <translation>Executa&r Macro</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="4818" /> + <source>&Run Macro</source> + <translation>Executa&r Macro</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4828" /> <source><b>Run Macro</b><p>Run a previously recorded editor macro.</p></source> <translation><b>Executar Macro</b><p>Executa um macro de editor previamente registado.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4836" /> - <location filename="../ViewManager/ViewManager.py" line="4828" /> + <location filename="../ViewManager/ViewManager.py" line="4846" /> + <location filename="../ViewManager/ViewManager.py" line="4838" /> <source>Delete Macro</source> <translation>Apagar Macro</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4829" /> - <source>&Delete Macro</source> - <translation>&Apagar Macro</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="4839" /> + <source>&Delete Macro</source> + <translation>&Apagar Macro</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4849" /> <source><b>Delete Macro</b><p>Delete a previously recorded editor macro.</p></source> <translation><b>Apagar Macro</b><p>Apaga um macro de editor previamente registado.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4857" /> - <location filename="../ViewManager/ViewManager.py" line="4849" /> + <location filename="../ViewManager/ViewManager.py" line="4867" /> + <location filename="../ViewManager/ViewManager.py" line="4859" /> <source>Load Macro</source> <translation>Carregar Macro</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4850" /> - <source>&Load Macro</source> - <translation>&Carregar Macro</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="4860" /> - <source><b>Load Macro</b><p>Load an editor macro from a file.</p></source> - <translation><b>Carregar Macro</b><p>Carrega um macro de editor desde um ficheiro.</p></translation> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="4877" /> - <location filename="../ViewManager/ViewManager.py" line="4869" /> - <source>Save Macro</source> - <translation>Gravar Macro</translation> + <source>&Load Macro</source> + <translation>&Carregar Macro</translation> </message> <message> <location filename="../ViewManager/ViewManager.py" line="4870" /> - <source>&Save Macro</source> - <translation>&Gravar Macro</translation> + <source><b>Load Macro</b><p>Load an editor macro from a file.</p></source> + <translation><b>Carregar Macro</b><p>Carrega um macro de editor desde um ficheiro.</p></translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4887" /> + <location filename="../ViewManager/ViewManager.py" line="4879" /> + <source>Save Macro</source> + <translation>Gravar Macro</translation> </message> <message> <location filename="../ViewManager/ViewManager.py" line="4880" /> + <source>&Save Macro</source> + <translation>&Gravar Macro</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4890" /> <source><b>Save Macro</b><p>Save a previously recorded editor macro to a file.</p></source> <translation><b>Gravar Macro</b><p>Grava um macro de editor previamente registado num ficheiro.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4898" /> + <location filename="../ViewManager/ViewManager.py" line="4908" /> <source>&Macros</source> <translation /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4929" /> - <location filename="../ViewManager/ViewManager.py" line="4916" /> + <location filename="../ViewManager/ViewManager.py" line="4939" /> + <location filename="../ViewManager/ViewManager.py" line="4926" /> <source>Toggle Bookmark</source> <translation>Alternar Marcadores</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4918" /> + <location filename="../ViewManager/ViewManager.py" line="4928" /> <source>&Toggle Bookmark</source> <translation>&Alternar Marcadores</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4920" /> + <location filename="../ViewManager/ViewManager.py" line="4930" /> <source>Alt+Ctrl+T</source> <comment>Bookmark|Toggle</comment> <translation>Alt+Ctrl+T</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4932" /> + <location filename="../ViewManager/ViewManager.py" line="4942" /> <source><b>Toggle Bookmark</b><p>Toggle a bookmark at the current line of the current editor.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4956" /> - <location filename="../ViewManager/ViewManager.py" line="4943" /> + <location filename="../ViewManager/ViewManager.py" line="4966" /> + <location filename="../ViewManager/ViewManager.py" line="4953" /> <source>Next Bookmark</source> <translation>Marcador Seguinte</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4945" /> + <location filename="../ViewManager/ViewManager.py" line="4955" /> <source>&Next Bookmark</source> <translation>Marcador Segui&nte</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4947" /> + <location filename="../ViewManager/ViewManager.py" line="4957" /> <source>Ctrl+PgDown</source> <comment>Bookmark|Next</comment> <translation>Ctrl+PgDown</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4959" /> + <location filename="../ViewManager/ViewManager.py" line="4969" /> <source><b>Next Bookmark</b><p>Go to next bookmark of the current editor.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4982" /> - <location filename="../ViewManager/ViewManager.py" line="4969" /> + <location filename="../ViewManager/ViewManager.py" line="4992" /> + <location filename="../ViewManager/ViewManager.py" line="4979" /> <source>Previous Bookmark</source> <translation>Marcador Anterior</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4971" /> + <location filename="../ViewManager/ViewManager.py" line="4981" /> <source>&Previous Bookmark</source> <translation>Marcador &Anterior</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4973" /> + <location filename="../ViewManager/ViewManager.py" line="4983" /> <source>Ctrl+PgUp</source> <comment>Bookmark|Previous</comment> <translation>Ctrl+PgUp</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4985" /> + <location filename="../ViewManager/ViewManager.py" line="4995" /> <source><b>Previous Bookmark</b><p>Go to previous bookmark of the current editor.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5007" /> - <location filename="../ViewManager/ViewManager.py" line="4995" /> + <location filename="../ViewManager/ViewManager.py" line="5017" /> + <location filename="../ViewManager/ViewManager.py" line="5005" /> <source>Clear Bookmarks</source> <translation>Limpar Marcadores</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4996" /> + <location filename="../ViewManager/ViewManager.py" line="5006" /> <source>&Clear Bookmarks</source> <translation>&Limpar Marcadores</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4998" /> + <location filename="../ViewManager/ViewManager.py" line="5008" /> <source>Alt+Ctrl+C</source> <comment>Bookmark|Clear</comment> <translation>Alt+Ctrl+C</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5010" /> + <location filename="../ViewManager/ViewManager.py" line="5020" /> <source><b>Clear Bookmarks</b><p>Clear bookmarks of all editors.</p></source> <translation><b>Limpar Marcadores</b><p>Limpa os marcadores de todos os editores<.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5029" /> - <location filename="../ViewManager/ViewManager.py" line="5020" /> + <location filename="../ViewManager/ViewManager.py" line="5039" /> + <location filename="../ViewManager/ViewManager.py" line="5030" /> <source>Goto Syntax Error</source> <translation>Ir ao Erro de Sintaxe</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5022" /> - <source>&Goto Syntax Error</source> - <translation>&Ir ao Erro de Sintaxe</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="5032" /> + <source>&Goto Syntax Error</source> + <translation>&Ir ao Erro de Sintaxe</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="5042" /> <source><b>Goto Syntax Error</b><p>Go to next syntax error of the current editor.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5050" /> - <location filename="../ViewManager/ViewManager.py" line="5042" /> + <location filename="../ViewManager/ViewManager.py" line="5060" /> + <location filename="../ViewManager/ViewManager.py" line="5052" /> <source>Clear Syntax Errors</source> <translation>Limpar Erros de Sintaxe</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5043" /> - <source>Clear &Syntax Errors</source> - <translation>Limpar Erros de &Sintaxe</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="5053" /> + <source>Clear &Syntax Errors</source> + <translation>Limpar Erros de &Sintaxe</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="5063" /> <source><b>Clear Syntax Errors</b><p>Clear syntax errors of all editors.</p></source> <translation><b>Limpar Erros de Sintaxe</b><p>Limpa os erros de sintaxe dos editores todos.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5072" /> - <location filename="../ViewManager/ViewManager.py" line="5063" /> + <location filename="../ViewManager/ViewManager.py" line="5082" /> + <location filename="../ViewManager/ViewManager.py" line="5073" /> <source>Next warning message</source> <translation>Mensagem de aviso seguinte</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5065" /> - <source>&Next warning message</source> - <translation>Mensagem de aviso segui&nte</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="5075" /> + <source>&Next warning message</source> + <translation>Mensagem de aviso segui&nte</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="5085" /> <source><b>Next warning message</b><p>Go to next line of the current editor having a pyflakes warning.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5095" /> - <location filename="../ViewManager/ViewManager.py" line="5086" /> + <location filename="../ViewManager/ViewManager.py" line="5105" /> + <location filename="../ViewManager/ViewManager.py" line="5096" /> <source>Previous warning message</source> <translation>Mensagem de aviso anterior</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5088" /> - <source>&Previous warning message</source> - <translation>Mensagem de aviso &anterior</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="5098" /> + <source>&Previous warning message</source> + <translation>Mensagem de aviso &anterior</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="5108" /> <source><b>Previous warning message</b><p>Go to previous line of the current editor having a pyflakes warning.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5117" /> - <location filename="../ViewManager/ViewManager.py" line="5109" /> + <location filename="../ViewManager/ViewManager.py" line="5127" /> + <location filename="../ViewManager/ViewManager.py" line="5119" /> <source>Clear Warning Messages</source> <translation>Limpar Mensagens de Aviso</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5110" /> - <source>Clear &Warning Messages</source> - <translation>Limpar Mensagens de &Aviso</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="5120" /> + <source>Clear &Warning Messages</source> + <translation>Limpar Mensagens de &Aviso</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="5130" /> <source><b>Clear Warning Messages</b><p>Clear pyflakes warning messages of all editors.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5139" /> - <location filename="../ViewManager/ViewManager.py" line="5130" /> + <location filename="../ViewManager/ViewManager.py" line="5149" /> + <location filename="../ViewManager/ViewManager.py" line="5140" /> <source>Next uncovered line</source> <translation>Linha seguinte sem cobrir</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5132" /> - <source>&Next uncovered line</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="5142" /> + <source>&Next uncovered line</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="5152" /> <source><b>Next uncovered line</b><p>Go to next line of the current editor marked as not covered.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5162" /> - <location filename="../ViewManager/ViewManager.py" line="5153" /> + <location filename="../ViewManager/ViewManager.py" line="5172" /> + <location filename="../ViewManager/ViewManager.py" line="5163" /> <source>Previous uncovered line</source> <translation>Linha anterior sem cobrir</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5155" /> - <source>&Previous uncovered line</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="5165" /> + <source>&Previous uncovered line</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="5175" /> <source><b>Previous uncovered line</b><p>Go to previous line of the current editor marked as not covered.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5185" /> - <location filename="../ViewManager/ViewManager.py" line="5176" /> + <location filename="../ViewManager/ViewManager.py" line="5195" /> + <location filename="../ViewManager/ViewManager.py" line="5186" /> <source>Next Task</source> <translation>Tarefa Seguinte</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5178" /> - <source>&Next Task</source> - <translation>Tarefa Segui&nte</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="5188" /> + <source>&Next Task</source> + <translation>Tarefa Segui&nte</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="5198" /> <source><b>Next Task</b><p>Go to next line of the current editor having a task.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5207" /> - <location filename="../ViewManager/ViewManager.py" line="5198" /> + <location filename="../ViewManager/ViewManager.py" line="5217" /> + <location filename="../ViewManager/ViewManager.py" line="5208" /> <source>Previous Task</source> <translation>Tarefa Anterior</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5200" /> - <source>&Previous Task</source> - <translation>Tarefa &Anterior</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="5210" /> + <source>&Previous Task</source> + <translation>Tarefa &Anterior</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="5220" /> <source><b>Previous Task</b><p>Go to previous line of the current editor having a task.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5230" /> - <location filename="../ViewManager/ViewManager.py" line="5221" /> + <location filename="../ViewManager/ViewManager.py" line="5240" /> + <location filename="../ViewManager/ViewManager.py" line="5231" /> <source>Next Change</source> <translation>Alteração Seguinte</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5223" /> - <source>&Next Change</source> - <translation>Alteração Segui&nte</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="5233" /> + <source>&Next Change</source> + <translation>Alteração Segui&nte</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="5243" /> <source><b>Next Change</b><p>Go to next line of the current editor having a change marker.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5253" /> - <location filename="../ViewManager/ViewManager.py" line="5244" /> + <location filename="../ViewManager/ViewManager.py" line="5263" /> + <location filename="../ViewManager/ViewManager.py" line="5254" /> <source>Previous Change</source> <translation>Alteração Anterior</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5246" /> - <source>&Previous Change</source> - <translation>Alteração &Anterior</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="5256" /> + <source>&Previous Change</source> + <translation>Alteração &Anterior</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="5266" /> <source><b>Previous Change</b><p>Go to previous line of the current editor having a change marker.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5277" /> - <location filename="../ViewManager/ViewManager.py" line="5275" /> + <location filename="../ViewManager/ViewManager.py" line="5287" /> + <location filename="../ViewManager/ViewManager.py" line="5285" /> <source>&Bookmarks</source> <translation>&Marcadores</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5321" /> - <location filename="../ViewManager/ViewManager.py" line="5319" /> + <location filename="../ViewManager/ViewManager.py" line="5331" /> + <location filename="../ViewManager/ViewManager.py" line="5329" /> <source>Bookmarks</source> <translation>Marcadores</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5355" /> + <location filename="../ViewManager/ViewManager.py" line="5365" /> <source>Check spelling</source> <translation>Verificar ortografia</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5357" /> + <location filename="../ViewManager/ViewManager.py" line="5367" /> <source>Check &spelling...</source> <translation>Verificar &ortografia...</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5359" /> + <location filename="../ViewManager/ViewManager.py" line="5369" /> <source>Shift+F7</source> <comment>Spelling|Spell Check</comment> <translation>Shift+F7</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5368" /> + <location filename="../ViewManager/ViewManager.py" line="5378" /> <source>Perform spell check of current editor</source> <translation>Executar a verificação ortográfica do editor atual</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5373" /> - <source><b>Check spelling</b><p>Perform a spell check of the current editor.</p></source> - <translation><b>Verificação ortográfica</b><p>Executa a verificação ortográfica do editor atual.</p></translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="5383" /> - <source>Automatic spell checking</source> - <translation>Verificação ortográfica automática</translation> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="5385" /> - <source>&Automatic spell checking</source> - <translation>Verificação ortográfica &automática</translation> + <source><b>Check spelling</b><p>Perform a spell check of the current editor.</p></source> + <translation><b>Verificação ortográfica</b><p>Executa a verificação ortográfica do editor atual.</p></translation> </message> <message> <location filename="../ViewManager/ViewManager.py" line="5393" /> + <source>Automatic spell checking</source> + <translation>Verificação ortográfica automática</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="5395" /> + <source>&Automatic spell checking</source> + <translation>Verificação ortográfica &automática</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="5403" /> <source>(De-)Activate automatic spell checking</source> <translation>(Des)Ativar verificação ortográfica automática</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5398" /> + <location filename="../ViewManager/ViewManager.py" line="5408" /> <source><b>Automatic spell checking</b><p>Activate or deactivate the automatic spell checking function of all editors.</p></source> <translation><b>Verificação ortográfica automática</b><p>Ativa ou desativa a função de verificação ortográfica automática nos editores todos.<p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5432" /> + <location filename="../ViewManager/ViewManager.py" line="5442" /> <source>Edit Dictionary</source> <translation>Editar Dicionário</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5435" /> + <location filename="../ViewManager/ViewManager.py" line="5445" /> <source>Project Word List</source> <translation>Lista de Palavras do Projeto</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5439" /> + <location filename="../ViewManager/ViewManager.py" line="5449" /> <source>Project Exception List</source> <translation>Lista de Excepções do Projeto</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5444" /> + <location filename="../ViewManager/ViewManager.py" line="5454" /> <source>User Word List</source> <translation>Lista de Palavras do Usuário</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5448" /> + <location filename="../ViewManager/ViewManager.py" line="5458" /> <source>User Exception List</source> <translation>Lista de Exceções do Usuário</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5469" /> - <location filename="../ViewManager/ViewManager.py" line="5467" /> + <location filename="../ViewManager/ViewManager.py" line="5479" /> + <location filename="../ViewManager/ViewManager.py" line="5477" /> <source>Spelling</source> <translation>Verificação ortográfica</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5492" /> + <location filename="../ViewManager/ViewManager.py" line="5502" /> <source>Open Files</source> <translation type="unfinished">Abrir Ficheiros</translation> </message> <message> + <location filename="../ViewManager/ViewManager.py" line="5531" /> <location filename="../ViewManager/ViewManager.py" line="5521" /> - <location filename="../ViewManager/ViewManager.py" line="5511" /> <source>Open Remote Files</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5578" /> + <location filename="../ViewManager/ViewManager.py" line="5588" /> <source>File Modified</source> <translation>Ficheiro Modificado</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5579" /> + <location filename="../ViewManager/ViewManager.py" line="5589" /> <source><p>The file <b>{0}</b> has unsaved changes.</p></source> <translation><p>O ficheiro <b>{0}</b> tem alterações por gravar.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6078" /> + <location filename="../ViewManager/ViewManager.py" line="6090" /> <source>Line: {0:5}</source> <translation>Linha: {0:5}</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6084" /> + <location filename="../ViewManager/ViewManager.py" line="6096" /> <source>Pos: {0:5}</source> <translation /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6104" /> + <location filename="../ViewManager/ViewManager.py" line="6116" /> <source>Language: {0}</source> <translation>Linguagem: {0}</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6113" /> + <location filename="../ViewManager/ViewManager.py" line="6125" /> <source>EOL Mode: {0}</source> <translation>Modo EOL: {0}</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6641" /> - <location filename="../ViewManager/ViewManager.py" line="6598" /> + <location filename="../ViewManager/ViewManager.py" line="6668" /> + <location filename="../ViewManager/ViewManager.py" line="6625" /> <source>&Clear</source> <translation>&Limpar</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6635" /> + <location filename="../ViewManager/ViewManager.py" line="6662" /> <source>&Add</source> <translation>&Adicionar</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6638" /> + <location filename="../ViewManager/ViewManager.py" line="6665" /> <source>&Edit...</source> <translation>&Editar...</translation> </message> <message> + <location filename="../ViewManager/ViewManager.py" line="7735" /> + <location filename="../ViewManager/ViewManager.py" line="7721" /> + <location filename="../ViewManager/ViewManager.py" line="7689" /> + <source>Edit Spelling Dictionary</source> + <translation>Editar Dicionário Ortográfico</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="7692" /> + <source><p>The spelling dictionary file <b>{0}</b> could not be read.</p><p>Reason: {1}</p></source> + <translation type="unfinished" /> + </message> + <message> <location filename="../ViewManager/ViewManager.py" line="7708" /> - <location filename="../ViewManager/ViewManager.py" line="7694" /> - <location filename="../ViewManager/ViewManager.py" line="7662" /> - <source>Edit Spelling Dictionary</source> - <translation>Editar Dicionário Ortográfico</translation> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="7665" /> - <source><p>The spelling dictionary file <b>{0}</b> could not be read.</p><p>Reason: {1}</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="7681" /> <source>Editing {0}</source> <translation>A editar {0}</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="7697" /> + <location filename="../ViewManager/ViewManager.py" line="7724" /> <source><p>The spelling dictionary file <b>{0}</b> could not be written.</p><p>Reason: {1}</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="7711" /> + <location filename="../ViewManager/ViewManager.py" line="7738" /> <source>The spelling dictionary was saved successfully.</source> <translation>O dicionário ortográfico foi guradado com êxito.</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5522" /> + <location filename="../ViewManager/ViewManager.py" line="5532" /> <source>You must be connected to a remote eric-ide server. Aborting...</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6820" /> + <location filename="../ViewManager/ViewManager.py" line="6847" /> <source>Clear Editor</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6821" /> + <location filename="../ViewManager/ViewManager.py" line="6848" /> <source>Do you really want to delete all text of the current editor?</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="8241" /> - <location filename="../ViewManager/ViewManager.py" line="8224" /> + <location filename="../ViewManager/ViewManager.py" line="8268" /> + <location filename="../ViewManager/ViewManager.py" line="8251" /> <source>File System Watcher Error</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="8225" /> + <location filename="../ViewManager/ViewManager.py" line="8252" /> <source><p>The operating system resources for file system watches are exhausted. This limit should be increased. On a Linux system you should <ul><li>sudo nano /etc/sysctl.conf</li><li>add to the bottom "fs.inotify.max_user_instances = 1024"</li><li>save and close the editor</li><li>sudo sysctl -p</li></ul></p><p>Error Message: {0}</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="8242" /> + <location filename="../ViewManager/ViewManager.py" line="8269" /> <source>The file system watcher reported an error with code <b>{0}</b>.</p><p>Error Message: {1}</p></source> <translation type="unfinished" /> </message> @@ -99268,54 +99281,54 @@ <context> <name>VirtualenvManager</name> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="317" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="319" /> <source>Add Virtual Environment</source> <translation type="unfinished" /> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="318" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="320" /> <source>A virtual environment named <b>{0}</b> exists already. Shall it be replaced?</source> <translation type="unfinished" /> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="355" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="357" /> <source>Change Virtual Environment</source> <translation type="unfinished" /> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="388" /> - <location filename="../VirtualEnv/VirtualenvManager.py" line="356" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="390" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="358" /> <source>A virtual environment named <b>{0}</b> does not exist. Aborting!</source> <translation type="unfinished" /> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="387" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="389" /> <source>Rename Virtual Environment</source> <translation type="unfinished" /> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="479" /> - <location filename="../VirtualEnv/VirtualenvManager.py" line="412" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="481" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="414" /> <source>{0} - {1}</source> <translation type="unfinished" /> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="419" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="421" /> <source>Delete Virtual Environments</source> <translation type="unfinished" /> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="420" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="422" /> <source>Do you really want to delete these virtual environments?</source> <translation type="unfinished" /> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="486" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="488" /> <source>Remove Virtual Environments</source> <translation type="unfinished" /> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="487" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="489" /> <source>Do you really want to remove these virtual environments?</source> <translation type="unfinished" /> </message> @@ -99323,7 +99336,7 @@ <context> <name>VirtualenvManagerDialog</name> <message> - <location filename="../VirtualEnv/VirtualenvManagerWidgets.py" line="442" /> + <location filename="../VirtualEnv/VirtualenvManagerWidgets.py" line="448" /> <source>Manage Virtual Environments</source> <translation type="unfinished" /> </message> @@ -99446,7 +99459,7 @@ <context> <name>VirtualenvManagerWindow</name> <message> - <location filename="../VirtualEnv/VirtualenvManagerWidgets.py" line="482" /> + <location filename="../VirtualEnv/VirtualenvManagerWidgets.py" line="488" /> <source>Manage Virtual Environments</source> <translation type="unfinished" /> </message>
--- a/src/eric7/i18n/eric7_ru.ts Wed Oct 16 17:38:35 2024 +0200 +++ b/src/eric7/i18n/eric7_ru.ts Wed Oct 16 17:39:40 2024 +0200 @@ -1642,27 +1642,27 @@ <context> <name>AssistantJedi</name> <message> - <location filename="../JediInterface/AssistantJedi.py" line="230" /> + <location filename="../JediInterface/AssistantJedi.py" line="236" /> <source>Refactoring</source> <translation>Рефакторинг</translation> </message> <message> - <location filename="../JediInterface/AssistantJedi.py" line="232" /> - <source>Rename Variable</source> - <translation>Переименование переменной</translation> - </message> - <message> - <location filename="../JediInterface/AssistantJedi.py" line="235" /> - <source>Extract Variable</source> - <translation>Выделение переменной</translation> - </message> - <message> <location filename="../JediInterface/AssistantJedi.py" line="238" /> + <source>Rename Variable</source> + <translation>Переименование переменной</translation> + </message> + <message> + <location filename="../JediInterface/AssistantJedi.py" line="241" /> + <source>Extract Variable</source> + <translation>Выделение переменной</translation> + </message> + <message> + <location filename="../JediInterface/AssistantJedi.py" line="244" /> <source>Inline Variable</source> <translation>Встраивание переменной</translation> </message> <message> - <location filename="../JediInterface/AssistantJedi.py" line="242" /> + <location filename="../JediInterface/AssistantJedi.py" line="248" /> <source>Extract Function</source> <translation>Выделение функции</translation> </message> @@ -9242,21 +9242,37 @@ </translation> </message> <message> - <location filename="../Debugger/DebugServer.py" line="2109" /> + <location filename="../Debugger/DebugServer.py" line="2110" /> <source>Passive debug connection received </source> <translation>Получен запрос на соединение для пассивной отладки </translation> </message> <message> - <location filename="../Debugger/DebugServer.py" line="2123" /> + <location filename="../Debugger/DebugServer.py" line="2119" /> + <source>Passive debug connection received while not in passive mode. +</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Debugger/DebugServer.py" line="2125" /> + <source>Debug Client Connection</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Debugger/DebugServer.py" line="2126" /> + <source>Passive debug client connection received while not in passive mode. Enable this mode on the 'Debugger General' configuration page. The connection will be rejected.</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Debugger/DebugServer.py" line="2141" /> <source>Passive debug connection closed </source> <translation>Соединение для пассивной отладки закрыто </translation> </message> <message> - <location filename="../Debugger/DebugServer.py" line="2254" /> + <location filename="../Debugger/DebugServer.py" line="2272" /> <source><project></source> <translation><project></translation> </message> @@ -10226,25 +10242,13 @@ </message> <message> <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" /> - <source>Enables the passive debug mode</source> - <translation>Режим пассивной отладки</translation> + <source>Debugger Type:</source> + <translation>Тип отладчика:</translation> </message> <message> <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" /> - <source><b>Passive Debugger Enabled</b> -<p>This enables the passive debugging mode. In this mode the debug client (the script) connects to the debug server (the IDE). The script is started outside the IDE. This way mod_python or Zope scripts can be debugged.</p></source> - <translation><b>Разрешить пассивную отладку</b> -<p>Разрешить режим пассивной отладки. В этом режиме клиент (сценарий) соединяется с сервером отладки (IDE). Сценарий запускается вне IDE. Таким образом, можно отлаживать сценарии mod_python или Zope.</p></translation> - </message> - <message> - <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" /> - <source>Passive Debugger Enabled</source> - <translation>Разрешить пассивную отладку</translation> - </message> - <message> - <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" /> - <source>Debug Server Port:</source> - <translation>Порт сервера отладчика:</translation> + <source>Select the debugger type of the backend</source> + <translation>Выберите тип отладчика</translation> </message> <message> <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" /> @@ -10260,13 +10264,8 @@ </message> <message> <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" /> - <source>Debugger Type:</source> - <translation>Тип отладчика:</translation> - </message> - <message> - <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" /> - <source>Select the debugger type of the backend</source> - <translation>Выберите тип отладчика</translation> + <source>Debug Server Port:</source> + <translation>Порт сервера отладчика:</translation> </message> <message> <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" /> @@ -10600,50 +10599,64 @@ <source>Automatically view source code</source> <translation>Автоматический просмотр исходного кода</translation> </message> + <message> + <source>Enables the passive debug mode</source> + <translation type="vanished">Режим пассивной отладки</translation> + </message> + <message> + <source><b>Passive Debugger Enabled</b> +<p>This enables the passive debugging mode. In this mode the debug client (the script) connects to the debug server (the IDE). The script is started outside the IDE. This way mod_python or Zope scripts can be debugged.</p></source> + <translation type="vanished"><b>Разрешить пассивную отладку</b> +<p>Разрешить режим пассивной отладки. В этом режиме клиент (сценарий) соединяется с сервером отладки (IDE). Сценарий запускается вне IDE. Таким образом, можно отлаживать сценарии mod_python или Zope.</p></translation> + </message> + <message> + <source>Passive Debugger Enabled</source> + <translation type="vanished">Разрешить пассивную отладку</translation> + </message> </context> <context> <name>DebuggerInterfacePython</name> <message> - <location filename="../Debugger/DebuggerInterfacePython.py" line="727" /> - <location filename="../Debugger/DebuggerInterfacePython.py" line="704" /> - <location filename="../Debugger/DebuggerInterfacePython.py" line="611" /> - <location filename="../Debugger/DebuggerInterfacePython.py" line="565" /> - <location filename="../Debugger/DebuggerInterfacePython.py" line="446" /> - <location filename="../Debugger/DebuggerInterfacePython.py" line="423" /> - <location filename="../Debugger/DebuggerInterfacePython.py" line="346" /> - <location filename="../Debugger/DebuggerInterfacePython.py" line="322" /> - <location filename="../Debugger/DebuggerInterfacePython.py" line="259" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="728" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="705" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="609" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="563" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="445" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="422" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="345" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="321" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="258" /> <source>Start Debugger</source> <translation>Запуск отладчика</translation> </message> <message> - <location filename="../Debugger/DebuggerInterfacePython.py" line="566" /> - <location filename="../Debugger/DebuggerInterfacePython.py" line="260" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="564" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="259" /> <source><p>No suitable Python3 environment configured.</p></source> <translation><p>Не настроена подходящая среда окружения Python3.</p></translation> </message> <message> - <location filename="../Debugger/DebuggerInterfacePython.py" line="728" /> - <location filename="../Debugger/DebuggerInterfacePython.py" line="705" /> - <location filename="../Debugger/DebuggerInterfacePython.py" line="612" /> - <location filename="../Debugger/DebuggerInterfacePython.py" line="447" /> - <location filename="../Debugger/DebuggerInterfacePython.py" line="424" /> - <location filename="../Debugger/DebuggerInterfacePython.py" line="323" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="729" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="706" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="610" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="446" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="423" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="322" /> <source><p>The debugger backend could not be started.</p></source> <translation><p>Невозможно запустить бэкэнд отладчика</p></translation> </message> <message> - <location filename="../Debugger/DebuggerInterfacePython.py" line="347" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="346" /> <source><p>Remote debugging is configured but no command for remote login was given.</p></source> <translation><p>Удаленная отладка настроена, но не была дана команда для удаленного входа в систему.</p></translation> </message> <message> - <location filename="../Debugger/DebuggerInterfacePython.py" line="1659" /> - <source>Debug Protocol Error</source> - <translation>Протокол ошибок отладки</translation> - </message> - <message> <location filename="../Debugger/DebuggerInterfacePython.py" line="1660" /> + <source>Debug Protocol Error</source> + <translation>Протокол ошибок отладки</translation> + </message> + <message> + <location filename="../Debugger/DebuggerInterfacePython.py" line="1661" /> <source><p>The response received from the debugger backend 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.</p><p>Error: {0}</p><p>Data: <br/>{1}</p></translation> </message> @@ -62235,7 +62248,7 @@ <context> <name>PreviewModel</name> <message> - <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="478" /> + <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="506" /> <source>Variable Name</source> <translation>Имя переменной</translation> </message> @@ -63117,8 +63130,8 @@ <translation>Переименовать файл</translation> </message> <message> - <location filename="../Project/Project.py" line="8058" /> - <location filename="../Project/Project.py" line="3901" /> + <location filename="../Project/Project.py" line="8055" /> + <location filename="../Project/Project.py" line="3898" /> <location filename="../Project/Project.py" line="2398" /> <source><p>The file <b>{0}</b> already exists. Overwrite it?</p></source> <translation><p>Файл <b>{0}</b> уже существует. Переписать?</p></translation> @@ -63252,40 +63265,40 @@ <translation>Открыть проект</translation> </message> <message> - <location filename="../Project/Project.py" line="8044" /> - <location filename="../Project/Project.py" line="8038" /> - <location filename="../Project/Project.py" line="8028" /> - <location filename="../Project/Project.py" line="3886" /> - <location filename="../Project/Project.py" line="3876" /> + <location filename="../Project/Project.py" line="8041" /> + <location filename="../Project/Project.py" line="8035" /> + <location filename="../Project/Project.py" line="8025" /> + <location filename="../Project/Project.py" line="3883" /> + <location filename="../Project/Project.py" line="3873" /> <location filename="../Project/Project.py" line="3652" /> <source>Project Files (*.epj)</source> <translation>Файлы проекта (*.epj)</translation> </message> <message> - <location filename="../Project/Project.py" line="3900" /> - <location filename="../Project/Project.py" line="3884" /> + <location filename="../Project/Project.py" line="3897" /> + <location filename="../Project/Project.py" line="3881" /> <source>Save Project</source> <translation>Сохранить проект</translation> </message> <message> - <location filename="../Project/Project.py" line="3939" /> + <location filename="../Project/Project.py" line="3936" /> <source>Close Project</source> <translation>Закрыть проект</translation> </message> <message> - <location filename="../Project/Project.py" line="3940" /> + <location filename="../Project/Project.py" line="3937" /> <source>The current project has unsaved changes.</source> <translation>Изменения в текущем проекте не сохранены.</translation> </message> <message> - <location filename="../Project/Project.py" line="4140" /> - <location filename="../Project/Project.py" line="4104" /> + <location filename="../Project/Project.py" line="4137" /> + <location filename="../Project/Project.py" line="4101" /> <source>Syntax Errors Detected</source> <translation>Обнаружены синтаксические ошибки</translation> </message> <message numerus="yes"> - <location filename="../Project/Project.py" line="4141" /> - <location filename="../Project/Project.py" line="4105" /> + <location filename="../Project/Project.py" line="4138" /> + <location filename="../Project/Project.py" line="4102" /> <source>The project contains %n file(s) with syntax errors.</source> <translation> <numerusform>Проект содержит %n файл с синтаксической ошибкой.</numerusform> @@ -63294,464 +63307,464 @@ </translation> </message> <message> - <location filename="../Project/Project.py" line="4799" /> + <location filename="../Project/Project.py" line="4796" /> <source>New project</source> <translation>Новый проект</translation> </message> <message> - <location filename="../Project/Project.py" line="4801" /> + <location filename="../Project/Project.py" line="4798" /> <source>&New...</source> <translation>&Новый...</translation> </message> <message> - <location filename="../Project/Project.py" line="4807" /> + <location filename="../Project/Project.py" line="4804" /> <source>Generate a new project</source> <translation>Создать новый проект</translation> </message> <message> - <location filename="../Project/Project.py" line="4809" /> + <location filename="../Project/Project.py" line="4806" /> <source><b>New...</b><p>This opens a dialog for entering the info for a new project.</p></source> <translation><b>Новый...</b><p>Открытие диалога ввода информации о новом проекте.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4819" /> + <location filename="../Project/Project.py" line="4816" /> <source>Open project</source> <translation>Открыть проект</translation> </message> <message> - <location filename="../Project/Project.py" line="4821" /> + <location filename="../Project/Project.py" line="4818" /> <source>&Open...</source> <translation>&Открыть...</translation> </message> <message> - <location filename="../Project/Project.py" line="4827" /> + <location filename="../Project/Project.py" line="4824" /> <source>Open an existing project</source> <translation>Открыть существующий проект</translation> </message> <message> - <location filename="../Project/Project.py" line="4829" /> + <location filename="../Project/Project.py" line="4826" /> <source><b>Open...</b><p>This opens an existing project.</p></source> <translation><b>Открыть...</b><p>Открытие существующего проекта.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4835" /> + <location filename="../Project/Project.py" line="4832" /> <source>Open remote project</source> <translation>Открыть удаленный проект</translation> </message> <message> - <location filename="../Project/Project.py" line="4837" /> + <location filename="../Project/Project.py" line="4834" /> <source>Open (Remote)...</source> <translation>Открыть (удаленно)...</translation> </message> <message> - <location filename="../Project/Project.py" line="4843" /> + <location filename="../Project/Project.py" line="4840" /> <source>Open an existing remote project</source> <translation>Открыть существующий удаленный проект</translation> </message> <message> - <location filename="../Project/Project.py" line="4845" /> + <location filename="../Project/Project.py" line="4842" /> <source><b>Open (Remote)...</b><p>This opens an existing remote project.</p></source> <translation><b>Открыть (удаленно)...</b><p>Открывает существующий удаленный проект.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4854" /> + <location filename="../Project/Project.py" line="4851" /> <source>Reload project</source> <translation>Перезагрузить проект</translation> </message> <message> - <location filename="../Project/Project.py" line="4856" /> + <location filename="../Project/Project.py" line="4853" /> <source>Re&load</source> <translation>П&ерезагрузить</translation> </message> <message> - <location filename="../Project/Project.py" line="4862" /> + <location filename="../Project/Project.py" line="4859" /> <source>Reload the current project</source> <translation>Перезагрузить текущий проект</translation> </message> <message> - <location filename="../Project/Project.py" line="4864" /> + <location filename="../Project/Project.py" line="4861" /> <source><b>Reload</b><p>This reloads the current project.</p></source> <translation><b>Перезагрузить</b><p>Перезагружает текущий проект.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4870" /> + <location filename="../Project/Project.py" line="4867" /> <source>Close project</source> <translation>Закрыть проект</translation> </message> <message> - <location filename="../Project/Project.py" line="4872" /> + <location filename="../Project/Project.py" line="4869" /> <source>&Close</source> <translation>&Закрыть</translation> </message> <message> - <location filename="../Project/Project.py" line="4878" /> + <location filename="../Project/Project.py" line="4875" /> <source>Close the current project</source> <translation>Закрыть текущий проект</translation> </message> <message> - <location filename="../Project/Project.py" line="4880" /> + <location filename="../Project/Project.py" line="4877" /> <source><b>Close</b><p>This closes the current project.</p></source> <translation><b>Закрыть</b><p>Закрытие текущего проекта.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4886" /> + <location filename="../Project/Project.py" line="4883" /> <source>Save project</source> <translation>Сохранить проект</translation> </message> <message> - <location filename="../Project/Project.py" line="5183" /> - <location filename="../Project/Project.py" line="4888" /> + <location filename="../Project/Project.py" line="5180" /> + <location filename="../Project/Project.py" line="4885" /> <source>&Save</source> <translation>&Сохранить</translation> </message> <message> - <location filename="../Project/Project.py" line="4894" /> + <location filename="../Project/Project.py" line="4891" /> <source>Save the current project</source> <translation>Сохранить текущий проект</translation> </message> <message> - <location filename="../Project/Project.py" line="4896" /> + <location filename="../Project/Project.py" line="4893" /> <source><b>Save</b><p>This saves the current project.</p></source> <translation><b>Сохранить</b><p>Сохранение текущего проекта.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4902" /> + <location filename="../Project/Project.py" line="4899" /> <source>Save project as</source> <translation>Сохранить проект как</translation> </message> <message> - <location filename="../Project/Project.py" line="4904" /> + <location filename="../Project/Project.py" line="4901" /> <source>Save &as...</source> <translation>Сохранить &как...</translation> </message> <message> - <location filename="../Project/Project.py" line="4910" /> + <location filename="../Project/Project.py" line="4907" /> <source>Save the current project to a new file</source> <translation>Сохранить текущий проект в новый файл</translation> </message> <message> - <location filename="../Project/Project.py" line="4912" /> + <location filename="../Project/Project.py" line="4909" /> <source><b>Save as</b><p>This saves the current project to a new file.</p></source> <translation><b>Сохранить как</b><p> Сохранение текущего проекта в новый файл.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4921" /> + <location filename="../Project/Project.py" line="4918" /> <source>Save project as (Remote)</source> <translation>Сохранить проект как (удаленно)</translation> </message> <message> - <location filename="../Project/Project.py" line="4923" /> + <location filename="../Project/Project.py" line="4920" /> <source>Save as (Remote)...</source> <translation>Сохранить как (удаленно)...</translation> </message> <message> + <location filename="../Project/Project.py" line="4927" /> + <source>Save the current project to a new remote file</source> + <translation>Сохранить текущий проект в новом удаленном файле</translation> + </message> + <message> <location filename="../Project/Project.py" line="4930" /> - <source>Save the current project to a new remote file</source> - <translation>Сохранить текущий проект в новом удаленном файле</translation> - </message> - <message> - <location filename="../Project/Project.py" line="4933" /> <source><b>Save as (Remote)</b><p>This saves the current project to a new remote file.</p></source> <translation><b>Сохранить как (удаленно)</b><p>При этом текущий проект сохраняется в новом удаленном файле.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4949" /> + <location filename="../Project/Project.py" line="4946" /> <source>Add files to project</source> <translation>Добавить файлы в проект</translation> </message> <message> - <location filename="../Project/Project.py" line="4951" /> + <location filename="../Project/Project.py" line="4948" /> <source>Add &files...</source> <translation>Добавить &файлы...</translation> </message> <message> - <location filename="../Project/Project.py" line="4957" /> + <location filename="../Project/Project.py" line="4954" /> <source>Add files to the current project</source> <translation>Добавить файлы в текущий проект</translation> </message> <message> - <location filename="../Project/Project.py" line="4959" /> + <location filename="../Project/Project.py" line="4956" /> <source><b>Add files...</b><p>This opens a dialog for adding files to the current project. The place to add is determined by the file extension.</p></source> <translation><b>Добавить файлы</b> <p>Открытие диалога добавления файлов в текущий проект. Место добавления определяется расширением файла.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4970" /> + <location filename="../Project/Project.py" line="4967" /> <source>Add directory to project</source> <translation>Добавить директорию в проект</translation> </message> <message> - <location filename="../Project/Project.py" line="4972" /> + <location filename="../Project/Project.py" line="4969" /> <source>Add directory...</source> <translation>Добавить директорию...</translation> </message> <message> + <location filename="../Project/Project.py" line="4976" /> + <source>Add a directory to the current project</source> + <translation>Добавить директорию в текущий проект</translation> + </message> + <message> <location filename="../Project/Project.py" line="4979" /> - <source>Add a directory to the current project</source> - <translation>Добавить директорию в текущий проект</translation> - </message> - <message> - <location filename="../Project/Project.py" line="4982" /> <source><b>Add directory...</b><p>This opens a dialog for adding a directory to the current project.</p></source> <translation><b>Добавить директорию...</b> <p>Открытие диалога добавления директории к текущему проекту.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4992" /> + <location filename="../Project/Project.py" line="4989" /> <source>Add translation to project</source> <translation>Добавить перевод в проект</translation> </message> <message> - <location filename="../Project/Project.py" line="4994" /> + <location filename="../Project/Project.py" line="4991" /> <source>Add &translation...</source> <translation>Добавить &перевод...</translation> </message> <message> + <location filename="../Project/Project.py" line="4998" /> + <source>Add a translation to the current project</source> + <translation>Добавить перевод в текущий проект</translation> + </message> + <message> <location filename="../Project/Project.py" line="5001" /> - <source>Add a translation to the current project</source> - <translation>Добавить перевод в текущий проект</translation> - </message> - <message> - <location filename="../Project/Project.py" line="5004" /> <source><b>Add translation...</b><p>This opens a dialog for add a translation to the current project.</p></source> <translation><b>Добавить перевод...</b><p>Открытие диалога добавления перевода в текущий проект.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5014" /> + <location filename="../Project/Project.py" line="5011" /> <source>Search new files</source> <translation>Поиск новых файлов</translation> </message> <message> - <location filename="../Project/Project.py" line="5015" /> + <location filename="../Project/Project.py" line="5012" /> <source>Searc&h new files...</source> <translation>Поис&к новых файлов...</translation> </message> <message> - <location filename="../Project/Project.py" line="5021" /> + <location filename="../Project/Project.py" line="5018" /> <source>Search new files in the project directory.</source> <translation>Поиск новых файлов в директории проекта.</translation> </message> <message> - <location filename="../Project/Project.py" line="5023" /> + <location filename="../Project/Project.py" line="5020" /> <source><b>Search new files...</b><p>This searches for new files (sources, forms, ...) in the project directory and registered subdirectories.</p></source> <translation><b>Поиск новых файлов...</b><p>Поиск новых файлов (источники, формы, ...) в директории проекта и зарегистрированных поддиректориях..</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5033" /> + <location filename="../Project/Project.py" line="5030" /> <source>Search Project File</source> <translation>Поиск файла проекта</translation> </message> <message> - <location filename="../Project/Project.py" line="5034" /> + <location filename="../Project/Project.py" line="5031" /> <source>Search Project File...</source> <translation>Поиск файла проекта...</translation> </message> <message> - <location filename="../Project/Project.py" line="5035" /> + <location filename="../Project/Project.py" line="5032" /> <source>Alt+Ctrl+P</source> <comment>Project|Search Project File</comment> <translation>Alt+Ctrl+P</translation> </message> <message> - <location filename="../Project/Project.py" line="5040" /> + <location filename="../Project/Project.py" line="5037" /> <source>Search for a file in the project list of files.</source> <translation>Поиск файла в списке файлов проекта.</translation> </message> <message> - <location filename="../Project/Project.py" line="5042" /> + <location filename="../Project/Project.py" line="5039" /> <source><b>Search Project File</b><p>This searches for a file in the project list of files.</p></source> <translation><b>Поиск файла проекта</b><p>Поиск файла в списке файлов проекта.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5051" /> + <location filename="../Project/Project.py" line="5048" /> <source>Project properties</source> <translation>Свойства проекта</translation> </message> <message> - <location filename="../Project/Project.py" line="5053" /> + <location filename="../Project/Project.py" line="5050" /> <source>&Properties...</source> <translation>&Свойства...</translation> </message> <message> - <location filename="../Project/Project.py" line="5059" /> + <location filename="../Project/Project.py" line="5056" /> <source>Show the project properties</source> <translation>Показать свойства проекта</translation> </message> <message> - <location filename="../Project/Project.py" line="5061" /> + <location filename="../Project/Project.py" line="5058" /> <source><b>Properties...</b><p>This shows a dialog to edit the project properties.</p></source> <translation><b>Свойства...</b><p>Отображение диалога для редактирования свойств проекта.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5070" /> + <location filename="../Project/Project.py" line="5067" /> <source>User project properties</source> <translation>Пользовательские настройки проекта</translation> </message> <message> - <location filename="../Project/Project.py" line="5072" /> + <location filename="../Project/Project.py" line="5069" /> <source>&User Properties...</source> <translation>&Пользовательские свойства...</translation> </message> <message> + <location filename="../Project/Project.py" line="5076" /> + <source>Show the user specific project properties</source> + <translation>Показать пользовательские свойства проекта</translation> + </message> + <message> <location filename="../Project/Project.py" line="5079" /> - <source>Show the user specific project properties</source> - <translation>Показать пользовательские свойства проекта</translation> - </message> - <message> - <location filename="../Project/Project.py" line="5082" /> <source><b>User Properties...</b><p>This shows a dialog to edit the user specific project properties.</p></source> <translation><b>Пользовательские свойства...</b><p>Отображает диалог редактирования пользовательских свойств проекта.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5092" /> + <location filename="../Project/Project.py" line="5089" /> <source>Filetype Associations</source> <translation>Ассоциации типов файлов</translation> </message> <message> - <location filename="../Project/Project.py" line="5093" /> + <location filename="../Project/Project.py" line="5090" /> <source>Filetype Associations...</source> <translation>Ассоциации типов файлов...</translation> </message> <message> + <location filename="../Project/Project.py" line="5097" /> + <source>Show the project file type associations</source> + <translation>Показать ассоциации типов файлов для проекта</translation> + </message> + <message> <location filename="../Project/Project.py" line="5100" /> - <source>Show the project file type associations</source> - <translation>Показать ассоциации типов файлов для проекта</translation> - </message> - <message> - <location filename="../Project/Project.py" line="5103" /> <source><b>Filetype Associations...</b><p>This shows a dialog to edit the file type associations of the project. These associations determine the type (source, form, interface, protocol or others) with a filename pattern. They are used when adding a file to the project and when performing a search for new files.</p></source> <translation><b>Ассоциации типов файлов...</b><p>Отображается диалоговое окно для редактирования ассоциаций типов файлов проекта. Эти ассоциации определяют тип (источник, форму, интерфейс, протокол или другие) с шаблоном имени файла. Они используются при добавлении файла в проект и при поиске новых файлов.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5116" /> + <location filename="../Project/Project.py" line="5113" /> <source>Lexer Associations</source> <translation>Ассоциации для лексеров</translation> </message> <message> - <location filename="../Project/Project.py" line="5117" /> + <location filename="../Project/Project.py" line="5114" /> <source>Lexer Associations...</source> <translation>Ассоциации для лексеров...</translation> </message> <message> + <location filename="../Project/Project.py" line="5121" /> + <source>Show the project lexer associations (overriding defaults)</source> + <translation>Показать ассоциации для лексеров проекта (переопределяющие по умолчанию)</translation> + </message> + <message> <location filename="../Project/Project.py" line="5124" /> - <source>Show the project lexer associations (overriding defaults)</source> - <translation>Показать ассоциации для лексеров проекта (переопределяющие по умолчанию)</translation> - </message> - <message> - <location filename="../Project/Project.py" line="5127" /> <source><b>Lexer Associations...</b><p>This shows a dialog to edit the lexer associations of the project. These associations override the global lexer associations. Lexers are used to highlight the editor text.</p></source> <translation><b>Ассоциации для лексеров...</b><p>Показать ассоциации лексеров для проекта. Эти ассоциации переопределяют глобальные ассоциации лексеров. Лексеры используются для подсвечивания текста в редакторе.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5145" /> + <location filename="../Project/Project.py" line="5142" /> <source>Debugger Properties</source> <translation>Свойства отладчика</translation> </message> <message> - <location filename="../Project/Project.py" line="5146" /> + <location filename="../Project/Project.py" line="5143" /> <source>Debugger &Properties...</source> <translation>&Свойства отладчика...</translation> </message> <message> - <location filename="../Project/Project.py" line="5152" /> + <location filename="../Project/Project.py" line="5149" /> <source>Show the debugger properties</source> <translation>Показать свойства отладчика</translation> </message> <message> - <location filename="../Project/Project.py" line="5154" /> + <location filename="../Project/Project.py" line="5151" /> <source><b>Debugger Properties...</b><p>This shows a dialog to edit project specific debugger settings.</p></source> <translation><b>Свойства отладчика...</b> <p>Отображение диалога редактирования свойств отладчика, специфичных для данного проекта.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5164" /> + <location filename="../Project/Project.py" line="5161" /> <source>Load</source> <translation>Загрузить</translation> </message> <message> - <location filename="../Project/Project.py" line="5165" /> + <location filename="../Project/Project.py" line="5162" /> <source>&Load</source> <translation>&Загрузить</translation> </message> <message> - <location filename="../Project/Project.py" line="5171" /> + <location filename="../Project/Project.py" line="5168" /> <source>Load the debugger properties</source> <translation>Загрузить свойства отладчика</translation> </message> <message> - <location filename="../Project/Project.py" line="5173" /> + <location filename="../Project/Project.py" line="5170" /> <source><b>Load Debugger Properties</b><p>This loads the project specific debugger settings.</p></source> <translation><b>Загрузить свойства отладчика</b> <p>Загрузить свойства отладчика, специфичные для данного проекта.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5182" /> + <location filename="../Project/Project.py" line="5179" /> <source>Save</source> <translation>Сохранить</translation> </message> <message> - <location filename="../Project/Project.py" line="5189" /> + <location filename="../Project/Project.py" line="5186" /> <source>Save the debugger properties</source> <translation>Сохранить свойства отладчика</translation> </message> <message> - <location filename="../Project/Project.py" line="5191" /> + <location filename="../Project/Project.py" line="5188" /> <source><b>Save Debugger Properties</b><p>This saves the project specific debugger settings.</p></source> <translation><b>Сохранить свойства отладчика</b><p>Сохранить свойства отладчика, специфичные для данного проекта.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5200" /> + <location filename="../Project/Project.py" line="5197" /> <source>Delete</source> <translation>Удалить</translation> </message> <message> - <location filename="../Project/Project.py" line="5201" /> + <location filename="../Project/Project.py" line="5198" /> <source>&Delete</source> <translation>&Удалить</translation> </message> <message> - <location filename="../Project/Project.py" line="5207" /> + <location filename="../Project/Project.py" line="5204" /> <source>Delete the debugger properties</source> <translation>Удалить свойства отладчика</translation> </message> <message> - <location filename="../Project/Project.py" line="5209" /> + <location filename="../Project/Project.py" line="5206" /> <source><b>Delete Debugger Properties</b><p>This deletes the file containing the project specific debugger settings.</p></source> <translation><b>Удалить свойства отладчика</b><p>Удалить свойства отладчика, специфичные для данного проекта.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5219" /> + <location filename="../Project/Project.py" line="5216" /> <source>Reset</source> <translation>Рестарт</translation> </message> <message> - <location filename="../Project/Project.py" line="5220" /> + <location filename="../Project/Project.py" line="5217" /> <source>&Reset</source> <translation>&Рестарт</translation> </message> <message> - <location filename="../Project/Project.py" line="5226" /> + <location filename="../Project/Project.py" line="5223" /> <source>Reset the debugger properties</source> <translation>Сбросить свойства отладчика</translation> </message> <message> - <location filename="../Project/Project.py" line="5228" /> + <location filename="../Project/Project.py" line="5225" /> <source><b>Reset Debugger Properties</b><p>This resets the project specific debugger settings.</p></source> <translation><b>Сбросить свойства отладчика</b><p>Сбросить свойства отладчика, специфичные для данного проекта.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5244" /> - <location filename="../Project/Project.py" line="5243" /> + <location filename="../Project/Project.py" line="5241" /> + <location filename="../Project/Project.py" line="5240" /> <source>Load session</source> <translation>Загрузить сеанс</translation> </message> <message> - <location filename="../Project/Project.py" line="5250" /> + <location filename="../Project/Project.py" line="5247" /> <source>Load the projects session file.</source> <translation>Загрузить файл с сеансом проекта.</translation> </message> <message> - <location filename="../Project/Project.py" line="5252" /> + <location filename="../Project/Project.py" line="5249" /> <source><b>Load session</b><p>This loads the projects session file. The session consists of the following data.<br>- all open source files<br>- all breakpoint<br>- the commandline arguments<br>- the working directory<br>- the exception reporting flag</p></source> <translation><b>Загрузить сеанс</b> <p>Загрузить файл с сеансом проекта. Сеанс содержит следующие данные:<br> @@ -63763,18 +63776,18 @@ </p></translation> </message> <message> - <location filename="../Project/Project.py" line="5268" /> - <location filename="../Project/Project.py" line="5267" /> + <location filename="../Project/Project.py" line="5265" /> + <location filename="../Project/Project.py" line="5264" /> <source>Save session</source> <translation>Сохранить сеанс</translation> </message> <message> - <location filename="../Project/Project.py" line="5274" /> + <location filename="../Project/Project.py" line="5271" /> <source>Save the projects session file.</source> <translation>Сохранить файл с сеансом проекта.</translation> </message> <message> - <location filename="../Project/Project.py" line="5276" /> + <location filename="../Project/Project.py" line="5273" /> <source><b>Save session</b><p>This saves the projects session file. The session consists of the following data.<br>- all open source files<br>- all breakpoint<br>- the commandline arguments<br>- the working directory<br>- the exception reporting flag</p></source> <translation><b>Сохранить сеанс</b> <p>Сохранить файл с сеансом проекта. Сеанс содержит следующие данные:<br> @@ -63786,794 +63799,794 @@ </p></translation> </message> <message> - <location filename="../Project/Project.py" line="5292" /> - <location filename="../Project/Project.py" line="5291" /> + <location filename="../Project/Project.py" line="5289" /> + <location filename="../Project/Project.py" line="5288" /> <source>Delete session</source> <translation>Удалить сеанс</translation> </message> <message> - <location filename="../Project/Project.py" line="5298" /> + <location filename="../Project/Project.py" line="5295" /> <source>Delete the projects session file.</source> <translation>Удалить файл с сеансом проекта.</translation> </message> <message> - <location filename="../Project/Project.py" line="5300" /> + <location filename="../Project/Project.py" line="5297" /> <source><b>Delete session</b><p>This deletes the projects session file</p></source> <translation><b>Удалить сеанс</b><p>Удалить файл с сеансом проекта</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5315" /> + <location filename="../Project/Project.py" line="5312" /> <source>Code Metrics</source> <translation>Метрики кода</translation> </message> <message> - <location filename="../Project/Project.py" line="5316" /> + <location filename="../Project/Project.py" line="5313" /> <source>&Code Metrics...</source> <translation>&Метрики кода...</translation> </message> <message> + <location filename="../Project/Project.py" line="5320" /> + <source>Show some code metrics for the project.</source> + <translation>Отображение некоторых метрик кода проекта.</translation> + </message> + <message> <location filename="../Project/Project.py" line="5323" /> - <source>Show some code metrics for the project.</source> - <translation>Отображение некоторых метрик кода проекта.</translation> - </message> - <message> - <location filename="../Project/Project.py" line="5326" /> <source><b>Code Metrics...</b><p>This shows some code metrics for all Python files in the project.</p></source> <translation><b>Метрики кода...</b><p>Отображение некоторых метрик кода для всех Python-файлов проекта.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5336" /> + <location filename="../Project/Project.py" line="5333" /> <source>Python Code Coverage</source> <translation>Покрытие кода Python</translation> </message> <message> - <location filename="../Project/Project.py" line="5337" /> + <location filename="../Project/Project.py" line="5334" /> <source>Code Co&verage...</source> <translation>&Покрытие кода...</translation> </message> <message> + <location filename="../Project/Project.py" line="5341" /> + <source>Show code coverage information for the project.</source> + <translation>Показать информацию покрытия кода проекта.</translation> + </message> + <message> <location filename="../Project/Project.py" line="5344" /> - <source>Show code coverage information for the project.</source> - <translation>Показать информацию покрытия кода проекта.</translation> - </message> - <message> - <location filename="../Project/Project.py" line="5347" /> <source><b>Code Coverage...</b><p>This shows the code coverage information for all Python files in the project.</p></source> <translation><b>Покрытие кода...</b><p>Показать информацию покрытия кода всех Python-файлов проекта.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="6781" /> - <location filename="../Project/Project.py" line="6768" /> - <location filename="../Project/Project.py" line="5357" /> + <location filename="../Project/Project.py" line="6778" /> + <location filename="../Project/Project.py" line="6765" /> + <location filename="../Project/Project.py" line="5354" /> <source>Profile Data</source> <translation>Данные профайлера</translation> </message> <message> - <location filename="../Project/Project.py" line="5358" /> + <location filename="../Project/Project.py" line="5355" /> <source>&Profile Data...</source> <translation>&Данные профайлера...</translation> </message> <message> + <location filename="../Project/Project.py" line="5362" /> + <source>Show profiling data for the project.</source> + <translation>Отображение результатов профилирования проекта.</translation> + </message> + <message> <location filename="../Project/Project.py" line="5365" /> - <source>Show profiling data for the project.</source> - <translation>Отображение результатов профилирования проекта.</translation> - </message> - <message> - <location filename="../Project/Project.py" line="5368" /> <source><b>Profile Data...</b><p>This shows the profiling data for the project.</p></source> <translation><b>Данные профайлера...</b><p>Отображение результатов профилирования проекта.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="6833" /> - <location filename="../Project/Project.py" line="5383" /> + <location filename="../Project/Project.py" line="6830" /> + <location filename="../Project/Project.py" line="5380" /> <source>Application Diagram</source> <translation>Диаграмма приложения</translation> </message> <message> - <location filename="../Project/Project.py" line="5384" /> + <location filename="../Project/Project.py" line="5381" /> <source>&Application Diagram...</source> <translation>&Диаграмма приложения...</translation> </message> <message> + <location filename="../Project/Project.py" line="5388" /> + <source>Show a diagram of the project.</source> + <translation>Показать диаграмму проекта.</translation> + </message> + <message> <location filename="../Project/Project.py" line="5391" /> - <source>Show a diagram of the project.</source> - <translation>Показать диаграмму проекта.</translation> - </message> - <message> - <location filename="../Project/Project.py" line="5394" /> <source><b>Application Diagram...</b><p>This shows a diagram of the project.</p></source> <translation><b>Диаграмма приложения...</b><p>Отображает диаграмму проекта.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5403" /> + <location filename="../Project/Project.py" line="5400" /> <source>Load Diagram</source> <translation>Загрузить диаграмму</translation> </message> <message> - <location filename="../Project/Project.py" line="5404" /> + <location filename="../Project/Project.py" line="5401" /> <source>&Load Diagram...</source> <translation>&Загрузить диаграмму...</translation> </message> <message> - <location filename="../Project/Project.py" line="5410" /> + <location filename="../Project/Project.py" line="5407" /> <source>Load a diagram from file.</source> <translation>Загрузить диаграмму из файла.</translation> </message> <message> - <location filename="../Project/Project.py" line="5412" /> + <location filename="../Project/Project.py" line="5409" /> <source><b>Load Diagram...</b><p>This loads a diagram from file.</p></source> <translation><b>Загрузить диаграмму...</b><p>Загрузить диаграмму из файла.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="7001" /> - <location filename="../Project/Project.py" line="6946" /> - <location filename="../Project/Project.py" line="5427" /> + <location filename="../Project/Project.py" line="6998" /> + <location filename="../Project/Project.py" line="6943" /> + <location filename="../Project/Project.py" line="5424" /> <source>Create Package List</source> <translation>Создать список пакета</translation> </message> <message> - <location filename="../Project/Project.py" line="5429" /> + <location filename="../Project/Project.py" line="5426" /> <source>Create &Package List</source> <translation>&Создать список пакета</translation> </message> <message> + <location filename="../Project/Project.py" line="5433" /> + <source>Create an initial PKGLIST file for an eric plugin.</source> + <translation>Создать первичный файл PKGLIST для плагина eric.</translation> + </message> + <message> <location filename="../Project/Project.py" line="5436" /> - <source>Create an initial PKGLIST file for an eric plugin.</source> - <translation>Создать первичный файл PKGLIST для плагина eric.</translation> - </message> - <message> - <location filename="../Project/Project.py" line="5439" /> <source><b>Create Package List</b><p>This creates an initial list of files to include in an eric plugin archive. The list is created from the project file.</p></source> <translation><b>Создать список пакета</b><p>Создаёт начальный список файлов для включения в архив плагина eric. Список создаётся из файла проекта.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="7071" /> - <location filename="../Project/Project.py" line="5450" /> + <location filename="../Project/Project.py" line="7068" /> + <location filename="../Project/Project.py" line="5447" /> <source>Create Plugin Archives</source> <translation>Создать архивы плагина</translation> </message> <message> - <location filename="../Project/Project.py" line="5452" /> + <location filename="../Project/Project.py" line="5449" /> <source>Create Plugin &Archives</source> <translation>Создать архивы &плагина</translation> </message> <message> - <location filename="../Project/Project.py" line="5458" /> + <location filename="../Project/Project.py" line="5455" /> <source>Create eric plugin archive files.</source> <translation>Создание архивных файлов плагина eric.</translation> </message> <message> - <location filename="../Project/Project.py" line="5460" /> + <location filename="../Project/Project.py" line="5457" /> <source><b>Create Plugin Archives</b><p>This creates eric plugin archive files using the list of files given in a PKGLIST* file. The archive name is built from the main script name if not designated in the package list file.</p></source> <translation><b>Создать архивы плагина</b><p>Создание архивных файлов плагина eric, используя список файлов, приведенный в файле PKGLIST. Имя архива, если оно не задано в файле со списком пакета, создается из имени главного сценария.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5472" /> + <location filename="../Project/Project.py" line="5469" /> <source>Create Plugin Archives (Snapshot)</source> <translation>Создать архивы плагина (Snapshot)</translation> </message> <message> - <location filename="../Project/Project.py" line="5474" /> + <location filename="../Project/Project.py" line="5471" /> <source>Create Plugin Archives (&Snapshot)</source> <translation>Создать архивы плагина (&Snapshot)</translation> </message> <message> + <location filename="../Project/Project.py" line="5478" /> + <source>Create eric plugin archive files (snapshot releases).</source> + <translation>Создание архивных файлов плагина eric (snapshot releases).</translation> + </message> + <message> <location filename="../Project/Project.py" line="5481" /> - <source>Create eric plugin archive files (snapshot releases).</source> - <translation>Создание архивных файлов плагина eric (snapshot releases).</translation> - </message> - <message> - <location filename="../Project/Project.py" line="5484" /> <source><b>Create Plugin Archives (Snapshot)</b><p>This creates eric plugin archive files using the list of files given in the PKGLIST* file. The archive name is built from the main script name if not designated in the package list file. The version entry of the main script is modified to reflect a snapshot release.</p></source> <translation><b>Создать архивы плагина (Snapshot)</b><p>Создание архивных файлов плагина eric, используя список файлов, приведенный в файле PKGLIST. Имя архива, если оно не задано в файле со списком пакета, создается из имени главного сценария. Версия главного скрипта изменяется в соответствии релизом snapshot.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="7513" /> - <location filename="../Project/Project.py" line="7484" /> - <location filename="../Project/Project.py" line="7438" /> - <location filename="../Project/Project.py" line="7390" /> - <location filename="../Project/Project.py" line="5503" /> + <location filename="../Project/Project.py" line="7510" /> + <location filename="../Project/Project.py" line="7481" /> + <location filename="../Project/Project.py" line="7435" /> + <location filename="../Project/Project.py" line="7387" /> + <location filename="../Project/Project.py" line="5500" /> <source>Execute Make</source> <translation>Выполнить Make</translation> </message> <message> - <location filename="../Project/Project.py" line="5504" /> + <location filename="../Project/Project.py" line="5501" /> <source>&Execute Make</source> <translation>&Выполнить Make</translation> </message> <message> - <location filename="../Project/Project.py" line="5510" /> + <location filename="../Project/Project.py" line="5507" /> <source>Perform a 'make' run.</source> <translation>Выполнить прогон 'make'.</translation> </message> <message> - <location filename="../Project/Project.py" line="5512" /> + <location filename="../Project/Project.py" line="5509" /> <source><b>Execute Make</b><p>This performs a 'make' run to rebuild the configured target.</p></source> <translation><b>Выполнить Make</b><p>Выполнение прогона 'make' для пересборки настроеной цели.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="7490" /> - <location filename="../Project/Project.py" line="5522" /> + <location filename="../Project/Project.py" line="7487" /> + <location filename="../Project/Project.py" line="5519" /> <source>Test for Changes</source> <translation>Проверить изменения</translation> </message> <message> - <location filename="../Project/Project.py" line="5523" /> + <location filename="../Project/Project.py" line="5520" /> <source>&Test for Changes</source> <translation>&Проверить изменения</translation> </message> <message> + <location filename="../Project/Project.py" line="5527" /> + <source>Question 'make', if a rebuild is needed.</source> + <translation>Запрос 'make', если необходима пересборка.</translation> + </message> + <message> <location filename="../Project/Project.py" line="5530" /> - <source>Question 'make', if a rebuild is needed.</source> - <translation>Запрос 'make', если необходима пересборка.</translation> - </message> - <message> - <location filename="../Project/Project.py" line="5533" /> <source><b>Test for Changes</b><p>This questions 'make', if a rebuild of the configured target is necessary.</p></source> <translation><b>Проверка изменений</b><p>Запрос 'make', если требуется пересборка настроенной цели.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5551" /> + <location filename="../Project/Project.py" line="5548" /> <source>Create SBOM File</source> <translation>Создать файл SBOM</translation> </message> <message> - <location filename="../Project/Project.py" line="5552" /> + <location filename="../Project/Project.py" line="5549" /> <source>Create &SBOM File</source> <translation>Создать файл &SBOM</translation> </message> <message> + <location filename="../Project/Project.py" line="5556" /> + <source>Create a SBOM file of the project dependencies.</source> + <translation>Создайте SBOM файл зависимостей проекта.</translation> + </message> + <message> <location filename="../Project/Project.py" line="5559" /> - <source>Create a SBOM file of the project dependencies.</source> - <translation>Создайте SBOM файл зависимостей проекта.</translation> - </message> - <message> - <location filename="../Project/Project.py" line="5562" /> <source><b>Create SBOM File</b><p>This allows the creation of a SBOM file of the project dependencies. This may be based on various input sources and will be saved as a CycloneDX SBOM file.</p></source> <translation><b>Создать файл SBOM</b><p>Создание SBOM файла зависимостей проекта. Он может быть основан на различных источниках ввода и будет сохранен как файл CycloneDX SBOM.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5573" /> + <location filename="../Project/Project.py" line="5570" /> <source>Clear Byte Code Caches</source> <translation>Очистить кэши байт-кода</translation> </message> <message> - <location filename="../Project/Project.py" line="5574" /> + <location filename="../Project/Project.py" line="5571" /> <source>Clear Byte Code &Caches</source> <translation>Очистить &кэши байт-кода</translation> </message> <message> + <location filename="../Project/Project.py" line="5578" /> + <source>Clear the byte code caches of the project.</source> + <translation>Очистить кэши байт-кода проекта.</translation> + </message> + <message> <location filename="../Project/Project.py" line="5581" /> - <source>Clear the byte code caches of the project.</source> - <translation>Очистить кэши байт-кода проекта.</translation> - </message> - <message> - <location filename="../Project/Project.py" line="5584" /> <source><b>Clear Byte Code Caches</b><p>This deletes all directories containing byte code cache files.</p></source> <translation><b>Очистить кэш байт-кода</b><p>При этом будут удалены все каталоги, содержащие файлы кэша байт-кода.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5600" /> + <location filename="../Project/Project.py" line="5597" /> <source>About Black</source> <translation>О Black</translation> </message> <message> - <location filename="../Project/Project.py" line="5601" /> + <location filename="../Project/Project.py" line="5598" /> <source>&Black</source> <translation>&Black</translation> </message> <message> - <location filename="../Project/Project.py" line="5607" /> + <location filename="../Project/Project.py" line="5604" /> <source>Show some information about 'Black'.</source> <translation>Отображение некоторой информации о форматере 'Black'.</translation> </message> <message> - <location filename="../Project/Project.py" line="5609" /> + <location filename="../Project/Project.py" line="5606" /> <source><b>Black</b><p>This shows some information about the installed 'Black' tool.</p></source> <translation><b>Black</b><p>Отображение некоторой информации об установленном форматере 'Black'.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5621" /> + <location filename="../Project/Project.py" line="5618" /> <source>Format Code</source> <translation>Форматировать код</translation> </message> <message> - <location filename="../Project/Project.py" line="5622" /> + <location filename="../Project/Project.py" line="5619" /> <source>&Format Code</source> <translation>&Форматировать код</translation> </message> <message> + <location filename="../Project/Project.py" line="5626" /> + <source>Format the project sources with 'Black'.</source> + <translation>Форматирование исходников проекта с помощью 'Black'.</translation> + </message> + <message> <location filename="../Project/Project.py" line="5629" /> - <source>Format the project sources with 'Black'.</source> - <translation>Форматирование исходников проекта с помощью 'Black'.</translation> - </message> - <message> - <location filename="../Project/Project.py" line="5632" /> <source><b>Format Code</b><p>This shows a dialog to enter parameters for the formatting run and reformats the project sources using 'Black'.</p></source> <translation><b>Форматировать код</b><p>Отображение диалога задания параметров для форматирования и переформатирование исходников проекта с помощью 'Black'.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5644" /> + <location filename="../Project/Project.py" line="5641" /> <source>Check Code Formatting</source> <translation>Проверить форматирование кода</translation> </message> <message> - <location filename="../Project/Project.py" line="5645" /> + <location filename="../Project/Project.py" line="5642" /> <source>&Check Code Formatting</source> <translation>&Проверить форматирование кода</translation> </message> <message> - <location filename="../Project/Project.py" line="5652" /> + <location filename="../Project/Project.py" line="5649" /> <source>Check, if the project sources need to be reformatted with 'Black'.</source> <translation>Проверка возможности переформатирования исходников проекта с помощью 'Black'.</translation> </message> <message> - <location filename="../Project/Project.py" line="5657" /> + <location filename="../Project/Project.py" line="5654" /> <source><b>Check Code Formatting</b><p>This shows a dialog to enter parameters for the format check run and performs a check, if the project sources need to be reformatted using 'Black'.</p></source> <translation><b>Проверить форматирование кода</b><p>Отображение диалога задания параметров для запуска проверки формата и выполнение проверки, если исходный проект необходимо переформатировать посредством 'Black'.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5670" /> + <location filename="../Project/Project.py" line="5667" /> <source>Code Formatting Diff</source> <translation>Различия форматирования кода</translation> </message> <message> - <location filename="../Project/Project.py" line="5671" /> + <location filename="../Project/Project.py" line="5668" /> <source>Code Formatting &Diff</source> <translation>&Различия форматирования кода</translation> </message> <message> - <location filename="../Project/Project.py" line="5678" /> + <location filename="../Project/Project.py" line="5675" /> <source>Generate a unified diff of potential project source reformatting with 'Black'.</source> <translation>Генерация унифицированного diff потенциального переформатирования исходников проекта с помощью 'Black'.</translation> </message> <message> - <location filename="../Project/Project.py" line="5684" /> + <location filename="../Project/Project.py" line="5681" /> <source><b>Diff Code Formatting</b><p>This shows a dialog to enter parameters for the format diff run and generates a unified diff of potential project source reformatting using 'Black'.</p></source> <translation><b>Различия форматирования кода</b><p>Отображение диалога задания параметров для запуска сравнения форматов и генерации единого diff потенциального переформатирования исходного проекта с помощью 'Black'.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5849" /> - <location filename="../Project/Project.py" line="5799" /> - <location filename="../Project/Project.py" line="5798" /> - <location filename="../Project/Project.py" line="5698" /> - <location filename="../Project/Project.py" line="5697" /> + <location filename="../Project/Project.py" line="5846" /> + <location filename="../Project/Project.py" line="5796" /> + <location filename="../Project/Project.py" line="5795" /> + <location filename="../Project/Project.py" line="5695" /> + <location filename="../Project/Project.py" line="5694" /> <source>Configure</source> <translation>Конфигурация</translation> </message> <message> - <location filename="../Project/Project.py" line="5705" /> + <location filename="../Project/Project.py" line="5702" /> <source>Enter the parameters for formatting the project sources with 'Black'.</source> <translation>Задание параметров форматирования исходников проекта с помощью 'Black'.</translation> </message> <message> - <location filename="../Project/Project.py" line="5710" /> + <location filename="../Project/Project.py" line="5707" /> <source><b>Configure</b><p>This shows a dialog to enter the parameters for formatting the project sources with 'Black'.</p></source> <translation><b>Конфигурация</b><p>Отображение диалога задания параметров для форматирования исходников проекта с помощью 'Black'.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5726" /> + <location filename="../Project/Project.py" line="5723" /> <source>About isort</source> <translation>О isort</translation> </message> <message> - <location filename="../Project/Project.py" line="5727" /> + <location filename="../Project/Project.py" line="5724" /> <source>&isort</source> <translation>&isort</translation> </message> <message> - <location filename="../Project/Project.py" line="5733" /> + <location filename="../Project/Project.py" line="5730" /> <source>Show some information about 'isort'.</source> <translation>Отображение некоторой информации о утилите 'isort'.</translation> </message> <message> - <location filename="../Project/Project.py" line="5735" /> + <location filename="../Project/Project.py" line="5732" /> <source><b>isort</b><p>This shows some information about the installed 'isort' tool.</p></source> <translation><b>isort</b><p>Отображение некоторой информацим об установленном инструменте isort.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5748" /> - <location filename="../Project/Project.py" line="5747" /> + <location filename="../Project/Project.py" line="5745" /> + <location filename="../Project/Project.py" line="5744" /> <source>Sort Imports</source> <translation>Сортировать импорт</translation> </message> <message> + <location filename="../Project/Project.py" line="5752" /> + <source>Sort the import statements of the project sources with 'isort'.</source> + <translation>Сортировка операторов импорта исходников проекта с помощью 'isort'.</translation> + </message> + <message> <location filename="../Project/Project.py" line="5755" /> - <source>Sort the import statements of the project sources with 'isort'.</source> - <translation>Сортировка операторов импорта исходников проекта с помощью 'isort'.</translation> - </message> - <message> - <location filename="../Project/Project.py" line="5758" /> <source><b>Sort Imports</b><p>This shows a dialog to enter parameters for the imports sorting run and sorts the import statements of the project sources using 'isort'.</p></source> <translation><b>Сортировка импорта</b><p>Отображение диалога задания параметров для запуска сортировки импорта и сортировки операторов импорта исходного проекта с помощью 'isort'.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5772" /> - <location filename="../Project/Project.py" line="5771" /> + <location filename="../Project/Project.py" line="5769" /> + <location filename="../Project/Project.py" line="5768" /> <source>Imports Sorting Diff</source> <translation>Различия сортировки импорта</translation> </message> <message> - <location filename="../Project/Project.py" line="5779" /> + <location filename="../Project/Project.py" line="5776" /> <source>Generate a unified diff of potential project source imports resorting with 'isort'.</source> <translation>Создание унифицированного diff потенциального импорта исходников проекта c помощью 'isort'.</translation> </message> <message> - <location filename="../Project/Project.py" line="5785" /> + <location filename="../Project/Project.py" line="5782" /> <source><b>Imports Sorting Diff</b><p>This shows a dialog to enter parameters for the imports sorting diff run and generates a unified diff of potential project source changes using 'isort'.</p></source> <translation><b>Различия сортировки импорта</b><p>Отображение диалога задания параметров для запуска сравнения сортировки импорта и создания унифицированного diff потенциальных изменений исходников проекта с помощью 'isort'.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5806" /> + <location filename="../Project/Project.py" line="5803" /> <source>Enter the parameters for resorting the project sources import statements with 'isort'.</source> <translation>Задание параметров сортировки операторов импорта исходников проекта с помощью 'isort'.</translation> </message> <message> - <location filename="../Project/Project.py" line="5812" /> + <location filename="../Project/Project.py" line="5809" /> <source><b>Configure</b><p>This shows a dialog to enter the parameters for resorting the import statements of the project sources with 'isort'.</p></source> <translation><b>Конфигурация</b><p>Отображение диалогового окна ввода параметров для сортировки операторов импорта исходников проекта с помощью 'isort'.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5828" /> + <location filename="../Project/Project.py" line="5825" /> <source>Install Project</source> <translation>Установить проект</translation> </message> <message> - <location filename="../Project/Project.py" line="5829" /> + <location filename="../Project/Project.py" line="5826" /> <source>&Install Project</source> <translation>&Установить проект</translation> </message> <message> + <location filename="../Project/Project.py" line="5833" /> + <source>Install the project into the embedded environment.</source> + <translation>Установка проекта во встроенную среду.</translation> + </message> + <message> <location filename="../Project/Project.py" line="5836" /> - <source>Install the project into the embedded environment.</source> - <translation>Установка проекта во встроенную среду.</translation> - </message> - <message> - <location filename="../Project/Project.py" line="5839" /> <source><b>Install Project</b><p>This installs the project into the embedded virtual environment in editable mode (i.e. development mode).</p></source> <translation><b>Установить проект</b><p>Установка проекта во встроенное виртуальное окружение в режиме редактирования (т.е. в режиме разработки).</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5850" /> + <location filename="../Project/Project.py" line="5847" /> <source>&Configure</source> <translation>&Настройки</translation> </message> <message> + <location filename="../Project/Project.py" line="5854" /> + <source>Configure the embedded environment.</source> + <translation>Настройка встроенного виртуального окружения.</translation> + </message> + <message> <location filename="../Project/Project.py" line="5857" /> - <source>Configure the embedded environment.</source> - <translation>Настройка встроенного виртуального окружения.</translation> - </message> - <message> - <location filename="../Project/Project.py" line="5860" /> <source><b>Configure</b><p>This opens a dialog to configure the embedded virtual environment of the project.</p></source> <translation><b>Настройки</b><p>Открытие диалогового окна для настройки встроенного виртуального окружения проекта.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5870" /> + <location filename="../Project/Project.py" line="5867" /> <source>Upgrade</source> <translation>Модернизировать</translation> </message> <message> - <location filename="../Project/Project.py" line="5871" /> + <location filename="../Project/Project.py" line="5868" /> <source>&Upgrade</source> <translation>&Модернизировать</translation> </message> <message> - <location filename="../Project/Project.py" line="5877" /> + <location filename="../Project/Project.py" line="5874" /> <source>Upgrade the embedded environment.</source> <translation>Модернизация встроенного виртуального окружения.</translation> </message> <message> - <location filename="../Project/Project.py" line="5879" /> + <location filename="../Project/Project.py" line="5876" /> <source><b>Upgrade</b><p>This opens a dialog to enter the parameters to upgrade the embedded virtual environment of the project.</p></source> <translation><b>Модернизировать</b><p>Открытие диалогового окна для ввода параметров обновления встроенной виртуальной среды проекта.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5891" /> + <location filename="../Project/Project.py" line="5888" /> <source>Recreate</source> <translation>Пересоздать</translation> </message> <message> - <location filename="../Project/Project.py" line="5892" /> + <location filename="../Project/Project.py" line="5889" /> <source>&Recreate</source> <translation>&Пересоздать</translation> </message> <message> - <location filename="../Project/Project.py" line="5898" /> + <location filename="../Project/Project.py" line="5895" /> <source>Recreate the embedded environment.</source> <translation>Пересоздание встроенного виртуального окружения.</translation> </message> <message> - <location filename="../Project/Project.py" line="5900" /> + <location filename="../Project/Project.py" line="5897" /> <source><b>Recreate</b><p>This opens a dialog to enter the parameters to recreate the embedded virtual environment of the project. The existing environment is cleared first.</p></source> <translation><b>Пересоздать</b><p>При этом открывается диалоговое окно для ввода параметров для воссоздания встроенной виртуальной среды проекта. Сначала очищается существующая среда.</p></translation> </message> <message> + <location filename="../Project/Project.py" line="5929" /> + <source>&Project</source> + <translation>&Проект</translation> + </message> + <message> + <location filename="../Project/Project.py" line="5930" /> + <source>Open &Recent Projects</source> + <translation>Открыть &недавние проекты</translation> + </message> + <message> <location filename="../Project/Project.py" line="5932" /> - <source>&Project</source> - <translation>&Проект</translation> + <source>Session</source> + <translation>Сеанс</translation> </message> <message> <location filename="../Project/Project.py" line="5933" /> - <source>Open &Recent Projects</source> - <translation>Открыть &недавние проекты</translation> - </message> - <message> - <location filename="../Project/Project.py" line="5935" /> - <source>Session</source> - <translation>Сеанс</translation> + <source>Debugger</source> + <translation>Отладка</translation> + </message> + <message> + <location filename="../Project/Project.py" line="5934" /> + <source>Embedded Environment</source> + <translation>Встроенная среда окружения</translation> </message> <message> <location filename="../Project/Project.py" line="5936" /> - <source>Debugger</source> - <translation>Отладка</translation> + <source>Project-T&ools</source> + <translation>&Инструменты-проекта</translation> </message> <message> <location filename="../Project/Project.py" line="5937" /> - <source>Embedded Environment</source> - <translation>Встроенная среда окружения</translation> - </message> - <message> - <location filename="../Project/Project.py" line="5939" /> - <source>Project-T&ools</source> - <translation>&Инструменты-проекта</translation> - </message> - <message> - <location filename="../Project/Project.py" line="5940" /> <source>&Version Control</source> <translation>Контроль &версий</translation> </message> <message> - <location filename="../Project/Project.py" line="5944" /> + <location filename="../Project/Project.py" line="5941" /> <source>Chec&k</source> <translation>&Проверить</translation> </message> <message> + <location filename="../Project/Project.py" line="5943" /> + <source>Code &Formatting</source> + <translation>&Форматировать код</translation> + </message> + <message> + <location filename="../Project/Project.py" line="5945" /> + <source>Sho&w</source> + <translation>По&казать</translation> + </message> + <message> <location filename="../Project/Project.py" line="5946" /> - <source>Code &Formatting</source> - <translation>&Форматировать код</translation> + <source>&Diagrams</source> + <translation>&Диаграммы</translation> + </message> + <message> + <location filename="../Project/Project.py" line="5947" /> + <source>Pac&kagers</source> + <translation>У&паковщики</translation> </message> <message> <location filename="../Project/Project.py" line="5948" /> - <source>Sho&w</source> - <translation>По&казать</translation> - </message> - <message> - <location filename="../Project/Project.py" line="5949" /> - <source>&Diagrams</source> - <translation>&Диаграммы</translation> + <source>Source &Documentation</source> + <translation>&Документация исходников</translation> </message> <message> <location filename="../Project/Project.py" line="5950" /> - <source>Pac&kagers</source> - <translation>У&паковщики</translation> + <source>Make</source> + <translation>Make</translation> </message> <message> <location filename="../Project/Project.py" line="5951" /> - <source>Source &Documentation</source> - <translation>&Документация исходников</translation> - </message> - <message> - <location filename="../Project/Project.py" line="5953" /> - <source>Make</source> - <translation>Make</translation> - </message> - <message> - <location filename="../Project/Project.py" line="5954" /> <source>Other Tools</source> <translation>Другие инструменты</translation> </message> <message> - <location filename="../Project/Project.py" line="6116" /> - <location filename="../Project/Project.py" line="6114" /> + <location filename="../Project/Project.py" line="6113" /> + <location filename="../Project/Project.py" line="6111" /> <source>Project</source> <translation>Проект</translation> </message> <message> - <location filename="../Project/Project.py" line="6198" /> + <location filename="../Project/Project.py" line="6195" /> <source>&Clear</source> <translation>&Очистить</translation> </message> <message> - <location filename="../Project/Project.py" line="6395" /> + <location filename="../Project/Project.py" line="6392" /> <source>Search New Files</source> <translation>Поиск новых файлов</translation> </message> <message> - <location filename="../Project/Project.py" line="6396" /> + <location filename="../Project/Project.py" line="6393" /> <source>There were no new files found to be added.</source> <translation>Не найдено новых файлов для добавления.</translation> </message> <message> - <location filename="../Project/Project.py" line="6557" /> - <location filename="../Project/Project.py" line="6544" /> + <location filename="../Project/Project.py" line="6554" /> + <location filename="../Project/Project.py" line="6541" /> <source>Version Control System</source> <translation>Система контроля версий</translation> </message> <message> - <location filename="../Project/Project.py" line="6545" /> + <location filename="../Project/Project.py" line="6542" /> <source><p>The selected VCS <b>{0}</b> could not be found. <br/>Reverting override.</p><p>{1}</p></source> <translation><p>Выбранная VCS <b>{0}</b> не найдена.<br/>Возврат отвергнут.</p><p>{1}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="6558" /> + <location filename="../Project/Project.py" line="6555" /> <source><p>The selected VCS <b>{0}</b> could not be found.<br/>Disabling version control.</p><p>{1}</p></source> <translation><p>Выбранная VCS <b>{0}</b> не найдена.<br/>Контроль версий отключен.</p><p>{1}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="6715" /> + <location filename="../Project/Project.py" line="6712" /> <source>Coverage Data</source> <translation>Данные покрытия</translation> </message> <message> - <location filename="../Project/Project.py" line="6769" /> - <location filename="../Project/Project.py" line="6716" /> + <location filename="../Project/Project.py" line="6766" /> + <location filename="../Project/Project.py" line="6713" /> <source>There is no main script defined for the current project. Aborting</source> <translation>Для текущего проекта не определён главный сценарий. Отмена</translation> </message> <message> - <location filename="../Project/Project.py" line="6728" /> + <location filename="../Project/Project.py" line="6725" /> <source>Code Coverage</source> <translation>Покрытие кода</translation> </message> <message> - <location filename="../Project/Project.py" line="6729" /> + <location filename="../Project/Project.py" line="6726" /> <source>Please select a coverage file</source> <translation>Пожалуйста, выберите файл покрытия</translation> </message> <message> - <location filename="../Project/Project.py" line="6782" /> + <location filename="../Project/Project.py" line="6779" /> <source>Please select a profile file</source> <translation>Пожалуйста, выберите файл профиля</translation> </message> <message> - <location filename="../Project/Project.py" line="6834" /> + <location filename="../Project/Project.py" line="6831" /> <source>Include module names?</source> <translation>Включать имена модулей?</translation> </message> <message> - <location filename="../Project/Project.py" line="6947" /> + <location filename="../Project/Project.py" line="6944" /> <source><p>The file <b>PKGLIST</b> already exists.</p><p>Overwrite it?</p></source> <translation><p>Файл <b>PKGLIST</b> уже существует. Переписать?</p></translation> </message> <message> - <location filename="../Project/Project.py" line="7002" /> + <location filename="../Project/Project.py" line="6999" /> <source><p>The file <b>PKGLIST</b> could not be created.</p><p>Reason: {0}</p></source> <translation><p>Невозможно создать файл <b>PKGLIST</b>.</p><p>Причина: {0}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="7298" /> - <location filename="../Project/Project.py" line="7254" /> - <location filename="../Project/Project.py" line="7204" /> - <location filename="../Project/Project.py" line="7193" /> - <location filename="../Project/Project.py" line="7175" /> - <location filename="../Project/Project.py" line="7142" /> - <location filename="../Project/Project.py" line="7112" /> - <location filename="../Project/Project.py" line="7084" /> - <location filename="../Project/Project.py" line="7054" /> - <location filename="../Project/Project.py" line="7040" /> - <location filename="../Project/Project.py" line="7023" /> + <location filename="../Project/Project.py" line="7295" /> + <location filename="../Project/Project.py" line="7251" /> + <location filename="../Project/Project.py" line="7201" /> + <location filename="../Project/Project.py" line="7190" /> + <location filename="../Project/Project.py" line="7172" /> + <location filename="../Project/Project.py" line="7139" /> + <location filename="../Project/Project.py" line="7109" /> + <location filename="../Project/Project.py" line="7081" /> + <location filename="../Project/Project.py" line="7051" /> + <location filename="../Project/Project.py" line="7037" /> + <location filename="../Project/Project.py" line="7020" /> <source>Create Plugin Archive</source> <translation>Создать архив плагина</translation> </message> <message> - <location filename="../Project/Project.py" line="7024" /> + <location filename="../Project/Project.py" line="7021" /> <source>The project does not have a main script defined. Aborting...</source> <translation>Для текущего проекта не определён главный сценарий. Отмена...</translation> </message> <message> - <location filename="../Project/Project.py" line="7041" /> + <location filename="../Project/Project.py" line="7038" /> <source>Select package lists:</source> <translation>Выбор списков пакета:</translation> </message> <message> - <location filename="../Project/Project.py" line="7055" /> + <location filename="../Project/Project.py" line="7052" /> <source><p>No package list files (PKGLIST*) available or selected. Aborting...</p></source> <translation><p>Файлы со списком пакета (PKGLIST*) не доступны или не выбраны. Отмена...</p></translation> </message> <message> - <location filename="../Project/Project.py" line="7063" /> + <location filename="../Project/Project.py" line="7060" /> <source>Creating plugin archives...</source> <translation>Создание архивов плагина...</translation> </message> <message> + <location filename="../Project/Project.py" line="7061" /> + <source>Abort</source> + <translation>Прервать</translation> + </message> + <message> <location filename="../Project/Project.py" line="7064" /> - <source>Abort</source> - <translation>Прервать</translation> - </message> - <message> - <location filename="../Project/Project.py" line="7067" /> <source>%v/%m Archives</source> <translation>%v из %m архивов</translation> </message> <message> - <location filename="../Project/Project.py" line="7085" /> + <location filename="../Project/Project.py" line="7082" /> <source><p>The file <b>{0}</b> could not be read.</p><p>Reason: {1}</p></source> <translation><p>Невозможно прочитать файл <b>{0}</b>.</p><p>Причина: {1}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="7113" /> + <location filename="../Project/Project.py" line="7110" /> <source><p>The file <b>{0}</b> is not ready yet.</p><p>Please rework it and delete the'; initial_list' line of the header.</p></source> <translation><p>Файл <b>{0}</b> пока не готов.</p><p>Пожалуйста переработайте его и удалите строки '; initial_list' из его заголовка.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="7143" /> + <location filename="../Project/Project.py" line="7140" /> <source><p>The eric plugin archive file <b>{0}</b> could not be created.</p><p>Reason: {1}</p></source> <translation><p>Невозможно создать архив плагина <b>{0}</b> eric.</p><p>Причина: {1}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="7176" /> + <location filename="../Project/Project.py" line="7173" /> <source><p>The file <b>{0}</b> could not be stored in the archive. Ignoring it.</p><p>Reason: {1}</p></source> <translation><p>Невозможно сохранить файл <b>{0}</b> в архиве. Игнорируем его.</p><p>Причина: {1}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="7194" /> + <location filename="../Project/Project.py" line="7191" /> <source><p>The eric plugin archive files were created with some errors.</p></source> <translation><p>Файлы архива плагина eric были созданы с ошибками.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="7205" /> + <location filename="../Project/Project.py" line="7202" /> <source><p>The eric plugin archive files were created successfully.</p></source> <translation><p>Файлы архива плагина eric созданы успешно.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="7255" /> + <location filename="../Project/Project.py" line="7252" /> <source><p>The plugin file <b>{0}</b> could not be read.</p><p>Reason: {1}</p></source> <translation><p>Невозможно прочитать файл плагина <b>{0}</b>.</p><p>Причина: {1}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="7299" /> + <location filename="../Project/Project.py" line="7296" /> <source><p>The plugin file <b>{0}</b> could not be read.</p> <p>Reason: {1}</p></source> <translation><p>Невозможно прочитать файл плагина <b>{0}</b>.</p><p>Причина: {1}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="7391" /> + <location filename="../Project/Project.py" line="7388" /> <source>'Make' is not supported for remote projects. Aborting...</source> <translation>'Make' не поддерживает для удаленных проектов. Отмена...</translation> </message> <message> - <location filename="../Project/Project.py" line="7439" /> + <location filename="../Project/Project.py" line="7436" /> <source>The make process did not start.</source> <translation>Make-процесс не был запущен.</translation> </message> <message> - <location filename="../Project/Project.py" line="7485" /> + <location filename="../Project/Project.py" line="7482" /> <source>The make process crashed.</source> <translation>Make-процесс разрушен.</translation> </message> <message> - <location filename="../Project/Project.py" line="7493" /> + <location filename="../Project/Project.py" line="7490" /> <source><p>There are changes that require the configured make target <b>{0}</b> to be rebuilt.</p></source> <translation><p>Существуют изменения, которые требуют конфигурации make-цели <b>{0}</b> для ее пересборки.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="7498" /> + <location filename="../Project/Project.py" line="7495" /> <source><p>There are changes that require the default make target to be rebuilt.</p></source> <translation><p>Существуют изменения, которые требуют make-цель по умолчанию для ее пересборки.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="7514" /> + <location filename="../Project/Project.py" line="7511" /> <source>The makefile contains errors.</source> <translation>Makefile содержит ошибки.</translation> </message> <message> - <location filename="../Project/Project.py" line="7944" /> + <location filename="../Project/Project.py" line="7941" /> <source>Interpreter Missing</source> <translation>Отсутствует интерпретатор</translation> </message> <message> - <location filename="../Project/Project.py" line="7945" /> + <location filename="../Project/Project.py" line="7942" /> <source>The configured interpreter of the embedded environment does not exist anymore. Shall the environment be upgraded?</source> <translation>Сконфигурированный интерпретатор встроенной среды окружения больше не существует. Следует ли обновить среду?</translation> </message> <message> - <location filename="../Project/Project.py" line="8026" /> + <location filename="../Project/Project.py" line="8023" /> <source>Open Remote Project</source> <translation>Открыть удаленный проект</translation> </message> <message> - <location filename="../Project/Project.py" line="8057" /> - <location filename="../Project/Project.py" line="8042" /> + <location filename="../Project/Project.py" line="8054" /> + <location filename="../Project/Project.py" line="8039" /> <source>Save Remote Project</source> <translation>Сохранить удаленный проект</translation> </message> @@ -64700,8 +64713,8 @@ <translation>Статус VCS</translation> </message> <message> - <location filename="../Project/ProjectBrowserModel.py" line="922" /> - <location filename="../Project/ProjectBrowserModel.py" line="900" /> + <location filename="../Project/ProjectBrowserModel.py" line="926" /> + <location filename="../Project/ProjectBrowserModel.py" line="904" /> <location filename="../Project/ProjectBrowserModel.py" line="548" /> <location filename="../Project/ProjectBrowserModel.py" line="418" /> <source>local</source> @@ -69219,7 +69232,7 @@ <context> <name>PythonDisViewer</name> <message> - <location filename="../UI/PythonDisViewer.py" line="61" /> + <location filename="../UI/PythonDisViewer.py" line="62" /> <location filename="../UI/PythonDisViewer.ui" line="0" /> <source>Disassembly</source> <translation>Disassembly</translation> @@ -69235,160 +69248,160 @@ <translation>bold: помеченная инструкция</translation> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="73" /> + <location filename="../UI/PythonDisViewer.py" line="74" /> <source>Line</source> <translation>Строка</translation> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="74" /> - <source>Offset</source> - <translation>Смещение</translation> - </message> - <message> <location filename="../UI/PythonDisViewer.py" line="75" /> - <source>Operation</source> - <translation>Операция</translation> + <source>Offset</source> + <translation>Смещение</translation> </message> <message> <location filename="../UI/PythonDisViewer.py" line="76" /> - <source>Parameters</source> - <translation>Параметры</translation> + <source>Operation</source> + <translation>Операция</translation> </message> <message> <location filename="../UI/PythonDisViewer.py" line="77" /> + <source>Parameters</source> + <translation>Параметры</translation> + </message> + <message> + <location filename="../UI/PythonDisViewer.py" line="78" /> <source>Interpreted Parameters</source> <translation>Интерпретируемые параметры</translation> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="80" /> + <location filename="../UI/PythonDisViewer.py" line="81" /> <source>Key</source> <translation>Ключ</translation> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="80" /> + <location filename="../UI/PythonDisViewer.py" line="81" /> <source>Value</source> <translation>Значение</translation> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="85" /> + <location filename="../UI/PythonDisViewer.py" line="86" /> <source>Show Code Info</source> <translation>Отображение информации для выбранного кода</translation> </message> <message> + <location filename="../UI/PythonDisViewer.py" line="97" /> + <location filename="../UI/PythonDisViewer.py" line="89" /> + <source>Expand All</source> + <translation>Развернуть все</translation> + </message> + <message> + <location filename="../UI/PythonDisViewer.py" line="99" /> + <location filename="../UI/PythonDisViewer.py" line="90" /> + <source>Collapse All</source> + <translation>Свернуть все</translation> + </message> + <message> + <location filename="../UI/PythonDisViewer.py" line="102" /> + <location filename="../UI/PythonDisViewer.py" line="92" /> + <source>Configure...</source> + <translation>Настроить...</translation> + </message> + <message> <location filename="../UI/PythonDisViewer.py" line="96" /> - <location filename="../UI/PythonDisViewer.py" line="88" /> - <source>Expand All</source> - <translation>Развернуть все</translation> - </message> - <message> - <location filename="../UI/PythonDisViewer.py" line="98" /> - <location filename="../UI/PythonDisViewer.py" line="89" /> - <source>Collapse All</source> - <translation>Свернуть все</translation> - </message> - <message> - <location filename="../UI/PythonDisViewer.py" line="101" /> - <location filename="../UI/PythonDisViewer.py" line="91" /> - <source>Configure...</source> - <translation>Настроить...</translation> - </message> - <message> - <location filename="../UI/PythonDisViewer.py" line="95" /> <source>Hide</source> <translation>Скрыть</translation> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="448" /> + <location filename="../UI/PythonDisViewer.py" line="455" /> <source>No editor has been opened.</source> <translation>Не был открыт редактор.</translation> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="459" /> + <location filename="../UI/PythonDisViewer.py" line="466" /> <source>The current editor does not contain any source code.</source> <translation>Текущий редактор не содержит какого-либо исходного кода.</translation> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="465" /> + <location filename="../UI/PythonDisViewer.py" line="472" /> <source>The current editor does not contain Python source code.</source> <translation>Текущий редактор не содержит исходного кода Python.</translation> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="509" /> + <location filename="../UI/PythonDisViewer.py" line="516" /> <source>Disassembly of last traceback</source> <translation>Дизассемблирование последней трассировки</translation> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="672" /> + <location filename="../UI/PythonDisViewer.py" line="694" /> <source>Code Object '{0}'</source> <translation>Объект кода '{0}'</translation> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="784" /> + <location filename="../UI/PythonDisViewer.py" line="806" /> <source>Name</source> <translation>Имя</translation> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="786" /> + <location filename="../UI/PythonDisViewer.py" line="808" /> <source>Filename</source> <translation>Имя файла</translation> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="790" /> - <source>First Line</source> - <translation>Начальная строка</translation> - </message> - <message> - <location filename="../UI/PythonDisViewer.py" line="794" /> - <source>Argument Count</source> - <translation>Счетчик аргументов</translation> - </message> - <message> - <location filename="../UI/PythonDisViewer.py" line="799" /> - <source>Positional-only Arguments</source> - <translation>Только позиционные аргументы</translation> - </message> - <message> - <location filename="../UI/PythonDisViewer.py" line="805" /> - <source>Keyword-only Arguments</source> - <translation>Аргументы только ключевые слова</translation> - </message> - <message> - <location filename="../UI/PythonDisViewer.py" line="809" /> - <source>Number of Locals</source> - <translation>Количество локальных</translation> - </message> - <message> <location filename="../UI/PythonDisViewer.py" line="812" /> - <source>Stack Size</source> - <translation>Размер стека</translation> - </message> - <message> - <location filename="../UI/PythonDisViewer.py" line="814" /> - <source>Flags</source> - <translation>Флажки</translation> + <source>First Line</source> + <translation>Начальная строка</translation> </message> <message> <location filename="../UI/PythonDisViewer.py" line="816" /> + <source>Argument Count</source> + <translation>Счетчик аргументов</translation> + </message> + <message> + <location filename="../UI/PythonDisViewer.py" line="821" /> + <source>Positional-only Arguments</source> + <translation>Только позиционные аргументы</translation> + </message> + <message> + <location filename="../UI/PythonDisViewer.py" line="827" /> + <source>Keyword-only Arguments</source> + <translation>Аргументы только ключевые слова</translation> + </message> + <message> + <location filename="../UI/PythonDisViewer.py" line="831" /> + <source>Number of Locals</source> + <translation>Количество локальных</translation> + </message> + <message> + <location filename="../UI/PythonDisViewer.py" line="834" /> + <source>Stack Size</source> + <translation>Размер стека</translation> + </message> + <message> + <location filename="../UI/PythonDisViewer.py" line="836" /> + <source>Flags</source> + <translation>Флажки</translation> + </message> + <message> + <location filename="../UI/PythonDisViewer.py" line="838" /> <source>Constants</source> <translation>Константы</translation> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="818" /> + <location filename="../UI/PythonDisViewer.py" line="840" /> <source>Names</source> <translation>Имена</translation> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="820" /> + <location filename="../UI/PythonDisViewer.py" line="842" /> <source>Variable Names</source> <translation>Имена переменных</translation> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="822" /> + <location filename="../UI/PythonDisViewer.py" line="844" /> <source>Free Variables</source> <translation>Свободные переменные</translation> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="824" /> + <location filename="../UI/PythonDisViewer.py" line="846" /> <source>Cell Variables</source> <translation>Переменные ячейки</translation> </message> @@ -74589,32 +74602,32 @@ <context> <name>SessionFile</name> <message> - <location filename="../Sessions/SessionFile.py" line="247" /> + <location filename="../Sessions/SessionFile.py" line="249" /> <source>Save Remote Session</source> <translation>Сохранить удаленный сеанс</translation> </message> <message> - <location filename="../Sessions/SessionFile.py" line="250" /> + <location filename="../Sessions/SessionFile.py" line="252" /> <source>Save Session</source> <translation>Сохранить сеанс</translation> </message> <message> - <location filename="../Sessions/SessionFile.py" line="258" /> + <location filename="../Sessions/SessionFile.py" line="260" /> <source><p>The session file <b>{0}</b> could not be written.</p><p>Reason: {1}</p></source> <translation><p>Невозможно записать файл сеанса <b>{0}</b>.</p><p>Причина: {1}</p></translation> </message> <message> - <location filename="../Sessions/SessionFile.py" line="282" /> + <location filename="../Sessions/SessionFile.py" line="284" /> <source>Read Remote Session</source> <translation>Прочитать удаленный сеанс</translation> </message> <message> - <location filename="../Sessions/SessionFile.py" line="285" /> + <location filename="../Sessions/SessionFile.py" line="287" /> <source>Read Session</source> <translation>Прочитать сеанс</translation> </message> <message> - <location filename="../Sessions/SessionFile.py" line="293" /> + <location filename="../Sessions/SessionFile.py" line="295" /> <source><p>The session file <b>{0}</b> could not be read.</p><p>Reason: {1}</p></source> <translation><p>Невозможно записать файл сеанса <b>{0}</b>.</p><p>Причина: {1}</p></translation> </message> @@ -94896,547 +94909,547 @@ <context> <name>ViewManager</name> <message> - <location filename="../ViewManager/ViewManager.py" line="615" /> + <location filename="../ViewManager/ViewManager.py" line="625" /> <source>New</source> <translation>Новое окно</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="617" /> + <location filename="../ViewManager/ViewManager.py" line="627" /> <source>&New</source> <translation>&Новое окно</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="619" /> + <location filename="../ViewManager/ViewManager.py" line="629" /> <source>Ctrl+N</source> <comment>File|New</comment> <translation>Ctrl+N</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="626" /> + <location filename="../ViewManager/ViewManager.py" line="636" /> <source>Open an empty editor window</source> <translation>Открыть пустое окно редактора</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="629" /> + <location filename="../ViewManager/ViewManager.py" line="639" /> <source><b>New</b><p>An empty editor window will be created.</p></source> <translation><b>Новый документ</b> <p>Создание пустого окна редактора.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="638" /> + <location filename="../ViewManager/ViewManager.py" line="648" /> <source>Open</source> <translation>Открыть</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="640" /> + <location filename="../ViewManager/ViewManager.py" line="650" /> <source>&Open...</source> <translation>&Открыть...</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="642" /> + <location filename="../ViewManager/ViewManager.py" line="652" /> <source>Ctrl+O</source> <comment>File|Open</comment> <translation>Ctrl+O</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="649" /> + <location filename="../ViewManager/ViewManager.py" line="659" /> <source>Open a file</source> <translation>Открыть файл</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="652" /> + <location filename="../ViewManager/ViewManager.py" line="662" /> <source><b>Open a file</b><p>You will be asked for the name of a file to be opened in an editor window.</p></source> <translation><b>Открыть файл</b> <p>Запрос имени файла, чтобы открыть его в окне редактора.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="663" /> + <location filename="../ViewManager/ViewManager.py" line="673" /> <source>Open (Remote)</source> <translation>Открыть (удаленно)</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="665" /> - <source>Open (Remote)...</source> - <translation>Открыть (удаленно)...</translation> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="672" /> - <source>Open a remote file</source> - <translation>Открыть удаленный файл</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="675" /> + <source>Open (Remote)...</source> + <translation>Открыть (удаленно)...</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="682" /> + <source>Open a remote file</source> + <translation>Открыть удаленный файл</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="685" /> <source><b>Open a remote file</b><p>You will be asked for the name of a remote file to be opened in an editor window.</p></source> <translation><b>Открыть удаленый файл</b><p>В окне редактора будет предложено ввести имя удаленого файла, который будет открыт.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="689" /> - <location filename="../ViewManager/ViewManager.py" line="687" /> - <source>Reload</source> - <translation>Перезагрузить</translation> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="696" /> - <source>Reload the current file</source> - <translation>Перезагрузить текущий файл</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="699" /> + <location filename="../ViewManager/ViewManager.py" line="697" /> + <source>Reload</source> + <translation>Перезагрузить</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="706" /> + <source>Reload the current file</source> + <translation>Перезагрузить текущий файл</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="709" /> <source><b>Reload</b><p>Reload the contents of current editor window. If the editor contents was modified, a warning will be issued.</p></source> <translation><b>Перезагрузить</b><p>Перезагрузить содержимое текущего окна редактора. Если содержимое редактора было изменено, будет выдано предупреждение.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="712" /> + <location filename="../ViewManager/ViewManager.py" line="722" /> <source>Close</source> <translation>Закрыть</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="714" /> + <location filename="../ViewManager/ViewManager.py" line="724" /> <source>&Close</source> <translation>&Закрыть</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="716" /> + <location filename="../ViewManager/ViewManager.py" line="726" /> <source>Ctrl+W</source> <comment>File|Close</comment> <translation>Ctrl+W</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="723" /> + <location filename="../ViewManager/ViewManager.py" line="733" /> <source>Close the current window</source> <translation>Закрыть текущее окно</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="726" /> - <source><b>Close Window</b><p>Close the current window.</p></source> - <translation><b>Закрыть окно</b> -<p>Закрытие текущего окна.</p></translation> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="735" /> - <source>Close All</source> - <translation>Закрыть все</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="736" /> - <source>Clos&e All</source> - <translation>Закрыть &всё</translation> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="743" /> - <source>Close all editor windows</source> - <translation>Закрыть все окна редактора</translation> + <source><b>Close Window</b><p>Close the current window.</p></source> + <translation><b>Закрыть окно</b> +<p>Закрытие текущего окна.</p></translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="745" /> + <source>Close All</source> + <translation>Закрыть все</translation> </message> <message> <location filename="../ViewManager/ViewManager.py" line="746" /> + <source>Clos&e All</source> + <translation>Закрыть &всё</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="753" /> + <source>Close all editor windows</source> + <translation>Закрыть все окна редактора</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="756" /> <source><b>Close All Windows</b><p>Close all editor windows.</p></source> <translation><b>Закрыть все окна</b> <p>Закрыть все окна редактора.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="759" /> + <location filename="../ViewManager/ViewManager.py" line="769" /> <source>Save</source> <translation>Сохранить</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="761" /> + <location filename="../ViewManager/ViewManager.py" line="771" /> <source>&Save</source> <translation>&Сохранить</translation> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="316" /> - <location filename="../ViewManager/ViewManager.py" line="763" /> + <location filename="../ViewManager/ViewManager.py" line="773" /> <source>Ctrl+S</source> <comment>File|Save</comment> <translation>Ctrl+S</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="770" /> + <location filename="../ViewManager/ViewManager.py" line="780" /> <source>Save the current file</source> <translation>Сохранить текущий файл</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="773" /> + <location filename="../ViewManager/ViewManager.py" line="783" /> <source><b>Save File</b><p>Save the contents of current editor window.</p></source> <translation><b>Сохранить файл</b> <p>Сохранение содержания текущего окна редактора.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="783" /> + <location filename="../ViewManager/ViewManager.py" line="793" /> <source>Save as</source> <translation>Сохранить как</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="785" /> + <location filename="../ViewManager/ViewManager.py" line="795" /> <source>Save &as...</source> <translation>Сохранить &как...</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="787" /> + <location filename="../ViewManager/ViewManager.py" line="797" /> <source>Shift+Ctrl+S</source> <comment>File|Save As</comment> <translation>Shift+Ctrl+S</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="796" /> + <location filename="../ViewManager/ViewManager.py" line="806" /> <source>Save the current file to a new one</source> <translation>Сохранить текущий файл в новый</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="801" /> + <location filename="../ViewManager/ViewManager.py" line="811" /> <source><b>Save File as</b><p>Save the contents of the current editor window to a new file. The file can be entered in a file selection dialog.</p></source> <translation><b>Сохранить файл как</b><p>Сохранить содержимое текущего окна редактора в новом файле. Файл можно ввести в диалоговом окне выбора файла.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="812" /> + <location filename="../ViewManager/ViewManager.py" line="822" /> <source>Save as (Remote)</source> <translation>Сохранить как (удаленно)</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="814" /> + <location filename="../ViewManager/ViewManager.py" line="824" /> <source>Save as (Remote)...</source> <translation>Сохранить как (удаленно)...</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="821" /> + <location filename="../ViewManager/ViewManager.py" line="831" /> <source>Save the current file to a new one on an eric-ide server</source> <translation>Сохранить текущий файл в новом файле на сервере eric-ide</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="827" /> + <location filename="../ViewManager/ViewManager.py" line="837" /> <source><b>Save File as (Remote)</b><p>Save the contents of the current editor window to a new file on the connected eric-ide server. The file can be entered in a file selection dialog.</p></source> <translation><b>Сохранить файл как (удаленно)</b><p>Сохранить содержимое текущего окна редактора в новом файле на подключенном сервере eric-ide. Файл можно ввести в диалоговом окне выбора файла.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="839" /> + <location filename="../ViewManager/ViewManager.py" line="849" /> <source>Save Copy</source> <translation>Сохранить копию</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="841" /> - <source>Save &Copy...</source> - <translation>Сохранить &копию...</translation> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="848" /> - <source>Save a copy of the current file</source> - <translation>Сохранить копию текущего файла</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="851" /> + <source>Save &Copy...</source> + <translation>Сохранить &копию...</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="858" /> + <source>Save a copy of the current file</source> + <translation>Сохранить копию текущего файла</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="861" /> <source><b>Save Copy</b><p>Save a copy of the contents of current editor window. The file can be entered in a file selection dialog.</p></source> <translation><b>Сохранить копию</b><p>Сохранение контента текущего окна редактора. Имя файла может быть введено в диалоге выбора файла.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="862" /> + <location filename="../ViewManager/ViewManager.py" line="872" /> <source>Save all</source> <translation>Сохранить все</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="864" /> - <source>Save a&ll</source> - <translation>Сохранить &все</translation> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="871" /> - <source>Save all files</source> - <translation>Сохранить все файлы</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="874" /> + <source>Save a&ll</source> + <translation>Сохранить &все</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="881" /> + <source>Save all files</source> + <translation>Сохранить все файлы</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="884" /> <source><b>Save All Files</b><p>Save the contents of all editor windows.</p></source> <translation><b>Сохранить все файлы</b> <p>Сохранение содержания всех окон редактора.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="886" /> + <location filename="../ViewManager/ViewManager.py" line="896" /> <source>Print</source> <translation>Печать</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="888" /> + <location filename="../ViewManager/ViewManager.py" line="898" /> <source>&Print</source> <translation>&Печать</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="890" /> + <location filename="../ViewManager/ViewManager.py" line="900" /> <source>Ctrl+P</source> <comment>File|Print</comment> <translation>Ctrl+P</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="897" /> + <location filename="../ViewManager/ViewManager.py" line="907" /> <source>Print the current file</source> <translation>Печать текущего файла</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="900" /> + <location filename="../ViewManager/ViewManager.py" line="910" /> <source><b>Print File</b><p>Print the contents of current editor window.</p></source> <translation><b>Печать</b> <p>Распечатать содержимое текущего окна редактора.</p></translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="780" /> - <location filename="../ViewManager/ViewManager.py" line="913" /> - <location filename="../ViewManager/ViewManager.py" line="911" /> + <location filename="../ViewManager/ViewManager.py" line="923" /> + <location filename="../ViewManager/ViewManager.py" line="921" /> <source>Print Preview</source> <translation>Предварительный просмотр печати</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="920" /> + <location filename="../ViewManager/ViewManager.py" line="930" /> <source>Print preview of the current file</source> <translation>Предварительный просмотр печати текущего файла</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="925" /> + <location filename="../ViewManager/ViewManager.py" line="935" /> <source><b>Print Preview</b><p>Print preview of the current editor window.</p></source> <translation><b>Предварительный просмотр печати</b><p>Предварительный просмотр печати текущего файла.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="936" /> + <location filename="../ViewManager/ViewManager.py" line="946" /> <source>Find File</source> <translation>Искать файл</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="938" /> + <location filename="../ViewManager/ViewManager.py" line="948" /> <source>Find &File...</source> <translation>Найти &файл...</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="940" /> + <location filename="../ViewManager/ViewManager.py" line="950" /> <source>Alt+Ctrl+F</source> <comment>File|Find File</comment> <translation>Alt+Ctrl+F</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="949" /> + <location filename="../ViewManager/ViewManager.py" line="959" /> <source>Search for a file by entering a search pattern</source> <translation>Поиск файла по введенному шаблону поиска</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="954" /> + <location filename="../ViewManager/ViewManager.py" line="964" /> <source><b>Find File</b><p>This searches for a file by entering a search pattern.</p></source> <translation><b>Найти файл</b><p>Поиск файла по введенному шаблону поиска.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="970" /> + <location filename="../ViewManager/ViewManager.py" line="980" /> <source>&File</source> <translation>&Файл</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="972" /> + <location filename="../ViewManager/ViewManager.py" line="982" /> <source>Open &Recent Files</source> <translation>Открыть &недавние файлы</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="976" /> + <location filename="../ViewManager/ViewManager.py" line="986" /> <source>Open &Bookmarked Files</source> <translation>Открыть &закладки на файлы</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1024" /> - <location filename="../ViewManager/ViewManager.py" line="1022" /> + <location filename="../ViewManager/ViewManager.py" line="1034" /> + <location filename="../ViewManager/ViewManager.py" line="1032" /> <source>File</source> <translation>Файл</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1051" /> + <location filename="../ViewManager/ViewManager.py" line="1061" /> <source>Export as</source> <translation>Экспортировать как</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1074" /> + <location filename="../ViewManager/ViewManager.py" line="1084" /> <source>Undo</source> <translation>Отменить</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1076" /> + <location filename="../ViewManager/ViewManager.py" line="1086" /> <source>&Undo</source> <translation>&Отменить</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1078" /> + <location filename="../ViewManager/ViewManager.py" line="1088" /> <source>Ctrl+Z</source> <comment>Edit|Undo</comment> <translation>Ctrl+Z</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1081" /> + <location filename="../ViewManager/ViewManager.py" line="1091" /> <source>Alt+Backspace</source> <comment>Edit|Undo</comment> <translation>Alt+Backspace</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1087" /> + <location filename="../ViewManager/ViewManager.py" line="1097" /> <source>Undo the last change</source> <translation>Отменить последнее изменение</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1090" /> + <location filename="../ViewManager/ViewManager.py" line="1100" /> <source><b>Undo</b><p>Undo the last change done in the current editor.</p></source> <translation><b>Отмена</b> <p>Отмена последнего изменения в текущем сеансе редактирования.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1100" /> + <location filename="../ViewManager/ViewManager.py" line="1110" /> <source>Redo</source> <translation>Повторить</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1102" /> + <location filename="../ViewManager/ViewManager.py" line="1112" /> <source>&Redo</source> <translation>&Повторить</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1104" /> + <location filename="../ViewManager/ViewManager.py" line="1114" /> <source>Ctrl+Shift+Z</source> <comment>Edit|Redo</comment> <translation>Ctrl+Shift+Z</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1111" /> + <location filename="../ViewManager/ViewManager.py" line="1121" /> <source>Redo the last change</source> <translation>Восстановить последнее отменённое изменение</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1114" /> + <location filename="../ViewManager/ViewManager.py" line="1124" /> <source><b>Redo</b><p>Redo the last change done in the current editor.</p></source> <translation><b>Повтор</b> <p>Восстановление последнего отменённого изменения.</p></translation> </message> <message> + <location filename="../ViewManager/ViewManager.py" line="1144" /> <location filename="../ViewManager/ViewManager.py" line="1134" /> - <location filename="../ViewManager/ViewManager.py" line="1124" /> <source>Revert to last saved state</source> <translation>Вернуть к последнему сохраненному состоянию</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1125" /> + <location filename="../ViewManager/ViewManager.py" line="1135" /> <source>Re&vert to last saved state</source> <translation>&Вернуть к последнему сохраненному состоянию</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1127" /> + <location filename="../ViewManager/ViewManager.py" line="1137" /> <source>Ctrl+Y</source> <comment>Edit|Revert</comment> <translation>Ctrl+Y</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1137" /> + <location filename="../ViewManager/ViewManager.py" line="1147" /> <source><b>Revert to last saved state</b><p>Undo all changes up to the last saved state of the current editor.</p></source> <translation><b>Вернуть к последнему сохраненному состоянию</b> <p>Отменить все изменения текущего редактирования, сделанные с момента последнего сохранения.</p></translation> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="343" /> - <location filename="../ViewManager/ViewManager.py" line="1150" /> + <location filename="../ViewManager/ViewManager.py" line="1160" /> <source>Cut</source> <translation>Вырезать</translation> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="345" /> - <location filename="../ViewManager/ViewManager.py" line="1152" /> + <location filename="../ViewManager/ViewManager.py" line="1162" /> <source>Cu&t</source> <translation>В&ырезать</translation> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="347" /> - <location filename="../ViewManager/ViewManager.py" line="1154" /> + <location filename="../ViewManager/ViewManager.py" line="1164" /> <source>Ctrl+X</source> <comment>Edit|Cut</comment> <translation>Ctrl+X</translation> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="350" /> - <location filename="../ViewManager/ViewManager.py" line="1157" /> + <location filename="../ViewManager/ViewManager.py" line="1167" /> <source>Shift+Del</source> <comment>Edit|Cut</comment> <translation>Shift+Del</translation> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="356" /> - <location filename="../ViewManager/ViewManager.py" line="1163" /> + <location filename="../ViewManager/ViewManager.py" line="1173" /> <source>Cut the selection</source> <translation>Вырезать выделение</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1166" /> + <location filename="../ViewManager/ViewManager.py" line="1176" /> <source><b>Cut</b><p>Cut the selected text of the current editor to the clipboard.</p></source> <translation><b>Вырезать</b> <p>Вырезать выделение и поместить его в буфер обмена.</p></translation> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="365" /> - <location filename="../ViewManager/ViewManager.py" line="1177" /> + <location filename="../ViewManager/ViewManager.py" line="1187" /> <source>Copy</source> <translation>Копировать</translation> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="367" /> - <location filename="../ViewManager/ViewManager.py" line="1179" /> + <location filename="../ViewManager/ViewManager.py" line="1189" /> <source>&Copy</source> <translation>&Копировать</translation> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="369" /> - <location filename="../ViewManager/ViewManager.py" line="1181" /> + <location filename="../ViewManager/ViewManager.py" line="1191" /> <source>Ctrl+C</source> <comment>Edit|Copy</comment> <translation>Ctrl+C</translation> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="372" /> - <location filename="../ViewManager/ViewManager.py" line="1184" /> + <location filename="../ViewManager/ViewManager.py" line="1194" /> <source>Ctrl+Ins</source> <comment>Edit|Copy</comment> <translation>Ctrl+Ins</translation> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="378" /> - <location filename="../ViewManager/ViewManager.py" line="1190" /> + <location filename="../ViewManager/ViewManager.py" line="1200" /> <source>Copy the selection</source> <translation>Копировать выделение</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1193" /> + <location filename="../ViewManager/ViewManager.py" line="1203" /> <source><b>Copy</b><p>Copy the selected text of the current editor to the clipboard.</p></source> <translation><b>Копировать</b> <p>Копировать выделение и поместить его в буфер обмена.</p></translation> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="387" /> - <location filename="../ViewManager/ViewManager.py" line="1204" /> + <location filename="../ViewManager/ViewManager.py" line="1214" /> <source>Paste</source> <translation>Вставить</translation> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="389" /> - <location filename="../ViewManager/ViewManager.py" line="1206" /> + <location filename="../ViewManager/ViewManager.py" line="1216" /> <source>&Paste</source> <translation>Вс&тавить</translation> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="391" /> - <location filename="../ViewManager/ViewManager.py" line="1208" /> + <location filename="../ViewManager/ViewManager.py" line="1218" /> <source>Ctrl+V</source> <comment>Edit|Paste</comment> <translation>Ctrl+V</translation> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="394" /> - <location filename="../ViewManager/ViewManager.py" line="1211" /> + <location filename="../ViewManager/ViewManager.py" line="1221" /> <source>Shift+Ins</source> <comment>Edit|Paste</comment> <translation>Shift+Ins</translation> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="400" /> - <location filename="../ViewManager/ViewManager.py" line="1217" /> + <location filename="../ViewManager/ViewManager.py" line="1227" /> <source>Paste the last cut/copied text</source> <translation>Вставить вырезанный/скопированный текст</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1220" /> + <location filename="../ViewManager/ViewManager.py" line="1230" /> <source><b>Paste</b><p>Paste the last cut/copied text from the clipboard to the current editor.</p></source> <translation><b>Вставить</b> <p>Вставить текст из буфера обмена в текущую позицию редактора.</p></translation> @@ -95444,521 +95457,521 @@ <message> <location filename="../QScintilla/ShellWindow.py" line="414" /> <location filename="../QScintilla/ShellWindow.py" line="412" /> - <location filename="../ViewManager/ViewManager.py" line="1233" /> - <location filename="../ViewManager/ViewManager.py" line="1231" /> + <location filename="../ViewManager/ViewManager.py" line="1243" /> + <location filename="../ViewManager/ViewManager.py" line="1241" /> <source>Clear</source> <translation>Очистить</translation> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="416" /> - <location filename="../ViewManager/ViewManager.py" line="1235" /> + <location filename="../ViewManager/ViewManager.py" line="1245" /> <source>Alt+Shift+C</source> <comment>Edit|Clear</comment> <translation>Alt+Shift+C</translation> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="423" /> - <location filename="../ViewManager/ViewManager.py" line="1242" /> + <location filename="../ViewManager/ViewManager.py" line="1252" /> <source>Clear all text</source> <translation>Убрать весь текст</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1245" /> + <location filename="../ViewManager/ViewManager.py" line="1255" /> <source><b>Clear</b><p>Delete all text of the current editor.</p></source> <translation><b>Очистить</b> <p>Удаление всего текста из текущего редактора.</p></translation> </message> <message> + <location filename="../ViewManager/ViewManager.py" line="1274" /> + <location filename="../ViewManager/ViewManager.py" line="1265" /> <location filename="../ViewManager/ViewManager.py" line="1264" /> - <location filename="../ViewManager/ViewManager.py" line="1255" /> - <location filename="../ViewManager/ViewManager.py" line="1254" /> <source>Join Lines</source> <translation>Соединить строки</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1257" /> - <source>Ctrl+J</source> - <comment>Edit|Join Lines</comment> - <translation>Ctrl+J</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="1267" /> - <source><b>Join Lines</b><p>Join the current and the next lines.</p></source> - <translation><b>Соединить строки</b><p>Соединить текущую и следующую строки.</p></translation> + <source>Ctrl+J</source> + <comment>Edit|Join Lines</comment> + <translation>Ctrl+J</translation> </message> <message> <location filename="../ViewManager/ViewManager.py" line="1277" /> + <source><b>Join Lines</b><p>Join the current and the next lines.</p></source> + <translation><b>Соединить строки</b><p>Соединить текущую и следующую строки.</p></translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="1287" /> <source>Indent</source> <translation>Увеличить отступ</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1279" /> + <location filename="../ViewManager/ViewManager.py" line="1289" /> <source>&Indent</source> <translation>У&величить отступ</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1281" /> + <location filename="../ViewManager/ViewManager.py" line="1291" /> <source>Ctrl+I</source> <comment>Edit|Indent</comment> <translation>Ctrl+I</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1288" /> + <location filename="../ViewManager/ViewManager.py" line="1298" /> <source>Indent line</source> <translation>Увеличить отступ строки</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1291" /> + <location filename="../ViewManager/ViewManager.py" line="1301" /> <source><b>Indent</b><p>Indents the current line or the lines of the selection by one level.</p></source> <translation><b>Увеличить отступ</b> <p>Увеличить отступ текущей строки на один уровень.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1302" /> + <location filename="../ViewManager/ViewManager.py" line="1312" /> <source>Unindent</source> <translation>Уменьшить отступ</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1304" /> + <location filename="../ViewManager/ViewManager.py" line="1314" /> <source>U&nindent</source> <translation>У&меньшить отступ</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1306" /> + <location filename="../ViewManager/ViewManager.py" line="1316" /> <source>Ctrl+Shift+I</source> <comment>Edit|Unindent</comment> <translation>Ctrl+Shift+I</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1315" /> + <location filename="../ViewManager/ViewManager.py" line="1325" /> <source>Unindent line</source> <translation>Уменьшить отступ строки</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1318" /> + <location filename="../ViewManager/ViewManager.py" line="1328" /> <source><b>Unindent</b><p>Unindents the current line or the lines of the selection by one level.</p></source> <translation><b>Уменьшить отступ</b> <p>Уменьшить отступ текущей строки на один уровень.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1331" /> - <location filename="../ViewManager/ViewManager.py" line="1329" /> + <location filename="../ViewManager/ViewManager.py" line="1341" /> + <location filename="../ViewManager/ViewManager.py" line="1339" /> <source>Smart indent</source> <translation>Интеллектуальные отступы</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1338" /> + <location filename="../ViewManager/ViewManager.py" line="1348" /> <source>Smart indent Line or Selection</source> <translation>Форматировать строку или выделение умными отступами</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1341" /> + <location filename="../ViewManager/ViewManager.py" line="1351" /> <source><b>Smart indent</b><p>Indents the current line or the lines of the current selection smartly.</p></source> <translation><b>Интеллектуальные отступы</b><p>Расставить отступы для выбранной строки (строк) с помощью умного алгоритма.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1352" /> + <location filename="../ViewManager/ViewManager.py" line="1362" /> <source>Comment</source> <translation>Закомментировать</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1354" /> + <location filename="../ViewManager/ViewManager.py" line="1364" /> <source>C&omment</source> <translation>&Закомментировать</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1356" /> - <source>Ctrl+M</source> - <comment>Edit|Comment</comment> - <translation>Ctrl+M</translation> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="1363" /> - <source>Comment Line or Selection</source> - <translation>Закомментировать строку или выделение</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="1366" /> + <source>Ctrl+M</source> + <comment>Edit|Comment</comment> + <translation>Ctrl+M</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="1373" /> + <source>Comment Line or Selection</source> + <translation>Закомментировать строку или выделение</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="1376" /> <source><b>Comment</b><p>Comments the current line or the lines of the current selection.</p></source> <translation><b>Закомментировать</b><p>Закомментировать строку или выделение.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1377" /> + <location filename="../ViewManager/ViewManager.py" line="1387" /> <source>Uncomment</source> <translation>Раскомментировать</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1379" /> + <location filename="../ViewManager/ViewManager.py" line="1389" /> <source>Unco&mment</source> <translation>&Раскомментировать</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1381" /> + <location filename="../ViewManager/ViewManager.py" line="1391" /> <source>Ctrl+Shift+M</source> <comment>Edit|Uncomment</comment> <translation>Ctrl+Shift+M</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1390" /> + <location filename="../ViewManager/ViewManager.py" line="1400" /> <source>Uncomment Line or Selection</source> <translation>Раскомментировать строку или выделение</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1393" /> + <location filename="../ViewManager/ViewManager.py" line="1403" /> <source><b>Uncomment</b><p>Uncomments the current line or the lines of the current selection.</p></source> <translation><b>Раскомментировать</b><p>Раскомментировать строку или выделение.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1406" /> - <location filename="../ViewManager/ViewManager.py" line="1404" /> + <location filename="../ViewManager/ViewManager.py" line="1416" /> + <location filename="../ViewManager/ViewManager.py" line="1414" /> <source>Toggle Comment</source> <translation>Переключить комментарий</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1408" /> + <location filename="../ViewManager/ViewManager.py" line="1418" /> <source>Ctrl+#</source> <comment>Edit|Toggle Comment</comment> <translation>Ctrl+#</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1417" /> + <location filename="../ViewManager/ViewManager.py" line="1427" /> <source>Toggle the comment of the current line, selection or comment block</source> <translation>Переключить комментарий текущей строки, выборки или блока комментария</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1423" /> + <location filename="../ViewManager/ViewManager.py" line="1433" /> <source><b>Toggle Comment</b><p>If the current line does not start with a block comment, the current line or selection is commented. If it is already commented, this comment block is uncommented. </p></source> <translation><b>Переключить комментарий</b><p>Переключить комментарий текущей строки, выборки или блока комментария. </p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1436" /> - <location filename="../ViewManager/ViewManager.py" line="1435" /> + <location filename="../ViewManager/ViewManager.py" line="1446" /> + <location filename="../ViewManager/ViewManager.py" line="1445" /> <source>Stream Comment</source> <translation>Поточный комментарий</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1443" /> + <location filename="../ViewManager/ViewManager.py" line="1453" /> <source>Stream Comment Line or Selection</source> <translation>Закомментировать строку или выделение</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1448" /> + <location filename="../ViewManager/ViewManager.py" line="1458" /> <source><b>Stream Comment</b><p>Stream comments the current line or the current selection.</p></source> <translation><b>Закомментировать</b><p>Закомментировать строку или выделение поточным комментарием.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1460" /> - <location filename="../ViewManager/ViewManager.py" line="1459" /> - <source>Box Comment</source> - <translation>Прямоугольный комментарий</translation> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="1467" /> - <source>Box Comment Line or Selection</source> - <translation>Закомментировать строку или выделение прямоугольным комментарием</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="1470" /> + <location filename="../ViewManager/ViewManager.py" line="1469" /> + <source>Box Comment</source> + <translation>Прямоугольный комментарий</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="1477" /> + <source>Box Comment Line or Selection</source> + <translation>Закомментировать строку или выделение прямоугольным комментарием</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="1480" /> <source><b>Box Comment</b><p>Box comments the current line or the lines of the current selection.</p></source> <translation><b>Закомментировать</b><p>Закомментировать строку или выделение прямоугольным комментарием.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1481" /> + <location filename="../ViewManager/ViewManager.py" line="1491" /> <source>Select to brace</source> <translation>Выбрать до скобки</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1482" /> + <location filename="../ViewManager/ViewManager.py" line="1492" /> <source>Select to &brace</source> <translation>В&ыбрать до скобки</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1484" /> + <location filename="../ViewManager/ViewManager.py" line="1494" /> <source>Ctrl+E</source> <comment>Edit|Select to brace</comment> <translation>Ctrl+E</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1493" /> + <location filename="../ViewManager/ViewManager.py" line="1503" /> <source>Select text to the matching brace</source> <translation>Выбрать до соответствующей скобки</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1498" /> + <location filename="../ViewManager/ViewManager.py" line="1508" /> <source><b>Select to brace</b><p>Select text of the current editor to the matching brace.</p></source> <translation><b>Выбрать до скобки</b><p>Выбрать текст в текущем редакторе до соответствующей скобки.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1509" /> + <location filename="../ViewManager/ViewManager.py" line="1519" /> <source>Select all</source> <translation>Выделить всё</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1511" /> + <location filename="../ViewManager/ViewManager.py" line="1521" /> <source>&Select all</source> <translation>В&ыделить всё</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1513" /> + <location filename="../ViewManager/ViewManager.py" line="1523" /> <source>Ctrl+A</source> <comment>Edit|Select all</comment> <translation>Ctrl+A</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1520" /> + <location filename="../ViewManager/ViewManager.py" line="1530" /> <source>Select all text</source> <translation>Выбрать весь текст</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1523" /> - <source><b>Select All</b><p>Select all text of the current editor.</p></source> - <translation><b>Выбрать всё</b><p>Выбрать весь текст в текущем редакторе.</p></translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="1533" /> + <source><b>Select All</b><p>Select all text of the current editor.</p></source> + <translation><b>Выбрать всё</b><p>Выбрать весь текст в текущем редакторе.</p></translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="1543" /> <source>Deselect all</source> <translation>Снять выделение</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1534" /> + <location filename="../ViewManager/ViewManager.py" line="1544" /> <source>&Deselect all</source> <translation>&Снять выделение</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1536" /> + <location filename="../ViewManager/ViewManager.py" line="1546" /> <source>Alt+Ctrl+A</source> <comment>Edit|Deselect all</comment> <translation>Alt+Ctrl+A</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1545" /> + <location filename="../ViewManager/ViewManager.py" line="1555" /> <source>Deselect all text</source> <translation>Снять выделение со всего текста</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1548" /> + <location filename="../ViewManager/ViewManager.py" line="1558" /> <source><b>Deselect All</b><p>Deselect all text of the current editor.</p></source> <translation><b>Снять выделение</b><p>Снять выделение со всего текста в текущем редакторе.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1566" /> - <location filename="../ViewManager/ViewManager.py" line="1559" /> - <location filename="../ViewManager/ViewManager.py" line="1558" /> + <location filename="../ViewManager/ViewManager.py" line="1576" /> + <location filename="../ViewManager/ViewManager.py" line="1569" /> + <location filename="../ViewManager/ViewManager.py" line="1568" /> <source>Convert Line End Characters</source> <translation>Конвертировать окончания строк</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1569" /> + <location filename="../ViewManager/ViewManager.py" line="1579" /> <source><b>Convert Line End Characters</b><p>Convert the line end characters to the currently set type.</p></source> <translation><b>Конвертировать окончания строк</b><p>Конвертировать окончания строк к выбранному способу</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1588" /> - <location filename="../ViewManager/ViewManager.py" line="1581" /> - <location filename="../ViewManager/ViewManager.py" line="1580" /> + <location filename="../ViewManager/ViewManager.py" line="1598" /> + <location filename="../ViewManager/ViewManager.py" line="1591" /> + <location filename="../ViewManager/ViewManager.py" line="1590" /> <source>Convert Tabs to Spaces</source> <translation>Преобразовать табуляцию в пробелы</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1591" /> + <location filename="../ViewManager/ViewManager.py" line="1601" /> <source><b>Convert Tabs to Spaces</b><p>Convert tabulators to the configured amount of space characters.</p></source> <translation><b>Преобразовать табуляцию в пробелы</b><p>Преобразуйте табуляторы в заданное количество пробелов.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1610" /> - <location filename="../ViewManager/ViewManager.py" line="1603" /> - <location filename="../ViewManager/ViewManager.py" line="1602" /> + <location filename="../ViewManager/ViewManager.py" line="1620" /> + <location filename="../ViewManager/ViewManager.py" line="1613" /> + <location filename="../ViewManager/ViewManager.py" line="1612" /> <source>Shorten empty lines</source> <translation>Укоротить пустые строки</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1613" /> + <location filename="../ViewManager/ViewManager.py" line="1623" /> <source><b>Shorten empty lines</b><p>Shorten lines consisting solely of whitespace characters.</p></source> <translation><b>Укоротить пустые строки</b> <p>Укоротить строки, состоящие только из пробельных символов.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3497" /> - <location filename="../ViewManager/ViewManager.py" line="1624" /> + <location filename="../ViewManager/ViewManager.py" line="3507" /> + <location filename="../ViewManager/ViewManager.py" line="1634" /> <source>Complete</source> <translation>Дополнить</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1625" /> + <location filename="../ViewManager/ViewManager.py" line="1635" /> <source>&Complete</source> <translation>&Дополнить</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1627" /> + <location filename="../ViewManager/ViewManager.py" line="1637" /> <source>Ctrl+Space</source> <comment>Edit|Complete</comment> <translation>Ctrl+Space</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1634" /> + <location filename="../ViewManager/ViewManager.py" line="1644" /> <source>Complete current word</source> <translation>Дополнить текущее слово</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1637" /> + <location filename="../ViewManager/ViewManager.py" line="1647" /> <source><b>Complete</b><p>Performs a completion of the word containing the cursor.</p></source> <translation><b>Дополнить</b><p>Выполняется дополнение слова, содержащего курсор.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1649" /> - <location filename="../ViewManager/ViewManager.py" line="1648" /> + <location filename="../ViewManager/ViewManager.py" line="1659" /> + <location filename="../ViewManager/ViewManager.py" line="1658" /> <source>Complete from Document</source> <translation>Дополнить из документа</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1651" /> + <location filename="../ViewManager/ViewManager.py" line="1661" /> <source>Ctrl+Shift+Space</source> <comment>Edit|Complete from Document</comment> <translation>Ctrl+Shift+Space</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1660" /> + <location filename="../ViewManager/ViewManager.py" line="1670" /> <source>Complete current word from Document</source> <translation>Дополнить текущее слово из документа</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1665" /> + <location filename="../ViewManager/ViewManager.py" line="1675" /> <source><b>Complete from Document</b><p>Performs a completion from document of the word containing the cursor.</p></source> <translation><b>Дополнить из документа</b><p>Выполняется дополнение слова, содержащего курсор, из документа.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1677" /> - <location filename="../ViewManager/ViewManager.py" line="1676" /> + <location filename="../ViewManager/ViewManager.py" line="1687" /> + <location filename="../ViewManager/ViewManager.py" line="1686" /> <source>Complete from APIs</source> <translation>Дополнить из API</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1679" /> + <location filename="../ViewManager/ViewManager.py" line="1689" /> <source>Ctrl+Alt+Space</source> <comment>Edit|Complete from APIs</comment> <translation>Ctrl+Alt+Space</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1688" /> + <location filename="../ViewManager/ViewManager.py" line="1698" /> <source>Complete current word from APIs</source> <translation>Дополнить текущее слово из API</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1691" /> + <location filename="../ViewManager/ViewManager.py" line="1701" /> <source><b>Complete from APIs</b><p>Performs a completion from APIs of the word containing the cursor.</p></source> <translation><b>Дополнить из API</b><p>Выполняется дополнение слова, содержащего курсор, из API.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1705" /> - <location filename="../ViewManager/ViewManager.py" line="1702" /> + <location filename="../ViewManager/ViewManager.py" line="1715" /> + <location filename="../ViewManager/ViewManager.py" line="1712" /> <source>Complete from Document and APIs</source> <translation>Дополнить из документа и API</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1709" /> + <location filename="../ViewManager/ViewManager.py" line="1719" /> <source>Alt+Shift+Space</source> <comment>Edit|Complete from Document and APIs</comment> <translation>Alt+Shift+Space</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1720" /> + <location filename="../ViewManager/ViewManager.py" line="1730" /> <source>Complete current word from Document and APIs</source> <translation>Дополнить текущее слово из документа и API</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1725" /> + <location filename="../ViewManager/ViewManager.py" line="1735" /> <source><b>Complete from Document and APIs</b><p>Performs a completion from document and APIs of the word containing the cursor.</p></source> <translation><b>Дополнить из документа и API</b><p>Выполняется дополнение слова, содержащего курсор, из документа и API.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1736" /> + <location filename="../ViewManager/ViewManager.py" line="1746" /> <source>Calltip</source> <translation>Подсказка</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1737" /> + <location filename="../ViewManager/ViewManager.py" line="1747" /> <source>&Calltip</source> <translation>&Подсказка</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1739" /> + <location filename="../ViewManager/ViewManager.py" line="1749" /> <source>Meta+Alt+Space</source> <comment>Edit|Calltip</comment> <translation>Meta+Alt+Space</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1748" /> + <location filename="../ViewManager/ViewManager.py" line="1758" /> <source>Show Calltips</source> <translation>Показать подсказки</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1751" /> + <location filename="../ViewManager/ViewManager.py" line="1761" /> <source><b>Calltip</b><p>Show calltips based on the characters immediately to the left of the cursor.</p></source> <translation><b>Подсказки</b><p>Показать подсказки соответствующие символам слева от курсора.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1764" /> - <location filename="../ViewManager/ViewManager.py" line="1762" /> + <location filename="../ViewManager/ViewManager.py" line="1774" /> + <location filename="../ViewManager/ViewManager.py" line="1772" /> <source>Code Info</source> <translation>Информация о коде</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1766" /> + <location filename="../ViewManager/ViewManager.py" line="1776" /> <source>Ctrl+Alt+I</source> <comment>Edit|Code Info</comment> <translation>Ctrl+Alt+I</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1775" /> + <location filename="../ViewManager/ViewManager.py" line="1785" /> <source>Show Code Info</source> <translation>Отображение информации для выбранного кода</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1778" /> + <location filename="../ViewManager/ViewManager.py" line="1788" /> <source><b>Code Info</b><p>Show code information based on the cursor position.</p></source> <translation><b>Информация для кода</b><p>Показ информации для кода на позиции курсора.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1789" /> - <location filename="../ViewManager/ViewManager.py" line="1788" /> + <location filename="../ViewManager/ViewManager.py" line="1799" /> + <location filename="../ViewManager/ViewManager.py" line="1798" /> <source>Sort</source> <translation>Сортировка</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1791" /> + <location filename="../ViewManager/ViewManager.py" line="1801" /> <source>Ctrl+Alt+S</source> <comment>Edit|Sort</comment> <translation>Ctrl+Alt+S</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1798" /> + <location filename="../ViewManager/ViewManager.py" line="1808" /> <source>Sort the lines containing the rectangular selection</source> <translation>Сортировать строки в прямоугольной выборке</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1803" /> + <location filename="../ViewManager/ViewManager.py" line="1813" /> <source><b>Sort</b><p>Sort the lines spanned by a rectangular selection based on the selection ignoring leading and trailing whitespace.</p></source> <translation><b>Сортировка</b><p>Сортировать строки в прямоугольной выборке, принимая во внимание только выделенную часть и игнорируя символы пропуска.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1815" /> - <location filename="../ViewManager/ViewManager.py" line="1814" /> + <location filename="../ViewManager/ViewManager.py" line="1825" /> + <location filename="../ViewManager/ViewManager.py" line="1824" /> <source>Generate Docstring</source> <translation>Генерировать строки документации</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1817" /> + <location filename="../ViewManager/ViewManager.py" line="1827" /> <source>Ctrl+Alt+D</source> <comment>Edit|Generate Docstring</comment> <translation>Ctrl+Alt+D</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1826" /> + <location filename="../ViewManager/ViewManager.py" line="1836" /> <source>Generate a docstring for the current function/method</source> <translation>Генерировать строки документации для текущих function/method</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1831" /> + <location filename="../ViewManager/ViewManager.py" line="1841" /> <source><b>Generate Docstring</b><p>Generate a docstring for the current function/method if the cursor is placed on the line starting the function definition or on the line thereafter. The docstring is inserted at the appropriate position and the cursor is placed at the end of the description line.</p></source> <translation><b>Генерировать строки документации</b><p>Генерировать строки документации для текущих function/method если курсор расположен в строке определения функции или в последующей строке. Строки документации вставляются в соответствующую позицию, а курсор помещается в конец строки описания.</p></translation> </message> @@ -95967,22 +95980,22 @@ <location filename="../QScintilla/MiniEditor.py" line="929" /> <location filename="../QScintilla/ShellWindow.py" line="579" /> <location filename="../QScintilla/ShellWindow.py" line="578" /> - <location filename="../ViewManager/ViewManager.py" line="1858" /> - <location filename="../ViewManager/ViewManager.py" line="1857" /> + <location filename="../ViewManager/ViewManager.py" line="1868" /> + <location filename="../ViewManager/ViewManager.py" line="1867" /> <source>Move left one character</source> <translation>Перейти влево на один символ</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="931" /> <location filename="../QScintilla/ShellWindow.py" line="580" /> - <location filename="../ViewManager/ViewManager.py" line="1859" /> + <location filename="../ViewManager/ViewManager.py" line="1869" /> <source>Left</source> <translation>Left</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="939" /> <location filename="../QScintilla/ShellWindow.py" line="588" /> - <location filename="../ViewManager/ViewManager.py" line="1867" /> + <location filename="../ViewManager/ViewManager.py" line="1877" /> <source>Meta+B</source> <translation>Meta+B</translation> </message> @@ -95991,22 +96004,22 @@ <location filename="../QScintilla/MiniEditor.py" line="945" /> <location filename="../QScintilla/ShellWindow.py" line="595" /> <location filename="../QScintilla/ShellWindow.py" line="594" /> - <location filename="../ViewManager/ViewManager.py" line="1874" /> - <location filename="../ViewManager/ViewManager.py" line="1873" /> + <location filename="../ViewManager/ViewManager.py" line="1884" /> + <location filename="../ViewManager/ViewManager.py" line="1883" /> <source>Move right one character</source> <translation>Перейти вправо на один символ</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="947" /> <location filename="../QScintilla/ShellWindow.py" line="596" /> - <location filename="../ViewManager/ViewManager.py" line="1875" /> + <location filename="../ViewManager/ViewManager.py" line="1885" /> <source>Right</source> <translation>Right</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="954" /> <location filename="../QScintilla/ShellWindow.py" line="603" /> - <location filename="../ViewManager/ViewManager.py" line="1882" /> + <location filename="../ViewManager/ViewManager.py" line="1892" /> <source>Meta+F</source> <translation>Meta+F</translation> </message> @@ -96015,22 +96028,22 @@ <location filename="../QScintilla/MiniEditor.py" line="961" /> <location filename="../QScintilla/ShellWindow.py" line="687" /> <location filename="../QScintilla/ShellWindow.py" line="686" /> - <location filename="../ViewManager/ViewManager.py" line="1890" /> - <location filename="../ViewManager/ViewManager.py" line="1889" /> + <location filename="../ViewManager/ViewManager.py" line="1900" /> + <location filename="../ViewManager/ViewManager.py" line="1899" /> <source>Move up one line</source> <translation>Перейти на одну строку вверх</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="963" /> <location filename="../QScintilla/ShellWindow.py" line="688" /> - <location filename="../ViewManager/ViewManager.py" line="1891" /> + <location filename="../ViewManager/ViewManager.py" line="1901" /> <source>Up</source> <translation>Up</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="970" /> <location filename="../QScintilla/ShellWindow.py" line="695" /> - <location filename="../ViewManager/ViewManager.py" line="1898" /> + <location filename="../ViewManager/ViewManager.py" line="1908" /> <source>Meta+P</source> <translation>Meta+P</translation> </message> @@ -96039,30 +96052,30 @@ <location filename="../QScintilla/MiniEditor.py" line="977" /> <location filename="../QScintilla/ShellWindow.py" line="703" /> <location filename="../QScintilla/ShellWindow.py" line="702" /> - <location filename="../ViewManager/ViewManager.py" line="1906" /> - <location filename="../ViewManager/ViewManager.py" line="1905" /> + <location filename="../ViewManager/ViewManager.py" line="1916" /> + <location filename="../ViewManager/ViewManager.py" line="1915" /> <source>Move down one line</source> <translation>Перейти на одну строку вниз</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="979" /> <location filename="../QScintilla/ShellWindow.py" line="704" /> - <location filename="../ViewManager/ViewManager.py" line="1907" /> + <location filename="../ViewManager/ViewManager.py" line="1917" /> <source>Down</source> <translation>Down</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="986" /> <location filename="../QScintilla/ShellWindow.py" line="711" /> - <location filename="../ViewManager/ViewManager.py" line="1914" /> + <location filename="../ViewManager/ViewManager.py" line="1924" /> <source>Meta+N</source> <translation>Meta+N</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="994" /> <location filename="../QScintilla/MiniEditor.py" line="993" /> - <location filename="../ViewManager/ViewManager.py" line="1922" /> - <location filename="../ViewManager/ViewManager.py" line="1921" /> + <location filename="../ViewManager/ViewManager.py" line="1932" /> + <location filename="../ViewManager/ViewManager.py" line="1931" /> <source>Move left one word part</source> <translation>Перейти влево на одну часть слова</translation> </message> @@ -96070,16 +96083,16 @@ <location filename="../QScintilla/MiniEditor.py" line="1034" /> <location filename="../QScintilla/MiniEditor.py" line="1002" /> <location filename="../QScintilla/ShellWindow.py" line="619" /> - <location filename="../ViewManager/ViewManager.py" line="1962" /> - <location filename="../ViewManager/ViewManager.py" line="1930" /> + <location filename="../ViewManager/ViewManager.py" line="1972" /> + <location filename="../ViewManager/ViewManager.py" line="1940" /> <source>Alt+Left</source> <translation>Alt+Left</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1010" /> <location filename="../QScintilla/MiniEditor.py" line="1009" /> - <location filename="../ViewManager/ViewManager.py" line="1938" /> - <location filename="../ViewManager/ViewManager.py" line="1937" /> + <location filename="../ViewManager/ViewManager.py" line="1948" /> + <location filename="../ViewManager/ViewManager.py" line="1947" /> <source>Move right one word part</source> <translation>Перейти вправо на одну часть слова</translation> </message> @@ -96087,8 +96100,8 @@ <location filename="../QScintilla/MiniEditor.py" line="2164" /> <location filename="../QScintilla/MiniEditor.py" line="1054" /> <location filename="../QScintilla/MiniEditor.py" line="1018" /> - <location filename="../ViewManager/ViewManager.py" line="3071" /> - <location filename="../ViewManager/ViewManager.py" line="1946" /> + <location filename="../ViewManager/ViewManager.py" line="3081" /> + <location filename="../ViewManager/ViewManager.py" line="1956" /> <source>Alt+Right</source> <translation>Alt+Right</translation> </message> @@ -96097,8 +96110,8 @@ <location filename="../QScintilla/MiniEditor.py" line="1025" /> <location filename="../QScintilla/ShellWindow.py" line="611" /> <location filename="../QScintilla/ShellWindow.py" line="610" /> - <location filename="../ViewManager/ViewManager.py" line="1954" /> - <location filename="../ViewManager/ViewManager.py" line="1953" /> + <location filename="../ViewManager/ViewManager.py" line="1964" /> + <location filename="../ViewManager/ViewManager.py" line="1963" /> <source>Move left one word</source> <translation>Перейти влево на одно слово</translation> </message> @@ -96106,8 +96119,8 @@ <location filename="../QScintilla/MiniEditor.py" line="1094" /> <location filename="../QScintilla/MiniEditor.py" line="1038" /> <location filename="../QScintilla/ShellWindow.py" line="623" /> - <location filename="../ViewManager/ViewManager.py" line="2018" /> - <location filename="../ViewManager/ViewManager.py" line="1966" /> + <location filename="../ViewManager/ViewManager.py" line="2028" /> + <location filename="../ViewManager/ViewManager.py" line="1976" /> <source>Ctrl+Left</source> <translation>Ctrl+Left</translation> </message> @@ -96116,8 +96129,8 @@ <location filename="../QScintilla/MiniEditor.py" line="1045" /> <location filename="../QScintilla/ShellWindow.py" line="631" /> <location filename="../QScintilla/ShellWindow.py" line="630" /> - <location filename="../ViewManager/ViewManager.py" line="1974" /> - <location filename="../ViewManager/ViewManager.py" line="1973" /> + <location filename="../ViewManager/ViewManager.py" line="1984" /> + <location filename="../ViewManager/ViewManager.py" line="1983" /> <source>Move right one word</source> <translation>Перейти вправо на одно слово</translation> </message> @@ -96125,8 +96138,8 @@ <location filename="../QScintilla/MiniEditor.py" line="1848" /> <location filename="../QScintilla/MiniEditor.py" line="1058" /> <location filename="../QScintilla/ShellWindow.py" line="639" /> - <location filename="../ViewManager/ViewManager.py" line="2755" /> - <location filename="../ViewManager/ViewManager.py" line="1982" /> + <location filename="../ViewManager/ViewManager.py" line="2765" /> + <location filename="../ViewManager/ViewManager.py" line="1992" /> <source>Ctrl+Right</source> <translation>Ctrl+Right</translation> </message> @@ -96135,8 +96148,8 @@ <location filename="../QScintilla/MiniEditor.py" line="1065" /> <location filename="../QScintilla/ShellWindow.py" line="649" /> <location filename="../QScintilla/ShellWindow.py" line="646" /> - <location filename="../ViewManager/ViewManager.py" line="1992" /> - <location filename="../ViewManager/ViewManager.py" line="1989" /> + <location filename="../ViewManager/ViewManager.py" line="2002" /> + <location filename="../ViewManager/ViewManager.py" line="1999" /> <source>Move to first visible character in document line</source> <translation>Перейти к первому видимому символу в строке документа</translation> </message> @@ -96144,22 +96157,22 @@ <location filename="../QScintilla/MiniEditor.py" line="2109" /> <location filename="../QScintilla/MiniEditor.py" line="1078" /> <location filename="../QScintilla/ShellWindow.py" line="659" /> - <location filename="../ViewManager/ViewManager.py" line="3016" /> - <location filename="../ViewManager/ViewManager.py" line="2002" /> + <location filename="../ViewManager/ViewManager.py" line="3026" /> + <location filename="../ViewManager/ViewManager.py" line="2012" /> <source>Home</source> <translation>Home</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1086" /> <location filename="../QScintilla/MiniEditor.py" line="1085" /> - <location filename="../ViewManager/ViewManager.py" line="2010" /> - <location filename="../ViewManager/ViewManager.py" line="2009" /> + <location filename="../ViewManager/ViewManager.py" line="2020" /> + <location filename="../ViewManager/ViewManager.py" line="2019" /> <source>Move to start of display line</source> <translation>Перейти на начало строки экрана</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1098" /> - <location filename="../ViewManager/ViewManager.py" line="2022" /> + <location filename="../ViewManager/ViewManager.py" line="2032" /> <source>Alt+Home</source> <translation>Alt+Home</translation> </message> @@ -96168,15 +96181,15 @@ <location filename="../QScintilla/MiniEditor.py" line="1105" /> <location filename="../QScintilla/ShellWindow.py" line="667" /> <location filename="../QScintilla/ShellWindow.py" line="666" /> - <location filename="../ViewManager/ViewManager.py" line="2030" /> - <location filename="../ViewManager/ViewManager.py" line="2029" /> + <location filename="../ViewManager/ViewManager.py" line="2040" /> + <location filename="../ViewManager/ViewManager.py" line="2039" /> <source>Move to end of document line</source> <translation>Перейти на конец строки документа</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1114" /> <location filename="../QScintilla/ShellWindow.py" line="675" /> - <location filename="../ViewManager/ViewManager.py" line="2038" /> + <location filename="../ViewManager/ViewManager.py" line="2048" /> <source>Meta+E</source> <translation>Meta+E</translation> </message> @@ -96184,16 +96197,16 @@ <location filename="../QScintilla/MiniEditor.py" line="2126" /> <location filename="../QScintilla/MiniEditor.py" line="1118" /> <location filename="../QScintilla/ShellWindow.py" line="679" /> - <location filename="../ViewManager/ViewManager.py" line="3033" /> - <location filename="../ViewManager/ViewManager.py" line="2042" /> + <location filename="../ViewManager/ViewManager.py" line="3043" /> + <location filename="../ViewManager/ViewManager.py" line="2052" /> <source>End</source> <translation>End</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1126" /> <location filename="../QScintilla/MiniEditor.py" line="1125" /> - <location filename="../ViewManager/ViewManager.py" line="2050" /> - <location filename="../ViewManager/ViewManager.py" line="2049" /> + <location filename="../ViewManager/ViewManager.py" line="2060" /> + <location filename="../ViewManager/ViewManager.py" line="2059" /> <source>Scroll view down one line</source> <translation>Прокрутить на одну строку вниз</translation> </message> @@ -96201,16 +96214,16 @@ <location filename="../QScintilla/MiniEditor.py" line="1230" /> <location filename="../QScintilla/MiniEditor.py" line="1127" /> <location filename="../QScintilla/ShellWindow.py" line="720" /> - <location filename="../ViewManager/ViewManager.py" line="2154" /> - <location filename="../ViewManager/ViewManager.py" line="2051" /> + <location filename="../ViewManager/ViewManager.py" line="2164" /> + <location filename="../ViewManager/ViewManager.py" line="2061" /> <source>Ctrl+Down</source> <translation>Ctrl+Down</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1138" /> <location filename="../QScintilla/MiniEditor.py" line="1137" /> - <location filename="../ViewManager/ViewManager.py" line="2062" /> - <location filename="../ViewManager/ViewManager.py" line="2061" /> + <location filename="../ViewManager/ViewManager.py" line="2072" /> + <location filename="../ViewManager/ViewManager.py" line="2071" /> <source>Scroll view up one line</source> <translation>Прокрутить на одну строку вверх</translation> </message> @@ -96218,36 +96231,36 @@ <location filename="../QScintilla/MiniEditor.py" line="1210" /> <location filename="../QScintilla/MiniEditor.py" line="1139" /> <location filename="../QScintilla/ShellWindow.py" line="732" /> - <location filename="../ViewManager/ViewManager.py" line="2134" /> - <location filename="../ViewManager/ViewManager.py" line="2063" /> + <location filename="../ViewManager/ViewManager.py" line="2144" /> + <location filename="../ViewManager/ViewManager.py" line="2073" /> <source>Ctrl+Up</source> <translation>Ctrl+Up</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1150" /> <location filename="../QScintilla/MiniEditor.py" line="1149" /> - <location filename="../ViewManager/ViewManager.py" line="2074" /> - <location filename="../ViewManager/ViewManager.py" line="2073" /> + <location filename="../ViewManager/ViewManager.py" line="2084" /> + <location filename="../ViewManager/ViewManager.py" line="2083" /> <source>Move up one paragraph</source> <translation>Перейти на один параграф вверх</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1151" /> - <location filename="../ViewManager/ViewManager.py" line="2075" /> + <location filename="../ViewManager/ViewManager.py" line="2085" /> <source>Alt+Up</source> <translation>Alt+Up</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1162" /> <location filename="../QScintilla/MiniEditor.py" line="1161" /> - <location filename="../ViewManager/ViewManager.py" line="2086" /> - <location filename="../ViewManager/ViewManager.py" line="2085" /> + <location filename="../ViewManager/ViewManager.py" line="2096" /> + <location filename="../ViewManager/ViewManager.py" line="2095" /> <source>Move down one paragraph</source> <translation>Перейти на один параграф вниз</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1163" /> - <location filename="../ViewManager/ViewManager.py" line="2087" /> + <location filename="../ViewManager/ViewManager.py" line="2097" /> <source>Alt+Down</source> <translation>Alt+Down</translation> </message> @@ -96256,15 +96269,15 @@ <location filename="../QScintilla/MiniEditor.py" line="1173" /> <location filename="../QScintilla/ShellWindow.py" line="743" /> <location filename="../QScintilla/ShellWindow.py" line="742" /> - <location filename="../ViewManager/ViewManager.py" line="2098" /> - <location filename="../ViewManager/ViewManager.py" line="2097" /> + <location filename="../ViewManager/ViewManager.py" line="2108" /> + <location filename="../ViewManager/ViewManager.py" line="2107" /> <source>Move up one page</source> <translation>Перейти на одну страницу вверх</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1175" /> <location filename="../QScintilla/ShellWindow.py" line="744" /> - <location filename="../ViewManager/ViewManager.py" line="2099" /> + <location filename="../ViewManager/ViewManager.py" line="2109" /> <source>PgUp</source> <translation>PgUp</translation> </message> @@ -96273,50 +96286,50 @@ <location filename="../QScintilla/MiniEditor.py" line="1185" /> <location filename="../QScintilla/ShellWindow.py" line="755" /> <location filename="../QScintilla/ShellWindow.py" line="754" /> - <location filename="../ViewManager/ViewManager.py" line="2110" /> - <location filename="../ViewManager/ViewManager.py" line="2109" /> + <location filename="../ViewManager/ViewManager.py" line="2120" /> + <location filename="../ViewManager/ViewManager.py" line="2119" /> <source>Move down one page</source> <translation>Перейти на одну страницу вниз</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1187" /> <location filename="../QScintilla/ShellWindow.py" line="756" /> - <location filename="../ViewManager/ViewManager.py" line="2111" /> + <location filename="../ViewManager/ViewManager.py" line="2121" /> <source>PgDown</source> <translation>PgDown</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1194" /> <location filename="../QScintilla/ShellWindow.py" line="763" /> - <location filename="../ViewManager/ViewManager.py" line="2118" /> + <location filename="../ViewManager/ViewManager.py" line="2128" /> <source>Meta+V</source> <translation>Meta+V</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1202" /> <location filename="../QScintilla/MiniEditor.py" line="1201" /> - <location filename="../ViewManager/ViewManager.py" line="2126" /> - <location filename="../ViewManager/ViewManager.py" line="2125" /> + <location filename="../ViewManager/ViewManager.py" line="2136" /> + <location filename="../ViewManager/ViewManager.py" line="2135" /> <source>Move to start of document</source> <translation>Перейти на начало документа</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1214" /> - <location filename="../ViewManager/ViewManager.py" line="2138" /> + <location filename="../ViewManager/ViewManager.py" line="2148" /> <source>Ctrl+Home</source> <translation>Ctrl+Home</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1222" /> <location filename="../QScintilla/MiniEditor.py" line="1221" /> - <location filename="../ViewManager/ViewManager.py" line="2146" /> - <location filename="../ViewManager/ViewManager.py" line="2145" /> + <location filename="../ViewManager/ViewManager.py" line="2156" /> + <location filename="../ViewManager/ViewManager.py" line="2155" /> <source>Move to end of document</source> <translation>Перейти на конец документа</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1234" /> - <location filename="../ViewManager/ViewManager.py" line="2158" /> + <location filename="../ViewManager/ViewManager.py" line="2168" /> <source>Ctrl+End</source> <translation>Ctrl+End</translation> </message> @@ -96325,29 +96338,29 @@ <location filename="../QScintilla/MiniEditor.py" line="1241" /> <location filename="../QScintilla/ShellWindow.py" line="457" /> <location filename="../QScintilla/ShellWindow.py" line="456" /> - <location filename="../ViewManager/ViewManager.py" line="2166" /> - <location filename="../ViewManager/ViewManager.py" line="2165" /> + <location filename="../ViewManager/ViewManager.py" line="2176" /> + <location filename="../ViewManager/ViewManager.py" line="2175" /> <source>Indent one level</source> <translation>Увеличить отступ</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1243" /> <location filename="../QScintilla/ShellWindow.py" line="458" /> - <location filename="../ViewManager/ViewManager.py" line="2167" /> + <location filename="../ViewManager/ViewManager.py" line="2177" /> <source>Tab</source> <translation>Tab</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1254" /> <location filename="../QScintilla/MiniEditor.py" line="1253" /> - <location filename="../ViewManager/ViewManager.py" line="2178" /> - <location filename="../ViewManager/ViewManager.py" line="2177" /> + <location filename="../ViewManager/ViewManager.py" line="2188" /> + <location filename="../ViewManager/ViewManager.py" line="2187" /> <source>Unindent one level</source> <translation>Уменьшить отступ</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1255" /> - <location filename="../ViewManager/ViewManager.py" line="2179" /> + <location filename="../ViewManager/ViewManager.py" line="2189" /> <source>Shift+Tab</source> <translation>Shift+Tab</translation> </message> @@ -96356,22 +96369,22 @@ <location filename="../QScintilla/MiniEditor.py" line="1265" /> <location filename="../QScintilla/ShellWindow.py" line="785" /> <location filename="../QScintilla/ShellWindow.py" line="782" /> - <location filename="../ViewManager/ViewManager.py" line="2192" /> - <location filename="../ViewManager/ViewManager.py" line="2189" /> + <location filename="../ViewManager/ViewManager.py" line="2202" /> + <location filename="../ViewManager/ViewManager.py" line="2199" /> <source>Extend selection left one character</source> <translation>Распространить выделение на один символ влево</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1271" /> <location filename="../QScintilla/ShellWindow.py" line="788" /> - <location filename="../ViewManager/ViewManager.py" line="2195" /> + <location filename="../ViewManager/ViewManager.py" line="2205" /> <source>Shift+Left</source> <translation>Shift+Left</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1278" /> <location filename="../QScintilla/ShellWindow.py" line="795" /> - <location filename="../ViewManager/ViewManager.py" line="2202" /> + <location filename="../ViewManager/ViewManager.py" line="2212" /> <source>Meta+Shift+B</source> <translation>Meta+Shift+B</translation> </message> @@ -96380,70 +96393,70 @@ <location filename="../QScintilla/MiniEditor.py" line="1285" /> <location filename="../QScintilla/ShellWindow.py" line="805" /> <location filename="../QScintilla/ShellWindow.py" line="802" /> - <location filename="../ViewManager/ViewManager.py" line="2212" /> - <location filename="../ViewManager/ViewManager.py" line="2209" /> + <location filename="../ViewManager/ViewManager.py" line="2222" /> + <location filename="../ViewManager/ViewManager.py" line="2219" /> <source>Extend selection right one character</source> <translation>Распространить выделение на один символ вправо</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1291" /> <location filename="../QScintilla/ShellWindow.py" line="808" /> - <location filename="../ViewManager/ViewManager.py" line="2215" /> + <location filename="../ViewManager/ViewManager.py" line="2225" /> <source>Shift+Right</source> <translation>Shift+Right</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1298" /> <location filename="../QScintilla/ShellWindow.py" line="815" /> - <location filename="../ViewManager/ViewManager.py" line="2222" /> + <location filename="../ViewManager/ViewManager.py" line="2232" /> <source>Meta+Shift+F</source> <translation>Meta+Shift+F</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1306" /> <location filename="../QScintilla/MiniEditor.py" line="1305" /> - <location filename="../ViewManager/ViewManager.py" line="2230" /> - <location filename="../ViewManager/ViewManager.py" line="2229" /> + <location filename="../ViewManager/ViewManager.py" line="2240" /> + <location filename="../ViewManager/ViewManager.py" line="2239" /> <source>Extend selection up one line</source> <translation>Распространить выделение на одну строку вверх</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1307" /> - <location filename="../ViewManager/ViewManager.py" line="2231" /> + <location filename="../ViewManager/ViewManager.py" line="2241" /> <source>Shift+Up</source> <translation>Shift+Up</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1314" /> - <location filename="../ViewManager/ViewManager.py" line="2238" /> + <location filename="../ViewManager/ViewManager.py" line="2248" /> <source>Meta+Shift+P</source> <translation>Meta+Shift+P</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1322" /> <location filename="../QScintilla/MiniEditor.py" line="1321" /> - <location filename="../ViewManager/ViewManager.py" line="2246" /> - <location filename="../ViewManager/ViewManager.py" line="2245" /> + <location filename="../ViewManager/ViewManager.py" line="2256" /> + <location filename="../ViewManager/ViewManager.py" line="2255" /> <source>Extend selection down one line</source> <translation>Распространить выделение на одну строку вниз</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1323" /> - <location filename="../ViewManager/ViewManager.py" line="2247" /> + <location filename="../ViewManager/ViewManager.py" line="2257" /> <source>Shift+Down</source> <translation>Shift+Down</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1330" /> - <location filename="../ViewManager/ViewManager.py" line="2254" /> + <location filename="../ViewManager/ViewManager.py" line="2264" /> <source>Meta+Shift+N</source> <translation>Meta+Shift+N</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1340" /> <location filename="../QScintilla/MiniEditor.py" line="1337" /> - <location filename="../ViewManager/ViewManager.py" line="2264" /> - <location filename="../ViewManager/ViewManager.py" line="2261" /> + <location filename="../ViewManager/ViewManager.py" line="2274" /> + <location filename="../ViewManager/ViewManager.py" line="2271" /> <source>Extend selection left one word part</source> <translation>Распространить выделение на одну часть слова влево</translation> </message> @@ -96451,16 +96464,16 @@ <location filename="../QScintilla/MiniEditor.py" line="1391" /> <location filename="../QScintilla/MiniEditor.py" line="1351" /> <location filename="../QScintilla/ShellWindow.py" line="832" /> - <location filename="../ViewManager/ViewManager.py" line="2315" /> - <location filename="../ViewManager/ViewManager.py" line="2275" /> + <location filename="../ViewManager/ViewManager.py" line="2325" /> + <location filename="../ViewManager/ViewManager.py" line="2285" /> <source>Alt+Shift+Left</source> <translation>Alt+Shift+Left</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1362" /> <location filename="../QScintilla/MiniEditor.py" line="1359" /> - <location filename="../ViewManager/ViewManager.py" line="2286" /> - <location filename="../ViewManager/ViewManager.py" line="2283" /> + <location filename="../ViewManager/ViewManager.py" line="2296" /> + <location filename="../ViewManager/ViewManager.py" line="2293" /> <source>Extend selection right one word part</source> <translation>Распространить выделение на одну часть слова вправо</translation> </message> @@ -96469,9 +96482,9 @@ <location filename="../QScintilla/MiniEditor.py" line="1419" /> <location filename="../QScintilla/MiniEditor.py" line="1373" /> <location filename="../QScintilla/ShellWindow.py" line="860" /> - <location filename="../ViewManager/ViewManager.py" line="3093" /> - <location filename="../ViewManager/ViewManager.py" line="2343" /> - <location filename="../ViewManager/ViewManager.py" line="2297" /> + <location filename="../ViewManager/ViewManager.py" line="3103" /> + <location filename="../ViewManager/ViewManager.py" line="2353" /> + <location filename="../ViewManager/ViewManager.py" line="2307" /> <source>Alt+Shift+Right</source> <translation>Alt+Shift+Right</translation> </message> @@ -96480,8 +96493,8 @@ <location filename="../QScintilla/MiniEditor.py" line="1381" /> <location filename="../QScintilla/ShellWindow.py" line="823" /> <location filename="../QScintilla/ShellWindow.py" line="822" /> - <location filename="../ViewManager/ViewManager.py" line="2306" /> - <location filename="../ViewManager/ViewManager.py" line="2305" /> + <location filename="../ViewManager/ViewManager.py" line="2316" /> + <location filename="../ViewManager/ViewManager.py" line="2315" /> <source>Extend selection left one word</source> <translation>Распространить выделение на одно слово влево</translation> </message> @@ -96489,8 +96502,8 @@ <location filename="../QScintilla/MiniEditor.py" line="2312" /> <location filename="../QScintilla/MiniEditor.py" line="1397" /> <location filename="../QScintilla/ShellWindow.py" line="838" /> - <location filename="../ViewManager/ViewManager.py" line="3219" /> - <location filename="../ViewManager/ViewManager.py" line="2321" /> + <location filename="../ViewManager/ViewManager.py" line="3229" /> + <location filename="../ViewManager/ViewManager.py" line="2331" /> <source>Ctrl+Shift+Left</source> <translation>Ctrl+Shift+Left</translation> </message> @@ -96499,8 +96512,8 @@ <location filename="../QScintilla/MiniEditor.py" line="1405" /> <location filename="../QScintilla/ShellWindow.py" line="849" /> <location filename="../QScintilla/ShellWindow.py" line="846" /> - <location filename="../ViewManager/ViewManager.py" line="2332" /> - <location filename="../ViewManager/ViewManager.py" line="2329" /> + <location filename="../ViewManager/ViewManager.py" line="2342" /> + <location filename="../ViewManager/ViewManager.py" line="2339" /> <source>Extend selection right one word</source> <translation>Распространить выделение на одно слово вправо</translation> </message> @@ -96508,8 +96521,8 @@ <location filename="../QScintilla/MiniEditor.py" line="1873" /> <location filename="../QScintilla/MiniEditor.py" line="1425" /> <location filename="../QScintilla/ShellWindow.py" line="866" /> - <location filename="../ViewManager/ViewManager.py" line="2780" /> - <location filename="../ViewManager/ViewManager.py" line="2349" /> + <location filename="../ViewManager/ViewManager.py" line="2790" /> + <location filename="../ViewManager/ViewManager.py" line="2359" /> <source>Ctrl+Shift+Right</source> <translation>Ctrl+Shift+Right</translation> </message> @@ -96518,15 +96531,15 @@ <location filename="../QScintilla/MiniEditor.py" line="1433" /> <location filename="../QScintilla/ShellWindow.py" line="878" /> <location filename="../QScintilla/ShellWindow.py" line="874" /> - <location filename="../ViewManager/ViewManager.py" line="2361" /> - <location filename="../ViewManager/ViewManager.py" line="2357" /> + <location filename="../ViewManager/ViewManager.py" line="2371" /> + <location filename="../ViewManager/ViewManager.py" line="2367" /> <source>Extend selection to first visible character in document line</source> <translation>Распространить выделение до первого видимого символа в строке документа</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1448" /> <location filename="../QScintilla/ShellWindow.py" line="889" /> - <location filename="../ViewManager/ViewManager.py" line="2372" /> + <location filename="../ViewManager/ViewManager.py" line="2382" /> <source>Shift+Home</source> <translation>Shift+Home</translation> </message> @@ -96535,124 +96548,124 @@ <location filename="../QScintilla/MiniEditor.py" line="1455" /> <location filename="../QScintilla/ShellWindow.py" line="899" /> <location filename="../QScintilla/ShellWindow.py" line="896" /> - <location filename="../ViewManager/ViewManager.py" line="2382" /> - <location filename="../ViewManager/ViewManager.py" line="2379" /> + <location filename="../ViewManager/ViewManager.py" line="2392" /> + <location filename="../ViewManager/ViewManager.py" line="2389" /> <source>Extend selection to end of document line</source> <translation>Распространить выделение до конца строки документа</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1468" /> <location filename="../QScintilla/ShellWindow.py" line="909" /> - <location filename="../ViewManager/ViewManager.py" line="2392" /> + <location filename="../ViewManager/ViewManager.py" line="2402" /> <source>Meta+Shift+E</source> <translation>Meta+Shift+E</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1472" /> <location filename="../QScintilla/ShellWindow.py" line="913" /> - <location filename="../ViewManager/ViewManager.py" line="2396" /> + <location filename="../ViewManager/ViewManager.py" line="2406" /> <source>Shift+End</source> <translation>Shift+End</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1482" /> <location filename="../QScintilla/MiniEditor.py" line="1479" /> - <location filename="../ViewManager/ViewManager.py" line="2406" /> - <location filename="../ViewManager/ViewManager.py" line="2403" /> + <location filename="../ViewManager/ViewManager.py" line="2416" /> + <location filename="../ViewManager/ViewManager.py" line="2413" /> <source>Extend selection up one paragraph</source> <translation>Распространить выделение на один параграф вверх</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1485" /> - <location filename="../ViewManager/ViewManager.py" line="2409" /> + <location filename="../ViewManager/ViewManager.py" line="2419" /> <source>Alt+Shift+Up</source> <translation>Alt+Shift+Up</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1498" /> <location filename="../QScintilla/MiniEditor.py" line="1495" /> - <location filename="../ViewManager/ViewManager.py" line="2422" /> - <location filename="../ViewManager/ViewManager.py" line="2419" /> + <location filename="../ViewManager/ViewManager.py" line="2432" /> + <location filename="../ViewManager/ViewManager.py" line="2429" /> <source>Extend selection down one paragraph</source> <translation>Распространить выделение на один параграф вниз</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1501" /> - <location filename="../ViewManager/ViewManager.py" line="2425" /> + <location filename="../ViewManager/ViewManager.py" line="2435" /> <source>Alt+Shift+Down</source> <translation>Alt+Shift+Down</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1512" /> <location filename="../QScintilla/MiniEditor.py" line="1511" /> - <location filename="../ViewManager/ViewManager.py" line="2436" /> - <location filename="../ViewManager/ViewManager.py" line="2435" /> + <location filename="../ViewManager/ViewManager.py" line="2446" /> + <location filename="../ViewManager/ViewManager.py" line="2445" /> <source>Extend selection up one page</source> <translation>Распространить выделение на страницу вверх</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1513" /> - <location filename="../ViewManager/ViewManager.py" line="2437" /> + <location filename="../ViewManager/ViewManager.py" line="2447" /> <source>Shift+PgUp</source> <translation>Shift+PgUp</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1524" /> <location filename="../QScintilla/MiniEditor.py" line="1523" /> - <location filename="../ViewManager/ViewManager.py" line="2448" /> - <location filename="../ViewManager/ViewManager.py" line="2447" /> + <location filename="../ViewManager/ViewManager.py" line="2458" /> + <location filename="../ViewManager/ViewManager.py" line="2457" /> <source>Extend selection down one page</source> <translation>Распространить выделение на страницу вниз</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1525" /> - <location filename="../ViewManager/ViewManager.py" line="2449" /> + <location filename="../ViewManager/ViewManager.py" line="2459" /> <source>Shift+PgDown</source> <translation>Shift+PgDown</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1532" /> - <location filename="../ViewManager/ViewManager.py" line="2456" /> + <location filename="../ViewManager/ViewManager.py" line="2466" /> <source>Meta+Shift+V</source> <translation>Meta+Shift+V</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1542" /> <location filename="../QScintilla/MiniEditor.py" line="1539" /> - <location filename="../ViewManager/ViewManager.py" line="2466" /> - <location filename="../ViewManager/ViewManager.py" line="2463" /> + <location filename="../ViewManager/ViewManager.py" line="2476" /> + <location filename="../ViewManager/ViewManager.py" line="2473" /> <source>Extend selection to start of document</source> <translation>Распространить выделение до начала документа</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1552" /> - <location filename="../ViewManager/ViewManager.py" line="2476" /> + <location filename="../ViewManager/ViewManager.py" line="2486" /> <source>Ctrl+Shift+Up</source> <translation>Ctrl+Shift+Up</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1557" /> - <location filename="../ViewManager/ViewManager.py" line="2481" /> + <location filename="../ViewManager/ViewManager.py" line="2491" /> <source>Ctrl+Shift+Home</source> <translation>Ctrl+Shift+Home</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1568" /> <location filename="../QScintilla/MiniEditor.py" line="1565" /> - <location filename="../ViewManager/ViewManager.py" line="2492" /> - <location filename="../ViewManager/ViewManager.py" line="2489" /> + <location filename="../ViewManager/ViewManager.py" line="2502" /> + <location filename="../ViewManager/ViewManager.py" line="2499" /> <source>Extend selection to end of document</source> <translation>Распространить выделение до конца документа</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1579" /> - <location filename="../ViewManager/ViewManager.py" line="2503" /> + <location filename="../ViewManager/ViewManager.py" line="2513" /> <source>Ctrl+Shift+Down</source> <translation>Ctrl+Shift+Down</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1585" /> - <location filename="../ViewManager/ViewManager.py" line="2509" /> + <location filename="../ViewManager/ViewManager.py" line="2519" /> <source>Ctrl+Shift+End</source> <translation>Ctrl+Shift+End</translation> </message> @@ -96661,37 +96674,37 @@ <location filename="../QScintilla/MiniEditor.py" line="1593" /> <location filename="../QScintilla/ShellWindow.py" line="481" /> <location filename="../QScintilla/ShellWindow.py" line="480" /> - <location filename="../ViewManager/ViewManager.py" line="2518" /> - <location filename="../ViewManager/ViewManager.py" line="2517" /> + <location filename="../ViewManager/ViewManager.py" line="2528" /> + <location filename="../ViewManager/ViewManager.py" line="2527" /> <source>Delete previous character</source> <translation>Удалить предыдущий символ</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1595" /> <location filename="../QScintilla/ShellWindow.py" line="482" /> - <location filename="../ViewManager/ViewManager.py" line="2519" /> + <location filename="../ViewManager/ViewManager.py" line="2529" /> <source>Backspace</source> <translation>Backspace</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1602" /> <location filename="../QScintilla/ShellWindow.py" line="489" /> - <location filename="../ViewManager/ViewManager.py" line="2526" /> + <location filename="../ViewManager/ViewManager.py" line="2536" /> <source>Meta+H</source> <translation>Meta+H</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1607" /> <location filename="../QScintilla/ShellWindow.py" line="494" /> - <location filename="../ViewManager/ViewManager.py" line="2531" /> + <location filename="../ViewManager/ViewManager.py" line="2541" /> <source>Shift+Backspace</source> <translation>Shift+Backspace</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1618" /> <location filename="../QScintilla/MiniEditor.py" line="1615" /> - <location filename="../ViewManager/ViewManager.py" line="2542" /> - <location filename="../ViewManager/ViewManager.py" line="2539" /> + <location filename="../ViewManager/ViewManager.py" line="2552" /> + <location filename="../ViewManager/ViewManager.py" line="2549" /> <source>Delete previous character if not at start of line</source> <translation>Удалить предыдущий символ если он не первый в строке</translation> </message> @@ -96700,22 +96713,22 @@ <location filename="../QScintilla/MiniEditor.py" line="1631" /> <location filename="../QScintilla/ShellWindow.py" line="503" /> <location filename="../QScintilla/ShellWindow.py" line="502" /> - <location filename="../ViewManager/ViewManager.py" line="2556" /> - <location filename="../ViewManager/ViewManager.py" line="2555" /> + <location filename="../ViewManager/ViewManager.py" line="2566" /> + <location filename="../ViewManager/ViewManager.py" line="2565" /> <source>Delete current character</source> <translation>Удалить текущий символ</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1633" /> <location filename="../QScintilla/ShellWindow.py" line="504" /> - <location filename="../ViewManager/ViewManager.py" line="2557" /> + <location filename="../ViewManager/ViewManager.py" line="2567" /> <source>Del</source> <translation>Del</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1640" /> <location filename="../QScintilla/ShellWindow.py" line="511" /> - <location filename="../ViewManager/ViewManager.py" line="2564" /> + <location filename="../ViewManager/ViewManager.py" line="2574" /> <source>Meta+D</source> <translation>Meta+D</translation> </message> @@ -96724,15 +96737,15 @@ <location filename="../QScintilla/MiniEditor.py" line="1647" /> <location filename="../QScintilla/ShellWindow.py" line="519" /> <location filename="../QScintilla/ShellWindow.py" line="518" /> - <location filename="../ViewManager/ViewManager.py" line="2572" /> - <location filename="../ViewManager/ViewManager.py" line="2571" /> + <location filename="../ViewManager/ViewManager.py" line="2582" /> + <location filename="../ViewManager/ViewManager.py" line="2581" /> <source>Delete word to left</source> <translation>Удалить слово слева</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1649" /> <location filename="../QScintilla/ShellWindow.py" line="520" /> - <location filename="../ViewManager/ViewManager.py" line="2573" /> + <location filename="../ViewManager/ViewManager.py" line="2583" /> <source>Ctrl+Backspace</source> <translation>Ctrl+Backspace</translation> </message> @@ -96741,15 +96754,15 @@ <location filename="../QScintilla/MiniEditor.py" line="1659" /> <location filename="../QScintilla/ShellWindow.py" line="531" /> <location filename="../QScintilla/ShellWindow.py" line="530" /> - <location filename="../ViewManager/ViewManager.py" line="2584" /> - <location filename="../ViewManager/ViewManager.py" line="2583" /> + <location filename="../ViewManager/ViewManager.py" line="2594" /> + <location filename="../ViewManager/ViewManager.py" line="2593" /> <source>Delete word to right</source> <translation>Удалить слово справа</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1661" /> <location filename="../QScintilla/ShellWindow.py" line="532" /> - <location filename="../ViewManager/ViewManager.py" line="2585" /> + <location filename="../ViewManager/ViewManager.py" line="2595" /> <source>Ctrl+Del</source> <translation>Ctrl+Del</translation> </message> @@ -96758,15 +96771,15 @@ <location filename="../QScintilla/MiniEditor.py" line="1671" /> <location filename="../QScintilla/ShellWindow.py" line="543" /> <location filename="../QScintilla/ShellWindow.py" line="542" /> - <location filename="../ViewManager/ViewManager.py" line="2596" /> - <location filename="../ViewManager/ViewManager.py" line="2595" /> + <location filename="../ViewManager/ViewManager.py" line="2606" /> + <location filename="../ViewManager/ViewManager.py" line="2605" /> <source>Delete line to left</source> <translation>Удалить строку слева</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1674" /> <location filename="../QScintilla/ShellWindow.py" line="545" /> - <location filename="../ViewManager/ViewManager.py" line="2598" /> + <location filename="../ViewManager/ViewManager.py" line="2608" /> <source>Ctrl+Shift+Backspace</source> <translation>Ctrl+Shift+Backspace</translation> </message> @@ -96775,22 +96788,22 @@ <location filename="../QScintilla/MiniEditor.py" line="1685" /> <location filename="../QScintilla/ShellWindow.py" line="557" /> <location filename="../QScintilla/ShellWindow.py" line="556" /> - <location filename="../ViewManager/ViewManager.py" line="2610" /> - <location filename="../ViewManager/ViewManager.py" line="2609" /> + <location filename="../ViewManager/ViewManager.py" line="2620" /> + <location filename="../ViewManager/ViewManager.py" line="2619" /> <source>Delete line to right</source> <translation>Удалить строку справа</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1694" /> <location filename="../QScintilla/ShellWindow.py" line="565" /> - <location filename="../ViewManager/ViewManager.py" line="2618" /> + <location filename="../ViewManager/ViewManager.py" line="2628" /> <source>Meta+K</source> <translation>Meta+K</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1699" /> <location filename="../QScintilla/ShellWindow.py" line="570" /> - <location filename="../ViewManager/ViewManager.py" line="2623" /> + <location filename="../ViewManager/ViewManager.py" line="2633" /> <source>Ctrl+Shift+Del</source> <translation>Ctrl+Shift+Del</translation> </message> @@ -96799,38 +96812,38 @@ <location filename="../QScintilla/MiniEditor.py" line="1707" /> <location filename="../QScintilla/ShellWindow.py" line="469" /> <location filename="../QScintilla/ShellWindow.py" line="468" /> - <location filename="../ViewManager/ViewManager.py" line="2632" /> - <location filename="../ViewManager/ViewManager.py" line="2631" /> + <location filename="../ViewManager/ViewManager.py" line="2642" /> + <location filename="../ViewManager/ViewManager.py" line="2641" /> <source>Insert new line</source> <translation>Вставить новую строку</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1709" /> <location filename="../QScintilla/ShellWindow.py" line="470" /> - <location filename="../ViewManager/ViewManager.py" line="2633" /> + <location filename="../ViewManager/ViewManager.py" line="2643" /> <source>Return</source> <translation>Return</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1710" /> <location filename="../QScintilla/ShellWindow.py" line="471" /> - <location filename="../ViewManager/ViewManager.py" line="2634" /> + <location filename="../ViewManager/ViewManager.py" line="2644" /> <source>Enter</source> <translation>Enter</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="2646" /> - <location filename="../ViewManager/ViewManager.py" line="2643" /> + <location filename="../ViewManager/ViewManager.py" line="2656" /> + <location filename="../ViewManager/ViewManager.py" line="2653" /> <source>Insert new line below current line</source> <translation>Вставить новую строку после текущей</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="2649" /> + <location filename="../ViewManager/ViewManager.py" line="2659" /> <source>Shift+Return</source> <translation>Shift+Return</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="2650" /> + <location filename="../ViewManager/ViewManager.py" line="2660" /> <source>Shift+Enter</source> <translation>Shift+Enter</translation> </message> @@ -96839,129 +96852,129 @@ <location filename="../QScintilla/MiniEditor.py" line="1719" /> <location filename="../QScintilla/ShellWindow.py" line="445" /> <location filename="../QScintilla/ShellWindow.py" line="444" /> - <location filename="../ViewManager/ViewManager.py" line="2659" /> - <location filename="../ViewManager/ViewManager.py" line="2658" /> + <location filename="../ViewManager/ViewManager.py" line="2669" /> + <location filename="../ViewManager/ViewManager.py" line="2668" /> <source>Delete current line</source> <translation>Удалить текущую строку</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1721" /> <location filename="../QScintilla/ShellWindow.py" line="446" /> - <location filename="../ViewManager/ViewManager.py" line="2660" /> + <location filename="../ViewManager/ViewManager.py" line="2670" /> <source>Ctrl+Shift+L</source> <translation>Ctrl+Shift+L</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1732" /> <location filename="../QScintilla/MiniEditor.py" line="1731" /> - <location filename="../ViewManager/ViewManager.py" line="2671" /> - <location filename="../ViewManager/ViewManager.py" line="2670" /> + <location filename="../ViewManager/ViewManager.py" line="2681" /> + <location filename="../ViewManager/ViewManager.py" line="2680" /> <source>Duplicate current line</source> <translation>Дублировать текущую строку</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1733" /> - <location filename="../ViewManager/ViewManager.py" line="2672" /> + <location filename="../ViewManager/ViewManager.py" line="2682" /> <source>Ctrl+D</source> <translation>Ctrl+D</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1746" /> <location filename="../QScintilla/MiniEditor.py" line="1743" /> - <location filename="../ViewManager/ViewManager.py" line="2685" /> - <location filename="../ViewManager/ViewManager.py" line="2682" /> + <location filename="../ViewManager/ViewManager.py" line="2695" /> + <location filename="../ViewManager/ViewManager.py" line="2692" /> <source>Swap current and previous lines</source> <translation>Поменять местами предыдущую и последующую строки</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1749" /> - <location filename="../ViewManager/ViewManager.py" line="2688" /> + <location filename="../ViewManager/ViewManager.py" line="2698" /> <source>Ctrl+T</source> <translation>Ctrl+T</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1760" /> <location filename="../QScintilla/MiniEditor.py" line="1759" /> - <location filename="../ViewManager/ViewManager.py" line="2699" /> - <location filename="../ViewManager/ViewManager.py" line="2698" /> + <location filename="../ViewManager/ViewManager.py" line="2709" /> + <location filename="../ViewManager/ViewManager.py" line="2708" /> <source>Reverse selected lines</source> <translation>Реверсировать выбранные строки</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1761" /> - <location filename="../ViewManager/ViewManager.py" line="2700" /> + <location filename="../ViewManager/ViewManager.py" line="2710" /> <source>Meta+Alt+R</source> <translation>Meta+Alt+R</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1772" /> <location filename="../QScintilla/MiniEditor.py" line="1771" /> - <location filename="../ViewManager/ViewManager.py" line="2711" /> - <location filename="../ViewManager/ViewManager.py" line="2710" /> + <location filename="../ViewManager/ViewManager.py" line="2721" /> + <location filename="../ViewManager/ViewManager.py" line="2720" /> <source>Cut current line</source> <translation>Вырезать текущую строку</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1773" /> - <location filename="../ViewManager/ViewManager.py" line="2712" /> + <location filename="../ViewManager/ViewManager.py" line="2722" /> <source>Alt+Shift+L</source> <translation>Alt+Shift+L</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1784" /> <location filename="../QScintilla/MiniEditor.py" line="1783" /> - <location filename="../ViewManager/ViewManager.py" line="2723" /> - <location filename="../ViewManager/ViewManager.py" line="2722" /> + <location filename="../ViewManager/ViewManager.py" line="2733" /> + <location filename="../ViewManager/ViewManager.py" line="2732" /> <source>Copy current line</source> <translation>Копировать текущую строку</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1785" /> - <location filename="../ViewManager/ViewManager.py" line="2724" /> + <location filename="../ViewManager/ViewManager.py" line="2734" /> <source>Ctrl+Shift+T</source> <translation>Ctrl+Shift+T</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1796" /> <location filename="../QScintilla/MiniEditor.py" line="1795" /> - <location filename="../ViewManager/ViewManager.py" line="2735" /> - <location filename="../ViewManager/ViewManager.py" line="2734" /> + <location filename="../ViewManager/ViewManager.py" line="2745" /> + <location filename="../ViewManager/ViewManager.py" line="2744" /> <source>Toggle insert/overtype</source> <translation>Вставка/Замена</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1797" /> - <location filename="../ViewManager/ViewManager.py" line="2736" /> + <location filename="../ViewManager/ViewManager.py" line="2746" /> <source>Ins</source> <translation>Ins</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1840" /> <location filename="../QScintilla/MiniEditor.py" line="1839" /> - <location filename="../ViewManager/ViewManager.py" line="2747" /> - <location filename="../ViewManager/ViewManager.py" line="2746" /> + <location filename="../ViewManager/ViewManager.py" line="2757" /> + <location filename="../ViewManager/ViewManager.py" line="2756" /> <source>Move to end of display line</source> <translation>Перейти на конец строки экрана</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1852" /> - <location filename="../ViewManager/ViewManager.py" line="2759" /> + <location filename="../ViewManager/ViewManager.py" line="2769" /> <source>Alt+End</source> <translation>Alt+End</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1862" /> <location filename="../QScintilla/MiniEditor.py" line="1859" /> - <location filename="../ViewManager/ViewManager.py" line="2769" /> - <location filename="../ViewManager/ViewManager.py" line="2766" /> + <location filename="../ViewManager/ViewManager.py" line="2779" /> + <location filename="../ViewManager/ViewManager.py" line="2776" /> <source>Extend selection to end of display line</source> <translation>Распространить выделение до конца строки экрана</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1882" /> <location filename="../QScintilla/MiniEditor.py" line="1881" /> - <location filename="../ViewManager/ViewManager.py" line="2789" /> - <location filename="../ViewManager/ViewManager.py" line="2788" /> + <location filename="../ViewManager/ViewManager.py" line="2799" /> + <location filename="../ViewManager/ViewManager.py" line="2798" /> <source>Formfeed</source> <translation>Перевод страницы</translation> </message> @@ -96970,163 +96983,163 @@ <location filename="../QScintilla/MiniEditor.py" line="1893" /> <location filename="../QScintilla/ShellWindow.py" line="771" /> <location filename="../QScintilla/ShellWindow.py" line="770" /> - <location filename="../ViewManager/ViewManager.py" line="2801" /> - <location filename="../ViewManager/ViewManager.py" line="2800" /> + <location filename="../ViewManager/ViewManager.py" line="2811" /> + <location filename="../ViewManager/ViewManager.py" line="2810" /> <source>Escape</source> <translation>Escape</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1895" /> <location filename="../QScintilla/ShellWindow.py" line="772" /> - <location filename="../ViewManager/ViewManager.py" line="2802" /> + <location filename="../ViewManager/ViewManager.py" line="2812" /> <source>Esc</source> <translation>Esc</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1908" /> <location filename="../QScintilla/MiniEditor.py" line="1905" /> - <location filename="../ViewManager/ViewManager.py" line="2815" /> - <location filename="../ViewManager/ViewManager.py" line="2812" /> + <location filename="../ViewManager/ViewManager.py" line="2825" /> + <location filename="../ViewManager/ViewManager.py" line="2822" /> <source>Extend rectangular selection down one line</source> <translation>Распространить прямоугольное выделение на одну строку вниз</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1911" /> - <location filename="../ViewManager/ViewManager.py" line="2818" /> + <location filename="../ViewManager/ViewManager.py" line="2828" /> <source>Alt+Ctrl+Down</source> <translation>Alt+Ctrl+Down</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1919" /> - <location filename="../ViewManager/ViewManager.py" line="2826" /> + <location filename="../ViewManager/ViewManager.py" line="2836" /> <source>Meta+Alt+Shift+N</source> <translation>Meta+Alt+Shift+N</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1930" /> <location filename="../QScintilla/MiniEditor.py" line="1927" /> - <location filename="../ViewManager/ViewManager.py" line="2837" /> - <location filename="../ViewManager/ViewManager.py" line="2834" /> + <location filename="../ViewManager/ViewManager.py" line="2847" /> + <location filename="../ViewManager/ViewManager.py" line="2844" /> <source>Extend rectangular selection up one line</source> <translation>Распространить прямоугольное выделение на одну строку вверх</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1933" /> - <location filename="../ViewManager/ViewManager.py" line="2840" /> + <location filename="../ViewManager/ViewManager.py" line="2850" /> <source>Alt+Ctrl+Up</source> <translation>Alt+Ctrl+Up</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1941" /> - <location filename="../ViewManager/ViewManager.py" line="2848" /> + <location filename="../ViewManager/ViewManager.py" line="2858" /> <source>Meta+Alt+Shift+P</source> <translation>Meta+Alt+Shift+P</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1952" /> <location filename="../QScintilla/MiniEditor.py" line="1949" /> - <location filename="../ViewManager/ViewManager.py" line="2859" /> - <location filename="../ViewManager/ViewManager.py" line="2856" /> + <location filename="../ViewManager/ViewManager.py" line="2869" /> + <location filename="../ViewManager/ViewManager.py" line="2866" /> <source>Extend rectangular selection left one character</source> <translation>Распространить прямоугольное выделение на один символ влево</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1955" /> - <location filename="../ViewManager/ViewManager.py" line="2862" /> + <location filename="../ViewManager/ViewManager.py" line="2872" /> <source>Alt+Ctrl+Left</source> <translation>Alt+Ctrl+Left</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1963" /> - <location filename="../ViewManager/ViewManager.py" line="2870" /> + <location filename="../ViewManager/ViewManager.py" line="2880" /> <source>Meta+Alt+Shift+B</source> <translation>Meta+Alt+Shift+B</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1974" /> <location filename="../QScintilla/MiniEditor.py" line="1971" /> - <location filename="../ViewManager/ViewManager.py" line="2881" /> - <location filename="../ViewManager/ViewManager.py" line="2878" /> + <location filename="../ViewManager/ViewManager.py" line="2891" /> + <location filename="../ViewManager/ViewManager.py" line="2888" /> <source>Extend rectangular selection right one character</source> <translation>Распространить прямоугольное выделение на один символ вправо</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1977" /> - <location filename="../ViewManager/ViewManager.py" line="2884" /> + <location filename="../ViewManager/ViewManager.py" line="2894" /> <source>Alt+Ctrl+Right</source> <translation>Alt+Ctrl+Right</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1985" /> - <location filename="../ViewManager/ViewManager.py" line="2892" /> + <location filename="../ViewManager/ViewManager.py" line="2902" /> <source>Meta+Alt+Shift+F</source> <translation>Meta+Alt+Shift+F</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1998" /> <location filename="../QScintilla/MiniEditor.py" line="1993" /> - <location filename="../ViewManager/ViewManager.py" line="2905" /> - <location filename="../ViewManager/ViewManager.py" line="2900" /> + <location filename="../ViewManager/ViewManager.py" line="2915" /> + <location filename="../ViewManager/ViewManager.py" line="2910" /> <source>Extend rectangular selection to first visible character in document line</source> <translation>Распространить прямоугольное выделение до первого видимого символа в строке документа</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2011" /> - <location filename="../ViewManager/ViewManager.py" line="2918" /> + <location filename="../ViewManager/ViewManager.py" line="2928" /> <source>Alt+Shift+Home</source> <translation>Alt+Shift+Home</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2022" /> <location filename="../QScintilla/MiniEditor.py" line="2019" /> - <location filename="../ViewManager/ViewManager.py" line="2929" /> - <location filename="../ViewManager/ViewManager.py" line="2926" /> + <location filename="../ViewManager/ViewManager.py" line="2939" /> + <location filename="../ViewManager/ViewManager.py" line="2936" /> <source>Extend rectangular selection to end of document line</source> <translation>Распространить прямоугольное выделение до конца строки документа</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2033" /> - <location filename="../ViewManager/ViewManager.py" line="2940" /> + <location filename="../ViewManager/ViewManager.py" line="2950" /> <source>Meta+Alt+Shift+E</source> <translation>Meta+Alt+Shift+E</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2038" /> - <location filename="../ViewManager/ViewManager.py" line="2945" /> + <location filename="../ViewManager/ViewManager.py" line="2955" /> <source>Alt+Shift+End</source> <translation>Alt+Shift+End</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2048" /> <location filename="../QScintilla/MiniEditor.py" line="2045" /> - <location filename="../ViewManager/ViewManager.py" line="2955" /> - <location filename="../ViewManager/ViewManager.py" line="2952" /> + <location filename="../ViewManager/ViewManager.py" line="2965" /> + <location filename="../ViewManager/ViewManager.py" line="2962" /> <source>Extend rectangular selection up one page</source> <translation>Распространить прямоугольное выделение на одну страницу вверх</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2051" /> - <location filename="../ViewManager/ViewManager.py" line="2958" /> + <location filename="../ViewManager/ViewManager.py" line="2968" /> <source>Alt+Shift+PgUp</source> <translation>Alt+Shift+PgUp</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2064" /> <location filename="../QScintilla/MiniEditor.py" line="2061" /> - <location filename="../ViewManager/ViewManager.py" line="2971" /> - <location filename="../ViewManager/ViewManager.py" line="2968" /> + <location filename="../ViewManager/ViewManager.py" line="2981" /> + <location filename="../ViewManager/ViewManager.py" line="2978" /> <source>Extend rectangular selection down one page</source> <translation>Распространить прямоугольное выделение на одну страницу вниз</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2067" /> - <location filename="../ViewManager/ViewManager.py" line="2974" /> + <location filename="../ViewManager/ViewManager.py" line="2984" /> <source>Alt+Shift+PgDown</source> <translation>Alt+Shift+PgDown</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2075" /> - <location filename="../ViewManager/ViewManager.py" line="2982" /> + <location filename="../ViewManager/ViewManager.py" line="2992" /> <source>Meta+Alt+Shift+V</source> <translation>Meta+Alt+Shift+V</translation> </message> @@ -97135,299 +97148,299 @@ <location filename="../QScintilla/MiniEditor.py" line="2549" /> <location filename="../QScintilla/MiniEditor.py" line="2084" /> <location filename="../QScintilla/MiniEditor.py" line="2083" /> - <location filename="../ViewManager/ViewManager.py" line="2991" /> - <location filename="../ViewManager/ViewManager.py" line="2990" /> + <location filename="../ViewManager/ViewManager.py" line="3001" /> + <location filename="../ViewManager/ViewManager.py" line="3000" /> <source>Duplicate current selection</source> <translation>Дублировать текущее выделение</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2551" /> <location filename="../QScintilla/MiniEditor.py" line="2085" /> - <location filename="../ViewManager/ViewManager.py" line="2992" /> + <location filename="../ViewManager/ViewManager.py" line="3002" /> <source>Ctrl+Shift+D</source> <translation>Ctrl+Shift+D</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2099" /> <location filename="../QScintilla/MiniEditor.py" line="2096" /> - <location filename="../ViewManager/ViewManager.py" line="3006" /> - <location filename="../ViewManager/ViewManager.py" line="3003" /> + <location filename="../ViewManager/ViewManager.py" line="3016" /> + <location filename="../ViewManager/ViewManager.py" line="3013" /> <source>Scroll to start of document</source> <translation>Прокрутить на начало документа</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2118" /> <location filename="../QScintilla/MiniEditor.py" line="2117" /> - <location filename="../ViewManager/ViewManager.py" line="3025" /> - <location filename="../ViewManager/ViewManager.py" line="3024" /> + <location filename="../ViewManager/ViewManager.py" line="3035" /> + <location filename="../ViewManager/ViewManager.py" line="3034" /> <source>Scroll to end of document</source> <translation>Прокрутить на конец документа</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2137" /> <location filename="../QScintilla/MiniEditor.py" line="2134" /> - <location filename="../ViewManager/ViewManager.py" line="3044" /> - <location filename="../ViewManager/ViewManager.py" line="3041" /> + <location filename="../ViewManager/ViewManager.py" line="3054" /> + <location filename="../ViewManager/ViewManager.py" line="3051" /> <source>Scroll vertically to center current line</source> <translation>Прокрутить вертикально до центра текущей строки</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2147" /> - <location filename="../ViewManager/ViewManager.py" line="3054" /> + <location filename="../ViewManager/ViewManager.py" line="3064" /> <source>Meta+L</source> <translation>Meta+L</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2156" /> <location filename="../QScintilla/MiniEditor.py" line="2155" /> - <location filename="../ViewManager/ViewManager.py" line="3063" /> - <location filename="../ViewManager/ViewManager.py" line="3062" /> + <location filename="../ViewManager/ViewManager.py" line="3073" /> + <location filename="../ViewManager/ViewManager.py" line="3072" /> <source>Move to end of next word</source> <translation>Перейти в конец следующего слова</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2175" /> <location filename="../QScintilla/MiniEditor.py" line="2172" /> - <location filename="../ViewManager/ViewManager.py" line="3082" /> - <location filename="../ViewManager/ViewManager.py" line="3079" /> + <location filename="../ViewManager/ViewManager.py" line="3092" /> + <location filename="../ViewManager/ViewManager.py" line="3089" /> <source>Extend selection to end of next word</source> <translation>Распространить выделение до конца следующего слова</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2198" /> <location filename="../QScintilla/MiniEditor.py" line="2195" /> - <location filename="../ViewManager/ViewManager.py" line="3105" /> - <location filename="../ViewManager/ViewManager.py" line="3102" /> + <location filename="../ViewManager/ViewManager.py" line="3115" /> + <location filename="../ViewManager/ViewManager.py" line="3112" /> <source>Move to end of previous word</source> <translation>Перейти в конец предыдущего слова</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2215" /> <location filename="../QScintilla/MiniEditor.py" line="2212" /> - <location filename="../ViewManager/ViewManager.py" line="3122" /> - <location filename="../ViewManager/ViewManager.py" line="3119" /> + <location filename="../ViewManager/ViewManager.py" line="3132" /> + <location filename="../ViewManager/ViewManager.py" line="3129" /> <source>Extend selection to end of previous word</source> <translation>Распространить выделение до конца предыдущего слова</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2232" /> <location filename="../QScintilla/MiniEditor.py" line="2229" /> - <location filename="../ViewManager/ViewManager.py" line="3139" /> - <location filename="../ViewManager/ViewManager.py" line="3136" /> + <location filename="../ViewManager/ViewManager.py" line="3149" /> + <location filename="../ViewManager/ViewManager.py" line="3146" /> <source>Move to start of document line</source> <translation>Перейти на начало строки документа</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2242" /> - <location filename="../ViewManager/ViewManager.py" line="3149" /> + <location filename="../ViewManager/ViewManager.py" line="3159" /> <source>Meta+A</source> <translation>Meta+A</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2253" /> <location filename="../QScintilla/MiniEditor.py" line="2250" /> - <location filename="../ViewManager/ViewManager.py" line="3160" /> - <location filename="../ViewManager/ViewManager.py" line="3157" /> + <location filename="../ViewManager/ViewManager.py" line="3170" /> + <location filename="../ViewManager/ViewManager.py" line="3167" /> <source>Extend selection to start of document line</source> <translation>Распространить выделение до начала строки документа</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2264" /> - <location filename="../ViewManager/ViewManager.py" line="3171" /> + <location filename="../ViewManager/ViewManager.py" line="3181" /> <source>Meta+Shift+A</source> <translation>Meta+Shift+A</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2277" /> <location filename="../QScintilla/MiniEditor.py" line="2273" /> - <location filename="../ViewManager/ViewManager.py" line="3184" /> - <location filename="../ViewManager/ViewManager.py" line="3180" /> + <location filename="../ViewManager/ViewManager.py" line="3194" /> + <location filename="../ViewManager/ViewManager.py" line="3190" /> <source>Extend rectangular selection to start of document line</source> <translation>Распространить прямоугольное выделение до начала строки документа</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2289" /> - <location filename="../ViewManager/ViewManager.py" line="3196" /> + <location filename="../ViewManager/ViewManager.py" line="3206" /> <source>Meta+Alt+Shift+A</source> <translation>Meta+Alt+Shift+A</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2301" /> <location filename="../QScintilla/MiniEditor.py" line="2298" /> - <location filename="../ViewManager/ViewManager.py" line="3208" /> - <location filename="../ViewManager/ViewManager.py" line="3205" /> + <location filename="../ViewManager/ViewManager.py" line="3218" /> + <location filename="../ViewManager/ViewManager.py" line="3215" /> <source>Extend selection to start of display line</source> <translation>Распространить выделение до начала строки экрана</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2324" /> <location filename="../QScintilla/MiniEditor.py" line="2321" /> - <location filename="../ViewManager/ViewManager.py" line="3231" /> - <location filename="../ViewManager/ViewManager.py" line="3228" /> + <location filename="../ViewManager/ViewManager.py" line="3241" /> + <location filename="../ViewManager/ViewManager.py" line="3238" /> <source>Move to start of display or document line</source> <translation>Перейти на начало строки экрана или документа</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2342" /> <location filename="../QScintilla/MiniEditor.py" line="2338" /> - <location filename="../ViewManager/ViewManager.py" line="3249" /> - <location filename="../ViewManager/ViewManager.py" line="3245" /> + <location filename="../ViewManager/ViewManager.py" line="3259" /> + <location filename="../ViewManager/ViewManager.py" line="3255" /> <source>Extend selection to start of display or document line</source> <translation>Распространить выделение до начала строки экрана или документа</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2361" /> <location filename="../QScintilla/MiniEditor.py" line="2357" /> - <location filename="../ViewManager/ViewManager.py" line="3268" /> - <location filename="../ViewManager/ViewManager.py" line="3264" /> + <location filename="../ViewManager/ViewManager.py" line="3278" /> + <location filename="../ViewManager/ViewManager.py" line="3274" /> <source>Move to first visible character in display or document line</source> <translation>Перейти к первому видимому символу строки экрана или документа</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2381" /> <location filename="../QScintilla/MiniEditor.py" line="2376" /> - <location filename="../ViewManager/ViewManager.py" line="3288" /> - <location filename="../ViewManager/ViewManager.py" line="3283" /> + <location filename="../ViewManager/ViewManager.py" line="3298" /> + <location filename="../ViewManager/ViewManager.py" line="3293" /> <source>Extend selection to first visible character in display or document line</source> <translation>Распространить выделение до первого видимого символа строки экрана или документа</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2400" /> <location filename="../QScintilla/MiniEditor.py" line="2397" /> - <location filename="../ViewManager/ViewManager.py" line="3307" /> - <location filename="../ViewManager/ViewManager.py" line="3304" /> + <location filename="../ViewManager/ViewManager.py" line="3317" /> + <location filename="../ViewManager/ViewManager.py" line="3314" /> <source>Move to end of display or document line</source> <translation>Перейти в конец строки экрана или документа</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2417" /> <location filename="../QScintilla/MiniEditor.py" line="2414" /> - <location filename="../ViewManager/ViewManager.py" line="3324" /> - <location filename="../ViewManager/ViewManager.py" line="3321" /> + <location filename="../ViewManager/ViewManager.py" line="3334" /> + <location filename="../ViewManager/ViewManager.py" line="3331" /> <source>Extend selection to end of display or document line</source> <translation>Распространить выделение до конца строки экрана или документа</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2432" /> <location filename="../QScintilla/MiniEditor.py" line="2431" /> - <location filename="../ViewManager/ViewManager.py" line="3339" /> - <location filename="../ViewManager/ViewManager.py" line="3338" /> + <location filename="../ViewManager/ViewManager.py" line="3349" /> + <location filename="../ViewManager/ViewManager.py" line="3348" /> <source>Stuttered move up one page</source> <translation>Перейти на одну страницу вверх</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2447" /> <location filename="../QScintilla/MiniEditor.py" line="2444" /> - <location filename="../ViewManager/ViewManager.py" line="3354" /> - <location filename="../ViewManager/ViewManager.py" line="3351" /> + <location filename="../ViewManager/ViewManager.py" line="3364" /> + <location filename="../ViewManager/ViewManager.py" line="3361" /> <source>Stuttered extend selection up one page</source> <translation>Распространить выделение на страницу вверх</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2464" /> <location filename="../QScintilla/MiniEditor.py" line="2461" /> - <location filename="../ViewManager/ViewManager.py" line="3371" /> - <location filename="../ViewManager/ViewManager.py" line="3368" /> + <location filename="../ViewManager/ViewManager.py" line="3381" /> + <location filename="../ViewManager/ViewManager.py" line="3378" /> <source>Stuttered move down one page</source> <translation>Перейти на одну страницу вниз</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2481" /> <location filename="../QScintilla/MiniEditor.py" line="2478" /> - <location filename="../ViewManager/ViewManager.py" line="3388" /> - <location filename="../ViewManager/ViewManager.py" line="3385" /> + <location filename="../ViewManager/ViewManager.py" line="3398" /> + <location filename="../ViewManager/ViewManager.py" line="3395" /> <source>Stuttered extend selection down one page</source> <translation>Распространить выделение на страницу вниз</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2498" /> <location filename="../QScintilla/MiniEditor.py" line="2495" /> - <location filename="../ViewManager/ViewManager.py" line="3405" /> - <location filename="../ViewManager/ViewManager.py" line="3402" /> + <location filename="../ViewManager/ViewManager.py" line="3415" /> + <location filename="../ViewManager/ViewManager.py" line="3412" /> <source>Delete right to end of next word</source> <translation>Удалить до конца следующего слова справа</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2508" /> - <location filename="../ViewManager/ViewManager.py" line="3415" /> + <location filename="../ViewManager/ViewManager.py" line="3425" /> <source>Alt+Del</source> <translation>Alt+Del</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2519" /> <location filename="../QScintilla/MiniEditor.py" line="2516" /> - <location filename="../ViewManager/ViewManager.py" line="3426" /> - <location filename="../ViewManager/ViewManager.py" line="3423" /> + <location filename="../ViewManager/ViewManager.py" line="3436" /> + <location filename="../ViewManager/ViewManager.py" line="3433" /> <source>Move selected lines up one line</source> <translation>Переместить выделенные строки на одну строку вверх</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2536" /> <location filename="../QScintilla/MiniEditor.py" line="2533" /> - <location filename="../ViewManager/ViewManager.py" line="3443" /> - <location filename="../ViewManager/ViewManager.py" line="3440" /> + <location filename="../ViewManager/ViewManager.py" line="3453" /> + <location filename="../ViewManager/ViewManager.py" line="3450" /> <source>Move selected lines down one line</source> <translation>Переместить выделенные строки на одну строку вниз</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1810" /> <location filename="../QScintilla/MiniEditor.py" line="1807" /> - <location filename="../ViewManager/ViewManager.py" line="3461" /> - <location filename="../ViewManager/ViewManager.py" line="3458" /> + <location filename="../ViewManager/ViewManager.py" line="3471" /> + <location filename="../ViewManager/ViewManager.py" line="3468" /> <source>Convert selection to lower case</source> <translation>Преобразовать выделение в нижний регистр</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1813" /> - <location filename="../ViewManager/ViewManager.py" line="3464" /> + <location filename="../ViewManager/ViewManager.py" line="3474" /> <source>Alt+Shift+U</source> <translation>Alt+Shift+U</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1826" /> <location filename="../QScintilla/MiniEditor.py" line="1823" /> - <location filename="../ViewManager/ViewManager.py" line="3477" /> - <location filename="../ViewManager/ViewManager.py" line="3474" /> + <location filename="../ViewManager/ViewManager.py" line="3487" /> + <location filename="../ViewManager/ViewManager.py" line="3484" /> <source>Convert selection to upper case</source> <translation>Преобразовать выделение в верхний регистр</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1829" /> - <location filename="../ViewManager/ViewManager.py" line="3480" /> + <location filename="../ViewManager/ViewManager.py" line="3490" /> <source>Ctrl+Shift+U</source> <translation>Ctrl+Shift+U</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3506" /> + <location filename="../ViewManager/ViewManager.py" line="3516" /> <source>&Edit</source> <translation>П&равка</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3564" /> - <location filename="../ViewManager/ViewManager.py" line="3562" /> + <location filename="../ViewManager/ViewManager.py" line="3574" /> + <location filename="../ViewManager/ViewManager.py" line="3572" /> <source>Edit</source> <translation>Редактировать</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2568" /> <location filename="../QScintilla/ShellWindow.py" line="927" /> - <location filename="../ViewManager/ViewManager.py" line="4167" /> - <location filename="../ViewManager/ViewManager.py" line="4165" /> - <location filename="../ViewManager/ViewManager.py" line="3598" /> + <location filename="../ViewManager/ViewManager.py" line="4177" /> + <location filename="../ViewManager/ViewManager.py" line="4175" /> + <location filename="../ViewManager/ViewManager.py" line="3608" /> <source>Search</source> <translation>Поиск</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2570" /> <location filename="../QScintilla/ShellWindow.py" line="929" /> - <location filename="../ViewManager/ViewManager.py" line="3600" /> + <location filename="../ViewManager/ViewManager.py" line="3610" /> <source>&Search...</source> <translation>&Поиск...</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2572" /> <location filename="../QScintilla/ShellWindow.py" line="931" /> - <location filename="../ViewManager/ViewManager.py" line="3602" /> + <location filename="../ViewManager/ViewManager.py" line="3612" /> <source>Ctrl+F</source> <comment>Search|Search</comment> <translation>Ctrl+F</translation> @@ -97435,13 +97448,13 @@ <message> <location filename="../QScintilla/MiniEditor.py" line="2579" /> <location filename="../QScintilla/ShellWindow.py" line="938" /> - <location filename="../ViewManager/ViewManager.py" line="3609" /> + <location filename="../ViewManager/ViewManager.py" line="3619" /> <source>Search for a text</source> <translation>Поиск текста</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2582" /> - <location filename="../ViewManager/ViewManager.py" line="3612" /> + <location filename="../ViewManager/ViewManager.py" line="3622" /> <source><b>Search</b><p>Search for some text in the current editor. A dialog is shown to enter the searchtext and options for the search.</p></source> <translation><b>Поиск</b> <p>Поиск текста в текущем редакторе. Отображается диалог для ввода искомого текста и настройки поиска.</p></translation> @@ -97449,21 +97462,21 @@ <message> <location filename="../QScintilla/MiniEditor.py" line="2594" /> <location filename="../QScintilla/ShellWindow.py" line="953" /> - <location filename="../ViewManager/ViewManager.py" line="3624" /> + <location filename="../ViewManager/ViewManager.py" line="3634" /> <source>Search next</source> <translation>Найти следующее</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2596" /> <location filename="../QScintilla/ShellWindow.py" line="955" /> - <location filename="../ViewManager/ViewManager.py" line="3626" /> + <location filename="../ViewManager/ViewManager.py" line="3636" /> <source>Search &next</source> <translation>&Следующее</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2598" /> <location filename="../QScintilla/ShellWindow.py" line="957" /> - <location filename="../ViewManager/ViewManager.py" line="3628" /> + <location filename="../ViewManager/ViewManager.py" line="3638" /> <source>F3</source> <comment>Search|Search next</comment> <translation>F3</translation> @@ -97471,34 +97484,34 @@ <message> <location filename="../QScintilla/MiniEditor.py" line="2605" /> <location filename="../QScintilla/ShellWindow.py" line="964" /> - <location filename="../ViewManager/ViewManager.py" line="3635" /> + <location filename="../ViewManager/ViewManager.py" line="3645" /> <source>Search next occurrence of text</source> <translation>Поиск следующего вхождения текста</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2608" /> - <location filename="../ViewManager/ViewManager.py" line="3638" /> + <location filename="../ViewManager/ViewManager.py" line="3648" /> <source><b>Search next</b><p>Search the next occurrence of some text in the current editor. The previously entered searchtext and options are reused.</p></source> <translation><b>Поиск следующего</b><p>Поиск следующего вхождения текста в текущем редакторе. Используются предыдущий искомый текст и настройки поиска.</p></translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2620" /> <location filename="../QScintilla/ShellWindow.py" line="981" /> - <location filename="../ViewManager/ViewManager.py" line="3650" /> + <location filename="../ViewManager/ViewManager.py" line="3660" /> <source>Search previous</source> <translation>Найти предыдущее</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2622" /> <location filename="../QScintilla/ShellWindow.py" line="983" /> - <location filename="../ViewManager/ViewManager.py" line="3652" /> + <location filename="../ViewManager/ViewManager.py" line="3662" /> <source>Search &previous</source> <translation>&Предыдущее</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2624" /> <location filename="../QScintilla/ShellWindow.py" line="985" /> - <location filename="../ViewManager/ViewManager.py" line="3654" /> + <location filename="../ViewManager/ViewManager.py" line="3664" /> <source>Shift+F3</source> <comment>Search|Search previous</comment> <translation>Shift+F3</translation> @@ -97506,115 +97519,115 @@ <message> <location filename="../QScintilla/MiniEditor.py" line="2633" /> <location filename="../QScintilla/ShellWindow.py" line="994" /> - <location filename="../ViewManager/ViewManager.py" line="3663" /> + <location filename="../ViewManager/ViewManager.py" line="3673" /> <source>Search previous occurrence of text</source> <translation>Поиск предыдущего вхождения текста</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2638" /> - <location filename="../ViewManager/ViewManager.py" line="3668" /> + <location filename="../ViewManager/ViewManager.py" line="3678" /> <source><b>Search previous</b><p>Search the previous occurrence of some text in the current editor. The previously entered searchtext and options are reused.</p></source> <translation><b>Поиск предыдущего</b><p>Поиск предыдущего вхождения текста в текущем редакторе. Используются предыдущий искомый текст и настройки поиска.</p></translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2652" /> <location filename="../QScintilla/MiniEditor.py" line="2650" /> - <location filename="../ViewManager/ViewManager.py" line="3682" /> - <location filename="../ViewManager/ViewManager.py" line="3680" /> + <location filename="../ViewManager/ViewManager.py" line="3692" /> + <location filename="../ViewManager/ViewManager.py" line="3690" /> <source>Clear search markers</source> <translation>Убрать подсветку найденого</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2654" /> - <location filename="../ViewManager/ViewManager.py" line="3684" /> + <location filename="../ViewManager/ViewManager.py" line="3694" /> <source>Ctrl+3</source> <comment>Search|Clear search markers</comment> <translation>Ctrl+3</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2663" /> - <location filename="../ViewManager/ViewManager.py" line="3693" /> + <location filename="../ViewManager/ViewManager.py" line="3703" /> <source>Clear all displayed search markers</source> <translation>Убрать подсветку всех результатов поиска</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2668" /> - <location filename="../ViewManager/ViewManager.py" line="3698" /> + <location filename="../ViewManager/ViewManager.py" line="3708" /> <source><b>Clear search markers</b><p>Clear all displayed search markers.</p></source> <translation><b>Убрать подсветку поиска</b><p>Удаление подсветки всех результатов поиска.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3710" /> - <location filename="../ViewManager/ViewManager.py" line="3708" /> + <location filename="../ViewManager/ViewManager.py" line="3720" /> + <location filename="../ViewManager/ViewManager.py" line="3718" /> <source>Search current word forward</source> <translation>Поиск следующего слова</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3712" /> + <location filename="../ViewManager/ViewManager.py" line="3722" /> <source>Ctrl+.</source> <comment>Search|Search current word forward</comment> <translation>Ctrl+.</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3721" /> + <location filename="../ViewManager/ViewManager.py" line="3731" /> <source>Search next occurrence of the current word</source> <translation>Поиск следующего вхождения текущего слова впереди</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3726" /> + <location filename="../ViewManager/ViewManager.py" line="3736" /> <source><b>Search current word forward</b><p>Search the next occurrence of the current word of the current editor.</p></source> <translation><b>Поиск текущего слова вперёди</b><p>Поиск следующего вхождения текущего слова далее в текущем редакторе.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3739" /> - <location filename="../ViewManager/ViewManager.py" line="3737" /> + <location filename="../ViewManager/ViewManager.py" line="3749" /> + <location filename="../ViewManager/ViewManager.py" line="3747" /> <source>Search current word backward</source> <translation>Поиск предыдущего слова</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3741" /> + <location filename="../ViewManager/ViewManager.py" line="3751" /> <source>Ctrl+,</source> <comment>Search|Search current word backward</comment> <translation>Ctrl+,</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3750" /> + <location filename="../ViewManager/ViewManager.py" line="3760" /> <source>Search previous occurrence of the current word</source> <translation>Поиск предыдущего вхождения текущего слова сзади</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3755" /> + <location filename="../ViewManager/ViewManager.py" line="3765" /> <source><b>Search current word backward</b><p>Search the previous occurrence of the current word of the current editor.</p></source> <translation><b>Поиск текущего слова сзади</b><p>Поиск предыдущего вхождения текущего слова сзади в текущем редакторе.</p></translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2678" /> - <location filename="../ViewManager/ViewManager.py" line="3766" /> + <location filename="../ViewManager/ViewManager.py" line="3776" /> <source>Replace</source> <translation>Заменить</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2679" /> - <location filename="../ViewManager/ViewManager.py" line="3767" /> + <location filename="../ViewManager/ViewManager.py" line="3777" /> <source>&Replace...</source> <translation>&Заменить...</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2681" /> - <location filename="../ViewManager/ViewManager.py" line="3769" /> + <location filename="../ViewManager/ViewManager.py" line="3779" /> <source>Ctrl+R</source> <comment>Search|Replace</comment> <translation>Ctrl+R</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2688" /> - <location filename="../ViewManager/ViewManager.py" line="3776" /> + <location filename="../ViewManager/ViewManager.py" line="3786" /> <source>Replace some text</source> <translation>Заменить заданный текст</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2691" /> - <location filename="../ViewManager/ViewManager.py" line="3779" /> + <location filename="../ViewManager/ViewManager.py" line="3789" /> <source><b>Replace</b><p>Search for some text in the current editor and replace it. A dialog is shown to enter the searchtext, the replacement text and options for the search and replace.</p></source> <translation><b>Заменить</b> <p>Поиск в текущем редакторе заданного текста и его замена. Отображается диалог ввода искомого текста, текста замены и настроек поиска и замены</p></translation> @@ -97622,324 +97635,324 @@ <message> <location filename="../QScintilla/MiniEditor.py" line="2705" /> <location filename="../QScintilla/MiniEditor.py" line="2703" /> - <location filename="../ViewManager/ViewManager.py" line="3793" /> - <location filename="../ViewManager/ViewManager.py" line="3791" /> + <location filename="../ViewManager/ViewManager.py" line="3803" /> + <location filename="../ViewManager/ViewManager.py" line="3801" /> <source>Replace and Search</source> <translation>Заменить и найти</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2707" /> - <location filename="../ViewManager/ViewManager.py" line="3795" /> + <location filename="../ViewManager/ViewManager.py" line="3805" /> <source>Meta+R</source> <comment>Search|Replace and Search</comment> <translation>Meta+R</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2716" /> - <location filename="../ViewManager/ViewManager.py" line="3804" /> + <location filename="../ViewManager/ViewManager.py" line="3814" /> <source>Replace the found text and search the next occurrence</source> <translation>Заменить найденный текст и найти следующее вхождение</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2721" /> - <location filename="../ViewManager/ViewManager.py" line="3809" /> + <location filename="../ViewManager/ViewManager.py" line="3819" /> <source><b>Replace and Search</b><p>Replace the found occurrence of text in the current editor and search for the next one. The previously entered search text and options are reused.</p></source> <translation><b>Заменить и найти</b><p>Заменить найденное вхождение текста текущего редактирования и выполнить поиск следующего. Ранее введенный текст и параметры поиска используются повторно.</p></translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2737" /> <location filename="../QScintilla/MiniEditor.py" line="2735" /> - <location filename="../ViewManager/ViewManager.py" line="3825" /> - <location filename="../ViewManager/ViewManager.py" line="3823" /> + <location filename="../ViewManager/ViewManager.py" line="3835" /> + <location filename="../ViewManager/ViewManager.py" line="3833" /> <source>Replace Occurrence</source> <translation>Заменить вхождение</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2739" /> - <location filename="../ViewManager/ViewManager.py" line="3827" /> + <location filename="../ViewManager/ViewManager.py" line="3837" /> <source>Ctrl+Meta+R</source> <comment>Search|Replace Occurrence</comment> <translation>Ctrl+Meta+R</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2748" /> - <location filename="../ViewManager/ViewManager.py" line="3836" /> + <location filename="../ViewManager/ViewManager.py" line="3846" /> <source>Replace the found text</source> <translation>Заменить найденный текст</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2751" /> - <location filename="../ViewManager/ViewManager.py" line="3839" /> + <location filename="../ViewManager/ViewManager.py" line="3849" /> <source><b>Replace Occurrence</b><p>Replace the found occurrence of the search text in the current editor.</p></source> <translation><b>Заменить вхождение</b><p>Заменить найденнойе вхождение искомого текста текущего редактирования.</p></translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2764" /> <location filename="../QScintilla/MiniEditor.py" line="2762" /> - <location filename="../ViewManager/ViewManager.py" line="3852" /> - <location filename="../ViewManager/ViewManager.py" line="3850" /> + <location filename="../ViewManager/ViewManager.py" line="3862" /> + <location filename="../ViewManager/ViewManager.py" line="3860" /> <source>Replace All</source> <translation>Заменить все</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2766" /> - <location filename="../ViewManager/ViewManager.py" line="3854" /> + <location filename="../ViewManager/ViewManager.py" line="3864" /> <source>Shift+Meta+R</source> <comment>Search|Replace All</comment> <translation>Shift+Meta+R</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2775" /> - <location filename="../ViewManager/ViewManager.py" line="3863" /> + <location filename="../ViewManager/ViewManager.py" line="3873" /> <source>Replace search text occurrences</source> <translation>Заменить вхождения искомого текста</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2778" /> - <location filename="../ViewManager/ViewManager.py" line="3866" /> + <location filename="../ViewManager/ViewManager.py" line="3876" /> <source><b>Replace All</b><p>Replace all occurrences of the search text in the current editor.</p></source> <translation><b>Заменить все</b><p>Заменить все вхождения искомого текста текущего редактирования.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3888" /> - <location filename="../ViewManager/ViewManager.py" line="3877" /> + <location filename="../ViewManager/ViewManager.py" line="3898" /> + <location filename="../ViewManager/ViewManager.py" line="3887" /> <source>Goto Line</source> <translation>Перейти на строку</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3879" /> + <location filename="../ViewManager/ViewManager.py" line="3889" /> <source>&Goto Line...</source> <translation>&Перейти на строку...</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3881" /> - <source>Ctrl+G</source> - <comment>Search|Goto Line</comment> - <translation>Ctrl+G</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="3891" /> + <source>Ctrl+G</source> + <comment>Search|Goto Line</comment> + <translation>Ctrl+G</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="3901" /> <source><b>Goto Line</b><p>Go to a specific line of text in the current editor. A dialog is shown to enter the linenumber.</p></source> <translation><b>Перейти на строку</b> <p>Перейти на указанную строку текущего редактора. Будет показан диалог ввода номера строки.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3913" /> - <location filename="../ViewManager/ViewManager.py" line="3902" /> + <location filename="../ViewManager/ViewManager.py" line="3923" /> + <location filename="../ViewManager/ViewManager.py" line="3912" /> <source>Goto Brace</source> <translation>Перейти к скобке</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3904" /> + <location filename="../ViewManager/ViewManager.py" line="3914" /> <source>Goto &Brace</source> <translation>Перейти к &скобке</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3906" /> + <location filename="../ViewManager/ViewManager.py" line="3916" /> <source>Ctrl+L</source> <comment>Search|Goto Brace</comment> <translation>Ctrl+L</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3916" /> + <location filename="../ViewManager/ViewManager.py" line="3926" /> <source><b>Goto Brace</b><p>Go to the matching brace in the current editor.</p></source> <translation><b>Перейти к скобке</b> <p>Переход к соответствующей скобке.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3939" /> - <location filename="../ViewManager/ViewManager.py" line="3926" /> + <location filename="../ViewManager/ViewManager.py" line="3949" /> + <location filename="../ViewManager/ViewManager.py" line="3936" /> <source>Goto Last Edit Location</source> <translation>Перейти к месту последнего редактирования</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3928" /> + <location filename="../ViewManager/ViewManager.py" line="3938" /> <source>Goto Last &Edit Location</source> <translation>П&ерейти к месту последнего редактирования</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3930" /> + <location filename="../ViewManager/ViewManager.py" line="3940" /> <source>Ctrl+Shift+G</source> <comment>Search|Goto Last Edit Location</comment> <translation>Ctrl+Shift+G</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3942" /> + <location filename="../ViewManager/ViewManager.py" line="3952" /> <source><b>Goto Last Edit Location</b><p>Go to the location of the last edit in the current editor.</p></source> <translation><b>Перейти к месту последнего редактирования</b><p>Переход к месту последнего редактирования в текущем редакторе.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3954" /> - <location filename="../ViewManager/ViewManager.py" line="3953" /> + <location filename="../ViewManager/ViewManager.py" line="3964" /> + <location filename="../ViewManager/ViewManager.py" line="3963" /> <source>Goto Previous Method or Class</source> <translation>Перейти к предыдущему методу или классу</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3956" /> + <location filename="../ViewManager/ViewManager.py" line="3966" /> <source>Ctrl+Shift+Up</source> <comment>Search|Goto Previous Method or Class</comment> <translation>Ctrl+Shift+Up</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3967" /> + <location filename="../ViewManager/ViewManager.py" line="3977" /> <source>Go to the previous method or class definition</source> <translation>Перейти к предыдущему объявлению метода или класса</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3972" /> + <location filename="../ViewManager/ViewManager.py" line="3982" /> <source><b>Goto Previous Method or Class</b><p>Goes to the line of the previous method or class definition and highlights the name.</p></source> <translation><b>Перейти к предыдущему методу или классу</b><p>Переход к предыдущему объявлению метода или класса и подсветка его имени.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3984" /> - <location filename="../ViewManager/ViewManager.py" line="3983" /> + <location filename="../ViewManager/ViewManager.py" line="3994" /> + <location filename="../ViewManager/ViewManager.py" line="3993" /> <source>Goto Next Method or Class</source> <translation>Перейти к следующему методу или классу</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3986" /> + <location filename="../ViewManager/ViewManager.py" line="3996" /> <source>Ctrl+Shift+Down</source> <comment>Search|Goto Next Method or Class</comment> <translation>Ctrl+Shift+Down</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3995" /> + <location filename="../ViewManager/ViewManager.py" line="4005" /> <source>Go to the next method or class definition</source> <translation>Перейти к следующему объявлению метода или класса</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4000" /> + <location filename="../ViewManager/ViewManager.py" line="4010" /> <source><b>Goto Next Method or Class</b><p>Goes to the line of the next method or class definition and highlights the name.</p></source> <translation><b>Перейти к следующему методу или классу</b><p>Переход к следующему объявлению метода или класса и подсветка его имени.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4013" /> + <location filename="../ViewManager/ViewManager.py" line="4023" /> <source>Search in Files</source> <translation>Поиск в файлах</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4015" /> + <location filename="../ViewManager/ViewManager.py" line="4025" /> <source>Search in &Files...</source> <translation>Найти в &файлах...</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4017" /> + <location filename="../ViewManager/ViewManager.py" line="4027" /> <source>Shift+Ctrl+F</source> <comment>Search|Search Files</comment> <translation>Shift+Ctrl+F</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4026" /> + <location filename="../ViewManager/ViewManager.py" line="4036" /> <source>Search for a text in files</source> <translation>Поиск заданного текста в файлах</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4029" /> + <location filename="../ViewManager/ViewManager.py" line="4039" /> <source><b>Search in Files</b><p>Search for some text in the files of a directory tree or the project. A window is shown to enter the searchtext and options for the search and to display the result.</p></source> <translation><b>Поиск в файлах</b> <p>Поиск заданного текста в файлах дерева директорий или проекта. Отображение окна ввода искомого текста, опций поиска и отображения результатов.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4041" /> + <location filename="../ViewManager/ViewManager.py" line="4051" /> <source>Replace in Files</source> <translation>Заменить в файлах</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4042" /> + <location filename="../ViewManager/ViewManager.py" line="4052" /> <source>Replace in F&iles...</source> <translation>Заменить в ф&айлах...</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4044" /> + <location filename="../ViewManager/ViewManager.py" line="4054" /> <source>Shift+Ctrl+R</source> <comment>Search|Replace in Files</comment> <translation>Shift+Ctrl+R</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4053" /> + <location filename="../ViewManager/ViewManager.py" line="4063" /> <source>Search for a text in files and replace it</source> <translation>Поиск заданного текста в файлах и его замена</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4058" /> + <location filename="../ViewManager/ViewManager.py" line="4068" /> <source><b>Replace in Files</b><p>Search for some text in the files of a directory tree or the project and replace it. A window is shown to enter the searchtext, the replacement text and options for the search and to display the result.</p></source> <translation><b>Заменить в файлах</b><p>Поиск заданного текста в файлах дерева директорий или проекта и его замена. Отображение окна ввода искомого текста, текста замены, настроек поиска и отображение результата.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4071" /> + <location filename="../ViewManager/ViewManager.py" line="4081" /> <source>Search in Open Files</source> <translation>Поиск в открытых файлах</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4073" /> + <location filename="../ViewManager/ViewManager.py" line="4083" /> <source>Search in Open Files...</source> <translation>Найти в открытых файлах...</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4075" /> + <location filename="../ViewManager/ViewManager.py" line="4085" /> <source>Meta+Ctrl+Alt+F</source> <comment>Search|Search Open Files</comment> <translation>Meta+Ctrl+Alt+F</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4084" /> + <location filename="../ViewManager/ViewManager.py" line="4094" /> <source>Search for a text in open files</source> <translation>Поиск текста в открытых файлах</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4087" /> + <location filename="../ViewManager/ViewManager.py" line="4097" /> <source><b>Search in Open Files</b><p>Search for some text in the currently opened files. A window is shown to enter the search text and options for the search and to display the result.</p></source> <translation><b>Поиск в открытых файлах</b><p>Поиск заданного текста только в открытых файлах. Окно диалога позволит ввести текст для поиска, опции для поиска, а так же покажет результат</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4099" /> + <location filename="../ViewManager/ViewManager.py" line="4109" /> <source>Replace in Open Files</source> <translation>Замена в открытых файлах</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4100" /> + <location filename="../ViewManager/ViewManager.py" line="4110" /> <source>Replace in Open Files...</source> <translation>Заменить в открытых файлах...</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4102" /> + <location filename="../ViewManager/ViewManager.py" line="4112" /> <source>Meta+Ctrl+Alt+R</source> <comment>Search|Replace in Open Files</comment> <translation>Meta+Ctrl+Alt+R</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4111" /> + <location filename="../ViewManager/ViewManager.py" line="4121" /> <source>Search for a text in open files and replace it</source> <translation>Поиск текста в открытых файлах и его замена</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4116" /> + <location filename="../ViewManager/ViewManager.py" line="4126" /> <source><b>Replace in Open Files</b><p>Search for some text in the currently opened files and replace it. A window is shown to enter the search text, the replacement text and options for the search and to display the result.</p></source> <translation><b>Заменить в открытых файлах</b><p>Искать текст только в открытых файлах и заменить его.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4137" /> + <location filename="../ViewManager/ViewManager.py" line="4147" /> <source>&Search</source> <translation>&Поиск</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2793" /> <location filename="../QScintilla/ShellWindow.py" line="1020" /> - <location filename="../ViewManager/ViewManager.py" line="4208" /> + <location filename="../ViewManager/ViewManager.py" line="4218" /> <source>Zoom in</source> <translation>Увеличить масштаб</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2795" /> <location filename="../QScintilla/ShellWindow.py" line="1022" /> - <location filename="../ViewManager/ViewManager.py" line="4210" /> + <location filename="../ViewManager/ViewManager.py" line="4220" /> <source>Zoom &in</source> <translation>У&величить масштаб</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2797" /> <location filename="../QScintilla/ShellWindow.py" line="1024" /> - <location filename="../ViewManager/ViewManager.py" line="4212" /> + <location filename="../ViewManager/ViewManager.py" line="4222" /> <source>Ctrl++</source> <comment>View|Zoom in</comment> <translation>Ctrl++</translation> @@ -97947,7 +97960,7 @@ <message> <location filename="../QScintilla/MiniEditor.py" line="2800" /> <location filename="../QScintilla/ShellWindow.py" line="1027" /> - <location filename="../ViewManager/ViewManager.py" line="4215" /> + <location filename="../ViewManager/ViewManager.py" line="4225" /> <source>Zoom In</source> <comment>View|Zoom in</comment> <translation>Увеличить масштаб</translation> @@ -97955,35 +97968,35 @@ <message> <location filename="../QScintilla/MiniEditor.py" line="2806" /> <location filename="../QScintilla/ShellWindow.py" line="1033" /> - <location filename="../ViewManager/ViewManager.py" line="4221" /> + <location filename="../ViewManager/ViewManager.py" line="4231" /> <source>Zoom in on the text</source> <translation>Увеличить масштаб текста</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2809" /> <location filename="../QScintilla/ShellWindow.py" line="1036" /> - <location filename="../ViewManager/ViewManager.py" line="4224" /> + <location filename="../ViewManager/ViewManager.py" line="4234" /> <source><b>Zoom in</b><p>Zoom in on the text. This makes the text bigger.</p></source> <translation><b>Увеличить масштаб</b><p>Увеличить масштаб. Размер букв увеличится.</p></translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2819" /> <location filename="../QScintilla/ShellWindow.py" line="1046" /> - <location filename="../ViewManager/ViewManager.py" line="4234" /> + <location filename="../ViewManager/ViewManager.py" line="4244" /> <source>Zoom out</source> <translation>Уменьшить масштаб</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2821" /> <location filename="../QScintilla/ShellWindow.py" line="1048" /> - <location filename="../ViewManager/ViewManager.py" line="4236" /> + <location filename="../ViewManager/ViewManager.py" line="4246" /> <source>Zoom &out</source> <translation>У&меньшить масштаб</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2823" /> <location filename="../QScintilla/ShellWindow.py" line="1050" /> - <location filename="../ViewManager/ViewManager.py" line="4238" /> + <location filename="../ViewManager/ViewManager.py" line="4248" /> <source>Ctrl+-</source> <comment>View|Zoom out</comment> <translation>Ctrl+-</translation> @@ -97991,7 +98004,7 @@ <message> <location filename="../QScintilla/MiniEditor.py" line="2826" /> <location filename="../QScintilla/ShellWindow.py" line="1053" /> - <location filename="../ViewManager/ViewManager.py" line="4241" /> + <location filename="../ViewManager/ViewManager.py" line="4251" /> <source>Zoom Out</source> <comment>View|Zoom out</comment> <translation>Уменьшить масштаб</translation> @@ -97999,35 +98012,35 @@ <message> <location filename="../QScintilla/MiniEditor.py" line="2832" /> <location filename="../QScintilla/ShellWindow.py" line="1059" /> - <location filename="../ViewManager/ViewManager.py" line="4247" /> + <location filename="../ViewManager/ViewManager.py" line="4257" /> <source>Zoom out on the text</source> <translation>Уменьшить масштаб текста</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2835" /> <location filename="../QScintilla/ShellWindow.py" line="1062" /> - <location filename="../ViewManager/ViewManager.py" line="4250" /> + <location filename="../ViewManager/ViewManager.py" line="4260" /> <source><b>Zoom out</b><p>Zoom out on the text. This makes the text smaller.</p></source> <translation><b>Уменьшить масштаб</b><p>Уменьшить масштаб. Размер букв уменьшится.</p></translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2845" /> <location filename="../QScintilla/ShellWindow.py" line="1072" /> - <location filename="../ViewManager/ViewManager.py" line="4260" /> + <location filename="../ViewManager/ViewManager.py" line="4270" /> <source>Zoom reset</source> <translation>Сбросить масштаб</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2847" /> <location filename="../QScintilla/ShellWindow.py" line="1074" /> - <location filename="../ViewManager/ViewManager.py" line="4262" /> + <location filename="../ViewManager/ViewManager.py" line="4272" /> <source>Zoom &reset</source> <translation>&Сбросить масштаб</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2849" /> <location filename="../QScintilla/ShellWindow.py" line="1076" /> - <location filename="../ViewManager/ViewManager.py" line="4264" /> + <location filename="../ViewManager/ViewManager.py" line="4274" /> <source>Ctrl+0</source> <comment>View|Zoom reset</comment> <translation>Ctrl+0</translation> @@ -98035,904 +98048,904 @@ <message> <location filename="../QScintilla/MiniEditor.py" line="2856" /> <location filename="../QScintilla/ShellWindow.py" line="1083" /> - <location filename="../ViewManager/ViewManager.py" line="4271" /> + <location filename="../ViewManager/ViewManager.py" line="4281" /> <source>Reset the zoom of the text</source> <translation>Сбросить масштаб текста</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2859" /> <location filename="../QScintilla/ShellWindow.py" line="1086" /> - <location filename="../ViewManager/ViewManager.py" line="4274" /> + <location filename="../ViewManager/ViewManager.py" line="4284" /> <source><b>Zoom reset</b><p>Reset the zoom of the text. This sets the zoom factor to 100%.</p></source> <translation><b>Сбросить масштаб</b><p>Сброс масштаба текста. Эта настройка возвращает масштаб текста к 100%.</p></translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2870" /> <location filename="../QScintilla/ShellWindow.py" line="1097" /> - <location filename="../ViewManager/ViewManager.py" line="4285" /> + <location filename="../ViewManager/ViewManager.py" line="4295" /> <source>Zoom</source> <translation>Масштаб</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2872" /> <location filename="../QScintilla/ShellWindow.py" line="1099" /> - <location filename="../ViewManager/ViewManager.py" line="4287" /> + <location filename="../ViewManager/ViewManager.py" line="4297" /> <source>&Zoom</source> <translation>Мас&штаб</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2879" /> <location filename="../QScintilla/ShellWindow.py" line="1106" /> - <location filename="../ViewManager/ViewManager.py" line="4294" /> + <location filename="../ViewManager/ViewManager.py" line="4304" /> <source>Zoom the text</source> <translation>Масштаб текста</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2882" /> <location filename="../QScintilla/ShellWindow.py" line="1109" /> - <location filename="../ViewManager/ViewManager.py" line="4297" /> + <location filename="../ViewManager/ViewManager.py" line="4307" /> <source><b>Zoom</b><p>Zoom the text. This opens a dialog where the desired size can be entered.</p></source> <translation><b>Масштаб</b> <p>Масштаб текста. Открытие диалога для выбора желаемого масштаба текста.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4316" /> - <location filename="../ViewManager/ViewManager.py" line="4308" /> + <location filename="../ViewManager/ViewManager.py" line="4326" /> + <location filename="../ViewManager/ViewManager.py" line="4318" /> <source>Toggle all folds</source> <translation>Свернуть/Развернуть все свертки</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4309" /> - <source>&Toggle all folds</source> - <translation>&Свернуть/Развернуть все свертки</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="4319" /> + <source>&Toggle all folds</source> + <translation>&Свернуть/Развернуть все свертки</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4329" /> <source><b>Toggle all folds</b><p>Toggle all folds of the current editor.</p></source> <translation><b>Свернуть/Развернуть все свертки</b><p>Свернуть/Развернуть все свертки текущего редактора.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4341" /> - <location filename="../ViewManager/ViewManager.py" line="4329" /> + <location filename="../ViewManager/ViewManager.py" line="4351" /> + <location filename="../ViewManager/ViewManager.py" line="4339" /> <source>Toggle all folds (including children)</source> <translation>Свернуть/Развернуть все свёртки (включая дочерние)</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4332" /> + <location filename="../ViewManager/ViewManager.py" line="4342" /> <source>Toggle all &folds (including children)</source> <translation>Свернуть/Развернуть все &свёртки (включая дочерние)</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4346" /> + <location filename="../ViewManager/ViewManager.py" line="4356" /> <source><b>Toggle all folds (including children)</b><p>Toggle all folds of the current editor including all children.</p></source> <translation><b>Свернуть/Развернуть все свёртки (включая дочерние)</b><p>Свернуть/Развернуть все свёртки в текущем редакторе, включая все дочерние.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4365" /> - <location filename="../ViewManager/ViewManager.py" line="4357" /> + <location filename="../ViewManager/ViewManager.py" line="4375" /> + <location filename="../ViewManager/ViewManager.py" line="4367" /> <source>Toggle current fold</source> <translation>Свернуть/Развернуть текущую свертку</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4358" /> - <source>Toggle &current fold</source> - <translation>Свернуть/Развернуть &текущую свертку</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="4368" /> + <source>Toggle &current fold</source> + <translation>Свернуть/Развернуть &текущую свертку</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4378" /> <source><b>Toggle current fold</b><p>Toggle the folds of the current line of the current editor.</p></source> <translation><b>Свернуть/Развернуть текущую свертку</b><p>Свернуть/Развернуть свертку текущей строки текущего редактора.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4387" /> - <location filename="../ViewManager/ViewManager.py" line="4379" /> + <location filename="../ViewManager/ViewManager.py" line="4397" /> + <location filename="../ViewManager/ViewManager.py" line="4389" /> <source>Clear all folds</source> <translation>Очистить все свертки</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4380" /> - <source>Clear &all folds</source> - <translation>Очистить &все свертки</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="4390" /> + <source>Clear &all folds</source> + <translation>Очистить &все свертки</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4400" /> <source><b>Clear all folds</b><p>Clear all folds of the current editor, i.e. ensure that all lines are displayed unfolded.</p></source> <translation><b>Очистить все свертки</b><p>Очистить все свертки текущего редактора, т. е. убедиться, что все строки отображаются развернутыми.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4410" /> - <location filename="../ViewManager/ViewManager.py" line="4403" /> - <location filename="../ViewManager/ViewManager.py" line="4401" /> + <location filename="../ViewManager/ViewManager.py" line="4420" /> + <location filename="../ViewManager/ViewManager.py" line="4413" /> + <location filename="../ViewManager/ViewManager.py" line="4411" /> <source>Remove all highlights</source> <translation>Снять все выделения</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4413" /> - <source><b>Remove all highlights</b><p>Remove the highlights of all editors.</p></source> - <translation><b>Снять все выделения</b><p>Снять выделения во всех редакторах.</p></translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="4423" /> + <source><b>Remove all highlights</b><p>Remove the highlights of all editors.</p></source> + <translation><b>Снять все выделения</b><p>Снять выделения во всех редакторах.</p></translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4433" /> <source>New Document View</source> <translation>Новое окно для документа</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4425" /> + <location filename="../ViewManager/ViewManager.py" line="4435" /> <source>New &Document View</source> <translation>Новое окно для &документа</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4432" /> + <location filename="../ViewManager/ViewManager.py" line="4442" /> <source>Open a new view of the current document</source> <translation>Открыть новое окно для текущего документа</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4437" /> + <location filename="../ViewManager/ViewManager.py" line="4447" /> <source><b>New Document View</b><p>Opens a new view of the current document. Both views show the same document. However, the cursors may be positioned independently.</p></source> <translation><b>Новое окно для документа</b><p>Открытие нового окна для текущего документа. Оба окна будут показывать один и тот же документ. Текущие позиции могут быть разными.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4453" /> - <location filename="../ViewManager/ViewManager.py" line="4449" /> + <location filename="../ViewManager/ViewManager.py" line="4463" /> + <location filename="../ViewManager/ViewManager.py" line="4459" /> <source>New Document View (with new split)</source> <translation>Новое окно для документа (в новом разделе)</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4462" /> + <location filename="../ViewManager/ViewManager.py" line="4472" /> <source>Open a new view of the current document in a new split</source> <translation>Открыть новое окно для текущего документа в новом разделе</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4467" /> + <location filename="../ViewManager/ViewManager.py" line="4477" /> <source><b>New Document View</b><p>Opens a new view of the current document in a new split. Both views show the same document. However, the cursors may be positioned independently.</p></source> <translation><b>Новое окно для документа</b><p>Открытие нового окна для текущего документа в новом разделе. Оба окна будут показывать один и тот же документ. Текущие позиции могут быть разными.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4479" /> + <location filename="../ViewManager/ViewManager.py" line="4489" /> <source>Split view</source> <translation>Разделить окно</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4481" /> - <source>&Split view</source> - <translation>&Разделить окно</translation> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="4488" /> - <source>Add a split to the view</source> - <translation>Разделить текущее окно</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="4491" /> - <source><b>Split view</b><p>Add a split to the view.</p></source> - <translation><b>Разделить окно</b><p>Разделение текущего окна.</p></translation> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="4500" /> - <source>Arrange horizontally</source> - <translation>Расположить окна горизонтально</translation> + <source>&Split view</source> + <translation>&Разделить окно</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4498" /> + <source>Add a split to the view</source> + <translation>Разделить текущее окно</translation> </message> <message> <location filename="../ViewManager/ViewManager.py" line="4501" /> + <source><b>Split view</b><p>Add a split to the view.</p></source> + <translation><b>Разделить окно</b><p>Разделение текущего окна.</p></translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4510" /> + <source>Arrange horizontally</source> + <translation>Расположить окна горизонтально</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4511" /> <source>Arrange &horizontally</source> <translation>Расположить окна &горизонтально</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4509" /> + <location filename="../ViewManager/ViewManager.py" line="4519" /> <source>Arrange the splitted views horizontally</source> <translation>Расположить разделённые окна горизонтально</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4514" /> + <location filename="../ViewManager/ViewManager.py" line="4524" /> <source><b>Arrange horizontally</b><p>Arrange the splitted views horizontally.</p></source> <translation><b>Расположить горизонтально</b> <p>Расположить разделённые окна горизонтально.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4525" /> + <location filename="../ViewManager/ViewManager.py" line="4535" /> <source>Remove split</source> <translation>Отменить разделение</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4527" /> - <source>&Remove split</source> - <translation>&Отменить разделение</translation> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="4534" /> - <source>Remove the current split</source> - <translation>Отменить текущее разделение</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="4537" /> - <source><b>Remove split</b><p>Remove the current split.</p></source> - <translation><b>Отменить разделение</b><p>Отмена текущего разделения.</p></translation> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="4546" /> - <source>Next split</source> - <translation>Следующее разделение</translation> + <source>&Remove split</source> + <translation>&Отменить разделение</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4544" /> + <source>Remove the current split</source> + <translation>Отменить текущее разделение</translation> </message> <message> <location filename="../ViewManager/ViewManager.py" line="4547" /> + <source><b>Remove split</b><p>Remove the current split.</p></source> + <translation><b>Отменить разделение</b><p>Отмена текущего разделения.</p></translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4556" /> + <source>Next split</source> + <translation>Следующее разделение</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4557" /> <source>&Next split</source> <translation>&Следующее разделение</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4549" /> + <location filename="../ViewManager/ViewManager.py" line="4559" /> <source>Ctrl+Alt+N</source> <comment>View|Next split</comment> <translation>Ctrl+Alt+N</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4558" /> + <location filename="../ViewManager/ViewManager.py" line="4568" /> <source>Move to the next split</source> <translation>Перейти в следующее разделение</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4561" /> - <source><b>Next split</b><p>Move to the next split.</p></source> - <translation><b>Следующее разделение</b><p>Перейти в следующее разделение.</p></translation> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="4570" /> - <source>Previous split</source> - <translation>Предыдущее разделение</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="4571" /> + <source><b>Next split</b><p>Move to the next split.</p></source> + <translation><b>Следующее разделение</b><p>Перейти в следующее разделение.</p></translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4580" /> + <source>Previous split</source> + <translation>Предыдущее разделение</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4581" /> <source>&Previous split</source> <translation>&Предыдущее разделение</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4573" /> + <location filename="../ViewManager/ViewManager.py" line="4583" /> <source>Ctrl+Alt+P</source> <comment>View|Previous split</comment> <translation>Ctrl+Alt+P</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4582" /> + <location filename="../ViewManager/ViewManager.py" line="4592" /> <source>Move to the previous split</source> <translation>Перейти в предыдущее разделение</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4585" /> + <location filename="../ViewManager/ViewManager.py" line="4595" /> <source><b>Previous split</b><p>Move to the previous split.</p></source> <translation><b>Предыдущее разделение</b><p>Перейти в предыдущее разделение.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4596" /> - <location filename="../ViewManager/ViewManager.py" line="4594" /> + <location filename="../ViewManager/ViewManager.py" line="4606" /> + <location filename="../ViewManager/ViewManager.py" line="4604" /> <source>Preview</source> <translation>Предварительный просмотр</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4604" /> + <location filename="../ViewManager/ViewManager.py" line="4614" /> <source>Preview the current file in the web browser</source> <translation>Предварительный просмотр текущего файла в web-браузере</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4609" /> + <location filename="../ViewManager/ViewManager.py" line="4619" /> <source><b>Preview</b><p>This opens the web browser with a preview of the current file.</p></source> <translation><b>Предварительный просмотр</b><p>Предварительный просмотр текущего файла в web-браузере.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4623" /> - <location filename="../ViewManager/ViewManager.py" line="4621" /> + <location filename="../ViewManager/ViewManager.py" line="4633" /> + <location filename="../ViewManager/ViewManager.py" line="4631" /> <source>Python AST Viewer</source> <translation>Просмотрщик Python AST</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4631" /> + <location filename="../ViewManager/ViewManager.py" line="4641" /> <source>Show the AST for the current Python file</source> <translation>AST-представление текущего файла Python</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4636" /> + <location filename="../ViewManager/ViewManager.py" line="4646" /> <source><b>Python AST Viewer</b><p>This opens the a tree view of the AST of the current Python source file.</p></source> <translation><b>Просмотрщик Python AST</b><p>Получение синтаксического древовидного представления (AST) для текущего файла с кодом Python.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4650" /> - <location filename="../ViewManager/ViewManager.py" line="4648" /> + <location filename="../ViewManager/ViewManager.py" line="4660" /> + <location filename="../ViewManager/ViewManager.py" line="4658" /> <source>Python Disassembly Viewer</source> <translation>Просмотрщик Python Disassembly</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4658" /> + <location filename="../ViewManager/ViewManager.py" line="4668" /> <source>Show the Disassembly for the current Python file</source> <translation>Показ дизассемблирования текущего файла Python</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4663" /> + <location filename="../ViewManager/ViewManager.py" line="4673" /> <source><b>Python Disassembly Viewer</b><p>This opens the a tree view of the Disassembly of the current Python source file.</p></source> <translation><b>Просмотрщик Python Disassembly</b><p>Получение синтаксического древовидного представления дизассемблирования текущего файла с кодом Python.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4699" /> + <location filename="../ViewManager/ViewManager.py" line="4709" /> <source>&View</source> <translation>&Вид</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4734" /> - <location filename="../ViewManager/ViewManager.py" line="4732" /> + <location filename="../ViewManager/ViewManager.py" line="4744" /> + <location filename="../ViewManager/ViewManager.py" line="4742" /> <source>View</source> <translation>Вид</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4773" /> - <location filename="../ViewManager/ViewManager.py" line="4765" /> + <location filename="../ViewManager/ViewManager.py" line="4783" /> + <location filename="../ViewManager/ViewManager.py" line="4775" /> <source>Start Macro Recording</source> <translation>Начать запись макроса</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4766" /> - <source>S&tart Macro Recording</source> - <translation>&Начать запись макроса</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="4776" /> + <source>S&tart Macro Recording</source> + <translation>&Начать запись макроса</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4786" /> <source><b>Start Macro Recording</b><p>Start recording editor commands into a new macro.</p></source> <translation><b>Начать запись макроса</b> <p>Начать запись команд редактора в новый макрос.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4794" /> - <location filename="../ViewManager/ViewManager.py" line="4786" /> + <location filename="../ViewManager/ViewManager.py" line="4804" /> + <location filename="../ViewManager/ViewManager.py" line="4796" /> <source>Stop Macro Recording</source> <translation>Закончить запись макроса</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4787" /> - <source>Sto&p Macro Recording</source> - <translation>&Закончить запись макроса</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="4797" /> + <source>Sto&p Macro Recording</source> + <translation>&Закончить запись макроса</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4807" /> <source><b>Stop Macro Recording</b><p>Stop recording editor commands into a new macro.</p></source> <translation><b>Закончить запись макроса</b> <p>Закончить запись команд редактора в новый макрос.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4815" /> - <location filename="../ViewManager/ViewManager.py" line="4807" /> + <location filename="../ViewManager/ViewManager.py" line="4825" /> + <location filename="../ViewManager/ViewManager.py" line="4817" /> <source>Run Macro</source> <translation>Выполнить макрос</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4808" /> - <source>&Run Macro</source> - <translation>&Выполнить макрос</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="4818" /> + <source>&Run Macro</source> + <translation>&Выполнить макрос</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4828" /> <source><b>Run Macro</b><p>Run a previously recorded editor macro.</p></source> <translation><b>Выполнить макрос</b> <p>Запустить записанный макрос.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4836" /> - <location filename="../ViewManager/ViewManager.py" line="4828" /> + <location filename="../ViewManager/ViewManager.py" line="4846" /> + <location filename="../ViewManager/ViewManager.py" line="4838" /> <source>Delete Macro</source> <translation>Удалить макрос</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4829" /> - <source>&Delete Macro</source> - <translation>&Удалить макрос</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="4839" /> + <source>&Delete Macro</source> + <translation>&Удалить макрос</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4849" /> <source><b>Delete Macro</b><p>Delete a previously recorded editor macro.</p></source> <translation><b>Удалить макрос</b><p>Удалить записанный макрос.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4857" /> - <location filename="../ViewManager/ViewManager.py" line="4849" /> + <location filename="../ViewManager/ViewManager.py" line="4867" /> + <location filename="../ViewManager/ViewManager.py" line="4859" /> <source>Load Macro</source> <translation>Загрузить макрос</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4850" /> - <source>&Load Macro</source> - <translation>&Загрузить макрос</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="4860" /> + <source>&Load Macro</source> + <translation>&Загрузить макрос</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4870" /> <source><b>Load Macro</b><p>Load an editor macro from a file.</p></source> <translation><b>Загрузить макрос</b> <p>Загрузить из файла макрос для редактора.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4877" /> - <location filename="../ViewManager/ViewManager.py" line="4869" /> + <location filename="../ViewManager/ViewManager.py" line="4887" /> + <location filename="../ViewManager/ViewManager.py" line="4879" /> <source>Save Macro</source> <translation>Сохранить макрос</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4870" /> - <source>&Save Macro</source> - <translation>&Сохранить макрос</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="4880" /> + <source>&Save Macro</source> + <translation>&Сохранить макрос</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4890" /> <source><b>Save Macro</b><p>Save a previously recorded editor macro to a file.</p></source> <translation><b>Сохранить макрос</b><p>Сохранить записанный макрос в файл.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4898" /> + <location filename="../ViewManager/ViewManager.py" line="4908" /> <source>&Macros</source> <translation>&Макросы</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4929" /> - <location filename="../ViewManager/ViewManager.py" line="4916" /> + <location filename="../ViewManager/ViewManager.py" line="4939" /> + <location filename="../ViewManager/ViewManager.py" line="4926" /> <source>Toggle Bookmark</source> <translation>Создать/Удалить закладку</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4918" /> + <location filename="../ViewManager/ViewManager.py" line="4928" /> <source>&Toggle Bookmark</source> <translation>&Создать/Удалить закладку</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4920" /> + <location filename="../ViewManager/ViewManager.py" line="4930" /> <source>Alt+Ctrl+T</source> <comment>Bookmark|Toggle</comment> <translation>Alt+Ctrl+T</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4932" /> + <location filename="../ViewManager/ViewManager.py" line="4942" /> <source><b>Toggle Bookmark</b><p>Toggle a bookmark at the current line of the current editor.</p></source> <translation><b>Создать/Удалить закладку</b><p>Создать/Удалить закладку на текущей строке текущего редактора.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4956" /> - <location filename="../ViewManager/ViewManager.py" line="4943" /> + <location filename="../ViewManager/ViewManager.py" line="4966" /> + <location filename="../ViewManager/ViewManager.py" line="4953" /> <source>Next Bookmark</source> <translation>Следующая закладка</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4945" /> + <location filename="../ViewManager/ViewManager.py" line="4955" /> <source>&Next Bookmark</source> <translation>&Следующая закладка</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4947" /> + <location filename="../ViewManager/ViewManager.py" line="4957" /> <source>Ctrl+PgDown</source> <comment>Bookmark|Next</comment> <translation>Ctrl+PgDown</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4959" /> + <location filename="../ViewManager/ViewManager.py" line="4969" /> <source><b>Next Bookmark</b><p>Go to next bookmark of the current editor.</p></source> <translation><b>Следующая закладка</b> <p>Переход к следующей закладке в текущем редакторе.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4982" /> - <location filename="../ViewManager/ViewManager.py" line="4969" /> + <location filename="../ViewManager/ViewManager.py" line="4992" /> + <location filename="../ViewManager/ViewManager.py" line="4979" /> <source>Previous Bookmark</source> <translation>Предыдущая закладка</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4971" /> + <location filename="../ViewManager/ViewManager.py" line="4981" /> <source>&Previous Bookmark</source> <translation>&Предыдущая закладка</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4973" /> + <location filename="../ViewManager/ViewManager.py" line="4983" /> <source>Ctrl+PgUp</source> <comment>Bookmark|Previous</comment> <translation>Ctrl+PgUp</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4985" /> + <location filename="../ViewManager/ViewManager.py" line="4995" /> <source><b>Previous Bookmark</b><p>Go to previous bookmark of the current editor.</p></source> <translation><b>Предыдущая закладка</b> <p>Переход к предыдущей закладке в текущем редакторе.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5007" /> - <location filename="../ViewManager/ViewManager.py" line="4995" /> + <location filename="../ViewManager/ViewManager.py" line="5017" /> + <location filename="../ViewManager/ViewManager.py" line="5005" /> <source>Clear Bookmarks</source> <translation>Стереть закладки</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4996" /> + <location filename="../ViewManager/ViewManager.py" line="5006" /> <source>&Clear Bookmarks</source> <translation>&Стереть закладки</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4998" /> + <location filename="../ViewManager/ViewManager.py" line="5008" /> <source>Alt+Ctrl+C</source> <comment>Bookmark|Clear</comment> <translation>Alt+Ctrl+C</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5010" /> + <location filename="../ViewManager/ViewManager.py" line="5020" /> <source><b>Clear Bookmarks</b><p>Clear bookmarks of all editors.</p></source> <translation><b>Стереть закладки</b><p>Убрать закладки из всех редакторов.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5029" /> - <location filename="../ViewManager/ViewManager.py" line="5020" /> + <location filename="../ViewManager/ViewManager.py" line="5039" /> + <location filename="../ViewManager/ViewManager.py" line="5030" /> <source>Goto Syntax Error</source> <translation>Перейти к синтаксической ошибке</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5022" /> - <source>&Goto Syntax Error</source> - <translation>&Перейти к синтаксической ошибке</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="5032" /> + <source>&Goto Syntax Error</source> + <translation>&Перейти к синтаксической ошибке</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="5042" /> <source><b>Goto Syntax Error</b><p>Go to next syntax error of the current editor.</p></source> <translation><b>Перейти к синтаксической ошибке</b> <p>Переход к следующей синтаксической ошибке в текущем редакторе.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5050" /> - <location filename="../ViewManager/ViewManager.py" line="5042" /> + <location filename="../ViewManager/ViewManager.py" line="5060" /> + <location filename="../ViewManager/ViewManager.py" line="5052" /> <source>Clear Syntax Errors</source> <translation>Очистить синтаксические ошибки</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5043" /> - <source>Clear &Syntax Errors</source> - <translation>Очистить синтаксические &ошибки</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="5053" /> + <source>Clear &Syntax Errors</source> + <translation>Очистить синтаксические &ошибки</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="5063" /> <source><b>Clear Syntax Errors</b><p>Clear syntax errors of all editors.</p></source> <translation><b>Очистить синтаксические ошибки</b><p>Убрать сообщения об синтаксических ошибках во всех редакторах.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5072" /> - <location filename="../ViewManager/ViewManager.py" line="5063" /> + <location filename="../ViewManager/ViewManager.py" line="5082" /> + <location filename="../ViewManager/ViewManager.py" line="5073" /> <source>Next warning message</source> <translation>Следующее предупреждение</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5065" /> - <source>&Next warning message</source> - <translation>&Следующее предупреждение</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="5075" /> + <source>&Next warning message</source> + <translation>&Следующее предупреждение</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="5085" /> <source><b>Next warning message</b><p>Go to next line of the current editor having a pyflakes warning.</p></source> <translation><b>Следующее предупреждение</b><p>Переход к следующей строке текущего редактора, имеющей предупреждение pyflakes.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5095" /> - <location filename="../ViewManager/ViewManager.py" line="5086" /> + <location filename="../ViewManager/ViewManager.py" line="5105" /> + <location filename="../ViewManager/ViewManager.py" line="5096" /> <source>Previous warning message</source> <translation>Предыдущее предупреждение</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5088" /> - <source>&Previous warning message</source> - <translation>&Предыдущее предупреждение</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="5098" /> + <source>&Previous warning message</source> + <translation>&Предыдущее предупреждение</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="5108" /> <source><b>Previous warning message</b><p>Go to previous line of the current editor having a pyflakes warning.</p></source> <translation><b>Предыдущее предупреждение</b><p>Переход к предыдущей строке текущего редактора, имеющей предупреждение pyflakes.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5117" /> - <location filename="../ViewManager/ViewManager.py" line="5109" /> + <location filename="../ViewManager/ViewManager.py" line="5127" /> + <location filename="../ViewManager/ViewManager.py" line="5119" /> <source>Clear Warning Messages</source> <translation>Очистить предупреждения</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5110" /> - <source>Clear &Warning Messages</source> - <translation>&Очистить предупреждения</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="5120" /> + <source>Clear &Warning Messages</source> + <translation>&Очистить предупреждения</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="5130" /> <source><b>Clear Warning Messages</b><p>Clear pyflakes warning messages of all editors.</p></source> <translation><b>Очистить предупреждения</b><p>Очистить предупреждения от pyflakes во всех окнах редактора.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5139" /> - <location filename="../ViewManager/ViewManager.py" line="5130" /> + <location filename="../ViewManager/ViewManager.py" line="5149" /> + <location filename="../ViewManager/ViewManager.py" line="5140" /> <source>Next uncovered line</source> <translation>Следующая неохваченная строка</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5132" /> - <source>&Next uncovered line</source> - <translation>&Следующая неохваченная строка</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="5142" /> + <source>&Next uncovered line</source> + <translation>&Следующая неохваченная строка</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="5152" /> <source><b>Next uncovered line</b><p>Go to next line of the current editor marked as not covered.</p></source> <translation><b>Следующая неохваченная строка</b><p>Переход к строке текущего редактора, помеченной как неохваченная.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5162" /> - <location filename="../ViewManager/ViewManager.py" line="5153" /> + <location filename="../ViewManager/ViewManager.py" line="5172" /> + <location filename="../ViewManager/ViewManager.py" line="5163" /> <source>Previous uncovered line</source> <translation>Предыдущая неохваченная строка</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5155" /> - <source>&Previous uncovered line</source> - <translation>&Предыдущая неохваченная строка</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="5165" /> + <source>&Previous uncovered line</source> + <translation>&Предыдущая неохваченная строка</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="5175" /> <source><b>Previous uncovered line</b><p>Go to previous line of the current editor marked as not covered.</p></source> <translation><b>Следующая неохваченная строка</b><p>Перейти предыдущей к строке в текущем редакторе, помеченной как неохваченная.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5185" /> - <location filename="../ViewManager/ViewManager.py" line="5176" /> + <location filename="../ViewManager/ViewManager.py" line="5195" /> + <location filename="../ViewManager/ViewManager.py" line="5186" /> <source>Next Task</source> <translation>Следующая задача</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5178" /> - <source>&Next Task</source> - <translation>&Следующая задача</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="5188" /> + <source>&Next Task</source> + <translation>&Следующая задача</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="5198" /> <source><b>Next Task</b><p>Go to next line of the current editor having a task.</p></source> <translation><b>Следующая задача</b> <p>Переход к следующей строке редактора, где определена задача.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5207" /> - <location filename="../ViewManager/ViewManager.py" line="5198" /> + <location filename="../ViewManager/ViewManager.py" line="5217" /> + <location filename="../ViewManager/ViewManager.py" line="5208" /> <source>Previous Task</source> <translation>Предыдущая задача</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5200" /> - <source>&Previous Task</source> - <translation>&Предыдущая задача</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="5210" /> + <source>&Previous Task</source> + <translation>&Предыдущая задача</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="5220" /> <source><b>Previous Task</b><p>Go to previous line of the current editor having a task.</p></source> <translation><b>Предыдущая задача</b><p>Переход к предыдущей строке редактора, где определена задача.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5230" /> - <location filename="../ViewManager/ViewManager.py" line="5221" /> + <location filename="../ViewManager/ViewManager.py" line="5240" /> + <location filename="../ViewManager/ViewManager.py" line="5231" /> <source>Next Change</source> <translation>Следующее изменение</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5223" /> - <source>&Next Change</source> - <translation>&Следующее изменение</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="5233" /> + <source>&Next Change</source> + <translation>&Следующее изменение</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="5243" /> <source><b>Next Change</b><p>Go to next line of the current editor having a change marker.</p></source> <translation><b>Следующее изменение</b><p>Переход к следующей строке текущего редактора, на которой есть маркер об изменении.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5253" /> - <location filename="../ViewManager/ViewManager.py" line="5244" /> + <location filename="../ViewManager/ViewManager.py" line="5263" /> + <location filename="../ViewManager/ViewManager.py" line="5254" /> <source>Previous Change</source> <translation>Предыдущее изменение</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5246" /> - <source>&Previous Change</source> - <translation>&Предыдущее изменение</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="5256" /> + <source>&Previous Change</source> + <translation>&Предыдущее изменение</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="5266" /> <source><b>Previous Change</b><p>Go to previous line of the current editor having a change marker.</p></source> <translation><b>Предыдущее изменение</b><p>Переход к предыдущей строке текущего редактора, на которой есть маркер об изменении.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5277" /> - <location filename="../ViewManager/ViewManager.py" line="5275" /> + <location filename="../ViewManager/ViewManager.py" line="5287" /> + <location filename="../ViewManager/ViewManager.py" line="5285" /> <source>&Bookmarks</source> <translation>&Закладки</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5321" /> - <location filename="../ViewManager/ViewManager.py" line="5319" /> + <location filename="../ViewManager/ViewManager.py" line="5331" /> + <location filename="../ViewManager/ViewManager.py" line="5329" /> <source>Bookmarks</source> <translation>Закладки</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5355" /> + <location filename="../ViewManager/ViewManager.py" line="5365" /> <source>Check spelling</source> <translation>Проверка орфографии</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5357" /> + <location filename="../ViewManager/ViewManager.py" line="5367" /> <source>Check &spelling...</source> <translation>Проверка &орфографии...</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5359" /> + <location filename="../ViewManager/ViewManager.py" line="5369" /> <source>Shift+F7</source> <comment>Spelling|Spell Check</comment> <translation>Shift+F7</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5368" /> + <location filename="../ViewManager/ViewManager.py" line="5378" /> <source>Perform spell check of current editor</source> <translation>Проверить орфографию в текущем редакторе</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5373" /> - <source><b>Check spelling</b><p>Perform a spell check of the current editor.</p></source> - <translation><b>Проверка орфографии</b><p>Проверка орфографии в текущем редакторе.</p></translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="5383" /> - <source>Automatic spell checking</source> - <translation>Автоматическая проверка орфографии</translation> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="5385" /> - <source>&Automatic spell checking</source> - <translation>&Автоматическая проверка орфографии</translation> + <source><b>Check spelling</b><p>Perform a spell check of the current editor.</p></source> + <translation><b>Проверка орфографии</b><p>Проверка орфографии в текущем редакторе.</p></translation> </message> <message> <location filename="../ViewManager/ViewManager.py" line="5393" /> + <source>Automatic spell checking</source> + <translation>Автоматическая проверка орфографии</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="5395" /> + <source>&Automatic spell checking</source> + <translation>&Автоматическая проверка орфографии</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="5403" /> <source>(De-)Activate automatic spell checking</source> <translation>Разрешить/Запретить автоматическую проверку орфографии</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5398" /> + <location filename="../ViewManager/ViewManager.py" line="5408" /> <source><b>Automatic spell checking</b><p>Activate or deactivate the automatic spell checking function of all editors.</p></source> <translation><b>Автоматическая проверка орфографии</b><p>Запретить или разрешить автоматическую проверку орфографии.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5432" /> + <location filename="../ViewManager/ViewManager.py" line="5442" /> <source>Edit Dictionary</source> <translation>Редактировать словарь</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5435" /> + <location filename="../ViewManager/ViewManager.py" line="5445" /> <source>Project Word List</source> <translation>Словарь проекта</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5439" /> + <location filename="../ViewManager/ViewManager.py" line="5449" /> <source>Project Exception List</source> <translation>Список исключений проекта</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5444" /> + <location filename="../ViewManager/ViewManager.py" line="5454" /> <source>User Word List</source> <translation>Словарь пользователя</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5448" /> + <location filename="../ViewManager/ViewManager.py" line="5458" /> <source>User Exception List</source> <translation>Список исключений пользователя</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5469" /> - <location filename="../ViewManager/ViewManager.py" line="5467" /> + <location filename="../ViewManager/ViewManager.py" line="5479" /> + <location filename="../ViewManager/ViewManager.py" line="5477" /> <source>Spelling</source> <translation>Проверка орфографии</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5492" /> + <location filename="../ViewManager/ViewManager.py" line="5502" /> <source>Open Files</source> <translation>Открыть файлы</translation> </message> <message> + <location filename="../ViewManager/ViewManager.py" line="5531" /> <location filename="../ViewManager/ViewManager.py" line="5521" /> - <location filename="../ViewManager/ViewManager.py" line="5511" /> <source>Open Remote Files</source> <translation>Открыть удаленные файлы</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5578" /> + <location filename="../ViewManager/ViewManager.py" line="5588" /> <source>File Modified</source> <translation>Файл изменён</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5579" /> + <location filename="../ViewManager/ViewManager.py" line="5589" /> <source><p>The file <b>{0}</b> has unsaved changes.</p></source> <translation><p>В файле <b>{0}</b> есть несохранённые изменения.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6078" /> + <location filename="../ViewManager/ViewManager.py" line="6090" /> <source>Line: {0:5}</source> <translation>Строка: {0:5}</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6084" /> + <location filename="../ViewManager/ViewManager.py" line="6096" /> <source>Pos: {0:5}</source> <translation>Позиция: {0:5}</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6104" /> + <location filename="../ViewManager/ViewManager.py" line="6116" /> <source>Language: {0}</source> <translation>Язык: {0}</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6113" /> + <location filename="../ViewManager/ViewManager.py" line="6125" /> <source>EOL Mode: {0}</source> <translation>Режим конца строк: {0}</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6641" /> - <location filename="../ViewManager/ViewManager.py" line="6598" /> + <location filename="../ViewManager/ViewManager.py" line="6668" /> + <location filename="../ViewManager/ViewManager.py" line="6625" /> <source>&Clear</source> <translation>&Очистить</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6635" /> + <location filename="../ViewManager/ViewManager.py" line="6662" /> <source>&Add</source> <translation>&Добавить</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6638" /> + <location filename="../ViewManager/ViewManager.py" line="6665" /> <source>&Edit...</source> <translation>&Правка...</translation> </message> <message> + <location filename="../ViewManager/ViewManager.py" line="7735" /> + <location filename="../ViewManager/ViewManager.py" line="7721" /> + <location filename="../ViewManager/ViewManager.py" line="7689" /> + <source>Edit Spelling Dictionary</source> + <translation>Редактировать орфографический словарь</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="7692" /> + <source><p>The spelling dictionary file <b>{0}</b> could not be read.</p><p>Reason: {1}</p></source> + <translation><p>Невозможно прочитать файл словаря<b>{0}</b></p><p>Причина: {1}</p></translation> + </message> + <message> <location filename="../ViewManager/ViewManager.py" line="7708" /> - <location filename="../ViewManager/ViewManager.py" line="7694" /> - <location filename="../ViewManager/ViewManager.py" line="7662" /> - <source>Edit Spelling Dictionary</source> - <translation>Редактировать орфографический словарь</translation> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="7665" /> - <source><p>The spelling dictionary file <b>{0}</b> could not be read.</p><p>Reason: {1}</p></source> - <translation><p>Невозможно прочитать файл словаря<b>{0}</b></p><p>Причина: {1}</p></translation> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="7681" /> <source>Editing {0}</source> <translation>Редактирование {0}</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="7697" /> + <location filename="../ViewManager/ViewManager.py" line="7724" /> <source><p>The spelling dictionary file <b>{0}</b> could not be written.</p><p>Reason: {1}</p></source> <translation><p>Невозможно записать файл словаря<b>{0}</b></p><p>Причина: {1}</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="7711" /> + <location filename="../ViewManager/ViewManager.py" line="7738" /> <source>The spelling dictionary was saved successfully.</source> <translation>Файл словаря успешно сохранён.</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5522" /> + <location filename="../ViewManager/ViewManager.py" line="5532" /> <source>You must be connected to a remote eric-ide server. Aborting...</source> <translation>Вы должны быть подсоединены к удаленному серверу eric-ide. Прерывание...</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6820" /> + <location filename="../ViewManager/ViewManager.py" line="6847" /> <source>Clear Editor</source> <translation>Очистить редактор</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6821" /> + <location filename="../ViewManager/ViewManager.py" line="6848" /> <source>Do you really want to delete all text of the current editor?</source> <translation>Вы действительно хотите удалить весь текст из текущего редактора?</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="8241" /> - <location filename="../ViewManager/ViewManager.py" line="8224" /> + <location filename="../ViewManager/ViewManager.py" line="8268" /> + <location filename="../ViewManager/ViewManager.py" line="8251" /> <source>File System Watcher Error</source> <translation>Ошибка наблюдения за файловой системой</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="8225" /> + <location filename="../ViewManager/ViewManager.py" line="8252" /> <source><p>The operating system resources for file system watches are exhausted. This limit should be increased. On a Linux system you should <ul><li>sudo nano /etc/sysctl.conf</li><li>add to the bottom "fs.inotify.max_user_instances = 1024"</li><li>save and close the editor</li><li>sudo sysctl -p</li></ul></p><p>Error Message: {0}</p></source> <translation><p>Ресурсы операционной системы для наблюдения за файловой системой исчерпаны. Это ограничение следует увеличить. В системе Linux вам следует <ul><li>sudo nano /etc/sysctl.conf</li><li>добавить в нижней части "fs.inotify.max_user_instances = 1024"</li><li>сохранить и закрыть редактор</li><li>sudo sysctl -p</li></ul></p><p>Сообщение об ошибке: {0}</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="8242" /> + <location filename="../ViewManager/ViewManager.py" line="8269" /> <source>The file system watcher reported an error with code <b>{0}</b>.</p><p>Error Message: {1}</p></source> <translation>Программа наблюдения за файловой системой сообщила об ошибке с кодом <b>{0}</b>.</p><p>Сообщение об ошибке: {1}</p></translation> </message> @@ -99807,54 +99820,54 @@ <context> <name>VirtualenvManager</name> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="317" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="319" /> <source>Add Virtual Environment</source> <translation>Добавить виртуальное окружение</translation> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="318" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="320" /> <source>A virtual environment named <b>{0}</b> exists already. Shall it be replaced?</source> <translation>Виртуальное окружение с именем <b>{0}</b> уже существует.Заменить его?</translation> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="355" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="357" /> <source>Change Virtual Environment</source> <translation>Изменить виртуальное окружение</translation> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="388" /> - <location filename="../VirtualEnv/VirtualenvManager.py" line="356" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="390" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="358" /> <source>A virtual environment named <b>{0}</b> does not exist. Aborting!</source> <translation>Виртуальное окружение с именем <b>{0}</b> не существует. Прерывание!</translation> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="387" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="389" /> <source>Rename Virtual Environment</source> <translation>Переименовать виртуальное окружение</translation> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="479" /> - <location filename="../VirtualEnv/VirtualenvManager.py" line="412" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="481" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="414" /> <source>{0} - {1}</source> <translation>{0} - {1}</translation> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="419" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="421" /> <source>Delete Virtual Environments</source> <translation>Удалить виртуальные окружения</translation> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="420" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="422" /> <source>Do you really want to delete these virtual environments?</source> <translation>Вы действительно хотите удалить эти виртуальные окружения?</translation> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="486" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="488" /> <source>Remove Virtual Environments</source> <translation>Убрать виртуальные окружения из списка</translation> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="487" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="489" /> <source>Do you really want to remove these virtual environments?</source> <translation>Вы действительно хотите убрать эти виртуальные окружения из списка?</translation> </message> @@ -99862,7 +99875,7 @@ <context> <name>VirtualenvManagerDialog</name> <message> - <location filename="../VirtualEnv/VirtualenvManagerWidgets.py" line="442" /> + <location filename="../VirtualEnv/VirtualenvManagerWidgets.py" line="448" /> <source>Manage Virtual Environments</source> <translation>Управление виртуальными окружениями</translation> </message> @@ -99986,7 +99999,7 @@ <context> <name>VirtualenvManagerWindow</name> <message> - <location filename="../VirtualEnv/VirtualenvManagerWidgets.py" line="482" /> + <location filename="../VirtualEnv/VirtualenvManagerWidgets.py" line="488" /> <source>Manage Virtual Environments</source> <translation>Управление виртуальными окружениями</translation> </message>
--- a/src/eric7/i18n/eric7_tr.ts Wed Oct 16 17:38:35 2024 +0200 +++ b/src/eric7/i18n/eric7_tr.ts Wed Oct 16 17:39:40 2024 +0200 @@ -1635,27 +1635,27 @@ <context> <name>AssistantJedi</name> <message> - <location filename="../JediInterface/AssistantJedi.py" line="230" /> + <location filename="../JediInterface/AssistantJedi.py" line="236" /> <source>Refactoring</source> <translation type="unfinished" /> </message> <message> - <location filename="../JediInterface/AssistantJedi.py" line="232" /> - <source>Rename Variable</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../JediInterface/AssistantJedi.py" line="235" /> - <source>Extract Variable</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../JediInterface/AssistantJedi.py" line="238" /> + <source>Rename Variable</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../JediInterface/AssistantJedi.py" line="241" /> + <source>Extract Variable</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../JediInterface/AssistantJedi.py" line="244" /> <source>Inline Variable</source> <translation type="unfinished" /> </message> <message> - <location filename="../JediInterface/AssistantJedi.py" line="242" /> + <location filename="../JediInterface/AssistantJedi.py" line="248" /> <source>Extract Function</source> <translation type="unfinished" /> </message> @@ -9240,19 +9240,35 @@ </translation> </message> <message> - <location filename="../Debugger/DebugServer.py" line="2109" /> + <location filename="../Debugger/DebugServer.py" line="2110" /> <source>Passive debug connection received </source> <translation type="unfinished" /> </message> <message> - <location filename="../Debugger/DebugServer.py" line="2123" /> + <location filename="../Debugger/DebugServer.py" line="2119" /> + <source>Passive debug connection received while not in passive mode. +</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Debugger/DebugServer.py" line="2125" /> + <source>Debug Client Connection</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Debugger/DebugServer.py" line="2126" /> + <source>Passive debug client connection received while not in passive mode. Enable this mode on the 'Debugger General' configuration page. The connection will be rejected.</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Debugger/DebugServer.py" line="2141" /> <source>Passive debug connection closed </source> <translation type="unfinished" /> </message> <message> - <location filename="../Debugger/DebugServer.py" line="2254" /> + <location filename="../Debugger/DebugServer.py" line="2272" /> <source><project></source> <translation type="unfinished" /> </message> @@ -10203,25 +10219,13 @@ </message> <message> <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" /> - <source>Enables the passive debug mode</source> - <translation>Pasif hata Ayıklayıcı Yöntemini Etkinleştir</translation> + <source>Debugger Type:</source> + <translation>Hata Ayıklayıcı Tipi:</translation> </message> <message> <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" /> - <source><b>Passive Debugger Enabled</b> -<p>This enables the passive debugging mode. In this mode the debug client (the script) connects to the debug server (the IDE). The script is started outside the IDE. This way mod_python or Zope scripts can be debugged.</p></source> - <translation><b>Pasif Hata Ayıklayıcı Onaylandı</b> -<p>Bu pasif hata ayıklama modunu onaylar.Bu modda hata ayıklayıcı istemcisi (betik) hata ayıklama sunucusu ile (IDE) bağlantı kurar. Bu yol mod_python yada Zope betiği hata ayıklama yapabilir.</p></translation> - </message> - <message> - <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" /> - <source>Passive Debugger Enabled</source> - <translation>Pasif Hata Ayıklayıcı Onaylandı</translation> - </message> - <message> - <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" /> - <source>Debug Server Port:</source> - <translation>Hata Ayıklama Sunucu Portu:</translation> + <source>Select the debugger type of the backend</source> + <translation>Arkanın hata ayıklayıcı tipini seçiniz</translation> </message> <message> <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" /> @@ -10237,13 +10241,8 @@ </message> <message> <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" /> - <source>Debugger Type:</source> - <translation>Hata Ayıklayıcı Tipi:</translation> - </message> - <message> - <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" /> - <source>Select the debugger type of the backend</source> - <translation>Arkanın hata ayıklayıcı tipini seçiniz</translation> + <source>Debug Server Port:</source> + <translation>Hata Ayıklama Sunucu Portu:</translation> </message> <message> <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" /> @@ -10573,50 +10572,64 @@ <source>Automatically view source code</source> <translation type="unfinished" /> </message> + <message> + <source>Enables the passive debug mode</source> + <translation type="vanished">Pasif hata Ayıklayıcı Yöntemini Etkinleştir</translation> + </message> + <message> + <source><b>Passive Debugger Enabled</b> +<p>This enables the passive debugging mode. In this mode the debug client (the script) connects to the debug server (the IDE). The script is started outside the IDE. This way mod_python or Zope scripts can be debugged.</p></source> + <translation type="vanished"><b>Pasif Hata Ayıklayıcı Onaylandı</b> +<p>Bu pasif hata ayıklama modunu onaylar.Bu modda hata ayıklayıcı istemcisi (betik) hata ayıklama sunucusu ile (IDE) bağlantı kurar. Bu yol mod_python yada Zope betiği hata ayıklama yapabilir.</p></translation> + </message> + <message> + <source>Passive Debugger Enabled</source> + <translation type="vanished">Pasif Hata Ayıklayıcı Onaylandı</translation> + </message> </context> <context> <name>DebuggerInterfacePython</name> <message> - <location filename="../Debugger/DebuggerInterfacePython.py" line="727" /> - <location filename="../Debugger/DebuggerInterfacePython.py" line="704" /> - <location filename="../Debugger/DebuggerInterfacePython.py" line="611" /> - <location filename="../Debugger/DebuggerInterfacePython.py" line="565" /> - <location filename="../Debugger/DebuggerInterfacePython.py" line="446" /> - <location filename="../Debugger/DebuggerInterfacePython.py" line="423" /> - <location filename="../Debugger/DebuggerInterfacePython.py" line="346" /> - <location filename="../Debugger/DebuggerInterfacePython.py" line="322" /> - <location filename="../Debugger/DebuggerInterfacePython.py" line="259" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="728" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="705" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="609" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="563" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="445" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="422" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="345" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="321" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="258" /> <source>Start Debugger</source> <translation type="unfinished">Hata Ayıklayıcıyı Başlat</translation> </message> <message> - <location filename="../Debugger/DebuggerInterfacePython.py" line="566" /> - <location filename="../Debugger/DebuggerInterfacePython.py" line="260" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="564" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="259" /> <source><p>No suitable Python3 environment configured.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Debugger/DebuggerInterfacePython.py" line="728" /> - <location filename="../Debugger/DebuggerInterfacePython.py" line="705" /> - <location filename="../Debugger/DebuggerInterfacePython.py" line="612" /> - <location filename="../Debugger/DebuggerInterfacePython.py" line="447" /> - <location filename="../Debugger/DebuggerInterfacePython.py" line="424" /> - <location filename="../Debugger/DebuggerInterfacePython.py" line="323" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="729" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="706" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="610" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="446" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="423" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="322" /> <source><p>The debugger backend could not be started.</p></source> <translation type="unfinished"><p>Hata ayıklayıcıbaşlatılamadı.</p></translation> </message> <message> - <location filename="../Debugger/DebuggerInterfacePython.py" line="347" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="346" /> <source><p>Remote debugging is configured but no command for remote login was given.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Debugger/DebuggerInterfacePython.py" line="1659" /> - <source>Debug Protocol Error</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Debugger/DebuggerInterfacePython.py" line="1660" /> + <source>Debug Protocol Error</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Debugger/DebuggerInterfacePython.py" line="1661" /> <source><p>The response received from the debugger backend 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" /> </message> @@ -62029,7 +62042,7 @@ <context> <name>PreviewModel</name> <message> - <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="478" /> + <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="506" /> <source>Variable Name</source> <translation type="unfinished" /> </message> @@ -62911,8 +62924,8 @@ <translation>Dosya adını Değiştir</translation> </message> <message> - <location filename="../Project/Project.py" line="8058" /> - <location filename="../Project/Project.py" line="3901" /> + <location filename="../Project/Project.py" line="8055" /> + <location filename="../Project/Project.py" line="3898" /> <location filename="../Project/Project.py" line="2398" /> <source><p>The file <b>{0}</b> already exists. Overwrite it?</p></source> <translation><p><b>{0}</b> dosyası halen mevcut. Üzerine yazılsın mı?</p></translation> @@ -63046,40 +63059,40 @@ <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="8044" /> - <location filename="../Project/Project.py" line="8038" /> - <location filename="../Project/Project.py" line="8028" /> - <location filename="../Project/Project.py" line="3886" /> - <location filename="../Project/Project.py" line="3876" /> + <location filename="../Project/Project.py" line="8041" /> + <location filename="../Project/Project.py" line="8035" /> + <location filename="../Project/Project.py" line="8025" /> + <location filename="../Project/Project.py" line="3883" /> + <location filename="../Project/Project.py" line="3873" /> <location filename="../Project/Project.py" line="3652" /> <source>Project Files (*.epj)</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="3900" /> - <location filename="../Project/Project.py" line="3884" /> + <location filename="../Project/Project.py" line="3897" /> + <location filename="../Project/Project.py" line="3881" /> <source>Save Project</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="3939" /> + <location filename="../Project/Project.py" line="3936" /> <source>Close Project</source> <translation>Projeyi Kapat</translation> </message> <message> - <location filename="../Project/Project.py" line="3940" /> + <location filename="../Project/Project.py" line="3937" /> <source>The current project has unsaved changes.</source> <translation>Geçerli projede kaydedilmemiş dosyalar var.</translation> </message> <message> - <location filename="../Project/Project.py" line="4140" /> - <location filename="../Project/Project.py" line="4104" /> + <location filename="../Project/Project.py" line="4137" /> + <location filename="../Project/Project.py" line="4101" /> <source>Syntax Errors Detected</source> <translation type="unfinished" /> </message> <message numerus="yes"> - <location filename="../Project/Project.py" line="4141" /> - <location filename="../Project/Project.py" line="4105" /> + <location filename="../Project/Project.py" line="4138" /> + <location filename="../Project/Project.py" line="4102" /> <source>The project contains %n file(s) with syntax errors.</source> <translation type="unfinished"> <numerusform /> @@ -63087,1268 +63100,1268 @@ </translation> </message> <message> - <location filename="../Project/Project.py" line="4799" /> + <location filename="../Project/Project.py" line="4796" /> <source>New project</source> <translation>Yeni Proje</translation> </message> <message> - <location filename="../Project/Project.py" line="4801" /> + <location filename="../Project/Project.py" line="4798" /> <source>&New...</source> <translation>Ye&ni...</translation> </message> <message> - <location filename="../Project/Project.py" line="4807" /> + <location filename="../Project/Project.py" line="4804" /> <source>Generate a new project</source> <translation>Yeni bir proje üret</translation> </message> <message> - <location filename="../Project/Project.py" line="4809" /> + <location filename="../Project/Project.py" line="4806" /> <source><b>New...</b><p>This opens a dialog for entering the info for a new project.</p></source> <translation><b>Yeni...</b><p>Bu yeni bir proje için bilgilerin girileceği bir diyalog açar.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4819" /> + <location filename="../Project/Project.py" line="4816" /> <source>Open project</source> <translation>Projeyi aç</translation> </message> <message> - <location filename="../Project/Project.py" line="4821" /> + <location filename="../Project/Project.py" line="4818" /> <source>&Open...</source> <translation>&Aç...</translation> </message> <message> - <location filename="../Project/Project.py" line="4827" /> + <location filename="../Project/Project.py" line="4824" /> <source>Open an existing project</source> <translation>Var olan bir projeyi aç</translation> </message> <message> - <location filename="../Project/Project.py" line="4829" /> + <location filename="../Project/Project.py" line="4826" /> <source><b>Open...</b><p>This opens an existing project.</p></source> <translation><b>Aç...</b><p>Bu varolan bir projeyi açar.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4835" /> + <location filename="../Project/Project.py" line="4832" /> <source>Open remote project</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="4837" /> + <location filename="../Project/Project.py" line="4834" /> <source>Open (Remote)...</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="4843" /> + <location filename="../Project/Project.py" line="4840" /> <source>Open an existing remote project</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="4845" /> + <location filename="../Project/Project.py" line="4842" /> <source><b>Open (Remote)...</b><p>This opens an existing remote project.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="4854" /> + <location filename="../Project/Project.py" line="4851" /> <source>Reload project</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="4856" /> + <location filename="../Project/Project.py" line="4853" /> <source>Re&load</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="4862" /> + <location filename="../Project/Project.py" line="4859" /> <source>Reload the current project</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="4864" /> + <location filename="../Project/Project.py" line="4861" /> <source><b>Reload</b><p>This reloads the current project.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="4870" /> + <location filename="../Project/Project.py" line="4867" /> <source>Close project</source> <translation>Projeyi kapat</translation> </message> <message> - <location filename="../Project/Project.py" line="4872" /> + <location filename="../Project/Project.py" line="4869" /> <source>&Close</source> <translation>&Kapat</translation> </message> <message> - <location filename="../Project/Project.py" line="4878" /> + <location filename="../Project/Project.py" line="4875" /> <source>Close the current project</source> <translation>Geçerli projeyi kapat</translation> </message> <message> - <location filename="../Project/Project.py" line="4880" /> + <location filename="../Project/Project.py" line="4877" /> <source><b>Close</b><p>This closes the current project.</p></source> <translation><b>Kapat</b><p>Bu geçerli projeyi kapatır.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4886" /> + <location filename="../Project/Project.py" line="4883" /> <source>Save project</source> <translation>Projeyi kaydet</translation> </message> <message> - <location filename="../Project/Project.py" line="5183" /> - <location filename="../Project/Project.py" line="4888" /> + <location filename="../Project/Project.py" line="5180" /> + <location filename="../Project/Project.py" line="4885" /> <source>&Save</source> <translation>&Kaydet</translation> </message> <message> - <location filename="../Project/Project.py" line="4894" /> + <location filename="../Project/Project.py" line="4891" /> <source>Save the current project</source> <translation>Geçerli projeyi kapat</translation> </message> <message> - <location filename="../Project/Project.py" line="4896" /> + <location filename="../Project/Project.py" line="4893" /> <source><b>Save</b><p>This saves the current project.</p></source> <translation><b>Kaydet</b><p>Bu geçerli projeyi kaydeder.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4902" /> + <location filename="../Project/Project.py" line="4899" /> <source>Save project as</source> <translation>projeyi farklı adda kaydet</translation> </message> <message> - <location filename="../Project/Project.py" line="4904" /> + <location filename="../Project/Project.py" line="4901" /> <source>Save &as...</source> <translation>Farklı k&aydet...</translation> </message> <message> - <location filename="../Project/Project.py" line="4910" /> + <location filename="../Project/Project.py" line="4907" /> <source>Save the current project to a new file</source> <translation>Geçerli projeyi yeni bir dosya olarak kaydet</translation> </message> <message> - <location filename="../Project/Project.py" line="4912" /> + <location filename="../Project/Project.py" line="4909" /> <source><b>Save as</b><p>This saves the current project to a new file.</p></source> <translation><b>Farklı kaydet</b><p>Bu geçerli projeyi yeni bir dosya olarak kaydeder.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4921" /> + <location filename="../Project/Project.py" line="4918" /> <source>Save project as (Remote)</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="4923" /> + <location filename="../Project/Project.py" line="4920" /> <source>Save as (Remote)...</source> <translation type="unfinished" /> </message> <message> + <location filename="../Project/Project.py" line="4927" /> + <source>Save the current project to a new remote file</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../Project/Project.py" line="4930" /> - <source>Save the current project to a new remote file</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="4933" /> <source><b>Save as (Remote)</b><p>This saves the current project to a new remote file.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="4949" /> + <location filename="../Project/Project.py" line="4946" /> <source>Add files to project</source> <translation>Projeye dosyalar ekle</translation> </message> <message> - <location filename="../Project/Project.py" line="4951" /> + <location filename="../Project/Project.py" line="4948" /> <source>Add &files...</source> <translation>Dosyaları &ekle...</translation> </message> <message> - <location filename="../Project/Project.py" line="4957" /> + <location filename="../Project/Project.py" line="4954" /> <source>Add files to the current project</source> <translation>Geçerli projeye dosyalar ekle</translation> </message> <message> - <location filename="../Project/Project.py" line="4959" /> + <location filename="../Project/Project.py" line="4956" /> <source><b>Add files...</b><p>This opens a dialog for adding files to the current project. The place to add is determined by the file extension.</p></source> <translation><b>Dosya ekle...</b><p>Bu geçerli projeye bir dosya eklemek için bir diyalog açar. Alana belirlenmiş uzantıda bir dosya eklenir.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4970" /> + <location filename="../Project/Project.py" line="4967" /> <source>Add directory to project</source> <translation>Projeye dizin ekle</translation> </message> <message> - <location filename="../Project/Project.py" line="4972" /> + <location filename="../Project/Project.py" line="4969" /> <source>Add directory...</source> <translation>Dizin ekle...</translation> </message> <message> + <location filename="../Project/Project.py" line="4976" /> + <source>Add a directory to the current project</source> + <translation>Geçerli projeye bir dizin ekleyiniz</translation> + </message> + <message> <location filename="../Project/Project.py" line="4979" /> - <source>Add a directory to the current project</source> - <translation>Geçerli projeye bir dizin ekleyiniz</translation> - </message> - <message> - <location filename="../Project/Project.py" line="4982" /> <source><b>Add directory...</b><p>This opens a dialog for adding a directory to the current project.</p></source> <translation><b>Dizin Ekle...</b><p>Bu geçerli projeye bir dizin eklemek için bir diyalog açar.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4992" /> + <location filename="../Project/Project.py" line="4989" /> <source>Add translation to project</source> <translation>Projeye çeviri ekle</translation> </message> <message> - <location filename="../Project/Project.py" line="4994" /> + <location filename="../Project/Project.py" line="4991" /> <source>Add &translation...</source> <translation>Çeviri &ekle...</translation> </message> <message> + <location filename="../Project/Project.py" line="4998" /> + <source>Add a translation to the current project</source> + <translation>Geçerli projeye çeviri ekle</translation> + </message> + <message> <location filename="../Project/Project.py" line="5001" /> - <source>Add a translation to the current project</source> - <translation>Geçerli projeye çeviri ekle</translation> - </message> - <message> - <location filename="../Project/Project.py" line="5004" /> <source><b>Add translation...</b><p>This opens a dialog for add a translation to the current project.</p></source> <translation><b>Çeviri ekle...</b><p>Bu geçerli projeye bir çeviri eklemek için bir diyalog açar.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5014" /> + <location filename="../Project/Project.py" line="5011" /> <source>Search new files</source> <translation>Yeni dosyaları ara</translation> </message> <message> - <location filename="../Project/Project.py" line="5015" /> + <location filename="../Project/Project.py" line="5012" /> <source>Searc&h new files...</source> <translation>Yeni dosyaları a&ra...</translation> </message> <message> - <location filename="../Project/Project.py" line="5021" /> + <location filename="../Project/Project.py" line="5018" /> <source>Search new files in the project directory.</source> <translation>Proje dizininde yeni dosyaları ara.</translation> </message> <message> - <location filename="../Project/Project.py" line="5023" /> + <location filename="../Project/Project.py" line="5020" /> <source><b>Search new files...</b><p>This searches for new files (sources, forms, ...) in the project directory and registered subdirectories.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5033" /> + <location filename="../Project/Project.py" line="5030" /> <source>Search Project File</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5034" /> + <location filename="../Project/Project.py" line="5031" /> <source>Search Project File...</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5035" /> + <location filename="../Project/Project.py" line="5032" /> <source>Alt+Ctrl+P</source> <comment>Project|Search Project File</comment> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5040" /> + <location filename="../Project/Project.py" line="5037" /> <source>Search for a file in the project list of files.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5042" /> + <location filename="../Project/Project.py" line="5039" /> <source><b>Search Project File</b><p>This searches for a file in the project list of files.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5051" /> + <location filename="../Project/Project.py" line="5048" /> <source>Project properties</source> <translation>Proje özellikleri</translation> </message> <message> - <location filename="../Project/Project.py" line="5053" /> + <location filename="../Project/Project.py" line="5050" /> <source>&Properties...</source> <translation>&Özellikler...</translation> </message> <message> - <location filename="../Project/Project.py" line="5059" /> + <location filename="../Project/Project.py" line="5056" /> <source>Show the project properties</source> <translation>Proje özelliklerini göster</translation> </message> <message> - <location filename="../Project/Project.py" line="5061" /> + <location filename="../Project/Project.py" line="5058" /> <source><b>Properties...</b><p>This shows a dialog to edit the project properties.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5070" /> + <location filename="../Project/Project.py" line="5067" /> <source>User project properties</source> <translation>Kullanıcı projesi özellikleri</translation> </message> <message> - <location filename="../Project/Project.py" line="5072" /> + <location filename="../Project/Project.py" line="5069" /> <source>&User Properties...</source> <translation>K&ullanıcı Özellikleri...</translation> </message> <message> + <location filename="../Project/Project.py" line="5076" /> + <source>Show the user specific project properties</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../Project/Project.py" line="5079" /> - <source>Show the user specific project properties</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="5082" /> <source><b>User Properties...</b><p>This shows a dialog to edit the user specific project properties.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5092" /> + <location filename="../Project/Project.py" line="5089" /> <source>Filetype Associations</source> <translation>Dosyatipi Birleştirme</translation> </message> <message> - <location filename="../Project/Project.py" line="5093" /> + <location filename="../Project/Project.py" line="5090" /> <source>Filetype Associations...</source> <translation>Dosyatipi Birleştirme...</translation> </message> <message> + <location filename="../Project/Project.py" line="5097" /> + <source>Show the project file type associations</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../Project/Project.py" line="5100" /> - <source>Show the project file type associations</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="5103" /> <source><b>Filetype Associations...</b><p>This shows a dialog to edit the file type associations of the project. These associations determine the type (source, form, interface, protocol or others) with a filename pattern. They are used when adding a file to the project and when performing a search for new files.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5116" /> + <location filename="../Project/Project.py" line="5113" /> <source>Lexer Associations</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5117" /> + <location filename="../Project/Project.py" line="5114" /> <source>Lexer Associations...</source> <translation type="unfinished" /> </message> <message> + <location filename="../Project/Project.py" line="5121" /> + <source>Show the project lexer associations (overriding defaults)</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../Project/Project.py" line="5124" /> - <source>Show the project lexer associations (overriding defaults)</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="5127" /> <source><b>Lexer Associations...</b><p>This shows a dialog to edit the lexer associations of the project. These associations override the global lexer associations. Lexers are used to highlight the editor text.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5145" /> + <location filename="../Project/Project.py" line="5142" /> <source>Debugger Properties</source> <translation>Hata Ayıklayıcı Özellikleri</translation> </message> <message> - <location filename="../Project/Project.py" line="5146" /> + <location filename="../Project/Project.py" line="5143" /> <source>Debugger &Properties...</source> <translation>Hata Ayıklayıcı &Özellikleri...</translation> </message> <message> - <location filename="../Project/Project.py" line="5152" /> + <location filename="../Project/Project.py" line="5149" /> <source>Show the debugger properties</source> <translation>Hata ayıklayıcı özelliklerini göster</translation> </message> <message> - <location filename="../Project/Project.py" line="5154" /> + <location filename="../Project/Project.py" line="5151" /> <source><b>Debugger Properties...</b><p>This shows a dialog to edit project specific debugger settings.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5164" /> + <location filename="../Project/Project.py" line="5161" /> <source>Load</source> <translation>Yükle</translation> </message> <message> - <location filename="../Project/Project.py" line="5165" /> + <location filename="../Project/Project.py" line="5162" /> <source>&Load</source> <translation>Yük&le</translation> </message> <message> - <location filename="../Project/Project.py" line="5171" /> + <location filename="../Project/Project.py" line="5168" /> <source>Load the debugger properties</source> <translation>Hata ayıklayıcı özelliklerini yükle</translation> </message> <message> - <location filename="../Project/Project.py" line="5173" /> + <location filename="../Project/Project.py" line="5170" /> <source><b>Load Debugger Properties</b><p>This loads the project specific debugger settings.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5182" /> + <location filename="../Project/Project.py" line="5179" /> <source>Save</source> <translation>Kaydet</translation> </message> <message> - <location filename="../Project/Project.py" line="5189" /> + <location filename="../Project/Project.py" line="5186" /> <source>Save the debugger properties</source> <translation>Hata ayıklayıcı özelliklerini kaydet</translation> </message> <message> - <location filename="../Project/Project.py" line="5191" /> + <location filename="../Project/Project.py" line="5188" /> <source><b>Save Debugger Properties</b><p>This saves the project specific debugger settings.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5200" /> + <location filename="../Project/Project.py" line="5197" /> <source>Delete</source> <translation>Sil</translation> </message> <message> - <location filename="../Project/Project.py" line="5201" /> + <location filename="../Project/Project.py" line="5198" /> <source>&Delete</source> <translation>&Sil</translation> </message> <message> - <location filename="../Project/Project.py" line="5207" /> + <location filename="../Project/Project.py" line="5204" /> <source>Delete the debugger properties</source> <translation>Hata ayıklayıcı özelliklerini sil</translation> </message> <message> - <location filename="../Project/Project.py" line="5209" /> + <location filename="../Project/Project.py" line="5206" /> <source><b>Delete Debugger Properties</b><p>This deletes the file containing the project specific debugger settings.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5219" /> + <location filename="../Project/Project.py" line="5216" /> <source>Reset</source> <translation>Başadön</translation> </message> <message> - <location filename="../Project/Project.py" line="5220" /> + <location filename="../Project/Project.py" line="5217" /> <source>&Reset</source> <translation>Başad&ön</translation> </message> <message> - <location filename="../Project/Project.py" line="5226" /> + <location filename="../Project/Project.py" line="5223" /> <source>Reset the debugger properties</source> <translation>Hata ayıklayıcı özelliklerini başa döndür</translation> </message> <message> - <location filename="../Project/Project.py" line="5228" /> + <location filename="../Project/Project.py" line="5225" /> <source><b>Reset Debugger Properties</b><p>This resets the project specific debugger settings.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5244" /> - <location filename="../Project/Project.py" line="5243" /> + <location filename="../Project/Project.py" line="5241" /> + <location filename="../Project/Project.py" line="5240" /> <source>Load session</source> <translation>Oturum yükleniyor</translation> </message> <message> - <location filename="../Project/Project.py" line="5250" /> + <location filename="../Project/Project.py" line="5247" /> <source>Load the projects session file.</source> <translation>Projelerin oturm dosyasını yükle.</translation> </message> <message> - <location filename="../Project/Project.py" line="5252" /> + <location filename="../Project/Project.py" line="5249" /> <source><b>Load session</b><p>This loads the projects session file. The session consists of the following data.<br>- all open source files<br>- all breakpoint<br>- the commandline arguments<br>- the working directory<br>- the exception reporting flag</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5268" /> - <location filename="../Project/Project.py" line="5267" /> + <location filename="../Project/Project.py" line="5265" /> + <location filename="../Project/Project.py" line="5264" /> <source>Save session</source> <translation>Oturumu kaydet</translation> </message> <message> - <location filename="../Project/Project.py" line="5274" /> + <location filename="../Project/Project.py" line="5271" /> <source>Save the projects session file.</source> <translation>Proje oturum dosyasını kaydet.</translation> </message> <message> - <location filename="../Project/Project.py" line="5276" /> + <location filename="../Project/Project.py" line="5273" /> <source><b>Save session</b><p>This saves the projects session file. The session consists of the following data.<br>- all open source files<br>- all breakpoint<br>- the commandline arguments<br>- the working directory<br>- the exception reporting flag</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5292" /> - <location filename="../Project/Project.py" line="5291" /> + <location filename="../Project/Project.py" line="5289" /> + <location filename="../Project/Project.py" line="5288" /> <source>Delete session</source> <translation>Oturumu sil</translation> </message> <message> - <location filename="../Project/Project.py" line="5298" /> + <location filename="../Project/Project.py" line="5295" /> <source>Delete the projects session file.</source> <translation>Proje oturum dosyasını sil.</translation> </message> <message> - <location filename="../Project/Project.py" line="5300" /> + <location filename="../Project/Project.py" line="5297" /> <source><b>Delete session</b><p>This deletes the projects session file</p></source> <translation><b>Oturumu Sil</b><p>Bu proje dosya oturumunu siler</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5315" /> + <location filename="../Project/Project.py" line="5312" /> <source>Code Metrics</source> <translation>Metrik Kod</translation> </message> <message> - <location filename="../Project/Project.py" line="5316" /> + <location filename="../Project/Project.py" line="5313" /> <source>&Code Metrics...</source> <translation>Me&trik Kod...</translation> </message> <message> + <location filename="../Project/Project.py" line="5320" /> + <source>Show some code metrics for the project.</source> + <translation>Proje için bazı metrik kodları göster.</translation> + </message> + <message> <location filename="../Project/Project.py" line="5323" /> - <source>Show some code metrics for the project.</source> - <translation>Proje için bazı metrik kodları göster.</translation> - </message> - <message> - <location filename="../Project/Project.py" line="5326" /> <source><b>Code Metrics...</b><p>This shows some code metrics for all Python files in the project.</p></source> <translation><b>Metrik Kodlar...</b><p>Bu proje içindeki tüm Python dosyalarının bazı metrik kodlarını gösterir.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5336" /> + <location filename="../Project/Project.py" line="5333" /> <source>Python Code Coverage</source> <translation>Python Kod Koruyucu</translation> </message> <message> - <location filename="../Project/Project.py" line="5337" /> + <location filename="../Project/Project.py" line="5334" /> <source>Code Co&verage...</source> <translation>Kod Koru&yucu...</translation> </message> <message> + <location filename="../Project/Project.py" line="5341" /> + <source>Show code coverage information for the project.</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../Project/Project.py" line="5344" /> - <source>Show code coverage information for the project.</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="5347" /> <source><b>Code Coverage...</b><p>This shows the code coverage information for all Python files in the project.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6781" /> - <location filename="../Project/Project.py" line="6768" /> - <location filename="../Project/Project.py" line="5357" /> + <location filename="../Project/Project.py" line="6778" /> + <location filename="../Project/Project.py" line="6765" /> + <location filename="../Project/Project.py" line="5354" /> <source>Profile Data</source> <translation>Veri Kesiti</translation> </message> <message> - <location filename="../Project/Project.py" line="5358" /> + <location filename="../Project/Project.py" line="5355" /> <source>&Profile Data...</source> <translation>&Veri kesiti...</translation> </message> <message> + <location filename="../Project/Project.py" line="5362" /> + <source>Show profiling data for the project.</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../Project/Project.py" line="5365" /> - <source>Show profiling data for the project.</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="5368" /> <source><b>Profile Data...</b><p>This shows the profiling data for the project.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6833" /> - <location filename="../Project/Project.py" line="5383" /> + <location filename="../Project/Project.py" line="6830" /> + <location filename="../Project/Project.py" line="5380" /> <source>Application Diagram</source> <translation>Uygulama Şeması</translation> </message> <message> - <location filename="../Project/Project.py" line="5384" /> + <location filename="../Project/Project.py" line="5381" /> <source>&Application Diagram...</source> <translation>Uygulama Şem&ası...</translation> </message> <message> + <location filename="../Project/Project.py" line="5388" /> + <source>Show a diagram of the project.</source> + <translation>Projenin bir şemasını göster.</translation> + </message> + <message> <location filename="../Project/Project.py" line="5391" /> - <source>Show a diagram of the project.</source> - <translation>Projenin bir şemasını göster.</translation> - </message> - <message> - <location filename="../Project/Project.py" line="5394" /> <source><b>Application Diagram...</b><p>This shows a diagram of the project.</p></source> <translation><b>Uygulama Şeması...</b><p>Bu projenin bir şemasını gösterir.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5403" /> + <location filename="../Project/Project.py" line="5400" /> <source>Load Diagram</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5404" /> + <location filename="../Project/Project.py" line="5401" /> <source>&Load Diagram...</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5410" /> + <location filename="../Project/Project.py" line="5407" /> <source>Load a diagram from file.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5412" /> + <location filename="../Project/Project.py" line="5409" /> <source><b>Load Diagram...</b><p>This loads a diagram from file.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="7001" /> - <location filename="../Project/Project.py" line="6946" /> - <location filename="../Project/Project.py" line="5427" /> + <location filename="../Project/Project.py" line="6998" /> + <location filename="../Project/Project.py" line="6943" /> + <location filename="../Project/Project.py" line="5424" /> <source>Create Package List</source> <translation>Paket Listesini Oluştur</translation> </message> <message> - <location filename="../Project/Project.py" line="5429" /> + <location filename="../Project/Project.py" line="5426" /> <source>Create &Package List</source> <translation type="unfinished">Eklenti &Arşivi Oluştur</translation> </message> <message> + <location filename="../Project/Project.py" line="5433" /> + <source>Create an initial PKGLIST file for an eric plugin.</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../Project/Project.py" line="5436" /> - <source>Create an initial PKGLIST file for an eric plugin.</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="5439" /> <source><b>Create Package List</b><p>This creates an initial list of files to include in an eric plugin archive. The list is created from the project file.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="7071" /> - <location filename="../Project/Project.py" line="5450" /> + <location filename="../Project/Project.py" line="7068" /> + <location filename="../Project/Project.py" line="5447" /> <source>Create Plugin Archives</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5452" /> + <location filename="../Project/Project.py" line="5449" /> <source>Create Plugin &Archives</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5458" /> + <location filename="../Project/Project.py" line="5455" /> <source>Create eric plugin archive files.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5460" /> + <location filename="../Project/Project.py" line="5457" /> <source><b>Create Plugin Archives</b><p>This creates eric plugin archive files using the list of files given in a PKGLIST* file. The archive name is built from the main script name if not designated in the package list file.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5472" /> + <location filename="../Project/Project.py" line="5469" /> <source>Create Plugin Archives (Snapshot)</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5474" /> + <location filename="../Project/Project.py" line="5471" /> <source>Create Plugin Archives (&Snapshot)</source> <translation type="unfinished" /> </message> <message> + <location filename="../Project/Project.py" line="5478" /> + <source>Create eric plugin archive files (snapshot releases).</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../Project/Project.py" line="5481" /> - <source>Create eric plugin archive files (snapshot releases).</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="5484" /> <source><b>Create Plugin Archives (Snapshot)</b><p>This creates eric plugin archive files using the list of files given in the PKGLIST* file. The archive name is built from the main script name if not designated in the package list file. The version entry of the main script is modified to reflect a snapshot release.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="7513" /> - <location filename="../Project/Project.py" line="7484" /> - <location filename="../Project/Project.py" line="7438" /> - <location filename="../Project/Project.py" line="7390" /> - <location filename="../Project/Project.py" line="5503" /> + <location filename="../Project/Project.py" line="7510" /> + <location filename="../Project/Project.py" line="7481" /> + <location filename="../Project/Project.py" line="7435" /> + <location filename="../Project/Project.py" line="7387" /> + <location filename="../Project/Project.py" line="5500" /> <source>Execute Make</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5504" /> + <location filename="../Project/Project.py" line="5501" /> <source>&Execute Make</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5510" /> + <location filename="../Project/Project.py" line="5507" /> <source>Perform a 'make' run.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5512" /> + <location filename="../Project/Project.py" line="5509" /> <source><b>Execute Make</b><p>This performs a 'make' run to rebuild the configured target.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="7490" /> - <location filename="../Project/Project.py" line="5522" /> + <location filename="../Project/Project.py" line="7487" /> + <location filename="../Project/Project.py" line="5519" /> <source>Test for Changes</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5523" /> + <location filename="../Project/Project.py" line="5520" /> <source>&Test for Changes</source> <translation type="unfinished" /> </message> <message> + <location filename="../Project/Project.py" line="5527" /> + <source>Question 'make', if a rebuild is needed.</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../Project/Project.py" line="5530" /> - <source>Question 'make', if a rebuild is needed.</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="5533" /> <source><b>Test for Changes</b><p>This questions 'make', if a rebuild of the configured target is necessary.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5551" /> + <location filename="../Project/Project.py" line="5548" /> <source>Create SBOM File</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5552" /> + <location filename="../Project/Project.py" line="5549" /> <source>Create &SBOM File</source> <translation type="unfinished" /> </message> <message> + <location filename="../Project/Project.py" line="5556" /> + <source>Create a SBOM file of the project dependencies.</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../Project/Project.py" line="5559" /> - <source>Create a SBOM file of the project dependencies.</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="5562" /> <source><b>Create SBOM File</b><p>This allows the creation of a SBOM file of the project dependencies. This may be based on various input sources and will be saved as a CycloneDX SBOM file.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5573" /> + <location filename="../Project/Project.py" line="5570" /> <source>Clear Byte Code Caches</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5574" /> + <location filename="../Project/Project.py" line="5571" /> <source>Clear Byte Code &Caches</source> <translation type="unfinished" /> </message> <message> + <location filename="../Project/Project.py" line="5578" /> + <source>Clear the byte code caches of the project.</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../Project/Project.py" line="5581" /> - <source>Clear the byte code caches of the project.</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="5584" /> <source><b>Clear Byte Code Caches</b><p>This deletes all directories containing byte code cache files.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5600" /> + <location filename="../Project/Project.py" line="5597" /> <source>About Black</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5601" /> + <location filename="../Project/Project.py" line="5598" /> <source>&Black</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5607" /> + <location filename="../Project/Project.py" line="5604" /> <source>Show some information about 'Black'.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5609" /> + <location filename="../Project/Project.py" line="5606" /> <source><b>Black</b><p>This shows some information about the installed 'Black' tool.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5621" /> + <location filename="../Project/Project.py" line="5618" /> <source>Format Code</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5622" /> + <location filename="../Project/Project.py" line="5619" /> <source>&Format Code</source> <translation type="unfinished" /> </message> <message> + <location filename="../Project/Project.py" line="5626" /> + <source>Format the project sources with 'Black'.</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../Project/Project.py" line="5629" /> - <source>Format the project sources with 'Black'.</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="5632" /> <source><b>Format Code</b><p>This shows a dialog to enter parameters for the formatting run and reformats the project sources using 'Black'.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5644" /> + <location filename="../Project/Project.py" line="5641" /> <source>Check Code Formatting</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5645" /> + <location filename="../Project/Project.py" line="5642" /> <source>&Check Code Formatting</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5652" /> + <location filename="../Project/Project.py" line="5649" /> <source>Check, if the project sources need to be reformatted with 'Black'.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5657" /> + <location filename="../Project/Project.py" line="5654" /> <source><b>Check Code Formatting</b><p>This shows a dialog to enter parameters for the format check run and performs a check, if the project sources need to be reformatted using 'Black'.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5670" /> + <location filename="../Project/Project.py" line="5667" /> <source>Code Formatting Diff</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5671" /> + <location filename="../Project/Project.py" line="5668" /> <source>Code Formatting &Diff</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5678" /> + <location filename="../Project/Project.py" line="5675" /> <source>Generate a unified diff of potential project source reformatting with 'Black'.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5684" /> + <location filename="../Project/Project.py" line="5681" /> <source><b>Diff Code Formatting</b><p>This shows a dialog to enter parameters for the format diff run and generates a unified diff of potential project source reformatting using 'Black'.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5849" /> - <location filename="../Project/Project.py" line="5799" /> - <location filename="../Project/Project.py" line="5798" /> - <location filename="../Project/Project.py" line="5698" /> - <location filename="../Project/Project.py" line="5697" /> + <location filename="../Project/Project.py" line="5846" /> + <location filename="../Project/Project.py" line="5796" /> + <location filename="../Project/Project.py" line="5795" /> + <location filename="../Project/Project.py" line="5695" /> + <location filename="../Project/Project.py" line="5694" /> <source>Configure</source> <translation type="unfinished">Yapılandırma</translation> </message> <message> - <location filename="../Project/Project.py" line="5705" /> + <location filename="../Project/Project.py" line="5702" /> <source>Enter the parameters for formatting the project sources with 'Black'.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5710" /> + <location filename="../Project/Project.py" line="5707" /> <source><b>Configure</b><p>This shows a dialog to enter the parameters for formatting the project sources with 'Black'.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5726" /> + <location filename="../Project/Project.py" line="5723" /> <source>About isort</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5727" /> + <location filename="../Project/Project.py" line="5724" /> <source>&isort</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5733" /> + <location filename="../Project/Project.py" line="5730" /> <source>Show some information about 'isort'.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5735" /> + <location filename="../Project/Project.py" line="5732" /> <source><b>isort</b><p>This shows some information about the installed 'isort' tool.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5748" /> - <location filename="../Project/Project.py" line="5747" /> + <location filename="../Project/Project.py" line="5745" /> + <location filename="../Project/Project.py" line="5744" /> <source>Sort Imports</source> <translation type="unfinished" /> </message> <message> + <location filename="../Project/Project.py" line="5752" /> + <source>Sort the import statements of the project sources with 'isort'.</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../Project/Project.py" line="5755" /> - <source>Sort the import statements of the project sources with 'isort'.</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="5758" /> <source><b>Sort Imports</b><p>This shows a dialog to enter parameters for the imports sorting run and sorts the import statements of the project sources using 'isort'.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5772" /> - <location filename="../Project/Project.py" line="5771" /> + <location filename="../Project/Project.py" line="5769" /> + <location filename="../Project/Project.py" line="5768" /> <source>Imports Sorting Diff</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5779" /> + <location filename="../Project/Project.py" line="5776" /> <source>Generate a unified diff of potential project source imports resorting with 'isort'.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5785" /> + <location filename="../Project/Project.py" line="5782" /> <source><b>Imports Sorting Diff</b><p>This shows a dialog to enter parameters for the imports sorting diff run and generates a unified diff of potential project source changes using 'isort'.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5806" /> + <location filename="../Project/Project.py" line="5803" /> <source>Enter the parameters for resorting the project sources import statements with 'isort'.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5812" /> + <location filename="../Project/Project.py" line="5809" /> <source><b>Configure</b><p>This shows a dialog to enter the parameters for resorting the import statements of the project sources with 'isort'.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5828" /> + <location filename="../Project/Project.py" line="5825" /> <source>Install Project</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5829" /> + <location filename="../Project/Project.py" line="5826" /> <source>&Install Project</source> <translation type="unfinished" /> </message> <message> + <location filename="../Project/Project.py" line="5833" /> + <source>Install the project into the embedded environment.</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../Project/Project.py" line="5836" /> - <source>Install the project into the embedded environment.</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="5839" /> <source><b>Install Project</b><p>This installs the project into the embedded virtual environment in editable mode (i.e. development mode).</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5850" /> + <location filename="../Project/Project.py" line="5847" /> <source>&Configure</source> <translation type="unfinished" /> </message> <message> + <location filename="../Project/Project.py" line="5854" /> + <source>Configure the embedded environment.</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../Project/Project.py" line="5857" /> - <source>Configure the embedded environment.</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="5860" /> <source><b>Configure</b><p>This opens a dialog to configure the embedded virtual environment of the project.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5870" /> + <location filename="../Project/Project.py" line="5867" /> <source>Upgrade</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5871" /> + <location filename="../Project/Project.py" line="5868" /> <source>&Upgrade</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5877" /> + <location filename="../Project/Project.py" line="5874" /> <source>Upgrade the embedded environment.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5879" /> + <location filename="../Project/Project.py" line="5876" /> <source><b>Upgrade</b><p>This opens a dialog to enter the parameters to upgrade the embedded virtual environment of the project.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5891" /> + <location filename="../Project/Project.py" line="5888" /> <source>Recreate</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5892" /> + <location filename="../Project/Project.py" line="5889" /> <source>&Recreate</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5898" /> + <location filename="../Project/Project.py" line="5895" /> <source>Recreate the embedded environment.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5900" /> + <location filename="../Project/Project.py" line="5897" /> <source><b>Recreate</b><p>This opens a dialog to enter the parameters to recreate the embedded virtual environment of the project. The existing environment is cleared first.</p></source> <translation type="unfinished" /> </message> <message> + <location filename="../Project/Project.py" line="5929" /> + <source>&Project</source> + <translation>&Proje</translation> + </message> + <message> + <location filename="../Project/Project.py" line="5930" /> + <source>Open &Recent Projects</source> + <translation>Geçmiş P&rojeleri Aç</translation> + </message> + <message> <location filename="../Project/Project.py" line="5932" /> - <source>&Project</source> - <translation>&Proje</translation> + <source>Session</source> + <translation>Oturum</translation> </message> <message> <location filename="../Project/Project.py" line="5933" /> - <source>Open &Recent Projects</source> - <translation>Geçmiş P&rojeleri Aç</translation> - </message> - <message> - <location filename="../Project/Project.py" line="5935" /> - <source>Session</source> - <translation>Oturum</translation> + <source>Debugger</source> + <translation>Hata Ayıklayıcı</translation> + </message> + <message> + <location filename="../Project/Project.py" line="5934" /> + <source>Embedded Environment</source> + <translation type="unfinished" /> </message> <message> <location filename="../Project/Project.py" line="5936" /> - <source>Debugger</source> - <translation>Hata Ayıklayıcı</translation> + <source>Project-T&ools</source> + <translation type="unfinished" /> </message> <message> <location filename="../Project/Project.py" line="5937" /> - <source>Embedded Environment</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="5939" /> - <source>Project-T&ools</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="5940" /> <source>&Version Control</source> <translation>S&ürüm Kontrol</translation> </message> <message> - <location filename="../Project/Project.py" line="5944" /> + <location filename="../Project/Project.py" line="5941" /> <source>Chec&k</source> <translation>&Kontrol</translation> </message> <message> + <location filename="../Project/Project.py" line="5943" /> + <source>Code &Formatting</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Project/Project.py" line="5945" /> + <source>Sho&w</source> + <translation>G&öster</translation> + </message> + <message> <location filename="../Project/Project.py" line="5946" /> - <source>Code &Formatting</source> - <translation type="unfinished" /> + <source>&Diagrams</source> + <translation>Şemalar &D</translation> + </message> + <message> + <location filename="../Project/Project.py" line="5947" /> + <source>Pac&kagers</source> + <translation>Pa&ketleyici</translation> </message> <message> <location filename="../Project/Project.py" line="5948" /> - <source>Sho&w</source> - <translation>G&öster</translation> - </message> - <message> - <location filename="../Project/Project.py" line="5949" /> - <source>&Diagrams</source> - <translation>Şemalar &D</translation> + <source>Source &Documentation</source> + <translation>Kaynak Belgeleme &D</translation> </message> <message> <location filename="../Project/Project.py" line="5950" /> - <source>Pac&kagers</source> - <translation>Pa&ketleyici</translation> + <source>Make</source> + <translation type="unfinished" /> </message> <message> <location filename="../Project/Project.py" line="5951" /> - <source>Source &Documentation</source> - <translation>Kaynak Belgeleme &D</translation> - </message> - <message> - <location filename="../Project/Project.py" line="5953" /> - <source>Make</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="5954" /> <source>Other Tools</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6116" /> - <location filename="../Project/Project.py" line="6114" /> + <location filename="../Project/Project.py" line="6113" /> + <location filename="../Project/Project.py" line="6111" /> <source>Project</source> <translation>Proje</translation> </message> <message> - <location filename="../Project/Project.py" line="6198" /> + <location filename="../Project/Project.py" line="6195" /> <source>&Clear</source> <translation>T&emizle</translation> </message> <message> - <location filename="../Project/Project.py" line="6395" /> + <location filename="../Project/Project.py" line="6392" /> <source>Search New Files</source> <translation>Yeni Dosyaları Ara</translation> </message> <message> - <location filename="../Project/Project.py" line="6396" /> + <location filename="../Project/Project.py" line="6393" /> <source>There were no new files found to be added.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6557" /> - <location filename="../Project/Project.py" line="6544" /> + <location filename="../Project/Project.py" line="6554" /> + <location filename="../Project/Project.py" line="6541" /> <source>Version Control System</source> <translation>Sürüm Kontrol Sistemi</translation> </message> <message> - <location filename="../Project/Project.py" line="6545" /> + <location filename="../Project/Project.py" line="6542" /> <source><p>The selected VCS <b>{0}</b> could not be found. <br/>Reverting override.</p><p>{1}</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6558" /> + <location filename="../Project/Project.py" line="6555" /> <source><p>The selected VCS <b>{0}</b> could not be found.<br/>Disabling version control.</p><p>{1}</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6715" /> + <location filename="../Project/Project.py" line="6712" /> <source>Coverage Data</source> <translation>Veri Kapsamı</translation> </message> <message> - <location filename="../Project/Project.py" line="6769" /> - <location filename="../Project/Project.py" line="6716" /> + <location filename="../Project/Project.py" line="6766" /> + <location filename="../Project/Project.py" line="6713" /> <source>There is no main script defined for the current project. Aborting</source> <translation>Bugeçerli projede tanımlanan ana betik değil. Durduruluyor</translation> </message> <message> - <location filename="../Project/Project.py" line="6728" /> + <location filename="../Project/Project.py" line="6725" /> <source>Code Coverage</source> <translation>Kod Koruyucu</translation> </message> <message> - <location filename="../Project/Project.py" line="6729" /> + <location filename="../Project/Project.py" line="6726" /> <source>Please select a coverage file</source> <translation>Lütfen bir koruyucu dosya seçiniz</translation> </message> <message> - <location filename="../Project/Project.py" line="6782" /> + <location filename="../Project/Project.py" line="6779" /> <source>Please select a profile file</source> <translation>Lütfen kesit dosyasını seçiniz</translation> </message> <message> - <location filename="../Project/Project.py" line="6834" /> + <location filename="../Project/Project.py" line="6831" /> <source>Include module names?</source> <translation>Modül isimleri dahil edilsin mi?</translation> </message> <message> - <location filename="../Project/Project.py" line="6947" /> + <location filename="../Project/Project.py" line="6944" /> <source><p>The file <b>PKGLIST</b> already exists.</p><p>Overwrite it?</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="7002" /> + <location filename="../Project/Project.py" line="6999" /> <source><p>The file <b>PKGLIST</b> could not be created.</p><p>Reason: {0}</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="7298" /> - <location filename="../Project/Project.py" line="7254" /> - <location filename="../Project/Project.py" line="7204" /> - <location filename="../Project/Project.py" line="7193" /> - <location filename="../Project/Project.py" line="7175" /> - <location filename="../Project/Project.py" line="7142" /> - <location filename="../Project/Project.py" line="7112" /> - <location filename="../Project/Project.py" line="7084" /> - <location filename="../Project/Project.py" line="7054" /> - <location filename="../Project/Project.py" line="7040" /> - <location filename="../Project/Project.py" line="7023" /> + <location filename="../Project/Project.py" line="7295" /> + <location filename="../Project/Project.py" line="7251" /> + <location filename="../Project/Project.py" line="7201" /> + <location filename="../Project/Project.py" line="7190" /> + <location filename="../Project/Project.py" line="7172" /> + <location filename="../Project/Project.py" line="7139" /> + <location filename="../Project/Project.py" line="7109" /> + <location filename="../Project/Project.py" line="7081" /> + <location filename="../Project/Project.py" line="7051" /> + <location filename="../Project/Project.py" line="7037" /> + <location filename="../Project/Project.py" line="7020" /> <source>Create Plugin Archive</source> <translation>Eklenti Arşivi Oluştur</translation> </message> <message> - <location filename="../Project/Project.py" line="7024" /> + <location filename="../Project/Project.py" line="7021" /> <source>The project does not have a main script defined. Aborting...</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="7041" /> + <location filename="../Project/Project.py" line="7038" /> <source>Select package lists:</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="7055" /> + <location filename="../Project/Project.py" line="7052" /> <source><p>No package list files (PKGLIST*) available or selected. Aborting...</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="7063" /> + <location filename="../Project/Project.py" line="7060" /> <source>Creating plugin archives...</source> <translation type="unfinished" /> </message> <message> + <location filename="../Project/Project.py" line="7061" /> + <source>Abort</source> + <translation type="unfinished">Vazgeç</translation> + </message> + <message> <location filename="../Project/Project.py" line="7064" /> - <source>Abort</source> - <translation type="unfinished">Vazgeç</translation> - </message> - <message> - <location filename="../Project/Project.py" line="7067" /> <source>%v/%m Archives</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="7085" /> + <location filename="../Project/Project.py" line="7082" /> <source><p>The file <b>{0}</b> could not be read.</p><p>Reason: {1}</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="7113" /> + <location filename="../Project/Project.py" line="7110" /> <source><p>The file <b>{0}</b> is not ready yet.</p><p>Please rework it and delete the'; initial_list' line of the header.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="7143" /> + <location filename="../Project/Project.py" line="7140" /> <source><p>The eric plugin archive file <b>{0}</b> could not be created.</p><p>Reason: {1}</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="7176" /> + <location filename="../Project/Project.py" line="7173" /> <source><p>The file <b>{0}</b> could not be stored in the archive. Ignoring it.</p><p>Reason: {1}</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="7194" /> + <location filename="../Project/Project.py" line="7191" /> <source><p>The eric plugin archive files were created with some errors.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="7205" /> + <location filename="../Project/Project.py" line="7202" /> <source><p>The eric plugin archive files were created successfully.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="7255" /> + <location filename="../Project/Project.py" line="7252" /> <source><p>The plugin file <b>{0}</b> could not be read.</p><p>Reason: {1}</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="7299" /> + <location filename="../Project/Project.py" line="7296" /> <source><p>The plugin file <b>{0}</b> could not be read.</p> <p>Reason: {1}</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="7391" /> + <location filename="../Project/Project.py" line="7388" /> <source>'Make' is not supported for remote projects. Aborting...</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="7439" /> + <location filename="../Project/Project.py" line="7436" /> <source>The make process did not start.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="7485" /> + <location filename="../Project/Project.py" line="7482" /> <source>The make process crashed.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="7493" /> + <location filename="../Project/Project.py" line="7490" /> <source><p>There are changes that require the configured make target <b>{0}</b> to be rebuilt.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="7498" /> + <location filename="../Project/Project.py" line="7495" /> <source><p>There are changes that require the default make target to be rebuilt.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="7514" /> + <location filename="../Project/Project.py" line="7511" /> <source>The makefile contains errors.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="7944" /> + <location filename="../Project/Project.py" line="7941" /> <source>Interpreter Missing</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="7945" /> + <location filename="../Project/Project.py" line="7942" /> <source>The configured interpreter of the embedded environment does not exist anymore. Shall the environment be upgraded?</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="8026" /> + <location filename="../Project/Project.py" line="8023" /> <source>Open Remote Project</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="8057" /> - <location filename="../Project/Project.py" line="8042" /> + <location filename="../Project/Project.py" line="8054" /> + <location filename="../Project/Project.py" line="8039" /> <source>Save Remote Project</source> <translation type="unfinished" /> </message> @@ -64475,8 +64488,8 @@ <translation>VCS Durumu</translation> </message> <message> - <location filename="../Project/ProjectBrowserModel.py" line="922" /> - <location filename="../Project/ProjectBrowserModel.py" line="900" /> + <location filename="../Project/ProjectBrowserModel.py" line="926" /> + <location filename="../Project/ProjectBrowserModel.py" line="904" /> <location filename="../Project/ProjectBrowserModel.py" line="548" /> <location filename="../Project/ProjectBrowserModel.py" line="418" /> <source>local</source> @@ -68918,7 +68931,7 @@ <context> <name>PythonDisViewer</name> <message> - <location filename="../UI/PythonDisViewer.py" line="61" /> + <location filename="../UI/PythonDisViewer.py" line="62" /> <location filename="../UI/PythonDisViewer.ui" line="0" /> <source>Disassembly</source> <translation type="unfinished" /> @@ -68934,160 +68947,160 @@ <translation type="unfinished" /> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="73" /> + <location filename="../UI/PythonDisViewer.py" line="74" /> <source>Line</source> <translation type="unfinished">Satır</translation> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="74" /> - <source>Offset</source> - <translation type="unfinished">Ofset</translation> - </message> - <message> <location filename="../UI/PythonDisViewer.py" line="75" /> - <source>Operation</source> - <translation type="unfinished" /> + <source>Offset</source> + <translation type="unfinished">Ofset</translation> </message> <message> <location filename="../UI/PythonDisViewer.py" line="76" /> - <source>Parameters</source> + <source>Operation</source> <translation type="unfinished" /> </message> <message> <location filename="../UI/PythonDisViewer.py" line="77" /> + <source>Parameters</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/PythonDisViewer.py" line="78" /> <source>Interpreted Parameters</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="80" /> + <location filename="../UI/PythonDisViewer.py" line="81" /> <source>Key</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="80" /> + <location filename="../UI/PythonDisViewer.py" line="81" /> <source>Value</source> <translation type="unfinished">Değer</translation> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="85" /> + <location filename="../UI/PythonDisViewer.py" line="86" /> <source>Show Code Info</source> <translation type="unfinished" /> </message> <message> + <location filename="../UI/PythonDisViewer.py" line="97" /> + <location filename="../UI/PythonDisViewer.py" line="89" /> + <source>Expand All</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/PythonDisViewer.py" line="99" /> + <location filename="../UI/PythonDisViewer.py" line="90" /> + <source>Collapse All</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/PythonDisViewer.py" line="102" /> + <location filename="../UI/PythonDisViewer.py" line="92" /> + <source>Configure...</source> + <translation type="unfinished">Ayarlanıyor...</translation> + </message> + <message> <location filename="../UI/PythonDisViewer.py" line="96" /> - <location filename="../UI/PythonDisViewer.py" line="88" /> - <source>Expand All</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/PythonDisViewer.py" line="98" /> - <location filename="../UI/PythonDisViewer.py" line="89" /> - <source>Collapse All</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/PythonDisViewer.py" line="101" /> - <location filename="../UI/PythonDisViewer.py" line="91" /> - <source>Configure...</source> - <translation type="unfinished">Ayarlanıyor...</translation> - </message> - <message> - <location filename="../UI/PythonDisViewer.py" line="95" /> <source>Hide</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="448" /> + <location filename="../UI/PythonDisViewer.py" line="455" /> <source>No editor has been opened.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="459" /> + <location filename="../UI/PythonDisViewer.py" line="466" /> <source>The current editor does not contain any source code.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="465" /> + <location filename="../UI/PythonDisViewer.py" line="472" /> <source>The current editor does not contain Python source code.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="509" /> + <location filename="../UI/PythonDisViewer.py" line="516" /> <source>Disassembly of last traceback</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="672" /> + <location filename="../UI/PythonDisViewer.py" line="694" /> <source>Code Object '{0}'</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="784" /> + <location filename="../UI/PythonDisViewer.py" line="806" /> <source>Name</source> <translation type="unfinished">Adı</translation> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="786" /> + <location filename="../UI/PythonDisViewer.py" line="808" /> <source>Filename</source> <translation type="unfinished">Dosyaadı</translation> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="790" /> - <source>First Line</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/PythonDisViewer.py" line="794" /> - <source>Argument Count</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/PythonDisViewer.py" line="799" /> - <source>Positional-only Arguments</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/PythonDisViewer.py" line="805" /> - <source>Keyword-only Arguments</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/PythonDisViewer.py" line="809" /> - <source>Number of Locals</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../UI/PythonDisViewer.py" line="812" /> - <source>Stack Size</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/PythonDisViewer.py" line="814" /> - <source>Flags</source> + <source>First Line</source> <translation type="unfinished" /> </message> <message> <location filename="../UI/PythonDisViewer.py" line="816" /> + <source>Argument Count</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/PythonDisViewer.py" line="821" /> + <source>Positional-only Arguments</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/PythonDisViewer.py" line="827" /> + <source>Keyword-only Arguments</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/PythonDisViewer.py" line="831" /> + <source>Number of Locals</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/PythonDisViewer.py" line="834" /> + <source>Stack Size</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/PythonDisViewer.py" line="836" /> + <source>Flags</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/PythonDisViewer.py" line="838" /> <source>Constants</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="818" /> + <location filename="../UI/PythonDisViewer.py" line="840" /> <source>Names</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="820" /> + <location filename="../UI/PythonDisViewer.py" line="842" /> <source>Variable Names</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="822" /> + <location filename="../UI/PythonDisViewer.py" line="844" /> <source>Free Variables</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="824" /> + <location filename="../UI/PythonDisViewer.py" line="846" /> <source>Cell Variables</source> <translation type="unfinished" /> </message> @@ -74185,32 +74198,32 @@ <context> <name>SessionFile</name> <message> - <location filename="../Sessions/SessionFile.py" line="247" /> + <location filename="../Sessions/SessionFile.py" line="249" /> <source>Save Remote Session</source> <translation type="unfinished" /> </message> <message> - <location filename="../Sessions/SessionFile.py" line="250" /> + <location filename="../Sessions/SessionFile.py" line="252" /> <source>Save Session</source> <translation type="unfinished" /> </message> <message> - <location filename="../Sessions/SessionFile.py" line="258" /> + <location filename="../Sessions/SessionFile.py" line="260" /> <source><p>The session file <b>{0}</b> could not be written.</p><p>Reason: {1}</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Sessions/SessionFile.py" line="282" /> + <location filename="../Sessions/SessionFile.py" line="284" /> <source>Read Remote Session</source> <translation type="unfinished" /> </message> <message> - <location filename="../Sessions/SessionFile.py" line="285" /> + <location filename="../Sessions/SessionFile.py" line="287" /> <source>Read Session</source> <translation type="unfinished" /> </message> <message> - <location filename="../Sessions/SessionFile.py" line="293" /> + <location filename="../Sessions/SessionFile.py" line="295" /> <source><p>The session file <b>{0}</b> could not be read.</p><p>Reason: {1}</p></source> <translation type="unfinished" /> </message> @@ -94358,1052 +94371,1052 @@ <context> <name>ViewManager</name> <message> - <location filename="../ViewManager/ViewManager.py" line="615" /> + <location filename="../ViewManager/ViewManager.py" line="625" /> <source>New</source> <translation>Yeni</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="617" /> + <location filename="../ViewManager/ViewManager.py" line="627" /> <source>&New</source> <translation>Ye&ni</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="619" /> - <source>Ctrl+N</source> - <comment>File|New</comment> - <translation>Ctrl+N</translation> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="626" /> - <source>Open an empty editor window</source> - <translation>Boş bir düzenleyici penceresi aç</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="629" /> + <source>Ctrl+N</source> + <comment>File|New</comment> + <translation>Ctrl+N</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="636" /> + <source>Open an empty editor window</source> + <translation>Boş bir düzenleyici penceresi aç</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="639" /> <source><b>New</b><p>An empty editor window will be created.</p></source> <translation><b>Yeni</b><p>Boş bir düzenleme penceresi oluşturulacak.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="638" /> + <location filename="../ViewManager/ViewManager.py" line="648" /> <source>Open</source> <translation>Aç</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="640" /> + <location filename="../ViewManager/ViewManager.py" line="650" /> <source>&Open...</source> <translation>&Aç...</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="642" /> + <location filename="../ViewManager/ViewManager.py" line="652" /> <source>Ctrl+O</source> <comment>File|Open</comment> <translation>Ctrl+O</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="649" /> + <location filename="../ViewManager/ViewManager.py" line="659" /> <source>Open a file</source> <translation>Bir dosya aç</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="652" /> + <location filename="../ViewManager/ViewManager.py" line="662" /> <source><b>Open a file</b><p>You will be asked for the name of a file to be opened in an editor window.</p></source> <translation><b>Bir dosya aç</b><p>Düzenleyici penceresinde açmak istediğiniz dosyanın adı sorulmaktadır.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="663" /> + <location filename="../ViewManager/ViewManager.py" line="673" /> <source>Open (Remote)</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="665" /> - <source>Open (Remote)...</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="672" /> - <source>Open a remote file</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="675" /> + <source>Open (Remote)...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="682" /> + <source>Open a remote file</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="685" /> <source><b>Open a remote file</b><p>You will be asked for the name of a remote file to be opened in an editor window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="689" /> - <location filename="../ViewManager/ViewManager.py" line="687" /> - <source>Reload</source> - <translation type="unfinished">Yeniden Yükle</translation> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="696" /> - <source>Reload the current file</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="699" /> + <location filename="../ViewManager/ViewManager.py" line="697" /> + <source>Reload</source> + <translation type="unfinished">Yeniden Yükle</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="706" /> + <source>Reload the current file</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="709" /> <source><b>Reload</b><p>Reload the contents of current editor window. If the editor contents was modified, a warning will be issued.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="712" /> + <location filename="../ViewManager/ViewManager.py" line="722" /> <source>Close</source> <translation>Kapat</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="714" /> + <location filename="../ViewManager/ViewManager.py" line="724" /> <source>&Close</source> <translation>&Kapat</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="716" /> - <source>Ctrl+W</source> - <comment>File|Close</comment> - <translation>Ctrl+W</translation> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="723" /> - <source>Close the current window</source> - <translation>Geçerli pencereyi kapat</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="726" /> - <source><b>Close Window</b><p>Close the current window.</p></source> - <translation><b>Pencereyi kapat</b><p>Geçerli pencereyi kapat.</p></translation> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="735" /> - <source>Close All</source> - <translation>Hepsini Kapat</translation> + <source>Ctrl+W</source> + <comment>File|Close</comment> + <translation>Ctrl+W</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="733" /> + <source>Close the current window</source> + <translation>Geçerli pencereyi kapat</translation> </message> <message> <location filename="../ViewManager/ViewManager.py" line="736" /> - <source>Clos&e All</source> - <translation>H&epsini Kapat</translation> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="743" /> - <source>Close all editor windows</source> - <translation>Tüm düzenleme pencerelerini kapat</translation> + <source><b>Close Window</b><p>Close the current window.</p></source> + <translation><b>Pencereyi kapat</b><p>Geçerli pencereyi kapat.</p></translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="745" /> + <source>Close All</source> + <translation>Hepsini Kapat</translation> </message> <message> <location filename="../ViewManager/ViewManager.py" line="746" /> + <source>Clos&e All</source> + <translation>H&epsini Kapat</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="753" /> + <source>Close all editor windows</source> + <translation>Tüm düzenleme pencerelerini kapat</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="756" /> <source><b>Close All Windows</b><p>Close all editor windows.</p></source> <translation><b>Tüm Pencereleri Kapat</b><p>Tüm düzenleme pencerelerini kapat.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="759" /> + <location filename="../ViewManager/ViewManager.py" line="769" /> <source>Save</source> <translation>Kaydet</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="761" /> + <location filename="../ViewManager/ViewManager.py" line="771" /> <source>&Save</source> <translation>&Kaydet</translation> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="316" /> - <location filename="../ViewManager/ViewManager.py" line="763" /> + <location filename="../ViewManager/ViewManager.py" line="773" /> <source>Ctrl+S</source> <comment>File|Save</comment> <translation>Ctrl+S</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="770" /> + <location filename="../ViewManager/ViewManager.py" line="780" /> <source>Save the current file</source> <translation>Geçerli dosyayı kaydet</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="773" /> - <source><b>Save File</b><p>Save the contents of current editor window.</p></source> - <translation><b>Dosya Kaydet</b><p>Geçerli düzenleyici penceresinin içeriğini kaydet.</p></translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="783" /> + <source><b>Save File</b><p>Save the contents of current editor window.</p></source> + <translation><b>Dosya Kaydet</b><p>Geçerli düzenleyici penceresinin içeriğini kaydet.</p></translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="793" /> <source>Save as</source> <translation>Farklı kaydet</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="785" /> + <location filename="../ViewManager/ViewManager.py" line="795" /> <source>Save &as...</source> <translation>Farklı k&aydet...</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="787" /> + <location filename="../ViewManager/ViewManager.py" line="797" /> <source>Shift+Ctrl+S</source> <comment>File|Save As</comment> <translation>Shift+Ctrl+S</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="796" /> + <location filename="../ViewManager/ViewManager.py" line="806" /> <source>Save the current file to a new one</source> <translation>Geçerli dosyayı yeni bir tane olarak kaydet</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="801" /> + <location filename="../ViewManager/ViewManager.py" line="811" /> <source><b>Save File as</b><p>Save the contents of the current editor window to a new file. The file can be entered in a file selection dialog.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="812" /> + <location filename="../ViewManager/ViewManager.py" line="822" /> <source>Save as (Remote)</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="814" /> + <location filename="../ViewManager/ViewManager.py" line="824" /> <source>Save as (Remote)...</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="821" /> + <location filename="../ViewManager/ViewManager.py" line="831" /> <source>Save the current file to a new one on an eric-ide server</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="827" /> + <location filename="../ViewManager/ViewManager.py" line="837" /> <source><b>Save File as (Remote)</b><p>Save the contents of the current editor window to a new file on the connected eric-ide server. The file can be entered in a file selection dialog.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="839" /> + <location filename="../ViewManager/ViewManager.py" line="849" /> <source>Save Copy</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="841" /> - <source>Save &Copy...</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="848" /> - <source>Save a copy of the current file</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="851" /> + <source>Save &Copy...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="858" /> + <source>Save a copy of the current file</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="861" /> <source><b>Save Copy</b><p>Save a copy of the contents of current editor window. The file can be entered in a file selection dialog.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="862" /> + <location filename="../ViewManager/ViewManager.py" line="872" /> <source>Save all</source> <translation>Hepsini kaydet</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="864" /> - <source>Save a&ll</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="871" /> - <source>Save all files</source> - <translation>Tüm dosyaları kaydet</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="874" /> + <source>Save a&ll</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="881" /> + <source>Save all files</source> + <translation>Tüm dosyaları kaydet</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="884" /> <source><b>Save All Files</b><p>Save the contents of all editor windows.</p></source> <translation><b>Tüm Dosyaları Kaydet</b><p>Tüm düzenleyici pencerelerindeki içerikleri kaydet.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="886" /> + <location filename="../ViewManager/ViewManager.py" line="896" /> <source>Print</source> <translation>Yazdır</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="888" /> + <location filename="../ViewManager/ViewManager.py" line="898" /> <source>&Print</source> <translation>&Yazdır</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="890" /> + <location filename="../ViewManager/ViewManager.py" line="900" /> <source>Ctrl+P</source> <comment>File|Print</comment> <translation>Ctrl+P</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="897" /> + <location filename="../ViewManager/ViewManager.py" line="907" /> <source>Print the current file</source> <translation>Geçerli dosyayı yazdır</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="900" /> + <location filename="../ViewManager/ViewManager.py" line="910" /> <source><b>Print File</b><p>Print the contents of current editor window.</p></source> <translation><b>Dosya Yazdır</b><p>Geçerli düzenleyici penceresindeki içeriği yazdır.</p></translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="780" /> - <location filename="../ViewManager/ViewManager.py" line="913" /> - <location filename="../ViewManager/ViewManager.py" line="911" /> + <location filename="../ViewManager/ViewManager.py" line="923" /> + <location filename="../ViewManager/ViewManager.py" line="921" /> <source>Print Preview</source> <translation>Baskı Öngörünümü</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="920" /> + <location filename="../ViewManager/ViewManager.py" line="930" /> <source>Print preview of the current file</source> <translation>Geçerli dosyanın baskı öngörünümü</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="925" /> + <location filename="../ViewManager/ViewManager.py" line="935" /> <source><b>Print Preview</b><p>Print preview of the current editor window.</p></source> <translation><b>Yazıcı Öngörünümü</b><p>Geçerli düzenleyici penceresinin yazıcı öngörünümü.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="936" /> + <location filename="../ViewManager/ViewManager.py" line="946" /> <source>Find File</source> <translation type="unfinished">Dosya Bul</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="938" /> + <location filename="../ViewManager/ViewManager.py" line="948" /> <source>Find &File...</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="940" /> + <location filename="../ViewManager/ViewManager.py" line="950" /> <source>Alt+Ctrl+F</source> <comment>File|Find File</comment> <translation type="unfinished">Alt+Ctrl+F</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="949" /> + <location filename="../ViewManager/ViewManager.py" line="959" /> <source>Search for a file by entering a search pattern</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="954" /> + <location filename="../ViewManager/ViewManager.py" line="964" /> <source><b>Find File</b><p>This searches for a file by entering a search pattern.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="970" /> + <location filename="../ViewManager/ViewManager.py" line="980" /> <source>&File</source> <translation>&Dosya</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="972" /> + <location filename="../ViewManager/ViewManager.py" line="982" /> <source>Open &Recent Files</source> <translation>Geçmiş Dosyala&rı Aç</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="976" /> + <location filename="../ViewManager/ViewManager.py" line="986" /> <source>Open &Bookmarked Files</source> <translation>Yerimi D&osyalarını Aç</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1024" /> - <location filename="../ViewManager/ViewManager.py" line="1022" /> + <location filename="../ViewManager/ViewManager.py" line="1034" /> + <location filename="../ViewManager/ViewManager.py" line="1032" /> <source>File</source> <translation>Dosya</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1051" /> + <location filename="../ViewManager/ViewManager.py" line="1061" /> <source>Export as</source> <translation>Farklı Dışaktar</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1074" /> + <location filename="../ViewManager/ViewManager.py" line="1084" /> <source>Undo</source> <translation>Geri Al</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1076" /> + <location filename="../ViewManager/ViewManager.py" line="1086" /> <source>&Undo</source> <translation>&Geri al</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1078" /> + <location filename="../ViewManager/ViewManager.py" line="1088" /> <source>Ctrl+Z</source> <comment>Edit|Undo</comment> <translation>Ctrl+Z</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1081" /> + <location filename="../ViewManager/ViewManager.py" line="1091" /> <source>Alt+Backspace</source> <comment>Edit|Undo</comment> <translation>Alt+Backspace</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1087" /> + <location filename="../ViewManager/ViewManager.py" line="1097" /> <source>Undo the last change</source> <translation>Enson değişikliği geri al</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1090" /> - <source><b>Undo</b><p>Undo the last change done in the current editor.</p></source> - <translation><b>Geri Al</b><p>Geçerli düzenleyicide yapılan son değişikliği geri al.</p></translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="1100" /> + <source><b>Undo</b><p>Undo the last change done in the current editor.</p></source> + <translation><b>Geri Al</b><p>Geçerli düzenleyicide yapılan son değişikliği geri al.</p></translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="1110" /> <source>Redo</source> <translation>İleri al</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1102" /> + <location filename="../ViewManager/ViewManager.py" line="1112" /> <source>&Redo</source> <translation>&İleri al</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1104" /> + <location filename="../ViewManager/ViewManager.py" line="1114" /> <source>Ctrl+Shift+Z</source> <comment>Edit|Redo</comment> <translation>Ctrl+Shift+Z</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1111" /> + <location filename="../ViewManager/ViewManager.py" line="1121" /> <source>Redo the last change</source> <translation>Son değişikliği ileri al</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1114" /> + <location filename="../ViewManager/ViewManager.py" line="1124" /> <source><b>Redo</b><p>Redo the last change done in the current editor.</p></source> <translation><b>İleri Al</b><p>Geçerli düzenleyicide yapılan son değişikliği ileri alır.</p></translation> </message> <message> + <location filename="../ViewManager/ViewManager.py" line="1144" /> <location filename="../ViewManager/ViewManager.py" line="1134" /> - <location filename="../ViewManager/ViewManager.py" line="1124" /> <source>Revert to last saved state</source> <translation>En son kaydedileni eski haline getir</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1125" /> + <location filename="../ViewManager/ViewManager.py" line="1135" /> <source>Re&vert to last saved state</source> <translation>En son kaydedileni e&ski haline getir</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1127" /> + <location filename="../ViewManager/ViewManager.py" line="1137" /> <source>Ctrl+Y</source> <comment>Edit|Revert</comment> <translation>Ctrl+Y</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1137" /> + <location filename="../ViewManager/ViewManager.py" line="1147" /> <source><b>Revert to last saved state</b><p>Undo all changes up to the last saved state of the current editor.</p></source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="343" /> - <location filename="../ViewManager/ViewManager.py" line="1150" /> + <location filename="../ViewManager/ViewManager.py" line="1160" /> <source>Cut</source> <translation>Kes</translation> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="345" /> - <location filename="../ViewManager/ViewManager.py" line="1152" /> + <location filename="../ViewManager/ViewManager.py" line="1162" /> <source>Cu&t</source> <translation>Ke&s</translation> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="347" /> - <location filename="../ViewManager/ViewManager.py" line="1154" /> + <location filename="../ViewManager/ViewManager.py" line="1164" /> <source>Ctrl+X</source> <comment>Edit|Cut</comment> <translation>Ctrl+X</translation> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="350" /> - <location filename="../ViewManager/ViewManager.py" line="1157" /> + <location filename="../ViewManager/ViewManager.py" line="1167" /> <source>Shift+Del</source> <comment>Edit|Cut</comment> <translation>Shift+Del</translation> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="356" /> - <location filename="../ViewManager/ViewManager.py" line="1163" /> + <location filename="../ViewManager/ViewManager.py" line="1173" /> <source>Cut the selection</source> <translation>Seçimi kes</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1166" /> + <location filename="../ViewManager/ViewManager.py" line="1176" /> <source><b>Cut</b><p>Cut the selected text of the current editor to the clipboard.</p></source> <translation><b>Kes</b><p>Geçerli düzenleyicide seçilen metni panoya keser.</p></translation> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="365" /> - <location filename="../ViewManager/ViewManager.py" line="1177" /> + <location filename="../ViewManager/ViewManager.py" line="1187" /> <source>Copy</source> <translation>Kopyala</translation> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="367" /> - <location filename="../ViewManager/ViewManager.py" line="1179" /> + <location filename="../ViewManager/ViewManager.py" line="1189" /> <source>&Copy</source> <translation>&Kopyala</translation> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="369" /> - <location filename="../ViewManager/ViewManager.py" line="1181" /> + <location filename="../ViewManager/ViewManager.py" line="1191" /> <source>Ctrl+C</source> <comment>Edit|Copy</comment> <translation>Ctrl+C</translation> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="372" /> - <location filename="../ViewManager/ViewManager.py" line="1184" /> + <location filename="../ViewManager/ViewManager.py" line="1194" /> <source>Ctrl+Ins</source> <comment>Edit|Copy</comment> <translation>Ctrl+Ins</translation> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="378" /> - <location filename="../ViewManager/ViewManager.py" line="1190" /> + <location filename="../ViewManager/ViewManager.py" line="1200" /> <source>Copy the selection</source> <translation>Seçimi kopyala</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1193" /> + <location filename="../ViewManager/ViewManager.py" line="1203" /> <source><b>Copy</b><p>Copy the selected text of the current editor to the clipboard.</p></source> <translation><b>Kopya</b><p>Geçerli düzenleyicideki seçilen metni clipboarda kopyala.</p></translation> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="387" /> - <location filename="../ViewManager/ViewManager.py" line="1204" /> + <location filename="../ViewManager/ViewManager.py" line="1214" /> <source>Paste</source> <translation>Yapıştır</translation> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="389" /> - <location filename="../ViewManager/ViewManager.py" line="1206" /> + <location filename="../ViewManager/ViewManager.py" line="1216" /> <source>&Paste</source> <translation>Ya&pıştır</translation> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="391" /> - <location filename="../ViewManager/ViewManager.py" line="1208" /> + <location filename="../ViewManager/ViewManager.py" line="1218" /> <source>Ctrl+V</source> <comment>Edit|Paste</comment> <translation>Ctrl+V</translation> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="394" /> - <location filename="../ViewManager/ViewManager.py" line="1211" /> + <location filename="../ViewManager/ViewManager.py" line="1221" /> <source>Shift+Ins</source> <comment>Edit|Paste</comment> <translation>Shift+Ins</translation> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="400" /> - <location filename="../ViewManager/ViewManager.py" line="1217" /> + <location filename="../ViewManager/ViewManager.py" line="1227" /> <source>Paste the last cut/copied text</source> <translation>En son kesilen/kopyalanan metni yapıştır</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1220" /> + <location filename="../ViewManager/ViewManager.py" line="1230" /> <source><b>Paste</b><p>Paste the last cut/copied text from the clipboard to the current editor.</p></source> <translation><b>Yapıştır</b><p>En son kesilen/kopyalanan metni panodan geçerli düzenleyiciye yapıştırır.</p></translation> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="414" /> <location filename="../QScintilla/ShellWindow.py" line="412" /> - <location filename="../ViewManager/ViewManager.py" line="1233" /> - <location filename="../ViewManager/ViewManager.py" line="1231" /> + <location filename="../ViewManager/ViewManager.py" line="1243" /> + <location filename="../ViewManager/ViewManager.py" line="1241" /> <source>Clear</source> <translation>Temizle</translation> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="416" /> - <location filename="../ViewManager/ViewManager.py" line="1235" /> + <location filename="../ViewManager/ViewManager.py" line="1245" /> <source>Alt+Shift+C</source> <comment>Edit|Clear</comment> <translation>Alt+Shift+C</translation> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="423" /> - <location filename="../ViewManager/ViewManager.py" line="1242" /> + <location filename="../ViewManager/ViewManager.py" line="1252" /> <source>Clear all text</source> <translation>Tüm metni temizle</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1245" /> + <location filename="../ViewManager/ViewManager.py" line="1255" /> <source><b>Clear</b><p>Delete all text of the current editor.</p></source> <translation><b>Temizle</b><p>Geçerli düzenleyicideki tüm metinleri sil.</p></translation> </message> <message> + <location filename="../ViewManager/ViewManager.py" line="1274" /> + <location filename="../ViewManager/ViewManager.py" line="1265" /> <location filename="../ViewManager/ViewManager.py" line="1264" /> - <location filename="../ViewManager/ViewManager.py" line="1255" /> - <location filename="../ViewManager/ViewManager.py" line="1254" /> <source>Join Lines</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1257" /> - <source>Ctrl+J</source> - <comment>Edit|Join Lines</comment> - <translation type="unfinished" /> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="1267" /> - <source><b>Join Lines</b><p>Join the current and the next lines.</p></source> + <source>Ctrl+J</source> + <comment>Edit|Join Lines</comment> <translation type="unfinished" /> </message> <message> <location filename="../ViewManager/ViewManager.py" line="1277" /> + <source><b>Join Lines</b><p>Join the current and the next lines.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="1287" /> <source>Indent</source> <translation>Girinti</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1279" /> + <location filename="../ViewManager/ViewManager.py" line="1289" /> <source>&Indent</source> <translation>G&irintili</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1281" /> - <source>Ctrl+I</source> - <comment>Edit|Indent</comment> - <translation>Ctrl+I</translation> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="1288" /> - <source>Indent line</source> - <translation>Girinti satırı</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="1291" /> + <source>Ctrl+I</source> + <comment>Edit|Indent</comment> + <translation>Ctrl+I</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="1298" /> + <source>Indent line</source> + <translation>Girinti satırı</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="1301" /> <source><b>Indent</b><p>Indents the current line or the lines of the selection by one level.</p></source> <translation><b>Girinti</b><p>Geçerli satır yada satırların girintissini seçilen bir önceki seviyeye ayarlar.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1302" /> + <location filename="../ViewManager/ViewManager.py" line="1312" /> <source>Unindent</source> <translation>Girintisiz</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1304" /> + <location filename="../ViewManager/ViewManager.py" line="1314" /> <source>U&nindent</source> <translation>Giri&ntisiz</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1306" /> + <location filename="../ViewManager/ViewManager.py" line="1316" /> <source>Ctrl+Shift+I</source> <comment>Edit|Unindent</comment> <translation>Ctrl+Shift+I</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1315" /> + <location filename="../ViewManager/ViewManager.py" line="1325" /> <source>Unindent line</source> <translation>Girintisiz satır (hat)</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1318" /> + <location filename="../ViewManager/ViewManager.py" line="1328" /> <source><b>Unindent</b><p>Unindents the current line or the lines of the selection by one level.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1331" /> - <location filename="../ViewManager/ViewManager.py" line="1329" /> - <source>Smart indent</source> - <translation>Akıllı Girinti</translation> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="1338" /> - <source>Smart indent Line or Selection</source> - <translation>Akıllı Satır Girintisi yada Seçim</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="1341" /> + <location filename="../ViewManager/ViewManager.py" line="1339" /> + <source>Smart indent</source> + <translation>Akıllı Girinti</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="1348" /> + <source>Smart indent Line or Selection</source> + <translation>Akıllı Satır Girintisi yada Seçim</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="1351" /> <source><b>Smart indent</b><p>Indents the current line or the lines of the current selection smartly.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1352" /> + <location filename="../ViewManager/ViewManager.py" line="1362" /> <source>Comment</source> <translation>Yorumlayıcı</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1354" /> + <location filename="../ViewManager/ViewManager.py" line="1364" /> <source>C&omment</source> <translation>Y&orumlayıcı</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1356" /> - <source>Ctrl+M</source> - <comment>Edit|Comment</comment> - <translation>Ctrl+M</translation> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="1363" /> - <source>Comment Line or Selection</source> - <translation>Satır Yorumlayıcı yada Seçim</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="1366" /> + <source>Ctrl+M</source> + <comment>Edit|Comment</comment> + <translation>Ctrl+M</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="1373" /> + <source>Comment Line or Selection</source> + <translation>Satır Yorumlayıcı yada Seçim</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="1376" /> <source><b>Comment</b><p>Comments the current line or the lines of the current selection.</p></source> <translation><b>Yorumlayıcı</b><p>Geçerli satırın yada geçerli seçimdeki satırların yorumlanması.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1377" /> + <location filename="../ViewManager/ViewManager.py" line="1387" /> <source>Uncomment</source> <translation>Yorumlanamaz</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1379" /> + <location filename="../ViewManager/ViewManager.py" line="1389" /> <source>Unco&mment</source> <translation>Yoru&mlanamaz</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1381" /> + <location filename="../ViewManager/ViewManager.py" line="1391" /> <source>Ctrl+Shift+M</source> <comment>Edit|Uncomment</comment> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1390" /> + <location filename="../ViewManager/ViewManager.py" line="1400" /> <source>Uncomment Line or Selection</source> <translation>Yorumlanamaz Satır yada Seçim</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1393" /> + <location filename="../ViewManager/ViewManager.py" line="1403" /> <source><b>Uncomment</b><p>Uncomments the current line or the lines of the current selection.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1406" /> - <location filename="../ViewManager/ViewManager.py" line="1404" /> + <location filename="../ViewManager/ViewManager.py" line="1416" /> + <location filename="../ViewManager/ViewManager.py" line="1414" /> <source>Toggle Comment</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1408" /> + <location filename="../ViewManager/ViewManager.py" line="1418" /> <source>Ctrl+#</source> <comment>Edit|Toggle Comment</comment> <translation type="unfinished">Ctrl+#</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1417" /> + <location filename="../ViewManager/ViewManager.py" line="1427" /> <source>Toggle the comment of the current line, selection or comment block</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1423" /> + <location filename="../ViewManager/ViewManager.py" line="1433" /> <source><b>Toggle Comment</b><p>If the current line does not start with a block comment, the current line or selection is commented. If it is already commented, this comment block is uncommented. </p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1436" /> - <location filename="../ViewManager/ViewManager.py" line="1435" /> + <location filename="../ViewManager/ViewManager.py" line="1446" /> + <location filename="../ViewManager/ViewManager.py" line="1445" /> <source>Stream Comment</source> <translation>Yorumlayıcı</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1443" /> + <location filename="../ViewManager/ViewManager.py" line="1453" /> <source>Stream Comment Line or Selection</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1448" /> + <location filename="../ViewManager/ViewManager.py" line="1458" /> <source><b>Stream Comment</b><p>Stream comments the current line or the current selection.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1460" /> - <location filename="../ViewManager/ViewManager.py" line="1459" /> - <source>Box Comment</source> - <translation>Kutu Yorumlayıcı</translation> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="1467" /> - <source>Box Comment Line or Selection</source> - <translation>Kutu yorumlayıcı Satırı yada Seçimi</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="1470" /> + <location filename="../ViewManager/ViewManager.py" line="1469" /> + <source>Box Comment</source> + <translation>Kutu Yorumlayıcı</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="1477" /> + <source>Box Comment Line or Selection</source> + <translation>Kutu yorumlayıcı Satırı yada Seçimi</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="1480" /> <source><b>Box Comment</b><p>Box comments the current line or the lines of the current selection.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1481" /> + <location filename="../ViewManager/ViewManager.py" line="1491" /> <source>Select to brace</source> <translation>Köşeli ayracı seç</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1482" /> + <location filename="../ViewManager/ViewManager.py" line="1492" /> <source>Select to &brace</source> <translation>Köşeli ayracı &seç</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1484" /> + <location filename="../ViewManager/ViewManager.py" line="1494" /> <source>Ctrl+E</source> <comment>Edit|Select to brace</comment> <translation>Ctrl+E</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1493" /> + <location filename="../ViewManager/ViewManager.py" line="1503" /> <source>Select text to the matching brace</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1498" /> + <location filename="../ViewManager/ViewManager.py" line="1508" /> <source><b>Select to brace</b><p>Select text of the current editor to the matching brace.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1509" /> + <location filename="../ViewManager/ViewManager.py" line="1519" /> <source>Select all</source> <translation>Hepsini seç</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1511" /> + <location filename="../ViewManager/ViewManager.py" line="1521" /> <source>&Select all</source> <translation>Hep&sini seç</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1513" /> + <location filename="../ViewManager/ViewManager.py" line="1523" /> <source>Ctrl+A</source> <comment>Edit|Select all</comment> <translation>Ctrl+A</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1520" /> + <location filename="../ViewManager/ViewManager.py" line="1530" /> <source>Select all text</source> <translation>Tüm metni seç</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1523" /> - <source><b>Select All</b><p>Select all text of the current editor.</p></source> - <translation type="unfinished" /> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="1533" /> + <source><b>Select All</b><p>Select all text of the current editor.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="1543" /> <source>Deselect all</source> <translation>Tüm seçimi iptal et</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1534" /> + <location filename="../ViewManager/ViewManager.py" line="1544" /> <source>&Deselect all</source> <translation>&Tüm seçimi iptal et</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1536" /> + <location filename="../ViewManager/ViewManager.py" line="1546" /> <source>Alt+Ctrl+A</source> <comment>Edit|Deselect all</comment> <translation>Alt+Ctrl+A</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1545" /> + <location filename="../ViewManager/ViewManager.py" line="1555" /> <source>Deselect all text</source> <translation>Seçilen tüm metni iptal et</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1548" /> + <location filename="../ViewManager/ViewManager.py" line="1558" /> <source><b>Deselect All</b><p>Deselect all text of the current editor.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1566" /> - <location filename="../ViewManager/ViewManager.py" line="1559" /> - <location filename="../ViewManager/ViewManager.py" line="1558" /> + <location filename="../ViewManager/ViewManager.py" line="1576" /> + <location filename="../ViewManager/ViewManager.py" line="1569" /> + <location filename="../ViewManager/ViewManager.py" line="1568" /> <source>Convert Line End Characters</source> <translation>Satırsonu Karakterlerini Dönüştür</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1569" /> + <location filename="../ViewManager/ViewManager.py" line="1579" /> <source><b>Convert Line End Characters</b><p>Convert the line end characters to the currently set type.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1588" /> - <location filename="../ViewManager/ViewManager.py" line="1581" /> - <location filename="../ViewManager/ViewManager.py" line="1580" /> + <location filename="../ViewManager/ViewManager.py" line="1598" /> + <location filename="../ViewManager/ViewManager.py" line="1591" /> + <location filename="../ViewManager/ViewManager.py" line="1590" /> <source>Convert Tabs to Spaces</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1591" /> + <location filename="../ViewManager/ViewManager.py" line="1601" /> <source><b>Convert Tabs to Spaces</b><p>Convert tabulators to the configured amount of space characters.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1610" /> - <location filename="../ViewManager/ViewManager.py" line="1603" /> - <location filename="../ViewManager/ViewManager.py" line="1602" /> + <location filename="../ViewManager/ViewManager.py" line="1620" /> + <location filename="../ViewManager/ViewManager.py" line="1613" /> + <location filename="../ViewManager/ViewManager.py" line="1612" /> <source>Shorten empty lines</source> <translation>Boş satırları kısalt</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1613" /> + <location filename="../ViewManager/ViewManager.py" line="1623" /> <source><b>Shorten empty lines</b><p>Shorten lines consisting solely of whitespace characters.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3497" /> - <location filename="../ViewManager/ViewManager.py" line="1624" /> + <location filename="../ViewManager/ViewManager.py" line="3507" /> + <location filename="../ViewManager/ViewManager.py" line="1634" /> <source>Complete</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1625" /> + <location filename="../ViewManager/ViewManager.py" line="1635" /> <source>&Complete</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1627" /> - <source>Ctrl+Space</source> - <comment>Edit|Complete</comment> - <translation type="unfinished">Ctrl+Space</translation> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="1634" /> - <source>Complete current word</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="1637" /> + <source>Ctrl+Space</source> + <comment>Edit|Complete</comment> + <translation type="unfinished">Ctrl+Space</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="1644" /> + <source>Complete current word</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="1647" /> <source><b>Complete</b><p>Performs a completion of the word containing the cursor.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1649" /> - <location filename="../ViewManager/ViewManager.py" line="1648" /> + <location filename="../ViewManager/ViewManager.py" line="1659" /> + <location filename="../ViewManager/ViewManager.py" line="1658" /> <source>Complete from Document</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1651" /> + <location filename="../ViewManager/ViewManager.py" line="1661" /> <source>Ctrl+Shift+Space</source> <comment>Edit|Complete from Document</comment> <translation type="unfinished">Ctrl+Shift+Space</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1660" /> + <location filename="../ViewManager/ViewManager.py" line="1670" /> <source>Complete current word from Document</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1665" /> + <location filename="../ViewManager/ViewManager.py" line="1675" /> <source><b>Complete from Document</b><p>Performs a completion from document of the word containing the cursor.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1677" /> - <location filename="../ViewManager/ViewManager.py" line="1676" /> + <location filename="../ViewManager/ViewManager.py" line="1687" /> + <location filename="../ViewManager/ViewManager.py" line="1686" /> <source>Complete from APIs</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1679" /> + <location filename="../ViewManager/ViewManager.py" line="1689" /> <source>Ctrl+Alt+Space</source> <comment>Edit|Complete from APIs</comment> <translation type="unfinished">Ctrl+Alt+Space</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1688" /> + <location filename="../ViewManager/ViewManager.py" line="1698" /> <source>Complete current word from APIs</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1691" /> + <location filename="../ViewManager/ViewManager.py" line="1701" /> <source><b>Complete from APIs</b><p>Performs a completion from APIs of the word containing the cursor.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1705" /> - <location filename="../ViewManager/ViewManager.py" line="1702" /> + <location filename="../ViewManager/ViewManager.py" line="1715" /> + <location filename="../ViewManager/ViewManager.py" line="1712" /> <source>Complete from Document and APIs</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1709" /> + <location filename="../ViewManager/ViewManager.py" line="1719" /> <source>Alt+Shift+Space</source> <comment>Edit|Complete from Document and APIs</comment> <translation type="unfinished">Alt+Shift+Space</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1720" /> + <location filename="../ViewManager/ViewManager.py" line="1730" /> <source>Complete current word from Document and APIs</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1725" /> + <location filename="../ViewManager/ViewManager.py" line="1735" /> <source><b>Complete from Document and APIs</b><p>Performs a completion from document and APIs of the word containing the cursor.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1736" /> + <location filename="../ViewManager/ViewManager.py" line="1746" /> <source>Calltip</source> <translation>İpucu</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1737" /> + <location filename="../ViewManager/ViewManager.py" line="1747" /> <source>&Calltip</source> <translation>İpu&cu</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1739" /> + <location filename="../ViewManager/ViewManager.py" line="1749" /> <source>Meta+Alt+Space</source> <comment>Edit|Calltip</comment> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1748" /> + <location filename="../ViewManager/ViewManager.py" line="1758" /> <source>Show Calltips</source> <translation>İpuçlarını Göster</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1751" /> + <location filename="../ViewManager/ViewManager.py" line="1761" /> <source><b>Calltip</b><p>Show calltips based on the characters immediately to the left of the cursor.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1764" /> - <location filename="../ViewManager/ViewManager.py" line="1762" /> + <location filename="../ViewManager/ViewManager.py" line="1774" /> + <location filename="../ViewManager/ViewManager.py" line="1772" /> <source>Code Info</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1766" /> + <location filename="../ViewManager/ViewManager.py" line="1776" /> <source>Ctrl+Alt+I</source> <comment>Edit|Code Info</comment> <translation type="unfinished">Ctrl+Alt+I</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1775" /> + <location filename="../ViewManager/ViewManager.py" line="1785" /> <source>Show Code Info</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1778" /> + <location filename="../ViewManager/ViewManager.py" line="1788" /> <source><b>Code Info</b><p>Show code information based on the cursor position.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1789" /> - <location filename="../ViewManager/ViewManager.py" line="1788" /> + <location filename="../ViewManager/ViewManager.py" line="1799" /> + <location filename="../ViewManager/ViewManager.py" line="1798" /> <source>Sort</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1791" /> + <location filename="../ViewManager/ViewManager.py" line="1801" /> <source>Ctrl+Alt+S</source> <comment>Edit|Sort</comment> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1798" /> + <location filename="../ViewManager/ViewManager.py" line="1808" /> <source>Sort the lines containing the rectangular selection</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1803" /> + <location filename="../ViewManager/ViewManager.py" line="1813" /> <source><b>Sort</b><p>Sort the lines spanned by a rectangular selection based on the selection ignoring leading and trailing whitespace.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1815" /> - <location filename="../ViewManager/ViewManager.py" line="1814" /> + <location filename="../ViewManager/ViewManager.py" line="1825" /> + <location filename="../ViewManager/ViewManager.py" line="1824" /> <source>Generate Docstring</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1817" /> + <location filename="../ViewManager/ViewManager.py" line="1827" /> <source>Ctrl+Alt+D</source> <comment>Edit|Generate Docstring</comment> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1826" /> + <location filename="../ViewManager/ViewManager.py" line="1836" /> <source>Generate a docstring for the current function/method</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1831" /> + <location filename="../ViewManager/ViewManager.py" line="1841" /> <source><b>Generate Docstring</b><p>Generate a docstring for the current function/method if the cursor is placed on the line starting the function definition or on the line thereafter. The docstring is inserted at the appropriate position and the cursor is placed at the end of the description line.</p></source> <translation type="unfinished" /> </message> @@ -95412,22 +95425,22 @@ <location filename="../QScintilla/MiniEditor.py" line="929" /> <location filename="../QScintilla/ShellWindow.py" line="579" /> <location filename="../QScintilla/ShellWindow.py" line="578" /> - <location filename="../ViewManager/ViewManager.py" line="1858" /> - <location filename="../ViewManager/ViewManager.py" line="1857" /> + <location filename="../ViewManager/ViewManager.py" line="1868" /> + <location filename="../ViewManager/ViewManager.py" line="1867" /> <source>Move left one character</source> <translation>Bir karakter sola taşı</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="931" /> <location filename="../QScintilla/ShellWindow.py" line="580" /> - <location filename="../ViewManager/ViewManager.py" line="1859" /> + <location filename="../ViewManager/ViewManager.py" line="1869" /> <source>Left</source> <translation>Left</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="939" /> <location filename="../QScintilla/ShellWindow.py" line="588" /> - <location filename="../ViewManager/ViewManager.py" line="1867" /> + <location filename="../ViewManager/ViewManager.py" line="1877" /> <source>Meta+B</source> <translation type="unfinished" /> </message> @@ -95436,22 +95449,22 @@ <location filename="../QScintilla/MiniEditor.py" line="945" /> <location filename="../QScintilla/ShellWindow.py" line="595" /> <location filename="../QScintilla/ShellWindow.py" line="594" /> - <location filename="../ViewManager/ViewManager.py" line="1874" /> - <location filename="../ViewManager/ViewManager.py" line="1873" /> + <location filename="../ViewManager/ViewManager.py" line="1884" /> + <location filename="../ViewManager/ViewManager.py" line="1883" /> <source>Move right one character</source> <translation>Bir karakter sağa taşı</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="947" /> <location filename="../QScintilla/ShellWindow.py" line="596" /> - <location filename="../ViewManager/ViewManager.py" line="1875" /> + <location filename="../ViewManager/ViewManager.py" line="1885" /> <source>Right</source> <translation>Right</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="954" /> <location filename="../QScintilla/ShellWindow.py" line="603" /> - <location filename="../ViewManager/ViewManager.py" line="1882" /> + <location filename="../ViewManager/ViewManager.py" line="1892" /> <source>Meta+F</source> <translation type="unfinished" /> </message> @@ -95460,22 +95473,22 @@ <location filename="../QScintilla/MiniEditor.py" line="961" /> <location filename="../QScintilla/ShellWindow.py" line="687" /> <location filename="../QScintilla/ShellWindow.py" line="686" /> - <location filename="../ViewManager/ViewManager.py" line="1890" /> - <location filename="../ViewManager/ViewManager.py" line="1889" /> + <location filename="../ViewManager/ViewManager.py" line="1900" /> + <location filename="../ViewManager/ViewManager.py" line="1899" /> <source>Move up one line</source> <translation>Bir satır üste taşı</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="963" /> <location filename="../QScintilla/ShellWindow.py" line="688" /> - <location filename="../ViewManager/ViewManager.py" line="1891" /> + <location filename="../ViewManager/ViewManager.py" line="1901" /> <source>Up</source> <translation>Up</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="970" /> <location filename="../QScintilla/ShellWindow.py" line="695" /> - <location filename="../ViewManager/ViewManager.py" line="1898" /> + <location filename="../ViewManager/ViewManager.py" line="1908" /> <source>Meta+P</source> <translation type="unfinished" /> </message> @@ -95484,30 +95497,30 @@ <location filename="../QScintilla/MiniEditor.py" line="977" /> <location filename="../QScintilla/ShellWindow.py" line="703" /> <location filename="../QScintilla/ShellWindow.py" line="702" /> - <location filename="../ViewManager/ViewManager.py" line="1906" /> - <location filename="../ViewManager/ViewManager.py" line="1905" /> + <location filename="../ViewManager/ViewManager.py" line="1916" /> + <location filename="../ViewManager/ViewManager.py" line="1915" /> <source>Move down one line</source> <translation>Bir satır aşağı taşı</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="979" /> <location filename="../QScintilla/ShellWindow.py" line="704" /> - <location filename="../ViewManager/ViewManager.py" line="1907" /> + <location filename="../ViewManager/ViewManager.py" line="1917" /> <source>Down</source> <translation>Down</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="986" /> <location filename="../QScintilla/ShellWindow.py" line="711" /> - <location filename="../ViewManager/ViewManager.py" line="1914" /> + <location filename="../ViewManager/ViewManager.py" line="1924" /> <source>Meta+N</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="994" /> <location filename="../QScintilla/MiniEditor.py" line="993" /> - <location filename="../ViewManager/ViewManager.py" line="1922" /> - <location filename="../ViewManager/ViewManager.py" line="1921" /> + <location filename="../ViewManager/ViewManager.py" line="1932" /> + <location filename="../ViewManager/ViewManager.py" line="1931" /> <source>Move left one word part</source> <translation>Bir kelime parçası sola taşı</translation> </message> @@ -95515,16 +95528,16 @@ <location filename="../QScintilla/MiniEditor.py" line="1034" /> <location filename="../QScintilla/MiniEditor.py" line="1002" /> <location filename="../QScintilla/ShellWindow.py" line="619" /> - <location filename="../ViewManager/ViewManager.py" line="1962" /> - <location filename="../ViewManager/ViewManager.py" line="1930" /> + <location filename="../ViewManager/ViewManager.py" line="1972" /> + <location filename="../ViewManager/ViewManager.py" line="1940" /> <source>Alt+Left</source> <translation>Alt+Left</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1010" /> <location filename="../QScintilla/MiniEditor.py" line="1009" /> - <location filename="../ViewManager/ViewManager.py" line="1938" /> - <location filename="../ViewManager/ViewManager.py" line="1937" /> + <location filename="../ViewManager/ViewManager.py" line="1948" /> + <location filename="../ViewManager/ViewManager.py" line="1947" /> <source>Move right one word part</source> <translation>bir kelime parçası sağa taşı</translation> </message> @@ -95532,8 +95545,8 @@ <location filename="../QScintilla/MiniEditor.py" line="2164" /> <location filename="../QScintilla/MiniEditor.py" line="1054" /> <location filename="../QScintilla/MiniEditor.py" line="1018" /> - <location filename="../ViewManager/ViewManager.py" line="3071" /> - <location filename="../ViewManager/ViewManager.py" line="1946" /> + <location filename="../ViewManager/ViewManager.py" line="3081" /> + <location filename="../ViewManager/ViewManager.py" line="1956" /> <source>Alt+Right</source> <translation>Alt+Right</translation> </message> @@ -95542,8 +95555,8 @@ <location filename="../QScintilla/MiniEditor.py" line="1025" /> <location filename="../QScintilla/ShellWindow.py" line="611" /> <location filename="../QScintilla/ShellWindow.py" line="610" /> - <location filename="../ViewManager/ViewManager.py" line="1954" /> - <location filename="../ViewManager/ViewManager.py" line="1953" /> + <location filename="../ViewManager/ViewManager.py" line="1964" /> + <location filename="../ViewManager/ViewManager.py" line="1963" /> <source>Move left one word</source> <translation>Bir kelime sola taşı</translation> </message> @@ -95551,8 +95564,8 @@ <location filename="../QScintilla/MiniEditor.py" line="1094" /> <location filename="../QScintilla/MiniEditor.py" line="1038" /> <location filename="../QScintilla/ShellWindow.py" line="623" /> - <location filename="../ViewManager/ViewManager.py" line="2018" /> - <location filename="../ViewManager/ViewManager.py" line="1966" /> + <location filename="../ViewManager/ViewManager.py" line="2028" /> + <location filename="../ViewManager/ViewManager.py" line="1976" /> <source>Ctrl+Left</source> <translation>Ctrl+Left</translation> </message> @@ -95561,8 +95574,8 @@ <location filename="../QScintilla/MiniEditor.py" line="1045" /> <location filename="../QScintilla/ShellWindow.py" line="631" /> <location filename="../QScintilla/ShellWindow.py" line="630" /> - <location filename="../ViewManager/ViewManager.py" line="1974" /> - <location filename="../ViewManager/ViewManager.py" line="1973" /> + <location filename="../ViewManager/ViewManager.py" line="1984" /> + <location filename="../ViewManager/ViewManager.py" line="1983" /> <source>Move right one word</source> <translation>Bir kelime sağa taşı</translation> </message> @@ -95570,8 +95583,8 @@ <location filename="../QScintilla/MiniEditor.py" line="1848" /> <location filename="../QScintilla/MiniEditor.py" line="1058" /> <location filename="../QScintilla/ShellWindow.py" line="639" /> - <location filename="../ViewManager/ViewManager.py" line="2755" /> - <location filename="../ViewManager/ViewManager.py" line="1982" /> + <location filename="../ViewManager/ViewManager.py" line="2765" /> + <location filename="../ViewManager/ViewManager.py" line="1992" /> <source>Ctrl+Right</source> <translation>Ctrl+Right</translation> </message> @@ -95580,8 +95593,8 @@ <location filename="../QScintilla/MiniEditor.py" line="1065" /> <location filename="../QScintilla/ShellWindow.py" line="649" /> <location filename="../QScintilla/ShellWindow.py" line="646" /> - <location filename="../ViewManager/ViewManager.py" line="1992" /> - <location filename="../ViewManager/ViewManager.py" line="1989" /> + <location filename="../ViewManager/ViewManager.py" line="2002" /> + <location filename="../ViewManager/ViewManager.py" line="1999" /> <source>Move to first visible character in document line</source> <translation type="unfinished" /> </message> @@ -95589,22 +95602,22 @@ <location filename="../QScintilla/MiniEditor.py" line="2109" /> <location filename="../QScintilla/MiniEditor.py" line="1078" /> <location filename="../QScintilla/ShellWindow.py" line="659" /> - <location filename="../ViewManager/ViewManager.py" line="3016" /> - <location filename="../ViewManager/ViewManager.py" line="2002" /> + <location filename="../ViewManager/ViewManager.py" line="3026" /> + <location filename="../ViewManager/ViewManager.py" line="2012" /> <source>Home</source> <translation>Home</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1086" /> <location filename="../QScintilla/MiniEditor.py" line="1085" /> - <location filename="../ViewManager/ViewManager.py" line="2010" /> - <location filename="../ViewManager/ViewManager.py" line="2009" /> + <location filename="../ViewManager/ViewManager.py" line="2020" /> + <location filename="../ViewManager/ViewManager.py" line="2019" /> <source>Move to start of display line</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1098" /> - <location filename="../ViewManager/ViewManager.py" line="2022" /> + <location filename="../ViewManager/ViewManager.py" line="2032" /> <source>Alt+Home</source> <translation>Alt+Home</translation> </message> @@ -95613,15 +95626,15 @@ <location filename="../QScintilla/MiniEditor.py" line="1105" /> <location filename="../QScintilla/ShellWindow.py" line="667" /> <location filename="../QScintilla/ShellWindow.py" line="666" /> - <location filename="../ViewManager/ViewManager.py" line="2030" /> - <location filename="../ViewManager/ViewManager.py" line="2029" /> + <location filename="../ViewManager/ViewManager.py" line="2040" /> + <location filename="../ViewManager/ViewManager.py" line="2039" /> <source>Move to end of document line</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1114" /> <location filename="../QScintilla/ShellWindow.py" line="675" /> - <location filename="../ViewManager/ViewManager.py" line="2038" /> + <location filename="../ViewManager/ViewManager.py" line="2048" /> <source>Meta+E</source> <translation type="unfinished" /> </message> @@ -95629,16 +95642,16 @@ <location filename="../QScintilla/MiniEditor.py" line="2126" /> <location filename="../QScintilla/MiniEditor.py" line="1118" /> <location filename="../QScintilla/ShellWindow.py" line="679" /> - <location filename="../ViewManager/ViewManager.py" line="3033" /> - <location filename="../ViewManager/ViewManager.py" line="2042" /> + <location filename="../ViewManager/ViewManager.py" line="3043" /> + <location filename="../ViewManager/ViewManager.py" line="2052" /> <source>End</source> <translation>End</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1126" /> <location filename="../QScintilla/MiniEditor.py" line="1125" /> - <location filename="../ViewManager/ViewManager.py" line="2050" /> - <location filename="../ViewManager/ViewManager.py" line="2049" /> + <location filename="../ViewManager/ViewManager.py" line="2060" /> + <location filename="../ViewManager/ViewManager.py" line="2059" /> <source>Scroll view down one line</source> <translation>Görüntüyü bir satır aşağı kaydır</translation> </message> @@ -95646,16 +95659,16 @@ <location filename="../QScintilla/MiniEditor.py" line="1230" /> <location filename="../QScintilla/MiniEditor.py" line="1127" /> <location filename="../QScintilla/ShellWindow.py" line="720" /> - <location filename="../ViewManager/ViewManager.py" line="2154" /> - <location filename="../ViewManager/ViewManager.py" line="2051" /> + <location filename="../ViewManager/ViewManager.py" line="2164" /> + <location filename="../ViewManager/ViewManager.py" line="2061" /> <source>Ctrl+Down</source> <translation>Ctrl+Down</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1138" /> <location filename="../QScintilla/MiniEditor.py" line="1137" /> - <location filename="../ViewManager/ViewManager.py" line="2062" /> - <location filename="../ViewManager/ViewManager.py" line="2061" /> + <location filename="../ViewManager/ViewManager.py" line="2072" /> + <location filename="../ViewManager/ViewManager.py" line="2071" /> <source>Scroll view up one line</source> <translation>Görüntüyü bir satır yukarı kaydır</translation> </message> @@ -95663,36 +95676,36 @@ <location filename="../QScintilla/MiniEditor.py" line="1210" /> <location filename="../QScintilla/MiniEditor.py" line="1139" /> <location filename="../QScintilla/ShellWindow.py" line="732" /> - <location filename="../ViewManager/ViewManager.py" line="2134" /> - <location filename="../ViewManager/ViewManager.py" line="2063" /> + <location filename="../ViewManager/ViewManager.py" line="2144" /> + <location filename="../ViewManager/ViewManager.py" line="2073" /> <source>Ctrl+Up</source> <translation>Ctrl+Up</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1150" /> <location filename="../QScintilla/MiniEditor.py" line="1149" /> - <location filename="../ViewManager/ViewManager.py" line="2074" /> - <location filename="../ViewManager/ViewManager.py" line="2073" /> + <location filename="../ViewManager/ViewManager.py" line="2084" /> + <location filename="../ViewManager/ViewManager.py" line="2083" /> <source>Move up one paragraph</source> <translation>Bir paragraf yukarı taşı</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1151" /> - <location filename="../ViewManager/ViewManager.py" line="2075" /> + <location filename="../ViewManager/ViewManager.py" line="2085" /> <source>Alt+Up</source> <translation>Alt+Up</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1162" /> <location filename="../QScintilla/MiniEditor.py" line="1161" /> - <location filename="../ViewManager/ViewManager.py" line="2086" /> - <location filename="../ViewManager/ViewManager.py" line="2085" /> + <location filename="../ViewManager/ViewManager.py" line="2096" /> + <location filename="../ViewManager/ViewManager.py" line="2095" /> <source>Move down one paragraph</source> <translation>Bir paragraf aşağı taşı</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1163" /> - <location filename="../ViewManager/ViewManager.py" line="2087" /> + <location filename="../ViewManager/ViewManager.py" line="2097" /> <source>Alt+Down</source> <translation>Alt+Down</translation> </message> @@ -95701,15 +95714,15 @@ <location filename="../QScintilla/MiniEditor.py" line="1173" /> <location filename="../QScintilla/ShellWindow.py" line="743" /> <location filename="../QScintilla/ShellWindow.py" line="742" /> - <location filename="../ViewManager/ViewManager.py" line="2098" /> - <location filename="../ViewManager/ViewManager.py" line="2097" /> + <location filename="../ViewManager/ViewManager.py" line="2108" /> + <location filename="../ViewManager/ViewManager.py" line="2107" /> <source>Move up one page</source> <translation>Bir sayfa yukarı taşı</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1175" /> <location filename="../QScintilla/ShellWindow.py" line="744" /> - <location filename="../ViewManager/ViewManager.py" line="2099" /> + <location filename="../ViewManager/ViewManager.py" line="2109" /> <source>PgUp</source> <translation>PgUp</translation> </message> @@ -95718,50 +95731,50 @@ <location filename="../QScintilla/MiniEditor.py" line="1185" /> <location filename="../QScintilla/ShellWindow.py" line="755" /> <location filename="../QScintilla/ShellWindow.py" line="754" /> - <location filename="../ViewManager/ViewManager.py" line="2110" /> - <location filename="../ViewManager/ViewManager.py" line="2109" /> + <location filename="../ViewManager/ViewManager.py" line="2120" /> + <location filename="../ViewManager/ViewManager.py" line="2119" /> <source>Move down one page</source> <translation>Bir sayfa aşağı taşı</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1187" /> <location filename="../QScintilla/ShellWindow.py" line="756" /> - <location filename="../ViewManager/ViewManager.py" line="2111" /> + <location filename="../ViewManager/ViewManager.py" line="2121" /> <source>PgDown</source> <translation>PgDown</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1194" /> <location filename="../QScintilla/ShellWindow.py" line="763" /> - <location filename="../ViewManager/ViewManager.py" line="2118" /> + <location filename="../ViewManager/ViewManager.py" line="2128" /> <source>Meta+V</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1202" /> <location filename="../QScintilla/MiniEditor.py" line="1201" /> - <location filename="../ViewManager/ViewManager.py" line="2126" /> - <location filename="../ViewManager/ViewManager.py" line="2125" /> + <location filename="../ViewManager/ViewManager.py" line="2136" /> + <location filename="../ViewManager/ViewManager.py" line="2135" /> <source>Move to start of document</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1214" /> - <location filename="../ViewManager/ViewManager.py" line="2138" /> + <location filename="../ViewManager/ViewManager.py" line="2148" /> <source>Ctrl+Home</source> <translation>Ctrl+Home</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1222" /> <location filename="../QScintilla/MiniEditor.py" line="1221" /> - <location filename="../ViewManager/ViewManager.py" line="2146" /> - <location filename="../ViewManager/ViewManager.py" line="2145" /> + <location filename="../ViewManager/ViewManager.py" line="2156" /> + <location filename="../ViewManager/ViewManager.py" line="2155" /> <source>Move to end of document</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1234" /> - <location filename="../ViewManager/ViewManager.py" line="2158" /> + <location filename="../ViewManager/ViewManager.py" line="2168" /> <source>Ctrl+End</source> <translation>Ctrl+End</translation> </message> @@ -95770,29 +95783,29 @@ <location filename="../QScintilla/MiniEditor.py" line="1241" /> <location filename="../QScintilla/ShellWindow.py" line="457" /> <location filename="../QScintilla/ShellWindow.py" line="456" /> - <location filename="../ViewManager/ViewManager.py" line="2166" /> - <location filename="../ViewManager/ViewManager.py" line="2165" /> + <location filename="../ViewManager/ViewManager.py" line="2176" /> + <location filename="../ViewManager/ViewManager.py" line="2175" /> <source>Indent one level</source> <translation>Bir seviye içeri girinti</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1243" /> <location filename="../QScintilla/ShellWindow.py" line="458" /> - <location filename="../ViewManager/ViewManager.py" line="2167" /> + <location filename="../ViewManager/ViewManager.py" line="2177" /> <source>Tab</source> <translation>Tab</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1254" /> <location filename="../QScintilla/MiniEditor.py" line="1253" /> - <location filename="../ViewManager/ViewManager.py" line="2178" /> - <location filename="../ViewManager/ViewManager.py" line="2177" /> + <location filename="../ViewManager/ViewManager.py" line="2188" /> + <location filename="../ViewManager/ViewManager.py" line="2187" /> <source>Unindent one level</source> <translation>Girintisiz birinci seviye</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1255" /> - <location filename="../ViewManager/ViewManager.py" line="2179" /> + <location filename="../ViewManager/ViewManager.py" line="2189" /> <source>Shift+Tab</source> <translation>Shift+Tab</translation> </message> @@ -95801,22 +95814,22 @@ <location filename="../QScintilla/MiniEditor.py" line="1265" /> <location filename="../QScintilla/ShellWindow.py" line="785" /> <location filename="../QScintilla/ShellWindow.py" line="782" /> - <location filename="../ViewManager/ViewManager.py" line="2192" /> - <location filename="../ViewManager/ViewManager.py" line="2189" /> + <location filename="../ViewManager/ViewManager.py" line="2202" /> + <location filename="../ViewManager/ViewManager.py" line="2199" /> <source>Extend selection left one character</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1271" /> <location filename="../QScintilla/ShellWindow.py" line="788" /> - <location filename="../ViewManager/ViewManager.py" line="2195" /> + <location filename="../ViewManager/ViewManager.py" line="2205" /> <source>Shift+Left</source> <translation>Shift+Left</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1278" /> <location filename="../QScintilla/ShellWindow.py" line="795" /> - <location filename="../ViewManager/ViewManager.py" line="2202" /> + <location filename="../ViewManager/ViewManager.py" line="2212" /> <source>Meta+Shift+B</source> <translation type="unfinished" /> </message> @@ -95825,70 +95838,70 @@ <location filename="../QScintilla/MiniEditor.py" line="1285" /> <location filename="../QScintilla/ShellWindow.py" line="805" /> <location filename="../QScintilla/ShellWindow.py" line="802" /> - <location filename="../ViewManager/ViewManager.py" line="2212" /> - <location filename="../ViewManager/ViewManager.py" line="2209" /> + <location filename="../ViewManager/ViewManager.py" line="2222" /> + <location filename="../ViewManager/ViewManager.py" line="2219" /> <source>Extend selection right one character</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1291" /> <location filename="../QScintilla/ShellWindow.py" line="808" /> - <location filename="../ViewManager/ViewManager.py" line="2215" /> + <location filename="../ViewManager/ViewManager.py" line="2225" /> <source>Shift+Right</source> <translation>Shift+Right</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1298" /> <location filename="../QScintilla/ShellWindow.py" line="815" /> - <location filename="../ViewManager/ViewManager.py" line="2222" /> + <location filename="../ViewManager/ViewManager.py" line="2232" /> <source>Meta+Shift+F</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1306" /> <location filename="../QScintilla/MiniEditor.py" line="1305" /> - <location filename="../ViewManager/ViewManager.py" line="2230" /> - <location filename="../ViewManager/ViewManager.py" line="2229" /> + <location filename="../ViewManager/ViewManager.py" line="2240" /> + <location filename="../ViewManager/ViewManager.py" line="2239" /> <source>Extend selection up one line</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1307" /> - <location filename="../ViewManager/ViewManager.py" line="2231" /> + <location filename="../ViewManager/ViewManager.py" line="2241" /> <source>Shift+Up</source> <translation>Shift+Up</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1314" /> - <location filename="../ViewManager/ViewManager.py" line="2238" /> + <location filename="../ViewManager/ViewManager.py" line="2248" /> <source>Meta+Shift+P</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1322" /> <location filename="../QScintilla/MiniEditor.py" line="1321" /> - <location filename="../ViewManager/ViewManager.py" line="2246" /> - <location filename="../ViewManager/ViewManager.py" line="2245" /> + <location filename="../ViewManager/ViewManager.py" line="2256" /> + <location filename="../ViewManager/ViewManager.py" line="2255" /> <source>Extend selection down one line</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1323" /> - <location filename="../ViewManager/ViewManager.py" line="2247" /> + <location filename="../ViewManager/ViewManager.py" line="2257" /> <source>Shift+Down</source> <translation>Shift+Down</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1330" /> - <location filename="../ViewManager/ViewManager.py" line="2254" /> + <location filename="../ViewManager/ViewManager.py" line="2264" /> <source>Meta+Shift+N</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1340" /> <location filename="../QScintilla/MiniEditor.py" line="1337" /> - <location filename="../ViewManager/ViewManager.py" line="2264" /> - <location filename="../ViewManager/ViewManager.py" line="2261" /> + <location filename="../ViewManager/ViewManager.py" line="2274" /> + <location filename="../ViewManager/ViewManager.py" line="2271" /> <source>Extend selection left one word part</source> <translation type="unfinished" /> </message> @@ -95896,16 +95909,16 @@ <location filename="../QScintilla/MiniEditor.py" line="1391" /> <location filename="../QScintilla/MiniEditor.py" line="1351" /> <location filename="../QScintilla/ShellWindow.py" line="832" /> - <location filename="../ViewManager/ViewManager.py" line="2315" /> - <location filename="../ViewManager/ViewManager.py" line="2275" /> + <location filename="../ViewManager/ViewManager.py" line="2325" /> + <location filename="../ViewManager/ViewManager.py" line="2285" /> <source>Alt+Shift+Left</source> <translation>Alt+Shift+Left</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1362" /> <location filename="../QScintilla/MiniEditor.py" line="1359" /> - <location filename="../ViewManager/ViewManager.py" line="2286" /> - <location filename="../ViewManager/ViewManager.py" line="2283" /> + <location filename="../ViewManager/ViewManager.py" line="2296" /> + <location filename="../ViewManager/ViewManager.py" line="2293" /> <source>Extend selection right one word part</source> <translation type="unfinished" /> </message> @@ -95914,9 +95927,9 @@ <location filename="../QScintilla/MiniEditor.py" line="1419" /> <location filename="../QScintilla/MiniEditor.py" line="1373" /> <location filename="../QScintilla/ShellWindow.py" line="860" /> - <location filename="../ViewManager/ViewManager.py" line="3093" /> - <location filename="../ViewManager/ViewManager.py" line="2343" /> - <location filename="../ViewManager/ViewManager.py" line="2297" /> + <location filename="../ViewManager/ViewManager.py" line="3103" /> + <location filename="../ViewManager/ViewManager.py" line="2353" /> + <location filename="../ViewManager/ViewManager.py" line="2307" /> <source>Alt+Shift+Right</source> <translation>Alt+Shift+Right</translation> </message> @@ -95925,8 +95938,8 @@ <location filename="../QScintilla/MiniEditor.py" line="1381" /> <location filename="../QScintilla/ShellWindow.py" line="823" /> <location filename="../QScintilla/ShellWindow.py" line="822" /> - <location filename="../ViewManager/ViewManager.py" line="2306" /> - <location filename="../ViewManager/ViewManager.py" line="2305" /> + <location filename="../ViewManager/ViewManager.py" line="2316" /> + <location filename="../ViewManager/ViewManager.py" line="2315" /> <source>Extend selection left one word</source> <translation type="unfinished" /> </message> @@ -95934,8 +95947,8 @@ <location filename="../QScintilla/MiniEditor.py" line="2312" /> <location filename="../QScintilla/MiniEditor.py" line="1397" /> <location filename="../QScintilla/ShellWindow.py" line="838" /> - <location filename="../ViewManager/ViewManager.py" line="3219" /> - <location filename="../ViewManager/ViewManager.py" line="2321" /> + <location filename="../ViewManager/ViewManager.py" line="3229" /> + <location filename="../ViewManager/ViewManager.py" line="2331" /> <source>Ctrl+Shift+Left</source> <translation>Ctrl+Shift+Left</translation> </message> @@ -95944,8 +95957,8 @@ <location filename="../QScintilla/MiniEditor.py" line="1405" /> <location filename="../QScintilla/ShellWindow.py" line="849" /> <location filename="../QScintilla/ShellWindow.py" line="846" /> - <location filename="../ViewManager/ViewManager.py" line="2332" /> - <location filename="../ViewManager/ViewManager.py" line="2329" /> + <location filename="../ViewManager/ViewManager.py" line="2342" /> + <location filename="../ViewManager/ViewManager.py" line="2339" /> <source>Extend selection right one word</source> <translation type="unfinished" /> </message> @@ -95953,8 +95966,8 @@ <location filename="../QScintilla/MiniEditor.py" line="1873" /> <location filename="../QScintilla/MiniEditor.py" line="1425" /> <location filename="../QScintilla/ShellWindow.py" line="866" /> - <location filename="../ViewManager/ViewManager.py" line="2780" /> - <location filename="../ViewManager/ViewManager.py" line="2349" /> + <location filename="../ViewManager/ViewManager.py" line="2790" /> + <location filename="../ViewManager/ViewManager.py" line="2359" /> <source>Ctrl+Shift+Right</source> <translation>Ctrl+Shift+Right</translation> </message> @@ -95963,15 +95976,15 @@ <location filename="../QScintilla/MiniEditor.py" line="1433" /> <location filename="../QScintilla/ShellWindow.py" line="878" /> <location filename="../QScintilla/ShellWindow.py" line="874" /> - <location filename="../ViewManager/ViewManager.py" line="2361" /> - <location filename="../ViewManager/ViewManager.py" line="2357" /> + <location filename="../ViewManager/ViewManager.py" line="2371" /> + <location filename="../ViewManager/ViewManager.py" line="2367" /> <source>Extend selection to first visible character in document line</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1448" /> <location filename="../QScintilla/ShellWindow.py" line="889" /> - <location filename="../ViewManager/ViewManager.py" line="2372" /> + <location filename="../ViewManager/ViewManager.py" line="2382" /> <source>Shift+Home</source> <translation>Shift+Home</translation> </message> @@ -95980,124 +95993,124 @@ <location filename="../QScintilla/MiniEditor.py" line="1455" /> <location filename="../QScintilla/ShellWindow.py" line="899" /> <location filename="../QScintilla/ShellWindow.py" line="896" /> - <location filename="../ViewManager/ViewManager.py" line="2382" /> - <location filename="../ViewManager/ViewManager.py" line="2379" /> + <location filename="../ViewManager/ViewManager.py" line="2392" /> + <location filename="../ViewManager/ViewManager.py" line="2389" /> <source>Extend selection to end of document line</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1468" /> <location filename="../QScintilla/ShellWindow.py" line="909" /> - <location filename="../ViewManager/ViewManager.py" line="2392" /> + <location filename="../ViewManager/ViewManager.py" line="2402" /> <source>Meta+Shift+E</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1472" /> <location filename="../QScintilla/ShellWindow.py" line="913" /> - <location filename="../ViewManager/ViewManager.py" line="2396" /> + <location filename="../ViewManager/ViewManager.py" line="2406" /> <source>Shift+End</source> <translation>Shift+End</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1482" /> <location filename="../QScintilla/MiniEditor.py" line="1479" /> - <location filename="../ViewManager/ViewManager.py" line="2406" /> - <location filename="../ViewManager/ViewManager.py" line="2403" /> + <location filename="../ViewManager/ViewManager.py" line="2416" /> + <location filename="../ViewManager/ViewManager.py" line="2413" /> <source>Extend selection up one paragraph</source> <translation>Seçimi bir paragraf yukarı genişlet</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1485" /> - <location filename="../ViewManager/ViewManager.py" line="2409" /> + <location filename="../ViewManager/ViewManager.py" line="2419" /> <source>Alt+Shift+Up</source> <translation>Alt+Shift+Up</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1498" /> <location filename="../QScintilla/MiniEditor.py" line="1495" /> - <location filename="../ViewManager/ViewManager.py" line="2422" /> - <location filename="../ViewManager/ViewManager.py" line="2419" /> + <location filename="../ViewManager/ViewManager.py" line="2432" /> + <location filename="../ViewManager/ViewManager.py" line="2429" /> <source>Extend selection down one paragraph</source> <translation>Seçimi bir paragraf aşağı genişlet</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1501" /> - <location filename="../ViewManager/ViewManager.py" line="2425" /> + <location filename="../ViewManager/ViewManager.py" line="2435" /> <source>Alt+Shift+Down</source> <translation>Alt+Shift+Down</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1512" /> <location filename="../QScintilla/MiniEditor.py" line="1511" /> - <location filename="../ViewManager/ViewManager.py" line="2436" /> - <location filename="../ViewManager/ViewManager.py" line="2435" /> + <location filename="../ViewManager/ViewManager.py" line="2446" /> + <location filename="../ViewManager/ViewManager.py" line="2445" /> <source>Extend selection up one page</source> <translation>Seçimi bir sayfa yukarı genişlet</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1513" /> - <location filename="../ViewManager/ViewManager.py" line="2437" /> + <location filename="../ViewManager/ViewManager.py" line="2447" /> <source>Shift+PgUp</source> <translation>Shift+PgUp</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1524" /> <location filename="../QScintilla/MiniEditor.py" line="1523" /> - <location filename="../ViewManager/ViewManager.py" line="2448" /> - <location filename="../ViewManager/ViewManager.py" line="2447" /> + <location filename="../ViewManager/ViewManager.py" line="2458" /> + <location filename="../ViewManager/ViewManager.py" line="2457" /> <source>Extend selection down one page</source> <translation>Seçimi bir sayfa aşağı genişlet</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1525" /> - <location filename="../ViewManager/ViewManager.py" line="2449" /> + <location filename="../ViewManager/ViewManager.py" line="2459" /> <source>Shift+PgDown</source> <translation>Shift+PgDown</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1532" /> - <location filename="../ViewManager/ViewManager.py" line="2456" /> + <location filename="../ViewManager/ViewManager.py" line="2466" /> <source>Meta+Shift+V</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1542" /> <location filename="../QScintilla/MiniEditor.py" line="1539" /> - <location filename="../ViewManager/ViewManager.py" line="2466" /> - <location filename="../ViewManager/ViewManager.py" line="2463" /> + <location filename="../ViewManager/ViewManager.py" line="2476" /> + <location filename="../ViewManager/ViewManager.py" line="2473" /> <source>Extend selection to start of document</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1552" /> - <location filename="../ViewManager/ViewManager.py" line="2476" /> + <location filename="../ViewManager/ViewManager.py" line="2486" /> <source>Ctrl+Shift+Up</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1557" /> - <location filename="../ViewManager/ViewManager.py" line="2481" /> + <location filename="../ViewManager/ViewManager.py" line="2491" /> <source>Ctrl+Shift+Home</source> <translation>Ctrl+Shift+Home</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1568" /> <location filename="../QScintilla/MiniEditor.py" line="1565" /> - <location filename="../ViewManager/ViewManager.py" line="2492" /> - <location filename="../ViewManager/ViewManager.py" line="2489" /> + <location filename="../ViewManager/ViewManager.py" line="2502" /> + <location filename="../ViewManager/ViewManager.py" line="2499" /> <source>Extend selection to end of document</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1579" /> - <location filename="../ViewManager/ViewManager.py" line="2503" /> + <location filename="../ViewManager/ViewManager.py" line="2513" /> <source>Ctrl+Shift+Down</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1585" /> - <location filename="../ViewManager/ViewManager.py" line="2509" /> + <location filename="../ViewManager/ViewManager.py" line="2519" /> <source>Ctrl+Shift+End</source> <translation>Ctrl+Shift+End</translation> </message> @@ -96106,37 +96119,37 @@ <location filename="../QScintilla/MiniEditor.py" line="1593" /> <location filename="../QScintilla/ShellWindow.py" line="481" /> <location filename="../QScintilla/ShellWindow.py" line="480" /> - <location filename="../ViewManager/ViewManager.py" line="2518" /> - <location filename="../ViewManager/ViewManager.py" line="2517" /> + <location filename="../ViewManager/ViewManager.py" line="2528" /> + <location filename="../ViewManager/ViewManager.py" line="2527" /> <source>Delete previous character</source> <translation>Önceki karakteri sil</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1595" /> <location filename="../QScintilla/ShellWindow.py" line="482" /> - <location filename="../ViewManager/ViewManager.py" line="2519" /> + <location filename="../ViewManager/ViewManager.py" line="2529" /> <source>Backspace</source> <translation>Backspace</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1602" /> <location filename="../QScintilla/ShellWindow.py" line="489" /> - <location filename="../ViewManager/ViewManager.py" line="2526" /> + <location filename="../ViewManager/ViewManager.py" line="2536" /> <source>Meta+H</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1607" /> <location filename="../QScintilla/ShellWindow.py" line="494" /> - <location filename="../ViewManager/ViewManager.py" line="2531" /> + <location filename="../ViewManager/ViewManager.py" line="2541" /> <source>Shift+Backspace</source> <translation>Shift+Backspace</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1618" /> <location filename="../QScintilla/MiniEditor.py" line="1615" /> - <location filename="../ViewManager/ViewManager.py" line="2542" /> - <location filename="../ViewManager/ViewManager.py" line="2539" /> + <location filename="../ViewManager/ViewManager.py" line="2552" /> + <location filename="../ViewManager/ViewManager.py" line="2549" /> <source>Delete previous character if not at start of line</source> <translation type="unfinished" /> </message> @@ -96145,22 +96158,22 @@ <location filename="../QScintilla/MiniEditor.py" line="1631" /> <location filename="../QScintilla/ShellWindow.py" line="503" /> <location filename="../QScintilla/ShellWindow.py" line="502" /> - <location filename="../ViewManager/ViewManager.py" line="2556" /> - <location filename="../ViewManager/ViewManager.py" line="2555" /> + <location filename="../ViewManager/ViewManager.py" line="2566" /> + <location filename="../ViewManager/ViewManager.py" line="2565" /> <source>Delete current character</source> <translation>Gçerli karakteri siler</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1633" /> <location filename="../QScintilla/ShellWindow.py" line="504" /> - <location filename="../ViewManager/ViewManager.py" line="2557" /> + <location filename="../ViewManager/ViewManager.py" line="2567" /> <source>Del</source> <translation>Del</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1640" /> <location filename="../QScintilla/ShellWindow.py" line="511" /> - <location filename="../ViewManager/ViewManager.py" line="2564" /> + <location filename="../ViewManager/ViewManager.py" line="2574" /> <source>Meta+D</source> <translation type="unfinished" /> </message> @@ -96169,15 +96182,15 @@ <location filename="../QScintilla/MiniEditor.py" line="1647" /> <location filename="../QScintilla/ShellWindow.py" line="519" /> <location filename="../QScintilla/ShellWindow.py" line="518" /> - <location filename="../ViewManager/ViewManager.py" line="2572" /> - <location filename="../ViewManager/ViewManager.py" line="2571" /> + <location filename="../ViewManager/ViewManager.py" line="2582" /> + <location filename="../ViewManager/ViewManager.py" line="2581" /> <source>Delete word to left</source> <translation>Kelimeyi sola doğru sil</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1649" /> <location filename="../QScintilla/ShellWindow.py" line="520" /> - <location filename="../ViewManager/ViewManager.py" line="2573" /> + <location filename="../ViewManager/ViewManager.py" line="2583" /> <source>Ctrl+Backspace</source> <translation>Ctrl+Backspace</translation> </message> @@ -96186,15 +96199,15 @@ <location filename="../QScintilla/MiniEditor.py" line="1659" /> <location filename="../QScintilla/ShellWindow.py" line="531" /> <location filename="../QScintilla/ShellWindow.py" line="530" /> - <location filename="../ViewManager/ViewManager.py" line="2584" /> - <location filename="../ViewManager/ViewManager.py" line="2583" /> + <location filename="../ViewManager/ViewManager.py" line="2594" /> + <location filename="../ViewManager/ViewManager.py" line="2593" /> <source>Delete word to right</source> <translation>Kelimeyi sağa doğru sil</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1661" /> <location filename="../QScintilla/ShellWindow.py" line="532" /> - <location filename="../ViewManager/ViewManager.py" line="2585" /> + <location filename="../ViewManager/ViewManager.py" line="2595" /> <source>Ctrl+Del</source> <translation>Ctrl+Del</translation> </message> @@ -96203,15 +96216,15 @@ <location filename="../QScintilla/MiniEditor.py" line="1671" /> <location filename="../QScintilla/ShellWindow.py" line="543" /> <location filename="../QScintilla/ShellWindow.py" line="542" /> - <location filename="../ViewManager/ViewManager.py" line="2596" /> - <location filename="../ViewManager/ViewManager.py" line="2595" /> + <location filename="../ViewManager/ViewManager.py" line="2606" /> + <location filename="../ViewManager/ViewManager.py" line="2605" /> <source>Delete line to left</source> <translation>Satırı solbaşa kadar sil</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1674" /> <location filename="../QScintilla/ShellWindow.py" line="545" /> - <location filename="../ViewManager/ViewManager.py" line="2598" /> + <location filename="../ViewManager/ViewManager.py" line="2608" /> <source>Ctrl+Shift+Backspace</source> <translation>Ctrl+Shift+Backspace</translation> </message> @@ -96220,22 +96233,22 @@ <location filename="../QScintilla/MiniEditor.py" line="1685" /> <location filename="../QScintilla/ShellWindow.py" line="557" /> <location filename="../QScintilla/ShellWindow.py" line="556" /> - <location filename="../ViewManager/ViewManager.py" line="2610" /> - <location filename="../ViewManager/ViewManager.py" line="2609" /> + <location filename="../ViewManager/ViewManager.py" line="2620" /> + <location filename="../ViewManager/ViewManager.py" line="2619" /> <source>Delete line to right</source> <translation>Satırı sağbaşa kadar sil</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1694" /> <location filename="../QScintilla/ShellWindow.py" line="565" /> - <location filename="../ViewManager/ViewManager.py" line="2618" /> + <location filename="../ViewManager/ViewManager.py" line="2628" /> <source>Meta+K</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1699" /> <location filename="../QScintilla/ShellWindow.py" line="570" /> - <location filename="../ViewManager/ViewManager.py" line="2623" /> + <location filename="../ViewManager/ViewManager.py" line="2633" /> <source>Ctrl+Shift+Del</source> <translation>Ctrl+Shift+Del</translation> </message> @@ -96244,38 +96257,38 @@ <location filename="../QScintilla/MiniEditor.py" line="1707" /> <location filename="../QScintilla/ShellWindow.py" line="469" /> <location filename="../QScintilla/ShellWindow.py" line="468" /> - <location filename="../ViewManager/ViewManager.py" line="2632" /> - <location filename="../ViewManager/ViewManager.py" line="2631" /> + <location filename="../ViewManager/ViewManager.py" line="2642" /> + <location filename="../ViewManager/ViewManager.py" line="2641" /> <source>Insert new line</source> <translation>Araya yeni satır sok</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1709" /> <location filename="../QScintilla/ShellWindow.py" line="470" /> - <location filename="../ViewManager/ViewManager.py" line="2633" /> + <location filename="../ViewManager/ViewManager.py" line="2643" /> <source>Return</source> <translation>Return</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1710" /> <location filename="../QScintilla/ShellWindow.py" line="471" /> - <location filename="../ViewManager/ViewManager.py" line="2634" /> + <location filename="../ViewManager/ViewManager.py" line="2644" /> <source>Enter</source> <translation>Enter</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="2646" /> - <location filename="../ViewManager/ViewManager.py" line="2643" /> + <location filename="../ViewManager/ViewManager.py" line="2656" /> + <location filename="../ViewManager/ViewManager.py" line="2653" /> <source>Insert new line below current line</source> <translation>Geçerli satırın altına yeni satır ekle</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="2649" /> + <location filename="../ViewManager/ViewManager.py" line="2659" /> <source>Shift+Return</source> <translation>Shift+Return</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="2650" /> + <location filename="../ViewManager/ViewManager.py" line="2660" /> <source>Shift+Enter</source> <translation>Shift+Enter</translation> </message> @@ -96284,129 +96297,129 @@ <location filename="../QScintilla/MiniEditor.py" line="1719" /> <location filename="../QScintilla/ShellWindow.py" line="445" /> <location filename="../QScintilla/ShellWindow.py" line="444" /> - <location filename="../ViewManager/ViewManager.py" line="2659" /> - <location filename="../ViewManager/ViewManager.py" line="2658" /> + <location filename="../ViewManager/ViewManager.py" line="2669" /> + <location filename="../ViewManager/ViewManager.py" line="2668" /> <source>Delete current line</source> <translation>Geçerli satırı sil</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1721" /> <location filename="../QScintilla/ShellWindow.py" line="446" /> - <location filename="../ViewManager/ViewManager.py" line="2660" /> + <location filename="../ViewManager/ViewManager.py" line="2670" /> <source>Ctrl+Shift+L</source> <translation>Ctrl+Shift+L</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1732" /> <location filename="../QScintilla/MiniEditor.py" line="1731" /> - <location filename="../ViewManager/ViewManager.py" line="2671" /> - <location filename="../ViewManager/ViewManager.py" line="2670" /> + <location filename="../ViewManager/ViewManager.py" line="2681" /> + <location filename="../ViewManager/ViewManager.py" line="2680" /> <source>Duplicate current line</source> <translation>Geçerli satırı çiftle</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1733" /> - <location filename="../ViewManager/ViewManager.py" line="2672" /> + <location filename="../ViewManager/ViewManager.py" line="2682" /> <source>Ctrl+D</source> <translation>Ctrl+D</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1746" /> <location filename="../QScintilla/MiniEditor.py" line="1743" /> - <location filename="../ViewManager/ViewManager.py" line="2685" /> - <location filename="../ViewManager/ViewManager.py" line="2682" /> + <location filename="../ViewManager/ViewManager.py" line="2695" /> + <location filename="../ViewManager/ViewManager.py" line="2692" /> <source>Swap current and previous lines</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1749" /> - <location filename="../ViewManager/ViewManager.py" line="2688" /> + <location filename="../ViewManager/ViewManager.py" line="2698" /> <source>Ctrl+T</source> <translation>Ctrl+T</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1760" /> <location filename="../QScintilla/MiniEditor.py" line="1759" /> - <location filename="../ViewManager/ViewManager.py" line="2699" /> - <location filename="../ViewManager/ViewManager.py" line="2698" /> + <location filename="../ViewManager/ViewManager.py" line="2709" /> + <location filename="../ViewManager/ViewManager.py" line="2708" /> <source>Reverse selected lines</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1761" /> - <location filename="../ViewManager/ViewManager.py" line="2700" /> + <location filename="../ViewManager/ViewManager.py" line="2710" /> <source>Meta+Alt+R</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1772" /> <location filename="../QScintilla/MiniEditor.py" line="1771" /> - <location filename="../ViewManager/ViewManager.py" line="2711" /> - <location filename="../ViewManager/ViewManager.py" line="2710" /> + <location filename="../ViewManager/ViewManager.py" line="2721" /> + <location filename="../ViewManager/ViewManager.py" line="2720" /> <source>Cut current line</source> <translation>Geçerli satırı kes</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1773" /> - <location filename="../ViewManager/ViewManager.py" line="2712" /> + <location filename="../ViewManager/ViewManager.py" line="2722" /> <source>Alt+Shift+L</source> <translation>Alt+Shift+L</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1784" /> <location filename="../QScintilla/MiniEditor.py" line="1783" /> - <location filename="../ViewManager/ViewManager.py" line="2723" /> - <location filename="../ViewManager/ViewManager.py" line="2722" /> + <location filename="../ViewManager/ViewManager.py" line="2733" /> + <location filename="../ViewManager/ViewManager.py" line="2732" /> <source>Copy current line</source> <translation>Geçerli satırı kopyala</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1785" /> - <location filename="../ViewManager/ViewManager.py" line="2724" /> + <location filename="../ViewManager/ViewManager.py" line="2734" /> <source>Ctrl+Shift+T</source> <translation>Ctrl+Shift+T</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1796" /> <location filename="../QScintilla/MiniEditor.py" line="1795" /> - <location filename="../ViewManager/ViewManager.py" line="2735" /> - <location filename="../ViewManager/ViewManager.py" line="2734" /> + <location filename="../ViewManager/ViewManager.py" line="2745" /> + <location filename="../ViewManager/ViewManager.py" line="2744" /> <source>Toggle insert/overtype</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1797" /> - <location filename="../ViewManager/ViewManager.py" line="2736" /> + <location filename="../ViewManager/ViewManager.py" line="2746" /> <source>Ins</source> <translation>Ins</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1840" /> <location filename="../QScintilla/MiniEditor.py" line="1839" /> - <location filename="../ViewManager/ViewManager.py" line="2747" /> - <location filename="../ViewManager/ViewManager.py" line="2746" /> + <location filename="../ViewManager/ViewManager.py" line="2757" /> + <location filename="../ViewManager/ViewManager.py" line="2756" /> <source>Move to end of display line</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1852" /> - <location filename="../ViewManager/ViewManager.py" line="2759" /> + <location filename="../ViewManager/ViewManager.py" line="2769" /> <source>Alt+End</source> <translation>Alt+End</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1862" /> <location filename="../QScintilla/MiniEditor.py" line="1859" /> - <location filename="../ViewManager/ViewManager.py" line="2769" /> - <location filename="../ViewManager/ViewManager.py" line="2766" /> + <location filename="../ViewManager/ViewManager.py" line="2779" /> + <location filename="../ViewManager/ViewManager.py" line="2776" /> <source>Extend selection to end of display line</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1882" /> <location filename="../QScintilla/MiniEditor.py" line="1881" /> - <location filename="../ViewManager/ViewManager.py" line="2789" /> - <location filename="../ViewManager/ViewManager.py" line="2788" /> + <location filename="../ViewManager/ViewManager.py" line="2799" /> + <location filename="../ViewManager/ViewManager.py" line="2798" /> <source>Formfeed</source> <translation>Süreklibaskı kağıdı</translation> </message> @@ -96415,163 +96428,163 @@ <location filename="../QScintilla/MiniEditor.py" line="1893" /> <location filename="../QScintilla/ShellWindow.py" line="771" /> <location filename="../QScintilla/ShellWindow.py" line="770" /> - <location filename="../ViewManager/ViewManager.py" line="2801" /> - <location filename="../ViewManager/ViewManager.py" line="2800" /> + <location filename="../ViewManager/ViewManager.py" line="2811" /> + <location filename="../ViewManager/ViewManager.py" line="2810" /> <source>Escape</source> <translation>Kaçış</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1895" /> <location filename="../QScintilla/ShellWindow.py" line="772" /> - <location filename="../ViewManager/ViewManager.py" line="2802" /> + <location filename="../ViewManager/ViewManager.py" line="2812" /> <source>Esc</source> <translation>Esc</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1908" /> <location filename="../QScintilla/MiniEditor.py" line="1905" /> - <location filename="../ViewManager/ViewManager.py" line="2815" /> - <location filename="../ViewManager/ViewManager.py" line="2812" /> + <location filename="../ViewManager/ViewManager.py" line="2825" /> + <location filename="../ViewManager/ViewManager.py" line="2822" /> <source>Extend rectangular selection down one line</source> <translation>Köşeli seçimi bir sayfa aşağı genişlet</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1911" /> - <location filename="../ViewManager/ViewManager.py" line="2818" /> + <location filename="../ViewManager/ViewManager.py" line="2828" /> <source>Alt+Ctrl+Down</source> <translation>Alt+Ctrl+Down</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1919" /> - <location filename="../ViewManager/ViewManager.py" line="2826" /> + <location filename="../ViewManager/ViewManager.py" line="2836" /> <source>Meta+Alt+Shift+N</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1930" /> <location filename="../QScintilla/MiniEditor.py" line="1927" /> - <location filename="../ViewManager/ViewManager.py" line="2837" /> - <location filename="../ViewManager/ViewManager.py" line="2834" /> + <location filename="../ViewManager/ViewManager.py" line="2847" /> + <location filename="../ViewManager/ViewManager.py" line="2844" /> <source>Extend rectangular selection up one line</source> <translation>Köşeli seçimi bir satır yukarı genişlet</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1933" /> - <location filename="../ViewManager/ViewManager.py" line="2840" /> + <location filename="../ViewManager/ViewManager.py" line="2850" /> <source>Alt+Ctrl+Up</source> <translation>Alt+Ctrl+Up</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1941" /> - <location filename="../ViewManager/ViewManager.py" line="2848" /> + <location filename="../ViewManager/ViewManager.py" line="2858" /> <source>Meta+Alt+Shift+P</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1952" /> <location filename="../QScintilla/MiniEditor.py" line="1949" /> - <location filename="../ViewManager/ViewManager.py" line="2859" /> - <location filename="../ViewManager/ViewManager.py" line="2856" /> + <location filename="../ViewManager/ViewManager.py" line="2869" /> + <location filename="../ViewManager/ViewManager.py" line="2866" /> <source>Extend rectangular selection left one character</source> <translation>Köşeli seçimi bir karakter sola genişlet</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1955" /> - <location filename="../ViewManager/ViewManager.py" line="2862" /> + <location filename="../ViewManager/ViewManager.py" line="2872" /> <source>Alt+Ctrl+Left</source> <translation>Alt+Ctrl+Left</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1963" /> - <location filename="../ViewManager/ViewManager.py" line="2870" /> + <location filename="../ViewManager/ViewManager.py" line="2880" /> <source>Meta+Alt+Shift+B</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1974" /> <location filename="../QScintilla/MiniEditor.py" line="1971" /> - <location filename="../ViewManager/ViewManager.py" line="2881" /> - <location filename="../ViewManager/ViewManager.py" line="2878" /> + <location filename="../ViewManager/ViewManager.py" line="2891" /> + <location filename="../ViewManager/ViewManager.py" line="2888" /> <source>Extend rectangular selection right one character</source> <translation>Köşeli seçimi bir karakter sağa genişlet</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1977" /> - <location filename="../ViewManager/ViewManager.py" line="2884" /> + <location filename="../ViewManager/ViewManager.py" line="2894" /> <source>Alt+Ctrl+Right</source> <translation>Alt+Ctrl+Right</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1985" /> - <location filename="../ViewManager/ViewManager.py" line="2892" /> + <location filename="../ViewManager/ViewManager.py" line="2902" /> <source>Meta+Alt+Shift+F</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1998" /> <location filename="../QScintilla/MiniEditor.py" line="1993" /> - <location filename="../ViewManager/ViewManager.py" line="2905" /> - <location filename="../ViewManager/ViewManager.py" line="2900" /> + <location filename="../ViewManager/ViewManager.py" line="2915" /> + <location filename="../ViewManager/ViewManager.py" line="2910" /> <source>Extend rectangular selection to first visible character in document line</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2011" /> - <location filename="../ViewManager/ViewManager.py" line="2918" /> + <location filename="../ViewManager/ViewManager.py" line="2928" /> <source>Alt+Shift+Home</source> <translation>Alt+Shift+Home</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2022" /> <location filename="../QScintilla/MiniEditor.py" line="2019" /> - <location filename="../ViewManager/ViewManager.py" line="2929" /> - <location filename="../ViewManager/ViewManager.py" line="2926" /> + <location filename="../ViewManager/ViewManager.py" line="2939" /> + <location filename="../ViewManager/ViewManager.py" line="2936" /> <source>Extend rectangular selection to end of document line</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2033" /> - <location filename="../ViewManager/ViewManager.py" line="2940" /> + <location filename="../ViewManager/ViewManager.py" line="2950" /> <source>Meta+Alt+Shift+E</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2038" /> - <location filename="../ViewManager/ViewManager.py" line="2945" /> + <location filename="../ViewManager/ViewManager.py" line="2955" /> <source>Alt+Shift+End</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2048" /> <location filename="../QScintilla/MiniEditor.py" line="2045" /> - <location filename="../ViewManager/ViewManager.py" line="2955" /> - <location filename="../ViewManager/ViewManager.py" line="2952" /> + <location filename="../ViewManager/ViewManager.py" line="2965" /> + <location filename="../ViewManager/ViewManager.py" line="2962" /> <source>Extend rectangular selection up one page</source> <translation>Köşeli seçimi bir sayfa yukarı genişlet</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2051" /> - <location filename="../ViewManager/ViewManager.py" line="2958" /> + <location filename="../ViewManager/ViewManager.py" line="2968" /> <source>Alt+Shift+PgUp</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2064" /> <location filename="../QScintilla/MiniEditor.py" line="2061" /> - <location filename="../ViewManager/ViewManager.py" line="2971" /> - <location filename="../ViewManager/ViewManager.py" line="2968" /> + <location filename="../ViewManager/ViewManager.py" line="2981" /> + <location filename="../ViewManager/ViewManager.py" line="2978" /> <source>Extend rectangular selection down one page</source> <translation>Köşeli seçimi bir sayfa aşağı genişlet</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2067" /> - <location filename="../ViewManager/ViewManager.py" line="2974" /> + <location filename="../ViewManager/ViewManager.py" line="2984" /> <source>Alt+Shift+PgDown</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2075" /> - <location filename="../ViewManager/ViewManager.py" line="2982" /> + <location filename="../ViewManager/ViewManager.py" line="2992" /> <source>Meta+Alt+Shift+V</source> <translation type="unfinished" /> </message> @@ -96580,299 +96593,299 @@ <location filename="../QScintilla/MiniEditor.py" line="2549" /> <location filename="../QScintilla/MiniEditor.py" line="2084" /> <location filename="../QScintilla/MiniEditor.py" line="2083" /> - <location filename="../ViewManager/ViewManager.py" line="2991" /> - <location filename="../ViewManager/ViewManager.py" line="2990" /> + <location filename="../ViewManager/ViewManager.py" line="3001" /> + <location filename="../ViewManager/ViewManager.py" line="3000" /> <source>Duplicate current selection</source> <translation>Geçerli seçimi çoğalt</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2551" /> <location filename="../QScintilla/MiniEditor.py" line="2085" /> - <location filename="../ViewManager/ViewManager.py" line="2992" /> + <location filename="../ViewManager/ViewManager.py" line="3002" /> <source>Ctrl+Shift+D</source> <translation>Ctrl+Shift+D</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2099" /> <location filename="../QScintilla/MiniEditor.py" line="2096" /> - <location filename="../ViewManager/ViewManager.py" line="3006" /> - <location filename="../ViewManager/ViewManager.py" line="3003" /> + <location filename="../ViewManager/ViewManager.py" line="3016" /> + <location filename="../ViewManager/ViewManager.py" line="3013" /> <source>Scroll to start of document</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2118" /> <location filename="../QScintilla/MiniEditor.py" line="2117" /> - <location filename="../ViewManager/ViewManager.py" line="3025" /> - <location filename="../ViewManager/ViewManager.py" line="3024" /> + <location filename="../ViewManager/ViewManager.py" line="3035" /> + <location filename="../ViewManager/ViewManager.py" line="3034" /> <source>Scroll to end of document</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2137" /> <location filename="../QScintilla/MiniEditor.py" line="2134" /> - <location filename="../ViewManager/ViewManager.py" line="3044" /> - <location filename="../ViewManager/ViewManager.py" line="3041" /> + <location filename="../ViewManager/ViewManager.py" line="3054" /> + <location filename="../ViewManager/ViewManager.py" line="3051" /> <source>Scroll vertically to center current line</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2147" /> - <location filename="../ViewManager/ViewManager.py" line="3054" /> + <location filename="../ViewManager/ViewManager.py" line="3064" /> <source>Meta+L</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2156" /> <location filename="../QScintilla/MiniEditor.py" line="2155" /> - <location filename="../ViewManager/ViewManager.py" line="3063" /> - <location filename="../ViewManager/ViewManager.py" line="3062" /> + <location filename="../ViewManager/ViewManager.py" line="3073" /> + <location filename="../ViewManager/ViewManager.py" line="3072" /> <source>Move to end of next word</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2175" /> <location filename="../QScintilla/MiniEditor.py" line="2172" /> - <location filename="../ViewManager/ViewManager.py" line="3082" /> - <location filename="../ViewManager/ViewManager.py" line="3079" /> + <location filename="../ViewManager/ViewManager.py" line="3092" /> + <location filename="../ViewManager/ViewManager.py" line="3089" /> <source>Extend selection to end of next word</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2198" /> <location filename="../QScintilla/MiniEditor.py" line="2195" /> - <location filename="../ViewManager/ViewManager.py" line="3105" /> - <location filename="../ViewManager/ViewManager.py" line="3102" /> + <location filename="../ViewManager/ViewManager.py" line="3115" /> + <location filename="../ViewManager/ViewManager.py" line="3112" /> <source>Move to end of previous word</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2215" /> <location filename="../QScintilla/MiniEditor.py" line="2212" /> - <location filename="../ViewManager/ViewManager.py" line="3122" /> - <location filename="../ViewManager/ViewManager.py" line="3119" /> + <location filename="../ViewManager/ViewManager.py" line="3132" /> + <location filename="../ViewManager/ViewManager.py" line="3129" /> <source>Extend selection to end of previous word</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2232" /> <location filename="../QScintilla/MiniEditor.py" line="2229" /> - <location filename="../ViewManager/ViewManager.py" line="3139" /> - <location filename="../ViewManager/ViewManager.py" line="3136" /> + <location filename="../ViewManager/ViewManager.py" line="3149" /> + <location filename="../ViewManager/ViewManager.py" line="3146" /> <source>Move to start of document line</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2242" /> - <location filename="../ViewManager/ViewManager.py" line="3149" /> + <location filename="../ViewManager/ViewManager.py" line="3159" /> <source>Meta+A</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2253" /> <location filename="../QScintilla/MiniEditor.py" line="2250" /> - <location filename="../ViewManager/ViewManager.py" line="3160" /> - <location filename="../ViewManager/ViewManager.py" line="3157" /> + <location filename="../ViewManager/ViewManager.py" line="3170" /> + <location filename="../ViewManager/ViewManager.py" line="3167" /> <source>Extend selection to start of document line</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2264" /> - <location filename="../ViewManager/ViewManager.py" line="3171" /> + <location filename="../ViewManager/ViewManager.py" line="3181" /> <source>Meta+Shift+A</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2277" /> <location filename="../QScintilla/MiniEditor.py" line="2273" /> - <location filename="../ViewManager/ViewManager.py" line="3184" /> - <location filename="../ViewManager/ViewManager.py" line="3180" /> + <location filename="../ViewManager/ViewManager.py" line="3194" /> + <location filename="../ViewManager/ViewManager.py" line="3190" /> <source>Extend rectangular selection to start of document line</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2289" /> - <location filename="../ViewManager/ViewManager.py" line="3196" /> + <location filename="../ViewManager/ViewManager.py" line="3206" /> <source>Meta+Alt+Shift+A</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2301" /> <location filename="../QScintilla/MiniEditor.py" line="2298" /> - <location filename="../ViewManager/ViewManager.py" line="3208" /> - <location filename="../ViewManager/ViewManager.py" line="3205" /> + <location filename="../ViewManager/ViewManager.py" line="3218" /> + <location filename="../ViewManager/ViewManager.py" line="3215" /> <source>Extend selection to start of display line</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2324" /> <location filename="../QScintilla/MiniEditor.py" line="2321" /> - <location filename="../ViewManager/ViewManager.py" line="3231" /> - <location filename="../ViewManager/ViewManager.py" line="3228" /> + <location filename="../ViewManager/ViewManager.py" line="3241" /> + <location filename="../ViewManager/ViewManager.py" line="3238" /> <source>Move to start of display or document line</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2342" /> <location filename="../QScintilla/MiniEditor.py" line="2338" /> - <location filename="../ViewManager/ViewManager.py" line="3249" /> - <location filename="../ViewManager/ViewManager.py" line="3245" /> + <location filename="../ViewManager/ViewManager.py" line="3259" /> + <location filename="../ViewManager/ViewManager.py" line="3255" /> <source>Extend selection to start of display or document line</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2361" /> <location filename="../QScintilla/MiniEditor.py" line="2357" /> - <location filename="../ViewManager/ViewManager.py" line="3268" /> - <location filename="../ViewManager/ViewManager.py" line="3264" /> + <location filename="../ViewManager/ViewManager.py" line="3278" /> + <location filename="../ViewManager/ViewManager.py" line="3274" /> <source>Move to first visible character in display or document line</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2381" /> <location filename="../QScintilla/MiniEditor.py" line="2376" /> - <location filename="../ViewManager/ViewManager.py" line="3288" /> - <location filename="../ViewManager/ViewManager.py" line="3283" /> + <location filename="../ViewManager/ViewManager.py" line="3298" /> + <location filename="../ViewManager/ViewManager.py" line="3293" /> <source>Extend selection to first visible character in display or document line</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2400" /> <location filename="../QScintilla/MiniEditor.py" line="2397" /> - <location filename="../ViewManager/ViewManager.py" line="3307" /> - <location filename="../ViewManager/ViewManager.py" line="3304" /> + <location filename="../ViewManager/ViewManager.py" line="3317" /> + <location filename="../ViewManager/ViewManager.py" line="3314" /> <source>Move to end of display or document line</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2417" /> <location filename="../QScintilla/MiniEditor.py" line="2414" /> - <location filename="../ViewManager/ViewManager.py" line="3324" /> - <location filename="../ViewManager/ViewManager.py" line="3321" /> + <location filename="../ViewManager/ViewManager.py" line="3334" /> + <location filename="../ViewManager/ViewManager.py" line="3331" /> <source>Extend selection to end of display or document line</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2432" /> <location filename="../QScintilla/MiniEditor.py" line="2431" /> - <location filename="../ViewManager/ViewManager.py" line="3339" /> - <location filename="../ViewManager/ViewManager.py" line="3338" /> + <location filename="../ViewManager/ViewManager.py" line="3349" /> + <location filename="../ViewManager/ViewManager.py" line="3348" /> <source>Stuttered move up one page</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2447" /> <location filename="../QScintilla/MiniEditor.py" line="2444" /> - <location filename="../ViewManager/ViewManager.py" line="3354" /> - <location filename="../ViewManager/ViewManager.py" line="3351" /> + <location filename="../ViewManager/ViewManager.py" line="3364" /> + <location filename="../ViewManager/ViewManager.py" line="3361" /> <source>Stuttered extend selection up one page</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2464" /> <location filename="../QScintilla/MiniEditor.py" line="2461" /> - <location filename="../ViewManager/ViewManager.py" line="3371" /> - <location filename="../ViewManager/ViewManager.py" line="3368" /> + <location filename="../ViewManager/ViewManager.py" line="3381" /> + <location filename="../ViewManager/ViewManager.py" line="3378" /> <source>Stuttered move down one page</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2481" /> <location filename="../QScintilla/MiniEditor.py" line="2478" /> - <location filename="../ViewManager/ViewManager.py" line="3388" /> - <location filename="../ViewManager/ViewManager.py" line="3385" /> + <location filename="../ViewManager/ViewManager.py" line="3398" /> + <location filename="../ViewManager/ViewManager.py" line="3395" /> <source>Stuttered extend selection down one page</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2498" /> <location filename="../QScintilla/MiniEditor.py" line="2495" /> - <location filename="../ViewManager/ViewManager.py" line="3405" /> - <location filename="../ViewManager/ViewManager.py" line="3402" /> + <location filename="../ViewManager/ViewManager.py" line="3415" /> + <location filename="../ViewManager/ViewManager.py" line="3412" /> <source>Delete right to end of next word</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2508" /> - <location filename="../ViewManager/ViewManager.py" line="3415" /> + <location filename="../ViewManager/ViewManager.py" line="3425" /> <source>Alt+Del</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2519" /> <location filename="../QScintilla/MiniEditor.py" line="2516" /> - <location filename="../ViewManager/ViewManager.py" line="3426" /> - <location filename="../ViewManager/ViewManager.py" line="3423" /> + <location filename="../ViewManager/ViewManager.py" line="3436" /> + <location filename="../ViewManager/ViewManager.py" line="3433" /> <source>Move selected lines up one line</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2536" /> <location filename="../QScintilla/MiniEditor.py" line="2533" /> - <location filename="../ViewManager/ViewManager.py" line="3443" /> - <location filename="../ViewManager/ViewManager.py" line="3440" /> + <location filename="../ViewManager/ViewManager.py" line="3453" /> + <location filename="../ViewManager/ViewManager.py" line="3450" /> <source>Move selected lines down one line</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1810" /> <location filename="../QScintilla/MiniEditor.py" line="1807" /> - <location filename="../ViewManager/ViewManager.py" line="3461" /> - <location filename="../ViewManager/ViewManager.py" line="3458" /> + <location filename="../ViewManager/ViewManager.py" line="3471" /> + <location filename="../ViewManager/ViewManager.py" line="3468" /> <source>Convert selection to lower case</source> <translation>Seçimi küçük olürük değiştir</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1813" /> - <location filename="../ViewManager/ViewManager.py" line="3464" /> + <location filename="../ViewManager/ViewManager.py" line="3474" /> <source>Alt+Shift+U</source> <translation>Alt+Shift+U</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1826" /> <location filename="../QScintilla/MiniEditor.py" line="1823" /> - <location filename="../ViewManager/ViewManager.py" line="3477" /> - <location filename="../ViewManager/ViewManager.py" line="3474" /> + <location filename="../ViewManager/ViewManager.py" line="3487" /> + <location filename="../ViewManager/ViewManager.py" line="3484" /> <source>Convert selection to upper case</source> <translation>Seçimi büyük olarak değiştir</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1829" /> - <location filename="../ViewManager/ViewManager.py" line="3480" /> + <location filename="../ViewManager/ViewManager.py" line="3490" /> <source>Ctrl+Shift+U</source> <translation>Ctrl+Shift+U</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3506" /> + <location filename="../ViewManager/ViewManager.py" line="3516" /> <source>&Edit</source> <translation>Düz&en</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3564" /> - <location filename="../ViewManager/ViewManager.py" line="3562" /> + <location filename="../ViewManager/ViewManager.py" line="3574" /> + <location filename="../ViewManager/ViewManager.py" line="3572" /> <source>Edit</source> <translation>Düzen</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2568" /> <location filename="../QScintilla/ShellWindow.py" line="927" /> - <location filename="../ViewManager/ViewManager.py" line="4167" /> - <location filename="../ViewManager/ViewManager.py" line="4165" /> - <location filename="../ViewManager/ViewManager.py" line="3598" /> + <location filename="../ViewManager/ViewManager.py" line="4177" /> + <location filename="../ViewManager/ViewManager.py" line="4175" /> + <location filename="../ViewManager/ViewManager.py" line="3608" /> <source>Search</source> <translation>Ara</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2570" /> <location filename="../QScintilla/ShellWindow.py" line="929" /> - <location filename="../ViewManager/ViewManager.py" line="3600" /> + <location filename="../ViewManager/ViewManager.py" line="3610" /> <source>&Search...</source> <translation>A&ra...</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2572" /> <location filename="../QScintilla/ShellWindow.py" line="931" /> - <location filename="../ViewManager/ViewManager.py" line="3602" /> + <location filename="../ViewManager/ViewManager.py" line="3612" /> <source>Ctrl+F</source> <comment>Search|Search</comment> <translation>Ctrl+F</translation> @@ -96880,34 +96893,34 @@ <message> <location filename="../QScintilla/MiniEditor.py" line="2579" /> <location filename="../QScintilla/ShellWindow.py" line="938" /> - <location filename="../ViewManager/ViewManager.py" line="3609" /> + <location filename="../ViewManager/ViewManager.py" line="3619" /> <source>Search for a text</source> <translation>Metin olarak ara</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2582" /> - <location filename="../ViewManager/ViewManager.py" line="3612" /> + <location filename="../ViewManager/ViewManager.py" line="3622" /> <source><b>Search</b><p>Search for some text in the current editor. A dialog is shown to enter the searchtext and options for the search.</p></source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2594" /> <location filename="../QScintilla/ShellWindow.py" line="953" /> - <location filename="../ViewManager/ViewManager.py" line="3624" /> + <location filename="../ViewManager/ViewManager.py" line="3634" /> <source>Search next</source> <translation>Sonrakini ara</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2596" /> <location filename="../QScintilla/ShellWindow.py" line="955" /> - <location filename="../ViewManager/ViewManager.py" line="3626" /> + <location filename="../ViewManager/ViewManager.py" line="3636" /> <source>Search &next</source> <translation>So&nrakini ara</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2598" /> <location filename="../QScintilla/ShellWindow.py" line="957" /> - <location filename="../ViewManager/ViewManager.py" line="3628" /> + <location filename="../ViewManager/ViewManager.py" line="3638" /> <source>F3</source> <comment>Search|Search next</comment> <translation>F3</translation> @@ -96915,34 +96928,34 @@ <message> <location filename="../QScintilla/MiniEditor.py" line="2605" /> <location filename="../QScintilla/ShellWindow.py" line="964" /> - <location filename="../ViewManager/ViewManager.py" line="3635" /> + <location filename="../ViewManager/ViewManager.py" line="3645" /> <source>Search next occurrence of text</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2608" /> - <location filename="../ViewManager/ViewManager.py" line="3638" /> + <location filename="../ViewManager/ViewManager.py" line="3648" /> <source><b>Search next</b><p>Search the next occurrence of some text in the current editor. The previously entered searchtext and options are reused.</p></source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2620" /> <location filename="../QScintilla/ShellWindow.py" line="981" /> - <location filename="../ViewManager/ViewManager.py" line="3650" /> + <location filename="../ViewManager/ViewManager.py" line="3660" /> <source>Search previous</source> <translation>Öncekini ara</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2622" /> <location filename="../QScintilla/ShellWindow.py" line="983" /> - <location filename="../ViewManager/ViewManager.py" line="3652" /> + <location filename="../ViewManager/ViewManager.py" line="3662" /> <source>Search &previous</source> <translation>Öncekini a&ra</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2624" /> <location filename="../QScintilla/ShellWindow.py" line="985" /> - <location filename="../ViewManager/ViewManager.py" line="3654" /> + <location filename="../ViewManager/ViewManager.py" line="3664" /> <source>Shift+F3</source> <comment>Search|Search previous</comment> <translation>Shift+F3</translation> @@ -96950,436 +96963,436 @@ <message> <location filename="../QScintilla/MiniEditor.py" line="2633" /> <location filename="../QScintilla/ShellWindow.py" line="994" /> - <location filename="../ViewManager/ViewManager.py" line="3663" /> + <location filename="../ViewManager/ViewManager.py" line="3673" /> <source>Search previous occurrence of text</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2638" /> - <location filename="../ViewManager/ViewManager.py" line="3668" /> + <location filename="../ViewManager/ViewManager.py" line="3678" /> <source><b>Search previous</b><p>Search the previous occurrence of some text in the current editor. The previously entered searchtext and options are reused.</p></source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2652" /> <location filename="../QScintilla/MiniEditor.py" line="2650" /> - <location filename="../ViewManager/ViewManager.py" line="3682" /> - <location filename="../ViewManager/ViewManager.py" line="3680" /> + <location filename="../ViewManager/ViewManager.py" line="3692" /> + <location filename="../ViewManager/ViewManager.py" line="3690" /> <source>Clear search markers</source> <translation>Arama işaretlerini temizle</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2654" /> - <location filename="../ViewManager/ViewManager.py" line="3684" /> + <location filename="../ViewManager/ViewManager.py" line="3694" /> <source>Ctrl+3</source> <comment>Search|Clear search markers</comment> <translation>Ctrl+3</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2663" /> - <location filename="../ViewManager/ViewManager.py" line="3693" /> + <location filename="../ViewManager/ViewManager.py" line="3703" /> <source>Clear all displayed search markers</source> <translation>Gösterilen tüm arama işaretlerin temizle</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2668" /> - <location filename="../ViewManager/ViewManager.py" line="3698" /> + <location filename="../ViewManager/ViewManager.py" line="3708" /> <source><b>Clear search markers</b><p>Clear all displayed search markers.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3710" /> - <location filename="../ViewManager/ViewManager.py" line="3708" /> + <location filename="../ViewManager/ViewManager.py" line="3720" /> + <location filename="../ViewManager/ViewManager.py" line="3718" /> <source>Search current word forward</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3712" /> + <location filename="../ViewManager/ViewManager.py" line="3722" /> <source>Ctrl+.</source> <comment>Search|Search current word forward</comment> <translation type="unfinished">Ctrl+.</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3721" /> + <location filename="../ViewManager/ViewManager.py" line="3731" /> <source>Search next occurrence of the current word</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3726" /> + <location filename="../ViewManager/ViewManager.py" line="3736" /> <source><b>Search current word forward</b><p>Search the next occurrence of the current word of the current editor.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3739" /> - <location filename="../ViewManager/ViewManager.py" line="3737" /> + <location filename="../ViewManager/ViewManager.py" line="3749" /> + <location filename="../ViewManager/ViewManager.py" line="3747" /> <source>Search current word backward</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3741" /> + <location filename="../ViewManager/ViewManager.py" line="3751" /> <source>Ctrl+,</source> <comment>Search|Search current word backward</comment> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3750" /> + <location filename="../ViewManager/ViewManager.py" line="3760" /> <source>Search previous occurrence of the current word</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3755" /> + <location filename="../ViewManager/ViewManager.py" line="3765" /> <source><b>Search current word backward</b><p>Search the previous occurrence of the current word of the current editor.</p></source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2678" /> - <location filename="../ViewManager/ViewManager.py" line="3766" /> + <location filename="../ViewManager/ViewManager.py" line="3776" /> <source>Replace</source> <translation>Yerdeğiştir</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2679" /> - <location filename="../ViewManager/ViewManager.py" line="3767" /> + <location filename="../ViewManager/ViewManager.py" line="3777" /> <source>&Replace...</source> <translation>&Yerdeğiştir...</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2681" /> - <location filename="../ViewManager/ViewManager.py" line="3769" /> + <location filename="../ViewManager/ViewManager.py" line="3779" /> <source>Ctrl+R</source> <comment>Search|Replace</comment> <translation>Ctrl+R</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2688" /> - <location filename="../ViewManager/ViewManager.py" line="3776" /> + <location filename="../ViewManager/ViewManager.py" line="3786" /> <source>Replace some text</source> <translation>Bazı metinleri değiştir</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2691" /> - <location filename="../ViewManager/ViewManager.py" line="3779" /> + <location filename="../ViewManager/ViewManager.py" line="3789" /> <source><b>Replace</b><p>Search for some text in the current editor and replace it. A dialog is shown to enter the searchtext, the replacement text and options for the search and replace.</p></source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2705" /> <location filename="../QScintilla/MiniEditor.py" line="2703" /> - <location filename="../ViewManager/ViewManager.py" line="3793" /> - <location filename="../ViewManager/ViewManager.py" line="3791" /> + <location filename="../ViewManager/ViewManager.py" line="3803" /> + <location filename="../ViewManager/ViewManager.py" line="3801" /> <source>Replace and Search</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2707" /> - <location filename="../ViewManager/ViewManager.py" line="3795" /> + <location filename="../ViewManager/ViewManager.py" line="3805" /> <source>Meta+R</source> <comment>Search|Replace and Search</comment> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2716" /> - <location filename="../ViewManager/ViewManager.py" line="3804" /> + <location filename="../ViewManager/ViewManager.py" line="3814" /> <source>Replace the found text and search the next occurrence</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2721" /> - <location filename="../ViewManager/ViewManager.py" line="3809" /> + <location filename="../ViewManager/ViewManager.py" line="3819" /> <source><b>Replace and Search</b><p>Replace the found occurrence of text in the current editor and search for the next one. The previously entered search text and options are reused.</p></source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2737" /> <location filename="../QScintilla/MiniEditor.py" line="2735" /> - <location filename="../ViewManager/ViewManager.py" line="3825" /> - <location filename="../ViewManager/ViewManager.py" line="3823" /> + <location filename="../ViewManager/ViewManager.py" line="3835" /> + <location filename="../ViewManager/ViewManager.py" line="3833" /> <source>Replace Occurrence</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2739" /> - <location filename="../ViewManager/ViewManager.py" line="3827" /> + <location filename="../ViewManager/ViewManager.py" line="3837" /> <source>Ctrl+Meta+R</source> <comment>Search|Replace Occurrence</comment> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2748" /> - <location filename="../ViewManager/ViewManager.py" line="3836" /> + <location filename="../ViewManager/ViewManager.py" line="3846" /> <source>Replace the found text</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2751" /> - <location filename="../ViewManager/ViewManager.py" line="3839" /> + <location filename="../ViewManager/ViewManager.py" line="3849" /> <source><b>Replace Occurrence</b><p>Replace the found occurrence of the search text in the current editor.</p></source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2764" /> <location filename="../QScintilla/MiniEditor.py" line="2762" /> - <location filename="../ViewManager/ViewManager.py" line="3852" /> - <location filename="../ViewManager/ViewManager.py" line="3850" /> + <location filename="../ViewManager/ViewManager.py" line="3862" /> + <location filename="../ViewManager/ViewManager.py" line="3860" /> <source>Replace All</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2766" /> - <location filename="../ViewManager/ViewManager.py" line="3854" /> + <location filename="../ViewManager/ViewManager.py" line="3864" /> <source>Shift+Meta+R</source> <comment>Search|Replace All</comment> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2775" /> - <location filename="../ViewManager/ViewManager.py" line="3863" /> + <location filename="../ViewManager/ViewManager.py" line="3873" /> <source>Replace search text occurrences</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2778" /> - <location filename="../ViewManager/ViewManager.py" line="3866" /> + <location filename="../ViewManager/ViewManager.py" line="3876" /> <source><b>Replace All</b><p>Replace all occurrences of the search text in the current editor.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3888" /> - <location filename="../ViewManager/ViewManager.py" line="3877" /> + <location filename="../ViewManager/ViewManager.py" line="3898" /> + <location filename="../ViewManager/ViewManager.py" line="3887" /> <source>Goto Line</source> <translation>Satıra Git</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3879" /> + <location filename="../ViewManager/ViewManager.py" line="3889" /> <source>&Goto Line...</source> <translation>Satıra &Git...</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3881" /> + <location filename="../ViewManager/ViewManager.py" line="3891" /> <source>Ctrl+G</source> <comment>Search|Goto Line</comment> <translation>Ctrl+G</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3891" /> + <location filename="../ViewManager/ViewManager.py" line="3901" /> <source><b>Goto Line</b><p>Go to a specific line of text in the current editor. A dialog is shown to enter the linenumber.</p></source> <translation><b>Satıra Git</b><p>Geçerli düzenleyicide metnin seçilen bir satırına gitr. Bir diyalog seçilebilecek satır numaralarını gösterir.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3913" /> - <location filename="../ViewManager/ViewManager.py" line="3902" /> + <location filename="../ViewManager/ViewManager.py" line="3923" /> + <location filename="../ViewManager/ViewManager.py" line="3912" /> <source>Goto Brace</source> <translation>Köşeli Ayraça Git</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3904" /> + <location filename="../ViewManager/ViewManager.py" line="3914" /> <source>Goto &Brace</source> <translation>Köşeli &Ayraça Git</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3906" /> - <source>Ctrl+L</source> - <comment>Search|Goto Brace</comment> - <translation>Ctrl+L</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="3916" /> + <source>Ctrl+L</source> + <comment>Search|Goto Brace</comment> + <translation>Ctrl+L</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="3926" /> <source><b>Goto Brace</b><p>Go to the matching brace in the current editor.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3939" /> - <location filename="../ViewManager/ViewManager.py" line="3926" /> + <location filename="../ViewManager/ViewManager.py" line="3949" /> + <location filename="../ViewManager/ViewManager.py" line="3936" /> <source>Goto Last Edit Location</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3928" /> + <location filename="../ViewManager/ViewManager.py" line="3938" /> <source>Goto Last &Edit Location</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3930" /> + <location filename="../ViewManager/ViewManager.py" line="3940" /> <source>Ctrl+Shift+G</source> <comment>Search|Goto Last Edit Location</comment> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3942" /> + <location filename="../ViewManager/ViewManager.py" line="3952" /> <source><b>Goto Last Edit Location</b><p>Go to the location of the last edit in the current editor.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3954" /> - <location filename="../ViewManager/ViewManager.py" line="3953" /> + <location filename="../ViewManager/ViewManager.py" line="3964" /> + <location filename="../ViewManager/ViewManager.py" line="3963" /> <source>Goto Previous Method or Class</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3956" /> + <location filename="../ViewManager/ViewManager.py" line="3966" /> <source>Ctrl+Shift+Up</source> <comment>Search|Goto Previous Method or Class</comment> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3967" /> + <location filename="../ViewManager/ViewManager.py" line="3977" /> <source>Go to the previous method or class definition</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3972" /> + <location filename="../ViewManager/ViewManager.py" line="3982" /> <source><b>Goto Previous Method or Class</b><p>Goes to the line of the previous method or class definition and highlights the name.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3984" /> - <location filename="../ViewManager/ViewManager.py" line="3983" /> + <location filename="../ViewManager/ViewManager.py" line="3994" /> + <location filename="../ViewManager/ViewManager.py" line="3993" /> <source>Goto Next Method or Class</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3986" /> + <location filename="../ViewManager/ViewManager.py" line="3996" /> <source>Ctrl+Shift+Down</source> <comment>Search|Goto Next Method or Class</comment> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3995" /> + <location filename="../ViewManager/ViewManager.py" line="4005" /> <source>Go to the next method or class definition</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4000" /> + <location filename="../ViewManager/ViewManager.py" line="4010" /> <source><b>Goto Next Method or Class</b><p>Goes to the line of the next method or class definition and highlights the name.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4013" /> + <location filename="../ViewManager/ViewManager.py" line="4023" /> <source>Search in Files</source> <translation>Dosyalarda Ara</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4015" /> + <location filename="../ViewManager/ViewManager.py" line="4025" /> <source>Search in &Files...</source> <translation>Dosyalar&da Ara...</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4017" /> + <location filename="../ViewManager/ViewManager.py" line="4027" /> <source>Shift+Ctrl+F</source> <comment>Search|Search Files</comment> <translation>Shift+Ctrl+F</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4026" /> + <location filename="../ViewManager/ViewManager.py" line="4036" /> <source>Search for a text in files</source> <translation>Metni dosyada ara</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4029" /> + <location filename="../ViewManager/ViewManager.py" line="4039" /> <source><b>Search in Files</b><p>Search for some text in the files of a directory tree or the project. A window is shown to enter the searchtext and options for the search and to display the result.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4041" /> + <location filename="../ViewManager/ViewManager.py" line="4051" /> <source>Replace in Files</source> <translation>Dosyalarda yer değiştir</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4042" /> + <location filename="../ViewManager/ViewManager.py" line="4052" /> <source>Replace in F&iles...</source> <translation>Dosya İ&çinde Değiştir...</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4044" /> + <location filename="../ViewManager/ViewManager.py" line="4054" /> <source>Shift+Ctrl+R</source> <comment>Search|Replace in Files</comment> <translation>Shift+Ctrl+R</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4053" /> + <location filename="../ViewManager/ViewManager.py" line="4063" /> <source>Search for a text in files and replace it</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4058" /> + <location filename="../ViewManager/ViewManager.py" line="4068" /> <source><b>Replace in Files</b><p>Search for some text in the files of a directory tree or the project and replace it. A window is shown to enter the searchtext, the replacement text and options for the search and to display the result.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4071" /> + <location filename="../ViewManager/ViewManager.py" line="4081" /> <source>Search in Open Files</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4073" /> + <location filename="../ViewManager/ViewManager.py" line="4083" /> <source>Search in Open Files...</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4075" /> + <location filename="../ViewManager/ViewManager.py" line="4085" /> <source>Meta+Ctrl+Alt+F</source> <comment>Search|Search Open Files</comment> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4084" /> + <location filename="../ViewManager/ViewManager.py" line="4094" /> <source>Search for a text in open files</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4087" /> + <location filename="../ViewManager/ViewManager.py" line="4097" /> <source><b>Search in Open Files</b><p>Search for some text in the currently opened files. A window is shown to enter the search text and options for the search and to display the result.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4099" /> + <location filename="../ViewManager/ViewManager.py" line="4109" /> <source>Replace in Open Files</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4100" /> + <location filename="../ViewManager/ViewManager.py" line="4110" /> <source>Replace in Open Files...</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4102" /> + <location filename="../ViewManager/ViewManager.py" line="4112" /> <source>Meta+Ctrl+Alt+R</source> <comment>Search|Replace in Open Files</comment> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4111" /> + <location filename="../ViewManager/ViewManager.py" line="4121" /> <source>Search for a text in open files and replace it</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4116" /> + <location filename="../ViewManager/ViewManager.py" line="4126" /> <source><b>Replace in Open Files</b><p>Search for some text in the currently opened files and replace it. A window is shown to enter the search text, the replacement text and options for the search and to display the result.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4137" /> + <location filename="../ViewManager/ViewManager.py" line="4147" /> <source>&Search</source> <translation>A&ra</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2793" /> <location filename="../QScintilla/ShellWindow.py" line="1020" /> - <location filename="../ViewManager/ViewManager.py" line="4208" /> + <location filename="../ViewManager/ViewManager.py" line="4218" /> <source>Zoom in</source> <translation>Büyüt</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2795" /> <location filename="../QScintilla/ShellWindow.py" line="1022" /> - <location filename="../ViewManager/ViewManager.py" line="4210" /> + <location filename="../ViewManager/ViewManager.py" line="4220" /> <source>Zoom &in</source> <translation>Bü&yült</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2797" /> <location filename="../QScintilla/ShellWindow.py" line="1024" /> - <location filename="../ViewManager/ViewManager.py" line="4212" /> + <location filename="../ViewManager/ViewManager.py" line="4222" /> <source>Ctrl++</source> <comment>View|Zoom in</comment> <translation>Ctrl++</translation> @@ -97387,7 +97400,7 @@ <message> <location filename="../QScintilla/MiniEditor.py" line="2800" /> <location filename="../QScintilla/ShellWindow.py" line="1027" /> - <location filename="../ViewManager/ViewManager.py" line="4215" /> + <location filename="../ViewManager/ViewManager.py" line="4225" /> <source>Zoom In</source> <comment>View|Zoom in</comment> <translation type="unfinished" /> @@ -97395,35 +97408,35 @@ <message> <location filename="../QScintilla/MiniEditor.py" line="2806" /> <location filename="../QScintilla/ShellWindow.py" line="1033" /> - <location filename="../ViewManager/ViewManager.py" line="4221" /> + <location filename="../ViewManager/ViewManager.py" line="4231" /> <source>Zoom in on the text</source> <translation>MEtni Büyüt</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2809" /> <location filename="../QScintilla/ShellWindow.py" line="1036" /> - <location filename="../ViewManager/ViewManager.py" line="4224" /> + <location filename="../ViewManager/ViewManager.py" line="4234" /> <source><b>Zoom in</b><p>Zoom in on the text. This makes the text bigger.</p></source> <translation><b>Büyüt</b><p>Metin içinde büyüt. Bu metni daha büyük yapar.</p></translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2819" /> <location filename="../QScintilla/ShellWindow.py" line="1046" /> - <location filename="../ViewManager/ViewManager.py" line="4234" /> + <location filename="../ViewManager/ViewManager.py" line="4244" /> <source>Zoom out</source> <translation>Küçült</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2821" /> <location filename="../QScintilla/ShellWindow.py" line="1048" /> - <location filename="../ViewManager/ViewManager.py" line="4236" /> + <location filename="../ViewManager/ViewManager.py" line="4246" /> <source>Zoom &out</source> <translation>Küçü&lt</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2823" /> <location filename="../QScintilla/ShellWindow.py" line="1050" /> - <location filename="../ViewManager/ViewManager.py" line="4238" /> + <location filename="../ViewManager/ViewManager.py" line="4248" /> <source>Ctrl+-</source> <comment>View|Zoom out</comment> <translation>Ctrl+-</translation> @@ -97431,7 +97444,7 @@ <message> <location filename="../QScintilla/MiniEditor.py" line="2826" /> <location filename="../QScintilla/ShellWindow.py" line="1053" /> - <location filename="../ViewManager/ViewManager.py" line="4241" /> + <location filename="../ViewManager/ViewManager.py" line="4251" /> <source>Zoom Out</source> <comment>View|Zoom out</comment> <translation type="unfinished" /> @@ -97439,35 +97452,35 @@ <message> <location filename="../QScintilla/MiniEditor.py" line="2832" /> <location filename="../QScintilla/ShellWindow.py" line="1059" /> - <location filename="../ViewManager/ViewManager.py" line="4247" /> + <location filename="../ViewManager/ViewManager.py" line="4257" /> <source>Zoom out on the text</source> <translation>Metin üzerinde küçült</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2835" /> <location filename="../QScintilla/ShellWindow.py" line="1062" /> - <location filename="../ViewManager/ViewManager.py" line="4250" /> + <location filename="../ViewManager/ViewManager.py" line="4260" /> <source><b>Zoom out</b><p>Zoom out on the text. This makes the text smaller.</p></source> <translation><b>Küçült</b><p>Metin üzerinde küçült. Bu metni daha küçük yapar.</p></translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2845" /> <location filename="../QScintilla/ShellWindow.py" line="1072" /> - <location filename="../ViewManager/ViewManager.py" line="4260" /> + <location filename="../ViewManager/ViewManager.py" line="4270" /> <source>Zoom reset</source> <translation type="unfinished">Büyütmeyi sıfırla</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2847" /> <location filename="../QScintilla/ShellWindow.py" line="1074" /> - <location filename="../ViewManager/ViewManager.py" line="4262" /> + <location filename="../ViewManager/ViewManager.py" line="4272" /> <source>Zoom &reset</source> <translation type="unfinished">Büyütmeyi sıfı&rla</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2849" /> <location filename="../QScintilla/ShellWindow.py" line="1076" /> - <location filename="../ViewManager/ViewManager.py" line="4264" /> + <location filename="../ViewManager/ViewManager.py" line="4274" /> <source>Ctrl+0</source> <comment>View|Zoom reset</comment> <translation type="unfinished">Ctrl+0</translation> @@ -97475,894 +97488,894 @@ <message> <location filename="../QScintilla/MiniEditor.py" line="2856" /> <location filename="../QScintilla/ShellWindow.py" line="1083" /> - <location filename="../ViewManager/ViewManager.py" line="4271" /> + <location filename="../ViewManager/ViewManager.py" line="4281" /> <source>Reset the zoom of the text</source> <translation type="unfinished">Metin büyütme durumunu sıfırla</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2859" /> <location filename="../QScintilla/ShellWindow.py" line="1086" /> - <location filename="../ViewManager/ViewManager.py" line="4274" /> + <location filename="../ViewManager/ViewManager.py" line="4284" /> <source><b>Zoom reset</b><p>Reset the zoom of the text. This sets the zoom factor to 100%.</p></source> <translation type="unfinished"><b>Büyütmeyi başa döndür</b><p>Metin büyütmesini sıfırla. Bu büyütme katsayısını 100% e ayarlar.</p></translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2870" /> <location filename="../QScintilla/ShellWindow.py" line="1097" /> - <location filename="../ViewManager/ViewManager.py" line="4285" /> + <location filename="../ViewManager/ViewManager.py" line="4295" /> <source>Zoom</source> <translation>Büyüt</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2872" /> <location filename="../QScintilla/ShellWindow.py" line="1099" /> - <location filename="../ViewManager/ViewManager.py" line="4287" /> + <location filename="../ViewManager/ViewManager.py" line="4297" /> <source>&Zoom</source> <translation>Büyü&t</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2879" /> <location filename="../QScintilla/ShellWindow.py" line="1106" /> - <location filename="../ViewManager/ViewManager.py" line="4294" /> + <location filename="../ViewManager/ViewManager.py" line="4304" /> <source>Zoom the text</source> <translation>Metni büyüt</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2882" /> <location filename="../QScintilla/ShellWindow.py" line="1109" /> - <location filename="../ViewManager/ViewManager.py" line="4297" /> + <location filename="../ViewManager/ViewManager.py" line="4307" /> <source><b>Zoom</b><p>Zoom the text. This opens a dialog where the desired size can be entered.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4316" /> - <location filename="../ViewManager/ViewManager.py" line="4308" /> + <location filename="../ViewManager/ViewManager.py" line="4326" /> + <location filename="../ViewManager/ViewManager.py" line="4318" /> <source>Toggle all folds</source> <translation>Tüm Açkapaları Kapat</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4309" /> - <source>&Toggle all folds</source> - <translation type="unfinished">Tüm açk&apaları kapat</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="4319" /> + <source>&Toggle all folds</source> + <translation type="unfinished">Tüm açk&apaları kapat</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4329" /> <source><b>Toggle all folds</b><p>Toggle all folds of the current editor.</p></source> <translation><b>Tüm Açkapalar</b><p>Geçerli düzenleyicideki tüm açkapaları diğer duruma alırr.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4341" /> - <location filename="../ViewManager/ViewManager.py" line="4329" /> + <location filename="../ViewManager/ViewManager.py" line="4351" /> + <location filename="../ViewManager/ViewManager.py" line="4339" /> <source>Toggle all folds (including children)</source> <translation>Tüm açkapalar (iç içe olanlar dahil)</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4332" /> + <location filename="../ViewManager/ViewManager.py" line="4342" /> <source>Toggle all &folds (including children)</source> <translation>Tüm a&çkapalar (iç içe olanlar dahil)</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4346" /> + <location filename="../ViewManager/ViewManager.py" line="4356" /> <source><b>Toggle all folds (including children)</b><p>Toggle all folds of the current editor including all children.</p></source> <translation><b>Tüm açkapalar (içiçe olanlar dahil)</b><p>Tüm açkapaları iç içe olanlar da dahil diğer duruma al.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4365" /> - <location filename="../ViewManager/ViewManager.py" line="4357" /> + <location filename="../ViewManager/ViewManager.py" line="4375" /> + <location filename="../ViewManager/ViewManager.py" line="4367" /> <source>Toggle current fold</source> <translation>Geçerli açkapayı kapat</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4358" /> - <source>Toggle &current fold</source> - <translation>Geçerli a&çkapayı kapat</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="4368" /> + <source>Toggle &current fold</source> + <translation>Geçerli a&çkapayı kapat</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4378" /> <source><b>Toggle current fold</b><p>Toggle the folds of the current line of the current editor.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4387" /> - <location filename="../ViewManager/ViewManager.py" line="4379" /> + <location filename="../ViewManager/ViewManager.py" line="4397" /> + <location filename="../ViewManager/ViewManager.py" line="4389" /> <source>Clear all folds</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4380" /> - <source>Clear &all folds</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="4390" /> + <source>Clear &all folds</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4400" /> <source><b>Clear all folds</b><p>Clear all folds of the current editor, i.e. ensure that all lines are displayed unfolded.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4410" /> - <location filename="../ViewManager/ViewManager.py" line="4403" /> - <location filename="../ViewManager/ViewManager.py" line="4401" /> + <location filename="../ViewManager/ViewManager.py" line="4420" /> + <location filename="../ViewManager/ViewManager.py" line="4413" /> + <location filename="../ViewManager/ViewManager.py" line="4411" /> <source>Remove all highlights</source> <translation>Bütün parlatılmış alanları kaldır</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4413" /> - <source><b>Remove all highlights</b><p>Remove the highlights of all editors.</p></source> - <translation type="unfinished" /> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="4423" /> + <source><b>Remove all highlights</b><p>Remove the highlights of all editors.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4433" /> <source>New Document View</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4425" /> + <location filename="../ViewManager/ViewManager.py" line="4435" /> <source>New &Document View</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4432" /> + <location filename="../ViewManager/ViewManager.py" line="4442" /> <source>Open a new view of the current document</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4437" /> + <location filename="../ViewManager/ViewManager.py" line="4447" /> <source><b>New Document View</b><p>Opens a new view of the current document. Both views show the same document. However, the cursors may be positioned independently.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4453" /> - <location filename="../ViewManager/ViewManager.py" line="4449" /> + <location filename="../ViewManager/ViewManager.py" line="4463" /> + <location filename="../ViewManager/ViewManager.py" line="4459" /> <source>New Document View (with new split)</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4462" /> + <location filename="../ViewManager/ViewManager.py" line="4472" /> <source>Open a new view of the current document in a new split</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4467" /> + <location filename="../ViewManager/ViewManager.py" line="4477" /> <source><b>New Document View</b><p>Opens a new view of the current document in a new split. Both views show the same document. However, the cursors may be positioned independently.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4479" /> + <location filename="../ViewManager/ViewManager.py" line="4489" /> <source>Split view</source> <translation>Bölünmüş görünüm</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4481" /> - <source>&Split view</source> - <translation>Bölünmü&ş görünüm</translation> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="4488" /> - <source>Add a split to the view</source> - <translation>Görünüme yeni bir ayrım ekle</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="4491" /> - <source><b>Split view</b><p>Add a split to the view.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="4500" /> - <source>Arrange horizontally</source> - <translation>Yatay düzenleme</translation> + <source>&Split view</source> + <translation>Bölünmü&ş görünüm</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4498" /> + <source>Add a split to the view</source> + <translation>Görünüme yeni bir ayrım ekle</translation> </message> <message> <location filename="../ViewManager/ViewManager.py" line="4501" /> + <source><b>Split view</b><p>Add a split to the view.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4510" /> + <source>Arrange horizontally</source> + <translation>Yatay düzenleme</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4511" /> <source>Arrange &horizontally</source> <translation>Yatay &düzenleme</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4509" /> + <location filename="../ViewManager/ViewManager.py" line="4519" /> <source>Arrange the splitted views horizontally</source> <translation>Bölünmüş görünümleri yatay olarak düzenle</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4514" /> + <location filename="../ViewManager/ViewManager.py" line="4524" /> <source><b>Arrange horizontally</b><p>Arrange the splitted views horizontally.</p></source> <translation><b>Yatay ayarlama</b><p>Bölünmüş görünümler yatay olarak düzenlenir.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4525" /> + <location filename="../ViewManager/ViewManager.py" line="4535" /> <source>Remove split</source> <translation>Bölümlemeyi kaldır</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4527" /> - <source>&Remove split</source> - <translation>Bölümlemeyi kaldı&r</translation> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="4534" /> - <source>Remove the current split</source> - <translation>Geçerli ayrımı kaldır</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="4537" /> - <source><b>Remove split</b><p>Remove the current split.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="4546" /> - <source>Next split</source> - <translation>Sonraki ayrım</translation> + <source>&Remove split</source> + <translation>Bölümlemeyi kaldı&r</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4544" /> + <source>Remove the current split</source> + <translation>Geçerli ayrımı kaldır</translation> </message> <message> <location filename="../ViewManager/ViewManager.py" line="4547" /> + <source><b>Remove split</b><p>Remove the current split.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4556" /> + <source>Next split</source> + <translation>Sonraki ayrım</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4557" /> <source>&Next split</source> <translation>So&nraki ayrım</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4549" /> + <location filename="../ViewManager/ViewManager.py" line="4559" /> <source>Ctrl+Alt+N</source> <comment>View|Next split</comment> <translation>Ctrl+Alt+N</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4558" /> + <location filename="../ViewManager/ViewManager.py" line="4568" /> <source>Move to the next split</source> <translation>Sonraki ayrıma taşı</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4561" /> - <source><b>Next split</b><p>Move to the next split.</p></source> - <translation><b>Sonraki ayrım</b><p>Sonraki ayrıma götürür.</p></translation> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="4570" /> - <source>Previous split</source> - <translation>Önceki ayrım</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="4571" /> + <source><b>Next split</b><p>Move to the next split.</p></source> + <translation><b>Sonraki ayrım</b><p>Sonraki ayrıma götürür.</p></translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4580" /> + <source>Previous split</source> + <translation>Önceki ayrım</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4581" /> <source>&Previous split</source> <translation>Önceki a&yrım</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4573" /> + <location filename="../ViewManager/ViewManager.py" line="4583" /> <source>Ctrl+Alt+P</source> <comment>View|Previous split</comment> <translation>Ctrl+Alt+P</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4582" /> + <location filename="../ViewManager/ViewManager.py" line="4592" /> <source>Move to the previous split</source> <translation>Önceki ayrıma taşı</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4585" /> + <location filename="../ViewManager/ViewManager.py" line="4595" /> <source><b>Previous split</b><p>Move to the previous split.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4596" /> - <location filename="../ViewManager/ViewManager.py" line="4594" /> - <source>Preview</source> - <translation type="unfinished" /> - </message> - <message> + <location filename="../ViewManager/ViewManager.py" line="4606" /> <location filename="../ViewManager/ViewManager.py" line="4604" /> + <source>Preview</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4614" /> <source>Preview the current file in the web browser</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4609" /> + <location filename="../ViewManager/ViewManager.py" line="4619" /> <source><b>Preview</b><p>This opens the web browser with a preview of the current file.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4623" /> - <location filename="../ViewManager/ViewManager.py" line="4621" /> + <location filename="../ViewManager/ViewManager.py" line="4633" /> + <location filename="../ViewManager/ViewManager.py" line="4631" /> <source>Python AST Viewer</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4631" /> + <location filename="../ViewManager/ViewManager.py" line="4641" /> <source>Show the AST for the current Python file</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4636" /> + <location filename="../ViewManager/ViewManager.py" line="4646" /> <source><b>Python AST Viewer</b><p>This opens the a tree view of the AST of the current Python source file.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4650" /> - <location filename="../ViewManager/ViewManager.py" line="4648" /> + <location filename="../ViewManager/ViewManager.py" line="4660" /> + <location filename="../ViewManager/ViewManager.py" line="4658" /> <source>Python Disassembly Viewer</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4658" /> + <location filename="../ViewManager/ViewManager.py" line="4668" /> <source>Show the Disassembly for the current Python file</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4663" /> + <location filename="../ViewManager/ViewManager.py" line="4673" /> <source><b>Python Disassembly Viewer</b><p>This opens the a tree view of the Disassembly of the current Python source file.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4699" /> + <location filename="../ViewManager/ViewManager.py" line="4709" /> <source>&View</source> <translation>&Görünüm</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4734" /> - <location filename="../ViewManager/ViewManager.py" line="4732" /> + <location filename="../ViewManager/ViewManager.py" line="4744" /> + <location filename="../ViewManager/ViewManager.py" line="4742" /> <source>View</source> <translation>Görünüm</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4773" /> - <location filename="../ViewManager/ViewManager.py" line="4765" /> + <location filename="../ViewManager/ViewManager.py" line="4783" /> + <location filename="../ViewManager/ViewManager.py" line="4775" /> <source>Start Macro Recording</source> <translation>Makro Kaydı Başladı</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4766" /> - <source>S&tart Macro Recording</source> - <translation>Makro Kaydını Başla&t</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="4776" /> + <source>S&tart Macro Recording</source> + <translation>Makro Kaydını Başla&t</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4786" /> <source><b>Start Macro Recording</b><p>Start recording editor commands into a new macro.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4794" /> - <location filename="../ViewManager/ViewManager.py" line="4786" /> + <location filename="../ViewManager/ViewManager.py" line="4804" /> + <location filename="../ViewManager/ViewManager.py" line="4796" /> <source>Stop Macro Recording</source> <translation>Makro Kaydetmeyi Durdur</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4787" /> - <source>Sto&p Macro Recording</source> - <translation>Makro Kaydetmeyi D&urdur</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="4797" /> + <source>Sto&p Macro Recording</source> + <translation>Makro Kaydetmeyi D&urdur</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4807" /> <source><b>Stop Macro Recording</b><p>Stop recording editor commands into a new macro.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4815" /> - <location filename="../ViewManager/ViewManager.py" line="4807" /> + <location filename="../ViewManager/ViewManager.py" line="4825" /> + <location filename="../ViewManager/ViewManager.py" line="4817" /> <source>Run Macro</source> <translation>Makroyu çalıştır</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4808" /> - <source>&Run Macro</source> - <translation>Mak&royu çalıştır</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="4818" /> + <source>&Run Macro</source> + <translation>Mak&royu çalıştır</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4828" /> <source><b>Run Macro</b><p>Run a previously recorded editor macro.</p></source> <translation><b>Makroyu Çalıştır</b><p>Daha önceden kaydedilmiş düzenleyici makrosu.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4836" /> - <location filename="../ViewManager/ViewManager.py" line="4828" /> + <location filename="../ViewManager/ViewManager.py" line="4846" /> + <location filename="../ViewManager/ViewManager.py" line="4838" /> <source>Delete Macro</source> <translation>Makroyu Sil</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4829" /> - <source>&Delete Macro</source> - <translation>Makroy&u Sil</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="4839" /> + <source>&Delete Macro</source> + <translation>Makroy&u Sil</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4849" /> <source><b>Delete Macro</b><p>Delete a previously recorded editor macro.</p></source> <translation><b>Makroyu Sil</b><p>Birönce kaydedilen düzenleyici makrosunu sil.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4857" /> - <location filename="../ViewManager/ViewManager.py" line="4849" /> + <location filename="../ViewManager/ViewManager.py" line="4867" /> + <location filename="../ViewManager/ViewManager.py" line="4859" /> <source>Load Macro</source> <translation>Makroyu Yükle</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4850" /> - <source>&Load Macro</source> - <translation>Makroyu Yük&le</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="4860" /> - <source><b>Load Macro</b><p>Load an editor macro from a file.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="4877" /> - <location filename="../ViewManager/ViewManager.py" line="4869" /> - <source>Save Macro</source> - <translation>Makroyu Kaydet</translation> + <source>&Load Macro</source> + <translation>Makroyu Yük&le</translation> </message> <message> <location filename="../ViewManager/ViewManager.py" line="4870" /> - <source>&Save Macro</source> - <translation>Ma&kroyu Kaydet</translation> + <source><b>Load Macro</b><p>Load an editor macro from a file.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4887" /> + <location filename="../ViewManager/ViewManager.py" line="4879" /> + <source>Save Macro</source> + <translation>Makroyu Kaydet</translation> </message> <message> <location filename="../ViewManager/ViewManager.py" line="4880" /> + <source>&Save Macro</source> + <translation>Ma&kroyu Kaydet</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4890" /> <source><b>Save Macro</b><p>Save a previously recorded editor macro to a file.</p></source> <translation><b>Makro Kaydet</b><p>Önceden kayıt edilen makroyu bir dosyada sakla.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4898" /> + <location filename="../ViewManager/ViewManager.py" line="4908" /> <source>&Macros</source> <translation>&Makrolar</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4929" /> - <location filename="../ViewManager/ViewManager.py" line="4916" /> + <location filename="../ViewManager/ViewManager.py" line="4939" /> + <location filename="../ViewManager/ViewManager.py" line="4926" /> <source>Toggle Bookmark</source> <translation>Yerimi Açkapa</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4918" /> + <location filename="../ViewManager/ViewManager.py" line="4928" /> <source>&Toggle Bookmark</source> <translation>Yerimi A&çkapa</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4920" /> + <location filename="../ViewManager/ViewManager.py" line="4930" /> <source>Alt+Ctrl+T</source> <comment>Bookmark|Toggle</comment> <translation>Alt+Ctrl+T</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4932" /> + <location filename="../ViewManager/ViewManager.py" line="4942" /> <source><b>Toggle Bookmark</b><p>Toggle a bookmark at the current line of the current editor.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4956" /> - <location filename="../ViewManager/ViewManager.py" line="4943" /> + <location filename="../ViewManager/ViewManager.py" line="4966" /> + <location filename="../ViewManager/ViewManager.py" line="4953" /> <source>Next Bookmark</source> <translation>Sonraki Yerimi</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4945" /> + <location filename="../ViewManager/ViewManager.py" line="4955" /> <source>&Next Bookmark</source> <translation>So&nraki Yerimi</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4947" /> + <location filename="../ViewManager/ViewManager.py" line="4957" /> <source>Ctrl+PgDown</source> <comment>Bookmark|Next</comment> <translation>Ctrl+PgDown</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4959" /> + <location filename="../ViewManager/ViewManager.py" line="4969" /> <source><b>Next Bookmark</b><p>Go to next bookmark of the current editor.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4982" /> - <location filename="../ViewManager/ViewManager.py" line="4969" /> + <location filename="../ViewManager/ViewManager.py" line="4992" /> + <location filename="../ViewManager/ViewManager.py" line="4979" /> <source>Previous Bookmark</source> <translation>Önceki Yerimi</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4971" /> + <location filename="../ViewManager/ViewManager.py" line="4981" /> <source>&Previous Bookmark</source> <translation>Önceki Yeri&mi</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4973" /> + <location filename="../ViewManager/ViewManager.py" line="4983" /> <source>Ctrl+PgUp</source> <comment>Bookmark|Previous</comment> <translation>Ctrl+PgUp</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4985" /> + <location filename="../ViewManager/ViewManager.py" line="4995" /> <source><b>Previous Bookmark</b><p>Go to previous bookmark of the current editor.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5007" /> - <location filename="../ViewManager/ViewManager.py" line="4995" /> + <location filename="../ViewManager/ViewManager.py" line="5017" /> + <location filename="../ViewManager/ViewManager.py" line="5005" /> <source>Clear Bookmarks</source> <translation>Yerimlerini Temizle</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4996" /> + <location filename="../ViewManager/ViewManager.py" line="5006" /> <source>&Clear Bookmarks</source> <translation>Yerimlerini &Temizle</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4998" /> + <location filename="../ViewManager/ViewManager.py" line="5008" /> <source>Alt+Ctrl+C</source> <comment>Bookmark|Clear</comment> <translation>Alt+Ctrl+C</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5010" /> + <location filename="../ViewManager/ViewManager.py" line="5020" /> <source><b>Clear Bookmarks</b><p>Clear bookmarks of all editors.</p></source> <translation><b>Yerimlerini Temizle</b><p>Tüm düzenleyicilerin yerimlerini temizle</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5029" /> - <location filename="../ViewManager/ViewManager.py" line="5020" /> + <location filename="../ViewManager/ViewManager.py" line="5039" /> + <location filename="../ViewManager/ViewManager.py" line="5030" /> <source>Goto Syntax Error</source> <translation>Sözdizimi Hatasına Git</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5022" /> - <source>&Goto Syntax Error</source> - <translation>Sözdizimi Hatasına &Git</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="5032" /> + <source>&Goto Syntax Error</source> + <translation>Sözdizimi Hatasına &Git</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="5042" /> <source><b>Goto Syntax Error</b><p>Go to next syntax error of the current editor.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5050" /> - <location filename="../ViewManager/ViewManager.py" line="5042" /> + <location filename="../ViewManager/ViewManager.py" line="5060" /> + <location filename="../ViewManager/ViewManager.py" line="5052" /> <source>Clear Syntax Errors</source> <translation>Sözdizimi Hatalarını Temizle</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5043" /> - <source>Clear &Syntax Errors</source> - <translation>&Sözdizimi Hatalarını Temizli</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="5053" /> + <source>Clear &Syntax Errors</source> + <translation>&Sözdizimi Hatalarını Temizli</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="5063" /> <source><b>Clear Syntax Errors</b><p>Clear syntax errors of all editors.</p></source> <translation><b>Sözdizimi Hatalarını Temizle</b><p>Tüm düsenleyicilerdeki sözdizimi hatalarını temizle.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5072" /> - <location filename="../ViewManager/ViewManager.py" line="5063" /> + <location filename="../ViewManager/ViewManager.py" line="5082" /> + <location filename="../ViewManager/ViewManager.py" line="5073" /> <source>Next warning message</source> <translation>Sonraki uyarı mesajı</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5065" /> - <source>&Next warning message</source> - <translation>So&nraki uyarı mesajı</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="5075" /> + <source>&Next warning message</source> + <translation>So&nraki uyarı mesajı</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="5085" /> <source><b>Next warning message</b><p>Go to next line of the current editor having a pyflakes warning.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5095" /> - <location filename="../ViewManager/ViewManager.py" line="5086" /> + <location filename="../ViewManager/ViewManager.py" line="5105" /> + <location filename="../ViewManager/ViewManager.py" line="5096" /> <source>Previous warning message</source> <translation>Önceki uyarı mesajı</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5088" /> - <source>&Previous warning message</source> - <translation>&Önceki uyarı mesajı</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="5098" /> + <source>&Previous warning message</source> + <translation>&Önceki uyarı mesajı</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="5108" /> <source><b>Previous warning message</b><p>Go to previous line of the current editor having a pyflakes warning.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5117" /> - <location filename="../ViewManager/ViewManager.py" line="5109" /> + <location filename="../ViewManager/ViewManager.py" line="5127" /> + <location filename="../ViewManager/ViewManager.py" line="5119" /> <source>Clear Warning Messages</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5110" /> - <source>Clear &Warning Messages</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="5120" /> + <source>Clear &Warning Messages</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="5130" /> <source><b>Clear Warning Messages</b><p>Clear pyflakes warning messages of all editors.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5139" /> - <location filename="../ViewManager/ViewManager.py" line="5130" /> + <location filename="../ViewManager/ViewManager.py" line="5149" /> + <location filename="../ViewManager/ViewManager.py" line="5140" /> <source>Next uncovered line</source> <translation>Sonraki kapanmamış satır</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5132" /> - <source>&Next uncovered line</source> - <translation>So&nraki kapanmamış satır</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="5142" /> + <source>&Next uncovered line</source> + <translation>So&nraki kapanmamış satır</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="5152" /> <source><b>Next uncovered line</b><p>Go to next line of the current editor marked as not covered.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5162" /> - <location filename="../ViewManager/ViewManager.py" line="5153" /> + <location filename="../ViewManager/ViewManager.py" line="5172" /> + <location filename="../ViewManager/ViewManager.py" line="5163" /> <source>Previous uncovered line</source> <translation>Önceki kaplanmamış satır</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5155" /> - <source>&Previous uncovered line</source> - <translation>&Önceki kaplanmamış satır</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="5165" /> + <source>&Previous uncovered line</source> + <translation>&Önceki kaplanmamış satır</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="5175" /> <source><b>Previous uncovered line</b><p>Go to previous line of the current editor marked as not covered.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5185" /> - <location filename="../ViewManager/ViewManager.py" line="5176" /> + <location filename="../ViewManager/ViewManager.py" line="5195" /> + <location filename="../ViewManager/ViewManager.py" line="5186" /> <source>Next Task</source> <translation>Sonraki Görev</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5178" /> - <source>&Next Task</source> - <translation>So&nraki Görev</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="5188" /> + <source>&Next Task</source> + <translation>So&nraki Görev</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="5198" /> <source><b>Next Task</b><p>Go to next line of the current editor having a task.</p></source> <translation><b>Sonraki Görev </b><p>Geçerli düzenleyicideki bir sonraki satıra görev almak için git.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5207" /> - <location filename="../ViewManager/ViewManager.py" line="5198" /> + <location filename="../ViewManager/ViewManager.py" line="5217" /> + <location filename="../ViewManager/ViewManager.py" line="5208" /> <source>Previous Task</source> <translation>Önceki Görev</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5200" /> - <source>&Previous Task</source> - <translation>Ön&ceki Görev</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="5210" /> + <source>&Previous Task</source> + <translation>Ön&ceki Görev</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="5220" /> <source><b>Previous Task</b><p>Go to previous line of the current editor having a task.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5230" /> - <location filename="../ViewManager/ViewManager.py" line="5221" /> + <location filename="../ViewManager/ViewManager.py" line="5240" /> + <location filename="../ViewManager/ViewManager.py" line="5231" /> <source>Next Change</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5223" /> - <source>&Next Change</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="5233" /> + <source>&Next Change</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="5243" /> <source><b>Next Change</b><p>Go to next line of the current editor having a change marker.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5253" /> - <location filename="../ViewManager/ViewManager.py" line="5244" /> + <location filename="../ViewManager/ViewManager.py" line="5263" /> + <location filename="../ViewManager/ViewManager.py" line="5254" /> <source>Previous Change</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5246" /> - <source>&Previous Change</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="5256" /> + <source>&Previous Change</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="5266" /> <source><b>Previous Change</b><p>Go to previous line of the current editor having a change marker.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5277" /> - <location filename="../ViewManager/ViewManager.py" line="5275" /> + <location filename="../ViewManager/ViewManager.py" line="5287" /> + <location filename="../ViewManager/ViewManager.py" line="5285" /> <source>&Bookmarks</source> <translation>&Yerimleri</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5321" /> - <location filename="../ViewManager/ViewManager.py" line="5319" /> + <location filename="../ViewManager/ViewManager.py" line="5331" /> + <location filename="../ViewManager/ViewManager.py" line="5329" /> <source>Bookmarks</source> <translation>Yerimleri</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5355" /> + <location filename="../ViewManager/ViewManager.py" line="5365" /> <source>Check spelling</source> <translation type="unfinished">Yazım denetimi</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5357" /> + <location filename="../ViewManager/ViewManager.py" line="5367" /> <source>Check &spelling...</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5359" /> + <location filename="../ViewManager/ViewManager.py" line="5369" /> <source>Shift+F7</source> <comment>Spelling|Spell Check</comment> <translation>Shift+F7</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5368" /> + <location filename="../ViewManager/ViewManager.py" line="5378" /> <source>Perform spell check of current editor</source> <translation>Geçerli düzenleyicide yazım denetimini gerçekleştir</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5373" /> - <source><b>Check spelling</b><p>Perform a spell check of the current editor.</p></source> - <translation type="unfinished" /> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="5383" /> - <source>Automatic spell checking</source> - <translation>Otomatik yazım kontrolü</translation> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="5385" /> - <source>&Automatic spell checking</source> - <translation>Otom&atik yazım kontrolü</translation> + <source><b>Check spelling</b><p>Perform a spell check of the current editor.</p></source> + <translation type="unfinished" /> </message> <message> <location filename="../ViewManager/ViewManager.py" line="5393" /> + <source>Automatic spell checking</source> + <translation>Otomatik yazım kontrolü</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="5395" /> + <source>&Automatic spell checking</source> + <translation>Otom&atik yazım kontrolü</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="5403" /> <source>(De-)Activate automatic spell checking</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5398" /> + <location filename="../ViewManager/ViewManager.py" line="5408" /> <source><b>Automatic spell checking</b><p>Activate or deactivate the automatic spell checking function of all editors.</p></source> <translation><b>Otomatik metin kontrolü</b><p>Tüm düzenleyicilerdeki otomatik metin kontrolünü aktifleştir yada etkinliğini kaldır.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5432" /> + <location filename="../ViewManager/ViewManager.py" line="5442" /> <source>Edit Dictionary</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5435" /> + <location filename="../ViewManager/ViewManager.py" line="5445" /> <source>Project Word List</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5439" /> + <location filename="../ViewManager/ViewManager.py" line="5449" /> <source>Project Exception List</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5444" /> + <location filename="../ViewManager/ViewManager.py" line="5454" /> <source>User Word List</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5448" /> + <location filename="../ViewManager/ViewManager.py" line="5458" /> <source>User Exception List</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5469" /> - <location filename="../ViewManager/ViewManager.py" line="5467" /> + <location filename="../ViewManager/ViewManager.py" line="5479" /> + <location filename="../ViewManager/ViewManager.py" line="5477" /> <source>Spelling</source> <translation>Yazım kontolü yapılıyor</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5492" /> + <location filename="../ViewManager/ViewManager.py" line="5502" /> <source>Open Files</source> <translation type="unfinished">Dosyaları Aç</translation> </message> <message> + <location filename="../ViewManager/ViewManager.py" line="5531" /> <location filename="../ViewManager/ViewManager.py" line="5521" /> - <location filename="../ViewManager/ViewManager.py" line="5511" /> <source>Open Remote Files</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5578" /> + <location filename="../ViewManager/ViewManager.py" line="5588" /> <source>File Modified</source> <translation>Dosya Değiştirildi</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5579" /> + <location filename="../ViewManager/ViewManager.py" line="5589" /> <source><p>The file <b>{0}</b> has unsaved changes.</p></source> <translation><p><b>{0}</b>dosyasında kaydedilmemiş değişiklikler var.</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6078" /> + <location filename="../ViewManager/ViewManager.py" line="6090" /> <source>Line: {0:5}</source> <translation>Satır: {0:5}</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6084" /> + <location filename="../ViewManager/ViewManager.py" line="6096" /> <source>Pos: {0:5}</source> <translation>Pos: {0:5}</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6104" /> + <location filename="../ViewManager/ViewManager.py" line="6116" /> <source>Language: {0}</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6113" /> + <location filename="../ViewManager/ViewManager.py" line="6125" /> <source>EOL Mode: {0}</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6641" /> - <location filename="../ViewManager/ViewManager.py" line="6598" /> + <location filename="../ViewManager/ViewManager.py" line="6668" /> + <location filename="../ViewManager/ViewManager.py" line="6625" /> <source>&Clear</source> <translation>T&emizle</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6635" /> + <location filename="../ViewManager/ViewManager.py" line="6662" /> <source>&Add</source> <translation>&Ekle</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6638" /> + <location filename="../ViewManager/ViewManager.py" line="6665" /> <source>&Edit...</source> <translation>Düz&en...</translation> </message> <message> + <location filename="../ViewManager/ViewManager.py" line="7735" /> + <location filename="../ViewManager/ViewManager.py" line="7721" /> + <location filename="../ViewManager/ViewManager.py" line="7689" /> + <source>Edit Spelling Dictionary</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="7692" /> + <source><p>The spelling dictionary file <b>{0}</b> could not be read.</p><p>Reason: {1}</p></source> + <translation type="unfinished" /> + </message> + <message> <location filename="../ViewManager/ViewManager.py" line="7708" /> - <location filename="../ViewManager/ViewManager.py" line="7694" /> - <location filename="../ViewManager/ViewManager.py" line="7662" /> - <source>Edit Spelling Dictionary</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="7665" /> - <source><p>The spelling dictionary file <b>{0}</b> could not be read.</p><p>Reason: {1}</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="7681" /> <source>Editing {0}</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="7697" /> + <location filename="../ViewManager/ViewManager.py" line="7724" /> <source><p>The spelling dictionary file <b>{0}</b> could not be written.</p><p>Reason: {1}</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="7711" /> + <location filename="../ViewManager/ViewManager.py" line="7738" /> <source>The spelling dictionary was saved successfully.</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5522" /> + <location filename="../ViewManager/ViewManager.py" line="5532" /> <source>You must be connected to a remote eric-ide server. Aborting...</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6820" /> + <location filename="../ViewManager/ViewManager.py" line="6847" /> <source>Clear Editor</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6821" /> + <location filename="../ViewManager/ViewManager.py" line="6848" /> <source>Do you really want to delete all text of the current editor?</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="8241" /> - <location filename="../ViewManager/ViewManager.py" line="8224" /> + <location filename="../ViewManager/ViewManager.py" line="8268" /> + <location filename="../ViewManager/ViewManager.py" line="8251" /> <source>File System Watcher Error</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="8225" /> + <location filename="../ViewManager/ViewManager.py" line="8252" /> <source><p>The operating system resources for file system watches are exhausted. This limit should be increased. On a Linux system you should <ul><li>sudo nano /etc/sysctl.conf</li><li>add to the bottom "fs.inotify.max_user_instances = 1024"</li><li>save and close the editor</li><li>sudo sysctl -p</li></ul></p><p>Error Message: {0}</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="8242" /> + <location filename="../ViewManager/ViewManager.py" line="8269" /> <source>The file system watcher reported an error with code <b>{0}</b>.</p><p>Error Message: {1}</p></source> <translation type="unfinished" /> </message> @@ -99213,54 +99226,54 @@ <context> <name>VirtualenvManager</name> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="317" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="319" /> <source>Add Virtual Environment</source> <translation type="unfinished" /> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="318" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="320" /> <source>A virtual environment named <b>{0}</b> exists already. Shall it be replaced?</source> <translation type="unfinished" /> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="355" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="357" /> <source>Change Virtual Environment</source> <translation type="unfinished" /> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="388" /> - <location filename="../VirtualEnv/VirtualenvManager.py" line="356" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="390" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="358" /> <source>A virtual environment named <b>{0}</b> does not exist. Aborting!</source> <translation type="unfinished" /> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="387" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="389" /> <source>Rename Virtual Environment</source> <translation type="unfinished" /> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="479" /> - <location filename="../VirtualEnv/VirtualenvManager.py" line="412" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="481" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="414" /> <source>{0} - {1}</source> <translation type="unfinished">{0} - {1}</translation> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="419" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="421" /> <source>Delete Virtual Environments</source> <translation type="unfinished" /> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="420" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="422" /> <source>Do you really want to delete these virtual environments?</source> <translation type="unfinished" /> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="486" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="488" /> <source>Remove Virtual Environments</source> <translation type="unfinished" /> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="487" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="489" /> <source>Do you really want to remove these virtual environments?</source> <translation type="unfinished" /> </message> @@ -99268,7 +99281,7 @@ <context> <name>VirtualenvManagerDialog</name> <message> - <location filename="../VirtualEnv/VirtualenvManagerWidgets.py" line="442" /> + <location filename="../VirtualEnv/VirtualenvManagerWidgets.py" line="448" /> <source>Manage Virtual Environments</source> <translation type="unfinished" /> </message> @@ -99391,7 +99404,7 @@ <context> <name>VirtualenvManagerWindow</name> <message> - <location filename="../VirtualEnv/VirtualenvManagerWidgets.py" line="482" /> + <location filename="../VirtualEnv/VirtualenvManagerWidgets.py" line="488" /> <source>Manage Virtual Environments</source> <translation type="unfinished" /> </message>
--- a/src/eric7/i18n/eric7_zh_CN.ts Wed Oct 16 17:38:35 2024 +0200 +++ b/src/eric7/i18n/eric7_zh_CN.ts Wed Oct 16 17:39:40 2024 +0200 @@ -1639,27 +1639,27 @@ <context> <name>AssistantJedi</name> <message> - <location filename="../JediInterface/AssistantJedi.py" line="230" /> + <location filename="../JediInterface/AssistantJedi.py" line="236" /> <source>Refactoring</source> <translation type="unfinished">重构</translation> </message> <message> - <location filename="../JediInterface/AssistantJedi.py" line="232" /> - <source>Rename Variable</source> - <translation type="unfinished">重命名变量</translation> - </message> - <message> - <location filename="../JediInterface/AssistantJedi.py" line="235" /> - <source>Extract Variable</source> - <translation type="unfinished">提取的变量</translation> - </message> - <message> <location filename="../JediInterface/AssistantJedi.py" line="238" /> + <source>Rename Variable</source> + <translation type="unfinished">重命名变量</translation> + </message> + <message> + <location filename="../JediInterface/AssistantJedi.py" line="241" /> + <source>Extract Variable</source> + <translation type="unfinished">提取的变量</translation> + </message> + <message> + <location filename="../JediInterface/AssistantJedi.py" line="244" /> <source>Inline Variable</source> <translation type="unfinished">内联变量</translation> </message> <message> - <location filename="../JediInterface/AssistantJedi.py" line="242" /> + <location filename="../JediInterface/AssistantJedi.py" line="248" /> <source>Extract Function</source> <translation type="unfinished">提取功能</translation> </message> @@ -9251,19 +9251,35 @@ </translation> </message> <message> - <location filename="../Debugger/DebugServer.py" line="2109" /> + <location filename="../Debugger/DebugServer.py" line="2110" /> <source>Passive debug connection received </source> <translation type="unfinished" /> </message> <message> - <location filename="../Debugger/DebugServer.py" line="2123" /> + <location filename="../Debugger/DebugServer.py" line="2119" /> + <source>Passive debug connection received while not in passive mode. +</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Debugger/DebugServer.py" line="2125" /> + <source>Debug Client Connection</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Debugger/DebugServer.py" line="2126" /> + <source>Passive debug client connection received while not in passive mode. Enable this mode on the 'Debugger General' configuration page. The connection will be rejected.</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Debugger/DebugServer.py" line="2141" /> <source>Passive debug connection closed </source> <translation type="unfinished" /> </message> <message> - <location filename="../Debugger/DebugServer.py" line="2254" /> + <location filename="../Debugger/DebugServer.py" line="2272" /> <source><project></source> <translation type="unfinished" /> </message> @@ -10214,25 +10230,13 @@ </message> <message> <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" /> - <source>Enables the passive debug mode</source> - <translation>打开被动调试模式</translation> + <source>Debugger Type:</source> + <translation>调试器类型:</translation> </message> <message> <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" /> - <source><b>Passive Debugger Enabled</b> -<p>This enables the passive debugging mode. In this mode the debug client (the script) connects to the debug server (the IDE). The script is started outside the IDE. This way mod_python or Zope scripts can be debugged.</p></source> - <translation><b>被动调试模式已打开</b> -<p>打开被动调试模式。在该模式中调试客户端(脚本)将连接调试服务器(IDE)。脚本将在 IDE 之外启动。通过这种方法可以调试 mod_python 或 Zope 脚本。</p></translation> - </message> - <message> - <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" /> - <source>Passive Debugger Enabled</source> - <translation>被动调试模式已打开</translation> - </message> - <message> - <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" /> - <source>Debug Server Port:</source> - <translation>调试服务器端口:</translation> + <source>Select the debugger type of the backend</source> + <translation>选择后端的调试器类型</translation> </message> <message> <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" /> @@ -10248,13 +10252,8 @@ </message> <message> <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" /> - <source>Debugger Type:</source> - <translation>调试器类型:</translation> - </message> - <message> - <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" /> - <source>Select the debugger type of the backend</source> - <translation>选择后端的调试器类型</translation> + <source>Debug Server Port:</source> + <translation>调试服务器端口:</translation> </message> <message> <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="0" /> @@ -10586,50 +10585,64 @@ <source>Automatically view source code</source> <translation type="unfinished">自动查看源代码</translation> </message> + <message> + <source>Enables the passive debug mode</source> + <translation type="vanished">打开被动调试模式</translation> + </message> + <message> + <source><b>Passive Debugger Enabled</b> +<p>This enables the passive debugging mode. In this mode the debug client (the script) connects to the debug server (the IDE). The script is started outside the IDE. This way mod_python or Zope scripts can be debugged.</p></source> + <translation type="vanished"><b>被动调试模式已打开</b> +<p>打开被动调试模式。在该模式中调试客户端(脚本)将连接调试服务器(IDE)。脚本将在 IDE 之外启动。通过这种方法可以调试 mod_python 或 Zope 脚本。</p></translation> + </message> + <message> + <source>Passive Debugger Enabled</source> + <translation type="vanished">被动调试模式已打开</translation> + </message> </context> <context> <name>DebuggerInterfacePython</name> <message> - <location filename="../Debugger/DebuggerInterfacePython.py" line="727" /> - <location filename="../Debugger/DebuggerInterfacePython.py" line="704" /> - <location filename="../Debugger/DebuggerInterfacePython.py" line="611" /> - <location filename="../Debugger/DebuggerInterfacePython.py" line="565" /> - <location filename="../Debugger/DebuggerInterfacePython.py" line="446" /> - <location filename="../Debugger/DebuggerInterfacePython.py" line="423" /> - <location filename="../Debugger/DebuggerInterfacePython.py" line="346" /> - <location filename="../Debugger/DebuggerInterfacePython.py" line="322" /> - <location filename="../Debugger/DebuggerInterfacePython.py" line="259" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="728" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="705" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="609" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="563" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="445" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="422" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="345" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="321" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="258" /> <source>Start Debugger</source> <translation>启动调试器</translation> </message> <message> - <location filename="../Debugger/DebuggerInterfacePython.py" line="566" /> - <location filename="../Debugger/DebuggerInterfacePython.py" line="260" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="564" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="259" /> <source><p>No suitable Python3 environment configured.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Debugger/DebuggerInterfacePython.py" line="728" /> - <location filename="../Debugger/DebuggerInterfacePython.py" line="705" /> - <location filename="../Debugger/DebuggerInterfacePython.py" line="612" /> - <location filename="../Debugger/DebuggerInterfacePython.py" line="447" /> - <location filename="../Debugger/DebuggerInterfacePython.py" line="424" /> - <location filename="../Debugger/DebuggerInterfacePython.py" line="323" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="729" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="706" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="610" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="446" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="423" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="322" /> <source><p>The debugger backend could not be started.</p></source> <translation type="unfinished"><p>调试器后端无法启动。</p></translation> </message> <message> - <location filename="../Debugger/DebuggerInterfacePython.py" line="347" /> + <location filename="../Debugger/DebuggerInterfacePython.py" line="346" /> <source><p>Remote debugging is configured but no command for remote login was given.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Debugger/DebuggerInterfacePython.py" line="1659" /> - <source>Debug Protocol Error</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Debugger/DebuggerInterfacePython.py" line="1660" /> + <source>Debug Protocol Error</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Debugger/DebuggerInterfacePython.py" line="1661" /> <source><p>The response received from the debugger backend 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" /> </message> @@ -62127,7 +62140,7 @@ <context> <name>PreviewModel</name> <message> - <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="478" /> + <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="506" /> <source>Variable Name</source> <translation type="unfinished" /> </message> @@ -63009,8 +63022,8 @@ <translation>重命名文件</translation> </message> <message> - <location filename="../Project/Project.py" line="8058" /> - <location filename="../Project/Project.py" line="3901" /> + <location filename="../Project/Project.py" line="8055" /> + <location filename="../Project/Project.py" line="3898" /> <location filename="../Project/Project.py" line="2398" /> <source><p>The file <b>{0}</b> already exists. Overwrite it?</p></source> <translation type="unfinished"><p>文件 <b>{0}</b> 已经存在。是否覆盖?</p></translation> @@ -63144,1308 +63157,1308 @@ <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="8044" /> - <location filename="../Project/Project.py" line="8038" /> - <location filename="../Project/Project.py" line="8028" /> - <location filename="../Project/Project.py" line="3886" /> - <location filename="../Project/Project.py" line="3876" /> + <location filename="../Project/Project.py" line="8041" /> + <location filename="../Project/Project.py" line="8035" /> + <location filename="../Project/Project.py" line="8025" /> + <location filename="../Project/Project.py" line="3883" /> + <location filename="../Project/Project.py" line="3873" /> <location filename="../Project/Project.py" line="3652" /> <source>Project Files (*.epj)</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="3900" /> - <location filename="../Project/Project.py" line="3884" /> + <location filename="../Project/Project.py" line="3897" /> + <location filename="../Project/Project.py" line="3881" /> <source>Save Project</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="3939" /> + <location filename="../Project/Project.py" line="3936" /> <source>Close Project</source> <translation>关闭项目</translation> </message> <message> - <location filename="../Project/Project.py" line="3940" /> + <location filename="../Project/Project.py" line="3937" /> <source>The current project has unsaved changes.</source> <translation>当前项目的更改未保存。</translation> </message> <message> - <location filename="../Project/Project.py" line="4140" /> - <location filename="../Project/Project.py" line="4104" /> + <location filename="../Project/Project.py" line="4137" /> + <location filename="../Project/Project.py" line="4101" /> <source>Syntax Errors Detected</source> <translation type="unfinished" /> </message> <message numerus="yes"> - <location filename="../Project/Project.py" line="4141" /> - <location filename="../Project/Project.py" line="4105" /> + <location filename="../Project/Project.py" line="4138" /> + <location filename="../Project/Project.py" line="4102" /> <source>The project contains %n file(s) with syntax errors.</source> <translation> <numerusform>项目包含 %n 文件有语法错误。</numerusform> </translation> </message> <message> - <location filename="../Project/Project.py" line="4799" /> + <location filename="../Project/Project.py" line="4796" /> <source>New project</source> <translation>新建项目</translation> </message> <message> - <location filename="../Project/Project.py" line="4801" /> + <location filename="../Project/Project.py" line="4798" /> <source>&New...</source> <translation>新建(&N)…</translation> </message> <message> - <location filename="../Project/Project.py" line="4807" /> + <location filename="../Project/Project.py" line="4804" /> <source>Generate a new project</source> <translation>生成新项目</translation> </message> <message> - <location filename="../Project/Project.py" line="4809" /> + <location filename="../Project/Project.py" line="4806" /> <source><b>New...</b><p>This opens a dialog for entering the info for a new project.</p></source> <translation><b>新建…</b><p>打开一个对话框为新项目输入信息。</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4819" /> + <location filename="../Project/Project.py" line="4816" /> <source>Open project</source> <translation>打开项目</translation> </message> <message> - <location filename="../Project/Project.py" line="4821" /> + <location filename="../Project/Project.py" line="4818" /> <source>&Open...</source> <translation>打开(&O)…</translation> </message> <message> - <location filename="../Project/Project.py" line="4827" /> + <location filename="../Project/Project.py" line="4824" /> <source>Open an existing project</source> <translation>打开一个已有项目</translation> </message> <message> - <location filename="../Project/Project.py" line="4829" /> + <location filename="../Project/Project.py" line="4826" /> <source><b>Open...</b><p>This opens an existing project.</p></source> <translation><b>打开…</b><p>打开一个已有项目。</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4835" /> + <location filename="../Project/Project.py" line="4832" /> <source>Open remote project</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="4837" /> + <location filename="../Project/Project.py" line="4834" /> <source>Open (Remote)...</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="4843" /> + <location filename="../Project/Project.py" line="4840" /> <source>Open an existing remote project</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="4845" /> + <location filename="../Project/Project.py" line="4842" /> <source><b>Open (Remote)...</b><p>This opens an existing remote project.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="4854" /> + <location filename="../Project/Project.py" line="4851" /> <source>Reload project</source> <translation>重新载入项目</translation> </message> <message> - <location filename="../Project/Project.py" line="4856" /> + <location filename="../Project/Project.py" line="4853" /> <source>Re&load</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="4862" /> + <location filename="../Project/Project.py" line="4859" /> <source>Reload the current project</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="4864" /> + <location filename="../Project/Project.py" line="4861" /> <source><b>Reload</b><p>This reloads the current project.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="4870" /> + <location filename="../Project/Project.py" line="4867" /> <source>Close project</source> <translation>关闭项目</translation> </message> <message> - <location filename="../Project/Project.py" line="4872" /> + <location filename="../Project/Project.py" line="4869" /> <source>&Close</source> <translation>关闭(&C)</translation> </message> <message> - <location filename="../Project/Project.py" line="4878" /> + <location filename="../Project/Project.py" line="4875" /> <source>Close the current project</source> <translation>关闭当前项目</translation> </message> <message> - <location filename="../Project/Project.py" line="4880" /> + <location filename="../Project/Project.py" line="4877" /> <source><b>Close</b><p>This closes the current project.</p></source> <translation><b>关闭</b><p>关闭当前项目。</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4886" /> + <location filename="../Project/Project.py" line="4883" /> <source>Save project</source> <translation>保存项目</translation> </message> <message> - <location filename="../Project/Project.py" line="5183" /> - <location filename="../Project/Project.py" line="4888" /> + <location filename="../Project/Project.py" line="5180" /> + <location filename="../Project/Project.py" line="4885" /> <source>&Save</source> <translation>保存(&S)</translation> </message> <message> - <location filename="../Project/Project.py" line="4894" /> + <location filename="../Project/Project.py" line="4891" /> <source>Save the current project</source> <translation>保存当前项目</translation> </message> <message> - <location filename="../Project/Project.py" line="4896" /> + <location filename="../Project/Project.py" line="4893" /> <source><b>Save</b><p>This saves the current project.</p></source> <translation><b>保存</b><p>保存当前项目</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4902" /> + <location filename="../Project/Project.py" line="4899" /> <source>Save project as</source> <translation>项目另存为</translation> </message> <message> - <location filename="../Project/Project.py" line="4904" /> + <location filename="../Project/Project.py" line="4901" /> <source>Save &as...</source> <translation>另存为(&A)…</translation> </message> <message> - <location filename="../Project/Project.py" line="4910" /> + <location filename="../Project/Project.py" line="4907" /> <source>Save the current project to a new file</source> <translation>将当前项目另存为一个新文件</translation> </message> <message> - <location filename="../Project/Project.py" line="4912" /> + <location filename="../Project/Project.py" line="4909" /> <source><b>Save as</b><p>This saves the current project to a new file.</p></source> <translation><b>另存为</b><p>将当前项目另存为一个新文件。</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4921" /> + <location filename="../Project/Project.py" line="4918" /> <source>Save project as (Remote)</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="4923" /> + <location filename="../Project/Project.py" line="4920" /> <source>Save as (Remote)...</source> <translation type="unfinished" /> </message> <message> + <location filename="../Project/Project.py" line="4927" /> + <source>Save the current project to a new remote file</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../Project/Project.py" line="4930" /> - <source>Save the current project to a new remote file</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="4933" /> <source><b>Save as (Remote)</b><p>This saves the current project to a new remote file.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="4949" /> + <location filename="../Project/Project.py" line="4946" /> <source>Add files to project</source> <translation>将文件添加到项目中</translation> </message> <message> - <location filename="../Project/Project.py" line="4951" /> + <location filename="../Project/Project.py" line="4948" /> <source>Add &files...</source> <translation>添加文件(&F)…</translation> </message> <message> - <location filename="../Project/Project.py" line="4957" /> + <location filename="../Project/Project.py" line="4954" /> <source>Add files to the current project</source> <translation>将文件添加到当前项目中</translation> </message> <message> - <location filename="../Project/Project.py" line="4959" /> + <location filename="../Project/Project.py" line="4956" /> <source><b>Add files...</b><p>This opens a dialog for adding files to the current project. The place to add is determined by the file extension.</p></source> <translation><b>添加文件…</b><p>打开一个对话框为当前项目添加文件。添加的位置由文件扩展名决定。</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4970" /> + <location filename="../Project/Project.py" line="4967" /> <source>Add directory to project</source> <translation>将文件夹添加到项目中</translation> </message> <message> - <location filename="../Project/Project.py" line="4972" /> + <location filename="../Project/Project.py" line="4969" /> <source>Add directory...</source> <translation>添加文件夹…</translation> </message> <message> + <location filename="../Project/Project.py" line="4976" /> + <source>Add a directory to the current project</source> + <translation>为当前工程添加文件夹</translation> + </message> + <message> <location filename="../Project/Project.py" line="4979" /> - <source>Add a directory to the current project</source> - <translation>为当前工程添加文件夹</translation> - </message> - <message> - <location filename="../Project/Project.py" line="4982" /> <source><b>Add directory...</b><p>This opens a dialog for adding a directory to the current project.</p></source> <translation><b>添加文件夹…</b><p>打开一个对话框将文件夹添加到当前项目中。</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4992" /> + <location filename="../Project/Project.py" line="4989" /> <source>Add translation to project</source> <translation>将翻译添加到项目中</translation> </message> <message> - <location filename="../Project/Project.py" line="4994" /> + <location filename="../Project/Project.py" line="4991" /> <source>Add &translation...</source> <translation>添加翻译(&T)…</translation> </message> <message> + <location filename="../Project/Project.py" line="4998" /> + <source>Add a translation to the current project</source> + <translation>将翻译添加到当前项目中</translation> + </message> + <message> <location filename="../Project/Project.py" line="5001" /> - <source>Add a translation to the current project</source> - <translation>将翻译添加到当前项目中</translation> - </message> - <message> - <location filename="../Project/Project.py" line="5004" /> <source><b>Add translation...</b><p>This opens a dialog for add a translation to the current project.</p></source> <translation><b>添加翻译…</b><p>打开一个对话框将翻译添加到当前项目中。</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5014" /> + <location filename="../Project/Project.py" line="5011" /> <source>Search new files</source> <translation>搜索新文件</translation> </message> <message> - <location filename="../Project/Project.py" line="5015" /> + <location filename="../Project/Project.py" line="5012" /> <source>Searc&h new files...</source> <translation>搜索新文件(&H)…</translation> </message> <message> - <location filename="../Project/Project.py" line="5021" /> + <location filename="../Project/Project.py" line="5018" /> <source>Search new files in the project directory.</source> <translation>在项目文件夹中搜索新文件。</translation> </message> <message> - <location filename="../Project/Project.py" line="5023" /> + <location filename="../Project/Project.py" line="5020" /> <source><b>Search new files...</b><p>This searches for new files (sources, forms, ...) in the project directory and registered subdirectories.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5033" /> + <location filename="../Project/Project.py" line="5030" /> <source>Search Project File</source> <translation type="unfinished">搜索项目文件</translation> </message> <message> - <location filename="../Project/Project.py" line="5034" /> + <location filename="../Project/Project.py" line="5031" /> <source>Search Project File...</source> <translation type="unfinished">搜索项目文件…</translation> </message> <message> - <location filename="../Project/Project.py" line="5035" /> + <location filename="../Project/Project.py" line="5032" /> <source>Alt+Ctrl+P</source> <comment>Project|Search Project File</comment> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5040" /> + <location filename="../Project/Project.py" line="5037" /> <source>Search for a file in the project list of files.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5042" /> + <location filename="../Project/Project.py" line="5039" /> <source><b>Search Project File</b><p>This searches for a file in the project list of files.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5051" /> + <location filename="../Project/Project.py" line="5048" /> <source>Project properties</source> <translation>项目属性</translation> </message> <message> - <location filename="../Project/Project.py" line="5053" /> + <location filename="../Project/Project.py" line="5050" /> <source>&Properties...</source> <translation>属性(&P)…</translation> </message> <message> - <location filename="../Project/Project.py" line="5059" /> + <location filename="../Project/Project.py" line="5056" /> <source>Show the project properties</source> <translation>显示项目属性</translation> </message> <message> - <location filename="../Project/Project.py" line="5061" /> + <location filename="../Project/Project.py" line="5058" /> <source><b>Properties...</b><p>This shows a dialog to edit the project properties.</p></source> <translation><b>属性…</b><p>显示一个对话框可编辑项目属性。</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5070" /> + <location filename="../Project/Project.py" line="5067" /> <source>User project properties</source> <translation>用户项目属性</translation> </message> <message> - <location filename="../Project/Project.py" line="5072" /> + <location filename="../Project/Project.py" line="5069" /> <source>&User Properties...</source> <translation>用户属性(&U)…</translation> </message> <message> + <location filename="../Project/Project.py" line="5076" /> + <source>Show the user specific project properties</source> + <translation>显示用户指定的项目属性</translation> + </message> + <message> <location filename="../Project/Project.py" line="5079" /> - <source>Show the user specific project properties</source> - <translation>显示用户指定的项目属性</translation> - </message> - <message> - <location filename="../Project/Project.py" line="5082" /> <source><b>User Properties...</b><p>This shows a dialog to edit the user specific project properties.</p></source> <translation><b>用户属性…</b><p>显示一个对话框可编辑用户指定的项目属性。</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5092" /> + <location filename="../Project/Project.py" line="5089" /> <source>Filetype Associations</source> <translation>文件类型关联</translation> </message> <message> - <location filename="../Project/Project.py" line="5093" /> + <location filename="../Project/Project.py" line="5090" /> <source>Filetype Associations...</source> <translation>文件类型关联…</translation> </message> <message> + <location filename="../Project/Project.py" line="5097" /> + <source>Show the project file type associations</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../Project/Project.py" line="5100" /> - <source>Show the project file type associations</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="5103" /> <source><b>Filetype Associations...</b><p>This shows a dialog to edit the file type associations of the project. These associations determine the type (source, form, interface, protocol or others) with a filename pattern. They are used when adding a file to the project and when performing a search for new files.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5116" /> + <location filename="../Project/Project.py" line="5113" /> <source>Lexer Associations</source> <translation type="unfinished">词法分析器联想</translation> </message> <message> - <location filename="../Project/Project.py" line="5117" /> + <location filename="../Project/Project.py" line="5114" /> <source>Lexer Associations...</source> <translation type="unfinished">词法分析器联想…</translation> </message> <message> + <location filename="../Project/Project.py" line="5121" /> + <source>Show the project lexer associations (overriding defaults)</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../Project/Project.py" line="5124" /> - <source>Show the project lexer associations (overriding defaults)</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="5127" /> <source><b>Lexer Associations...</b><p>This shows a dialog to edit the lexer associations of the project. These associations override the global lexer associations. Lexers are used to highlight the editor text.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5145" /> + <location filename="../Project/Project.py" line="5142" /> <source>Debugger Properties</source> <translation>调试器属性</translation> </message> <message> - <location filename="../Project/Project.py" line="5146" /> + <location filename="../Project/Project.py" line="5143" /> <source>Debugger &Properties...</source> <translation>调试器属性(&P)…</translation> </message> <message> - <location filename="../Project/Project.py" line="5152" /> + <location filename="../Project/Project.py" line="5149" /> <source>Show the debugger properties</source> <translation>显示调试器属性</translation> </message> <message> - <location filename="../Project/Project.py" line="5154" /> + <location filename="../Project/Project.py" line="5151" /> <source><b>Debugger Properties...</b><p>This shows a dialog to edit project specific debugger settings.</p></source> <translation><b>调试器属性…</b><p>显示一个对话框以编辑项目指定的调试器设定。</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5164" /> + <location filename="../Project/Project.py" line="5161" /> <source>Load</source> <translation>载入</translation> </message> <message> - <location filename="../Project/Project.py" line="5165" /> + <location filename="../Project/Project.py" line="5162" /> <source>&Load</source> <translation>载入(&L)</translation> </message> <message> - <location filename="../Project/Project.py" line="5171" /> + <location filename="../Project/Project.py" line="5168" /> <source>Load the debugger properties</source> <translation>载入调试器属性</translation> </message> <message> - <location filename="../Project/Project.py" line="5173" /> + <location filename="../Project/Project.py" line="5170" /> <source><b>Load Debugger Properties</b><p>This loads the project specific debugger settings.</p></source> <translation><b>载入调试器属性</b><p>载入项目指定的调试器设定。</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5182" /> + <location filename="../Project/Project.py" line="5179" /> <source>Save</source> <translation>保存</translation> </message> <message> - <location filename="../Project/Project.py" line="5189" /> + <location filename="../Project/Project.py" line="5186" /> <source>Save the debugger properties</source> <translation>保存调试器属性</translation> </message> <message> - <location filename="../Project/Project.py" line="5191" /> + <location filename="../Project/Project.py" line="5188" /> <source><b>Save Debugger Properties</b><p>This saves the project specific debugger settings.</p></source> <translation><b>保存调试器属性</b><p>保存项目指定的调试器设置。</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5200" /> + <location filename="../Project/Project.py" line="5197" /> <source>Delete</source> <translation>删除</translation> </message> <message> - <location filename="../Project/Project.py" line="5201" /> + <location filename="../Project/Project.py" line="5198" /> <source>&Delete</source> <translation>删除(&D)</translation> </message> <message> - <location filename="../Project/Project.py" line="5207" /> + <location filename="../Project/Project.py" line="5204" /> <source>Delete the debugger properties</source> <translation>删除调试器属性</translation> </message> <message> - <location filename="../Project/Project.py" line="5209" /> + <location filename="../Project/Project.py" line="5206" /> <source><b>Delete Debugger Properties</b><p>This deletes the file containing the project specific debugger settings.</p></source> <translation><b>删除调试器属性</b><p>删除包含项目指定调试器设置的文件。</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5219" /> + <location filename="../Project/Project.py" line="5216" /> <source>Reset</source> <translation>重置</translation> </message> <message> - <location filename="../Project/Project.py" line="5220" /> + <location filename="../Project/Project.py" line="5217" /> <source>&Reset</source> <translation>重置(&R)</translation> </message> <message> - <location filename="../Project/Project.py" line="5226" /> + <location filename="../Project/Project.py" line="5223" /> <source>Reset the debugger properties</source> <translation>重围调试器属性</translation> </message> <message> - <location filename="../Project/Project.py" line="5228" /> + <location filename="../Project/Project.py" line="5225" /> <source><b>Reset Debugger Properties</b><p>This resets the project specific debugger settings.</p></source> <translation><b>重置调试器属性</b><p>重置项目指定的调试器设置。</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5244" /> - <location filename="../Project/Project.py" line="5243" /> + <location filename="../Project/Project.py" line="5241" /> + <location filename="../Project/Project.py" line="5240" /> <source>Load session</source> <translation>载入会话</translation> </message> <message> - <location filename="../Project/Project.py" line="5250" /> + <location filename="../Project/Project.py" line="5247" /> <source>Load the projects session file.</source> <translation>载入项目会话文件。</translation> </message> <message> - <location filename="../Project/Project.py" line="5252" /> + <location filename="../Project/Project.py" line="5249" /> <source><b>Load session</b><p>This loads the projects session file. The session consists of the following data.<br>- all open source files<br>- all breakpoint<br>- the commandline arguments<br>- the working directory<br>- the exception reporting flag</p></source> <translation><b>载入会话</b><p>载入项目会话文件。会话包括如下数据。<br>- 所有打开的源文件<br>- 所有断点<br>- 命令行参数<br>- 工作文件夹<br>- 异常报告标志</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5268" /> - <location filename="../Project/Project.py" line="5267" /> + <location filename="../Project/Project.py" line="5265" /> + <location filename="../Project/Project.py" line="5264" /> <source>Save session</source> <translation>保存会话</translation> </message> <message> - <location filename="../Project/Project.py" line="5274" /> + <location filename="../Project/Project.py" line="5271" /> <source>Save the projects session file.</source> <translation>保存项目会话文件。</translation> </message> <message> - <location filename="../Project/Project.py" line="5276" /> + <location filename="../Project/Project.py" line="5273" /> <source><b>Save session</b><p>This saves the projects session file. The session consists of the following data.<br>- all open source files<br>- all breakpoint<br>- the commandline arguments<br>- the working directory<br>- the exception reporting flag</p></source> <translation><b>保存会话</b><p>保存项目会话文件。会话包括如下数据。<br>- 所有打开的源文件<br>- 所有断点<br>- 命令行参数<br>- 工作文件夹<br>- 异常报告标志</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5292" /> - <location filename="../Project/Project.py" line="5291" /> + <location filename="../Project/Project.py" line="5289" /> + <location filename="../Project/Project.py" line="5288" /> <source>Delete session</source> <translation>删除会话</translation> </message> <message> - <location filename="../Project/Project.py" line="5298" /> + <location filename="../Project/Project.py" line="5295" /> <source>Delete the projects session file.</source> <translation>删除项目会话文件。</translation> </message> <message> - <location filename="../Project/Project.py" line="5300" /> + <location filename="../Project/Project.py" line="5297" /> <source><b>Delete session</b><p>This deletes the projects session file</p></source> <translation><b>删除会话</b><p>删除项目会话文件</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5315" /> + <location filename="../Project/Project.py" line="5312" /> <source>Code Metrics</source> <translation>代码度量</translation> </message> <message> - <location filename="../Project/Project.py" line="5316" /> + <location filename="../Project/Project.py" line="5313" /> <source>&Code Metrics...</source> <translation>代码度量(&C)…</translation> </message> <message> + <location filename="../Project/Project.py" line="5320" /> + <source>Show some code metrics for the project.</source> + <translation>显示项目的部分代码度量。</translation> + </message> + <message> <location filename="../Project/Project.py" line="5323" /> - <source>Show some code metrics for the project.</source> - <translation>显示项目的部分代码度量。</translation> - </message> - <message> - <location filename="../Project/Project.py" line="5326" /> <source><b>Code Metrics...</b><p>This shows some code metrics for all Python files in the project.</p></source> <translation><b>代码度量…</b><p>显示项目中所有 Python 文件的部分代码度量。</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5336" /> + <location filename="../Project/Project.py" line="5333" /> <source>Python Code Coverage</source> <translation>Python 代码覆盖率</translation> </message> <message> - <location filename="../Project/Project.py" line="5337" /> + <location filename="../Project/Project.py" line="5334" /> <source>Code Co&verage...</source> <translation>代码覆盖率(&v)…</translation> </message> <message> + <location filename="../Project/Project.py" line="5341" /> + <source>Show code coverage information for the project.</source> + <translation>显示项目的代码覆盖率信息。</translation> + </message> + <message> <location filename="../Project/Project.py" line="5344" /> - <source>Show code coverage information for the project.</source> - <translation>显示项目的代码覆盖率信息。</translation> - </message> - <message> - <location filename="../Project/Project.py" line="5347" /> <source><b>Code Coverage...</b><p>This shows the code coverage information for all Python files in the project.</p></source> <translation><b>代码覆盖率…</b><p>显示项目中所有 Python 文件的代码覆盖率。</p></translation> </message> <message> - <location filename="../Project/Project.py" line="6781" /> - <location filename="../Project/Project.py" line="6768" /> - <location filename="../Project/Project.py" line="5357" /> + <location filename="../Project/Project.py" line="6778" /> + <location filename="../Project/Project.py" line="6765" /> + <location filename="../Project/Project.py" line="5354" /> <source>Profile Data</source> <translation>剖析数据</translation> </message> <message> - <location filename="../Project/Project.py" line="5358" /> + <location filename="../Project/Project.py" line="5355" /> <source>&Profile Data...</source> <translation>剖析数据(&P)…</translation> </message> <message> + <location filename="../Project/Project.py" line="5362" /> + <source>Show profiling data for the project.</source> + <translation>显示项目的剖析数据。</translation> + </message> + <message> <location filename="../Project/Project.py" line="5365" /> - <source>Show profiling data for the project.</source> - <translation>显示项目的剖析数据。</translation> - </message> - <message> - <location filename="../Project/Project.py" line="5368" /> <source><b>Profile Data...</b><p>This shows the profiling data for the project.</p></source> <translation><b>剖析数据…</b><p>显示项目的剖析数据。</p></translation> </message> <message> - <location filename="../Project/Project.py" line="6833" /> - <location filename="../Project/Project.py" line="5383" /> + <location filename="../Project/Project.py" line="6830" /> + <location filename="../Project/Project.py" line="5380" /> <source>Application Diagram</source> <translation>应用程序图</translation> </message> <message> - <location filename="../Project/Project.py" line="5384" /> + <location filename="../Project/Project.py" line="5381" /> <source>&Application Diagram...</source> <translation>应用程序(&A)图…</translation> </message> <message> + <location filename="../Project/Project.py" line="5388" /> + <source>Show a diagram of the project.</source> + <translation>显示项目图表。</translation> + </message> + <message> <location filename="../Project/Project.py" line="5391" /> - <source>Show a diagram of the project.</source> - <translation>显示项目图表。</translation> - </message> - <message> - <location filename="../Project/Project.py" line="5394" /> <source><b>Application Diagram...</b><p>This shows a diagram of the project.</p></source> <translation><b>应用程序图…</b><p>显示项目的图表。</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5403" /> + <location filename="../Project/Project.py" line="5400" /> <source>Load Diagram</source> <translation type="unfinished">加载图表</translation> </message> <message> - <location filename="../Project/Project.py" line="5404" /> + <location filename="../Project/Project.py" line="5401" /> <source>&Load Diagram...</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5410" /> + <location filename="../Project/Project.py" line="5407" /> <source>Load a diagram from file.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5412" /> + <location filename="../Project/Project.py" line="5409" /> <source><b>Load Diagram...</b><p>This loads a diagram from file.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="7001" /> - <location filename="../Project/Project.py" line="6946" /> - <location filename="../Project/Project.py" line="5427" /> + <location filename="../Project/Project.py" line="6998" /> + <location filename="../Project/Project.py" line="6943" /> + <location filename="../Project/Project.py" line="5424" /> <source>Create Package List</source> <translation>创建程序包列表</translation> </message> <message> - <location filename="../Project/Project.py" line="5429" /> + <location filename="../Project/Project.py" line="5426" /> <source>Create &Package List</source> <translation type="unfinished">创建插件存档(&A)</translation> </message> <message> + <location filename="../Project/Project.py" line="5433" /> + <source>Create an initial PKGLIST file for an eric plugin.</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../Project/Project.py" line="5436" /> - <source>Create an initial PKGLIST file for an eric plugin.</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="5439" /> <source><b>Create Package List</b><p>This creates an initial list of files to include in an eric plugin archive. The list is created from the project file.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="7071" /> - <location filename="../Project/Project.py" line="5450" /> + <location filename="../Project/Project.py" line="7068" /> + <location filename="../Project/Project.py" line="5447" /> <source>Create Plugin Archives</source> <translation type="unfinished">创建插件存档</translation> </message> <message> - <location filename="../Project/Project.py" line="5452" /> + <location filename="../Project/Project.py" line="5449" /> <source>Create Plugin &Archives</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5458" /> + <location filename="../Project/Project.py" line="5455" /> <source>Create eric plugin archive files.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5460" /> + <location filename="../Project/Project.py" line="5457" /> <source><b>Create Plugin Archives</b><p>This creates eric plugin archive files using the list of files given in a PKGLIST* file. The archive name is built from the main script name if not designated in the package list file.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5472" /> + <location filename="../Project/Project.py" line="5469" /> <source>Create Plugin Archives (Snapshot)</source> <translation type="unfinished">创建插件存档(快照)</translation> </message> <message> - <location filename="../Project/Project.py" line="5474" /> + <location filename="../Project/Project.py" line="5471" /> <source>Create Plugin Archives (&Snapshot)</source> <translation type="unfinished" /> </message> <message> + <location filename="../Project/Project.py" line="5478" /> + <source>Create eric plugin archive files (snapshot releases).</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../Project/Project.py" line="5481" /> - <source>Create eric plugin archive files (snapshot releases).</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="5484" /> <source><b>Create Plugin Archives (Snapshot)</b><p>This creates eric plugin archive files using the list of files given in the PKGLIST* file. The archive name is built from the main script name if not designated in the package list file. The version entry of the main script is modified to reflect a snapshot release.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="7513" /> - <location filename="../Project/Project.py" line="7484" /> - <location filename="../Project/Project.py" line="7438" /> - <location filename="../Project/Project.py" line="7390" /> - <location filename="../Project/Project.py" line="5503" /> + <location filename="../Project/Project.py" line="7510" /> + <location filename="../Project/Project.py" line="7481" /> + <location filename="../Project/Project.py" line="7435" /> + <location filename="../Project/Project.py" line="7387" /> + <location filename="../Project/Project.py" line="5500" /> <source>Execute Make</source> <translation>执行make</translation> </message> <message> - <location filename="../Project/Project.py" line="5504" /> + <location filename="../Project/Project.py" line="5501" /> <source>&Execute Make</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5510" /> + <location filename="../Project/Project.py" line="5507" /> <source>Perform a 'make' run.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5512" /> + <location filename="../Project/Project.py" line="5509" /> <source><b>Execute Make</b><p>This performs a 'make' run to rebuild the configured target.</p></source> <translation type="unfinished" /> </message> <message> + <location filename="../Project/Project.py" line="7487" /> + <location filename="../Project/Project.py" line="5519" /> + <source>Test for Changes</source> + <translation>测试变更</translation> + </message> + <message> + <location filename="../Project/Project.py" line="5520" /> + <source>&Test for Changes</source> + <translation>&测试变更</translation> + </message> + <message> + <location filename="../Project/Project.py" line="5527" /> + <source>Question 'make', if a rebuild is needed.</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Project/Project.py" line="5530" /> + <source><b>Test for Changes</b><p>This questions 'make', if a rebuild of the configured target is necessary.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Project/Project.py" line="5548" /> + <source>Create SBOM File</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Project/Project.py" line="5549" /> + <source>Create &SBOM File</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Project/Project.py" line="5556" /> + <source>Create a SBOM file of the project dependencies.</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Project/Project.py" line="5559" /> + <source><b>Create SBOM File</b><p>This allows the creation of a SBOM file of the project dependencies. This may be based on various input sources and will be saved as a CycloneDX SBOM file.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Project/Project.py" line="5570" /> + <source>Clear Byte Code Caches</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Project/Project.py" line="5571" /> + <source>Clear Byte Code &Caches</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Project/Project.py" line="5578" /> + <source>Clear the byte code caches of the project.</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Project/Project.py" line="5581" /> + <source><b>Clear Byte Code Caches</b><p>This deletes all directories containing byte code cache files.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Project/Project.py" line="5597" /> + <source>About Black</source> + <translation type="unfinished">关于Black</translation> + </message> + <message> + <location filename="../Project/Project.py" line="5598" /> + <source>&Black</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Project/Project.py" line="5604" /> + <source>Show some information about 'Black'.</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Project/Project.py" line="5606" /> + <source><b>Black</b><p>This shows some information about the installed 'Black' tool.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Project/Project.py" line="5618" /> + <source>Format Code</source> + <translation type="unfinished">格式化代码</translation> + </message> + <message> + <location filename="../Project/Project.py" line="5619" /> + <source>&Format Code</source> + <translation type="unfinished">&格式化代码</translation> + </message> + <message> + <location filename="../Project/Project.py" line="5626" /> + <source>Format the project sources with 'Black'.</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Project/Project.py" line="5629" /> + <source><b>Format Code</b><p>This shows a dialog to enter parameters for the formatting run and reformats the project sources using 'Black'.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Project/Project.py" line="5641" /> + <source>Check Code Formatting</source> + <translation>代码格式化</translation> + </message> + <message> + <location filename="../Project/Project.py" line="5642" /> + <source>&Check Code Formatting</source> + <translation type="unfinished">&检查代码格式化</translation> + </message> + <message> + <location filename="../Project/Project.py" line="5649" /> + <source>Check, if the project sources need to be reformatted with 'Black'.</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Project/Project.py" line="5654" /> + <source><b>Check Code Formatting</b><p>This shows a dialog to enter parameters for the format check run and performs a check, if the project sources need to be reformatted using 'Black'.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Project/Project.py" line="5667" /> + <source>Code Formatting Diff</source> + <translation type="unfinished">代码格式化差异</translation> + </message> + <message> + <location filename="../Project/Project.py" line="5668" /> + <source>Code Formatting &Diff</source> + <translation type="unfinished">代码格式化&差异</translation> + </message> + <message> + <location filename="../Project/Project.py" line="5675" /> + <source>Generate a unified diff of potential project source reformatting with 'Black'.</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Project/Project.py" line="5681" /> + <source><b>Diff Code Formatting</b><p>This shows a dialog to enter parameters for the format diff run and generates a unified diff of potential project source reformatting using 'Black'.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Project/Project.py" line="5846" /> + <location filename="../Project/Project.py" line="5796" /> + <location filename="../Project/Project.py" line="5795" /> + <location filename="../Project/Project.py" line="5695" /> + <location filename="../Project/Project.py" line="5694" /> + <source>Configure</source> + <translation type="unfinished">配置</translation> + </message> + <message> + <location filename="../Project/Project.py" line="5702" /> + <source>Enter the parameters for formatting the project sources with 'Black'.</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Project/Project.py" line="5707" /> + <source><b>Configure</b><p>This shows a dialog to enter the parameters for formatting the project sources with 'Black'.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Project/Project.py" line="5723" /> + <source>About isort</source> + <translation type="unfinished">关于isort</translation> + </message> + <message> + <location filename="../Project/Project.py" line="5724" /> + <source>&isort</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Project/Project.py" line="5730" /> + <source>Show some information about 'isort'.</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Project/Project.py" line="5732" /> + <source><b>isort</b><p>This shows some information about the installed 'isort' tool.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Project/Project.py" line="5745" /> + <location filename="../Project/Project.py" line="5744" /> + <source>Sort Imports</source> + <translation type="unfinished">排序 Imports</translation> + </message> + <message> + <location filename="../Project/Project.py" line="5752" /> + <source>Sort the import statements of the project sources with 'isort'.</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Project/Project.py" line="5755" /> + <source><b>Sort Imports</b><p>This shows a dialog to enter parameters for the imports sorting run and sorts the import statements of the project sources using 'isort'.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Project/Project.py" line="5769" /> + <location filename="../Project/Project.py" line="5768" /> + <source>Imports Sorting Diff</source> + <translation type="unfinished">Imports 排序差异</translation> + </message> + <message> + <location filename="../Project/Project.py" line="5776" /> + <source>Generate a unified diff of potential project source imports resorting with 'isort'.</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Project/Project.py" line="5782" /> + <source><b>Imports Sorting Diff</b><p>This shows a dialog to enter parameters for the imports sorting diff run and generates a unified diff of potential project source changes using 'isort'.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Project/Project.py" line="5803" /> + <source>Enter the parameters for resorting the project sources import statements with 'isort'.</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Project/Project.py" line="5809" /> + <source><b>Configure</b><p>This shows a dialog to enter the parameters for resorting the import statements of the project sources with 'isort'.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Project/Project.py" line="5825" /> + <source>Install Project</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Project/Project.py" line="5826" /> + <source>&Install Project</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Project/Project.py" line="5833" /> + <source>Install the project into the embedded environment.</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Project/Project.py" line="5836" /> + <source><b>Install Project</b><p>This installs the project into the embedded virtual environment in editable mode (i.e. development mode).</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Project/Project.py" line="5847" /> + <source>&Configure</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Project/Project.py" line="5854" /> + <source>Configure the embedded environment.</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Project/Project.py" line="5857" /> + <source><b>Configure</b><p>This opens a dialog to configure the embedded virtual environment of the project.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Project/Project.py" line="5867" /> + <source>Upgrade</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Project/Project.py" line="5868" /> + <source>&Upgrade</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Project/Project.py" line="5874" /> + <source>Upgrade the embedded environment.</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Project/Project.py" line="5876" /> + <source><b>Upgrade</b><p>This opens a dialog to enter the parameters to upgrade the embedded virtual environment of the project.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Project/Project.py" line="5888" /> + <source>Recreate</source> + <translation>重建</translation> + </message> + <message> + <location filename="../Project/Project.py" line="5889" /> + <source>&Recreate</source> + <translation>&重建</translation> + </message> + <message> + <location filename="../Project/Project.py" line="5895" /> + <source>Recreate the embedded environment.</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Project/Project.py" line="5897" /> + <source><b>Recreate</b><p>This opens a dialog to enter the parameters to recreate the embedded virtual environment of the project. The existing environment is cleared first.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Project/Project.py" line="5929" /> + <source>&Project</source> + <translation>项目(&P)</translation> + </message> + <message> + <location filename="../Project/Project.py" line="5930" /> + <source>Open &Recent Projects</source> + <translation>打开最近的项目</translation> + </message> + <message> + <location filename="../Project/Project.py" line="5932" /> + <source>Session</source> + <translation>会话</translation> + </message> + <message> + <location filename="../Project/Project.py" line="5933" /> + <source>Debugger</source> + <translation>调试器</translation> + </message> + <message> + <location filename="../Project/Project.py" line="5934" /> + <source>Embedded Environment</source> + <translation type="unfinished">内嵌环境</translation> + </message> + <message> + <location filename="../Project/Project.py" line="5936" /> + <source>Project-T&ools</source> + <translation>项目-工&具</translation> + </message> + <message> + <location filename="../Project/Project.py" line="5937" /> + <source>&Version Control</source> + <translation>版本控制(&V)</translation> + </message> + <message> + <location filename="../Project/Project.py" line="5941" /> + <source>Chec&k</source> + <translation>检查(&K)</translation> + </message> + <message> + <location filename="../Project/Project.py" line="5943" /> + <source>Code &Formatting</source> + <translation type="unfinished">代码&格式化</translation> + </message> + <message> + <location filename="../Project/Project.py" line="5945" /> + <source>Sho&w</source> + <translation>显示(&W)</translation> + </message> + <message> + <location filename="../Project/Project.py" line="5946" /> + <source>&Diagrams</source> + <translation>图表(&D)</translation> + </message> + <message> + <location filename="../Project/Project.py" line="5947" /> + <source>Pac&kagers</source> + <translation>打包程序(&K)</translation> + </message> + <message> + <location filename="../Project/Project.py" line="5948" /> + <source>Source &Documentation</source> + <translation>源文档(&D)</translation> + </message> + <message> + <location filename="../Project/Project.py" line="5950" /> + <source>Make</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Project/Project.py" line="5951" /> + <source>Other Tools</source> + <translation>其它工具</translation> + </message> + <message> + <location filename="../Project/Project.py" line="6113" /> + <location filename="../Project/Project.py" line="6111" /> + <source>Project</source> + <translation>项目</translation> + </message> + <message> + <location filename="../Project/Project.py" line="6195" /> + <source>&Clear</source> + <translation>清除(&C)</translation> + </message> + <message> + <location filename="../Project/Project.py" line="6392" /> + <source>Search New Files</source> + <translation>搜索新文件</translation> + </message> + <message> + <location filename="../Project/Project.py" line="6393" /> + <source>There were no new files found to be added.</source> + <translation>没有要添加的新文件。</translation> + </message> + <message> + <location filename="../Project/Project.py" line="6554" /> + <location filename="../Project/Project.py" line="6541" /> + <source>Version Control System</source> + <translation>版本控制系统</translation> + </message> + <message> + <location filename="../Project/Project.py" line="6542" /> + <source><p>The selected VCS <b>{0}</b> could not be found. <br/>Reverting override.</p><p>{1}</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Project/Project.py" line="6555" /> + <source><p>The selected VCS <b>{0}</b> could not be found.<br/>Disabling version control.</p><p>{1}</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Project/Project.py" line="6712" /> + <source>Coverage Data</source> + <translation>覆盖率数据</translation> + </message> + <message> + <location filename="../Project/Project.py" line="6766" /> + <location filename="../Project/Project.py" line="6713" /> + <source>There is no main script defined for the current project. Aborting</source> + <translation>当前项目未定义主脚本。终止</translation> + </message> + <message> + <location filename="../Project/Project.py" line="6725" /> + <source>Code Coverage</source> + <translation>代码覆盖率</translation> + </message> + <message> + <location filename="../Project/Project.py" line="6726" /> + <source>Please select a coverage file</source> + <translation>请选择一个覆盖率文件</translation> + </message> + <message> + <location filename="../Project/Project.py" line="6779" /> + <source>Please select a profile file</source> + <translation>请选择一个剖析文件</translation> + </message> + <message> + <location filename="../Project/Project.py" line="6831" /> + <source>Include module names?</source> + <translation>包含模块名?</translation> + </message> + <message> + <location filename="../Project/Project.py" line="6944" /> + <source><p>The file <b>PKGLIST</b> already exists.</p><p>Overwrite it?</p></source> + <translation><p>文件 <b>PKGLIST</b> 已存在。</p><p>是否覆盖?</p></translation> + </message> + <message> + <location filename="../Project/Project.py" line="6999" /> + <source><p>The file <b>PKGLIST</b> could not be created.</p><p>Reason: {0}</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Project/Project.py" line="7295" /> + <location filename="../Project/Project.py" line="7251" /> + <location filename="../Project/Project.py" line="7201" /> + <location filename="../Project/Project.py" line="7190" /> + <location filename="../Project/Project.py" line="7172" /> + <location filename="../Project/Project.py" line="7139" /> + <location filename="../Project/Project.py" line="7109" /> + <location filename="../Project/Project.py" line="7081" /> + <location filename="../Project/Project.py" line="7051" /> + <location filename="../Project/Project.py" line="7037" /> + <location filename="../Project/Project.py" line="7020" /> + <source>Create Plugin Archive</source> + <translation>创建插件存档</translation> + </message> + <message> + <location filename="../Project/Project.py" line="7021" /> + <source>The project does not have a main script defined. Aborting...</source> + <translation>项目未定义主脚本。终止…</translation> + </message> + <message> + <location filename="../Project/Project.py" line="7038" /> + <source>Select package lists:</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Project/Project.py" line="7052" /> + <source><p>No package list files (PKGLIST*) available or selected. Aborting...</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Project/Project.py" line="7060" /> + <source>Creating plugin archives...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Project/Project.py" line="7061" /> + <source>Abort</source> + <translation type="unfinished">终止</translation> + </message> + <message> + <location filename="../Project/Project.py" line="7064" /> + <source>%v/%m Archives</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Project/Project.py" line="7082" /> + <source><p>The file <b>{0}</b> could not be read.</p><p>Reason: {1}</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Project/Project.py" line="7110" /> + <source><p>The file <b>{0}</b> is not ready yet.</p><p>Please rework it and delete the'; initial_list' line of the header.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Project/Project.py" line="7140" /> + <source><p>The eric plugin archive file <b>{0}</b> could not be created.</p><p>Reason: {1}</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Project/Project.py" line="7173" /> + <source><p>The file <b>{0}</b> could not be stored in the archive. Ignoring it.</p><p>Reason: {1}</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Project/Project.py" line="7191" /> + <source><p>The eric plugin archive files were created with some errors.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Project/Project.py" line="7202" /> + <source><p>The eric plugin archive files were created successfully.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Project/Project.py" line="7252" /> + <source><p>The plugin file <b>{0}</b> could not be read.</p><p>Reason: {1}</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Project/Project.py" line="7296" /> + <source><p>The plugin file <b>{0}</b> could not be read.</p> <p>Reason: {1}</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Project/Project.py" line="7388" /> + <source>'Make' is not supported for remote projects. Aborting...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Project/Project.py" line="7436" /> + <source>The make process did not start.</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Project/Project.py" line="7482" /> + <source>The make process crashed.</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../Project/Project.py" line="7490" /> - <location filename="../Project/Project.py" line="5522" /> - <source>Test for Changes</source> - <translation>测试变更</translation> - </message> - <message> - <location filename="../Project/Project.py" line="5523" /> - <source>&Test for Changes</source> - <translation>&测试变更</translation> - </message> - <message> - <location filename="../Project/Project.py" line="5530" /> - <source>Question 'make', if a rebuild is needed.</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="5533" /> - <source><b>Test for Changes</b><p>This questions 'make', if a rebuild of the configured target is necessary.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="5551" /> - <source>Create SBOM File</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="5552" /> - <source>Create &SBOM File</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="5559" /> - <source>Create a SBOM file of the project dependencies.</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="5562" /> - <source><b>Create SBOM File</b><p>This allows the creation of a SBOM file of the project dependencies. This may be based on various input sources and will be saved as a CycloneDX SBOM file.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="5573" /> - <source>Clear Byte Code Caches</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="5574" /> - <source>Clear Byte Code &Caches</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="5581" /> - <source>Clear the byte code caches of the project.</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="5584" /> - <source><b>Clear Byte Code Caches</b><p>This deletes all directories containing byte code cache files.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="5600" /> - <source>About Black</source> - <translation type="unfinished">关于Black</translation> - </message> - <message> - <location filename="../Project/Project.py" line="5601" /> - <source>&Black</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="5607" /> - <source>Show some information about 'Black'.</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="5609" /> - <source><b>Black</b><p>This shows some information about the installed 'Black' tool.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="5621" /> - <source>Format Code</source> - <translation type="unfinished">格式化代码</translation> - </message> - <message> - <location filename="../Project/Project.py" line="5622" /> - <source>&Format Code</source> - <translation type="unfinished">&格式化代码</translation> - </message> - <message> - <location filename="../Project/Project.py" line="5629" /> - <source>Format the project sources with 'Black'.</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="5632" /> - <source><b>Format Code</b><p>This shows a dialog to enter parameters for the formatting run and reformats the project sources using 'Black'.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="5644" /> - <source>Check Code Formatting</source> - <translation>代码格式化</translation> - </message> - <message> - <location filename="../Project/Project.py" line="5645" /> - <source>&Check Code Formatting</source> - <translation type="unfinished">&检查代码格式化</translation> - </message> - <message> - <location filename="../Project/Project.py" line="5652" /> - <source>Check, if the project sources need to be reformatted with 'Black'.</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="5657" /> - <source><b>Check Code Formatting</b><p>This shows a dialog to enter parameters for the format check run and performs a check, if the project sources need to be reformatted using 'Black'.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="5670" /> - <source>Code Formatting Diff</source> - <translation type="unfinished">代码格式化差异</translation> - </message> - <message> - <location filename="../Project/Project.py" line="5671" /> - <source>Code Formatting &Diff</source> - <translation type="unfinished">代码格式化&差异</translation> - </message> - <message> - <location filename="../Project/Project.py" line="5678" /> - <source>Generate a unified diff of potential project source reformatting with 'Black'.</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="5684" /> - <source><b>Diff Code Formatting</b><p>This shows a dialog to enter parameters for the format diff run and generates a unified diff of potential project source reformatting using 'Black'.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="5849" /> - <location filename="../Project/Project.py" line="5799" /> - <location filename="../Project/Project.py" line="5798" /> - <location filename="../Project/Project.py" line="5698" /> - <location filename="../Project/Project.py" line="5697" /> - <source>Configure</source> - <translation type="unfinished">配置</translation> - </message> - <message> - <location filename="../Project/Project.py" line="5705" /> - <source>Enter the parameters for formatting the project sources with 'Black'.</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="5710" /> - <source><b>Configure</b><p>This shows a dialog to enter the parameters for formatting the project sources with 'Black'.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="5726" /> - <source>About isort</source> - <translation type="unfinished">关于isort</translation> - </message> - <message> - <location filename="../Project/Project.py" line="5727" /> - <source>&isort</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="5733" /> - <source>Show some information about 'isort'.</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="5735" /> - <source><b>isort</b><p>This shows some information about the installed 'isort' tool.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="5748" /> - <location filename="../Project/Project.py" line="5747" /> - <source>Sort Imports</source> - <translation type="unfinished">排序 Imports</translation> - </message> - <message> - <location filename="../Project/Project.py" line="5755" /> - <source>Sort the import statements of the project sources with 'isort'.</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="5758" /> - <source><b>Sort Imports</b><p>This shows a dialog to enter parameters for the imports sorting run and sorts the import statements of the project sources using 'isort'.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="5772" /> - <location filename="../Project/Project.py" line="5771" /> - <source>Imports Sorting Diff</source> - <translation type="unfinished">Imports 排序差异</translation> - </message> - <message> - <location filename="../Project/Project.py" line="5779" /> - <source>Generate a unified diff of potential project source imports resorting with 'isort'.</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="5785" /> - <source><b>Imports Sorting Diff</b><p>This shows a dialog to enter parameters for the imports sorting diff run and generates a unified diff of potential project source changes using 'isort'.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="5806" /> - <source>Enter the parameters for resorting the project sources import statements with 'isort'.</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="5812" /> - <source><b>Configure</b><p>This shows a dialog to enter the parameters for resorting the import statements of the project sources with 'isort'.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="5828" /> - <source>Install Project</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="5829" /> - <source>&Install Project</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="5836" /> - <source>Install the project into the embedded environment.</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="5839" /> - <source><b>Install Project</b><p>This installs the project into the embedded virtual environment in editable mode (i.e. development mode).</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="5850" /> - <source>&Configure</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="5857" /> - <source>Configure the embedded environment.</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="5860" /> - <source><b>Configure</b><p>This opens a dialog to configure the embedded virtual environment of the project.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="5870" /> - <source>Upgrade</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="5871" /> - <source>&Upgrade</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="5877" /> - <source>Upgrade the embedded environment.</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="5879" /> - <source><b>Upgrade</b><p>This opens a dialog to enter the parameters to upgrade the embedded virtual environment of the project.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="5891" /> - <source>Recreate</source> - <translation>重建</translation> - </message> - <message> - <location filename="../Project/Project.py" line="5892" /> - <source>&Recreate</source> - <translation>&重建</translation> - </message> - <message> - <location filename="../Project/Project.py" line="5898" /> - <source>Recreate the embedded environment.</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="5900" /> - <source><b>Recreate</b><p>This opens a dialog to enter the parameters to recreate the embedded virtual environment of the project. The existing environment is cleared first.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="5932" /> - <source>&Project</source> - <translation>项目(&P)</translation> - </message> - <message> - <location filename="../Project/Project.py" line="5933" /> - <source>Open &Recent Projects</source> - <translation>打开最近的项目</translation> - </message> - <message> - <location filename="../Project/Project.py" line="5935" /> - <source>Session</source> - <translation>会话</translation> - </message> - <message> - <location filename="../Project/Project.py" line="5936" /> - <source>Debugger</source> - <translation>调试器</translation> - </message> - <message> - <location filename="../Project/Project.py" line="5937" /> - <source>Embedded Environment</source> - <translation type="unfinished">内嵌环境</translation> - </message> - <message> - <location filename="../Project/Project.py" line="5939" /> - <source>Project-T&ools</source> - <translation>项目-工&具</translation> - </message> - <message> - <location filename="../Project/Project.py" line="5940" /> - <source>&Version Control</source> - <translation>版本控制(&V)</translation> - </message> - <message> - <location filename="../Project/Project.py" line="5944" /> - <source>Chec&k</source> - <translation>检查(&K)</translation> - </message> - <message> - <location filename="../Project/Project.py" line="5946" /> - <source>Code &Formatting</source> - <translation type="unfinished">代码&格式化</translation> - </message> - <message> - <location filename="../Project/Project.py" line="5948" /> - <source>Sho&w</source> - <translation>显示(&W)</translation> - </message> - <message> - <location filename="../Project/Project.py" line="5949" /> - <source>&Diagrams</source> - <translation>图表(&D)</translation> - </message> - <message> - <location filename="../Project/Project.py" line="5950" /> - <source>Pac&kagers</source> - <translation>打包程序(&K)</translation> - </message> - <message> - <location filename="../Project/Project.py" line="5951" /> - <source>Source &Documentation</source> - <translation>源文档(&D)</translation> - </message> - <message> - <location filename="../Project/Project.py" line="5953" /> - <source>Make</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="5954" /> - <source>Other Tools</source> - <translation>其它工具</translation> - </message> - <message> - <location filename="../Project/Project.py" line="6116" /> - <location filename="../Project/Project.py" line="6114" /> - <source>Project</source> - <translation>项目</translation> - </message> - <message> - <location filename="../Project/Project.py" line="6198" /> - <source>&Clear</source> - <translation>清除(&C)</translation> - </message> - <message> - <location filename="../Project/Project.py" line="6395" /> - <source>Search New Files</source> - <translation>搜索新文件</translation> - </message> - <message> - <location filename="../Project/Project.py" line="6396" /> - <source>There were no new files found to be added.</source> - <translation>没有要添加的新文件。</translation> - </message> - <message> - <location filename="../Project/Project.py" line="6557" /> - <location filename="../Project/Project.py" line="6544" /> - <source>Version Control System</source> - <translation>版本控制系统</translation> - </message> - <message> - <location filename="../Project/Project.py" line="6545" /> - <source><p>The selected VCS <b>{0}</b> could not be found. <br/>Reverting override.</p><p>{1}</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="6558" /> - <source><p>The selected VCS <b>{0}</b> could not be found.<br/>Disabling version control.</p><p>{1}</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="6715" /> - <source>Coverage Data</source> - <translation>覆盖率数据</translation> - </message> - <message> - <location filename="../Project/Project.py" line="6769" /> - <location filename="../Project/Project.py" line="6716" /> - <source>There is no main script defined for the current project. Aborting</source> - <translation>当前项目未定义主脚本。终止</translation> - </message> - <message> - <location filename="../Project/Project.py" line="6728" /> - <source>Code Coverage</source> - <translation>代码覆盖率</translation> - </message> - <message> - <location filename="../Project/Project.py" line="6729" /> - <source>Please select a coverage file</source> - <translation>请选择一个覆盖率文件</translation> - </message> - <message> - <location filename="../Project/Project.py" line="6782" /> - <source>Please select a profile file</source> - <translation>请选择一个剖析文件</translation> - </message> - <message> - <location filename="../Project/Project.py" line="6834" /> - <source>Include module names?</source> - <translation>包含模块名?</translation> - </message> - <message> - <location filename="../Project/Project.py" line="6947" /> - <source><p>The file <b>PKGLIST</b> already exists.</p><p>Overwrite it?</p></source> - <translation><p>文件 <b>PKGLIST</b> 已存在。</p><p>是否覆盖?</p></translation> - </message> - <message> - <location filename="../Project/Project.py" line="7002" /> - <source><p>The file <b>PKGLIST</b> could not be created.</p><p>Reason: {0}</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="7298" /> - <location filename="../Project/Project.py" line="7254" /> - <location filename="../Project/Project.py" line="7204" /> - <location filename="../Project/Project.py" line="7193" /> - <location filename="../Project/Project.py" line="7175" /> - <location filename="../Project/Project.py" line="7142" /> - <location filename="../Project/Project.py" line="7112" /> - <location filename="../Project/Project.py" line="7084" /> - <location filename="../Project/Project.py" line="7054" /> - <location filename="../Project/Project.py" line="7040" /> - <location filename="../Project/Project.py" line="7023" /> - <source>Create Plugin Archive</source> - <translation>创建插件存档</translation> - </message> - <message> - <location filename="../Project/Project.py" line="7024" /> - <source>The project does not have a main script defined. Aborting...</source> - <translation>项目未定义主脚本。终止…</translation> - </message> - <message> - <location filename="../Project/Project.py" line="7041" /> - <source>Select package lists:</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="7055" /> - <source><p>No package list files (PKGLIST*) available or selected. Aborting...</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="7063" /> - <source>Creating plugin archives...</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="7064" /> - <source>Abort</source> - <translation type="unfinished">终止</translation> - </message> - <message> - <location filename="../Project/Project.py" line="7067" /> - <source>%v/%m Archives</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="7085" /> - <source><p>The file <b>{0}</b> could not be read.</p><p>Reason: {1}</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="7113" /> - <source><p>The file <b>{0}</b> is not ready yet.</p><p>Please rework it and delete the'; initial_list' line of the header.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="7143" /> - <source><p>The eric plugin archive file <b>{0}</b> could not be created.</p><p>Reason: {1}</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="7176" /> - <source><p>The file <b>{0}</b> could not be stored in the archive. Ignoring it.</p><p>Reason: {1}</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="7194" /> - <source><p>The eric plugin archive files were created with some errors.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="7205" /> - <source><p>The eric plugin archive files were created successfully.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="7255" /> - <source><p>The plugin file <b>{0}</b> could not be read.</p><p>Reason: {1}</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="7299" /> - <source><p>The plugin file <b>{0}</b> could not be read.</p> <p>Reason: {1}</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="7391" /> - <source>'Make' is not supported for remote projects. Aborting...</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="7439" /> - <source>The make process did not start.</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="7485" /> - <source>The make process crashed.</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Project/Project.py" line="7493" /> <source><p>There are changes that require the configured make target <b>{0}</b> to be rebuilt.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="7498" /> + <location filename="../Project/Project.py" line="7495" /> <source><p>There are changes that require the default make target to be rebuilt.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="7514" /> + <location filename="../Project/Project.py" line="7511" /> <source>The makefile contains errors.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="7944" /> + <location filename="../Project/Project.py" line="7941" /> <source>Interpreter Missing</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="7945" /> + <location filename="../Project/Project.py" line="7942" /> <source>The configured interpreter of the embedded environment does not exist anymore. Shall the environment be upgraded?</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="8026" /> + <location filename="../Project/Project.py" line="8023" /> <source>Open Remote Project</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="8057" /> - <location filename="../Project/Project.py" line="8042" /> + <location filename="../Project/Project.py" line="8054" /> + <location filename="../Project/Project.py" line="8039" /> <source>Save Remote Project</source> <translation type="unfinished" /> </message> @@ -64572,8 +64585,8 @@ <translation>版本控制系统状态</translation> </message> <message> - <location filename="../Project/ProjectBrowserModel.py" line="922" /> - <location filename="../Project/ProjectBrowserModel.py" line="900" /> + <location filename="../Project/ProjectBrowserModel.py" line="926" /> + <location filename="../Project/ProjectBrowserModel.py" line="904" /> <location filename="../Project/ProjectBrowserModel.py" line="548" /> <location filename="../Project/ProjectBrowserModel.py" line="418" /> <source>local</source> @@ -69071,7 +69084,7 @@ <context> <name>PythonDisViewer</name> <message> - <location filename="../UI/PythonDisViewer.py" line="61" /> + <location filename="../UI/PythonDisViewer.py" line="62" /> <location filename="../UI/PythonDisViewer.ui" line="0" /> <source>Disassembly</source> <translation type="unfinished" /> @@ -69087,160 +69100,160 @@ <translation type="unfinished" /> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="73" /> + <location filename="../UI/PythonDisViewer.py" line="74" /> <source>Line</source> <translation type="unfinished">行</translation> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="74" /> - <source>Offset</source> - <translation type="unfinished">偏移</translation> - </message> - <message> <location filename="../UI/PythonDisViewer.py" line="75" /> - <source>Operation</source> - <translation type="unfinished" /> + <source>Offset</source> + <translation type="unfinished">偏移</translation> </message> <message> <location filename="../UI/PythonDisViewer.py" line="76" /> - <source>Parameters</source> + <source>Operation</source> <translation type="unfinished" /> </message> <message> <location filename="../UI/PythonDisViewer.py" line="77" /> + <source>Parameters</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/PythonDisViewer.py" line="78" /> <source>Interpreted Parameters</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="80" /> + <location filename="../UI/PythonDisViewer.py" line="81" /> <source>Key</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="80" /> + <location filename="../UI/PythonDisViewer.py" line="81" /> <source>Value</source> <translation type="unfinished">值</translation> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="85" /> + <location filename="../UI/PythonDisViewer.py" line="86" /> <source>Show Code Info</source> <translation type="unfinished" /> </message> <message> + <location filename="../UI/PythonDisViewer.py" line="97" /> + <location filename="../UI/PythonDisViewer.py" line="89" /> + <source>Expand All</source> + <translation type="unfinished">展开所有</translation> + </message> + <message> + <location filename="../UI/PythonDisViewer.py" line="99" /> + <location filename="../UI/PythonDisViewer.py" line="90" /> + <source>Collapse All</source> + <translation type="unfinished">折叠所有</translation> + </message> + <message> + <location filename="../UI/PythonDisViewer.py" line="102" /> + <location filename="../UI/PythonDisViewer.py" line="92" /> + <source>Configure...</source> + <translation type="unfinished">配置…</translation> + </message> + <message> <location filename="../UI/PythonDisViewer.py" line="96" /> - <location filename="../UI/PythonDisViewer.py" line="88" /> - <source>Expand All</source> - <translation type="unfinished">展开所有</translation> - </message> - <message> - <location filename="../UI/PythonDisViewer.py" line="98" /> - <location filename="../UI/PythonDisViewer.py" line="89" /> - <source>Collapse All</source> - <translation type="unfinished">折叠所有</translation> - </message> - <message> - <location filename="../UI/PythonDisViewer.py" line="101" /> - <location filename="../UI/PythonDisViewer.py" line="91" /> - <source>Configure...</source> - <translation type="unfinished">配置…</translation> - </message> - <message> - <location filename="../UI/PythonDisViewer.py" line="95" /> <source>Hide</source> <translation type="unfinished">隐藏</translation> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="448" /> + <location filename="../UI/PythonDisViewer.py" line="455" /> <source>No editor has been opened.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="459" /> + <location filename="../UI/PythonDisViewer.py" line="466" /> <source>The current editor does not contain any source code.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="465" /> + <location filename="../UI/PythonDisViewer.py" line="472" /> <source>The current editor does not contain Python source code.</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="509" /> + <location filename="../UI/PythonDisViewer.py" line="516" /> <source>Disassembly of last traceback</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="672" /> + <location filename="../UI/PythonDisViewer.py" line="694" /> <source>Code Object '{0}'</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="784" /> + <location filename="../UI/PythonDisViewer.py" line="806" /> <source>Name</source> <translation type="unfinished">名称</translation> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="786" /> + <location filename="../UI/PythonDisViewer.py" line="808" /> <source>Filename</source> <translation type="unfinished">文件名</translation> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="790" /> - <source>First Line</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/PythonDisViewer.py" line="794" /> - <source>Argument Count</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/PythonDisViewer.py" line="799" /> - <source>Positional-only Arguments</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/PythonDisViewer.py" line="805" /> - <source>Keyword-only Arguments</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/PythonDisViewer.py" line="809" /> - <source>Number of Locals</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../UI/PythonDisViewer.py" line="812" /> - <source>Stack Size</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../UI/PythonDisViewer.py" line="814" /> - <source>Flags</source> + <source>First Line</source> <translation type="unfinished" /> </message> <message> <location filename="../UI/PythonDisViewer.py" line="816" /> + <source>Argument Count</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/PythonDisViewer.py" line="821" /> + <source>Positional-only Arguments</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/PythonDisViewer.py" line="827" /> + <source>Keyword-only Arguments</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/PythonDisViewer.py" line="831" /> + <source>Number of Locals</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/PythonDisViewer.py" line="834" /> + <source>Stack Size</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/PythonDisViewer.py" line="836" /> + <source>Flags</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../UI/PythonDisViewer.py" line="838" /> <source>Constants</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="818" /> + <location filename="../UI/PythonDisViewer.py" line="840" /> <source>Names</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="820" /> + <location filename="../UI/PythonDisViewer.py" line="842" /> <source>Variable Names</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="822" /> + <location filename="../UI/PythonDisViewer.py" line="844" /> <source>Free Variables</source> <translation type="unfinished" /> </message> <message> - <location filename="../UI/PythonDisViewer.py" line="824" /> + <location filename="../UI/PythonDisViewer.py" line="846" /> <source>Cell Variables</source> <translation type="unfinished" /> </message> @@ -74392,32 +74405,32 @@ <context> <name>SessionFile</name> <message> - <location filename="../Sessions/SessionFile.py" line="247" /> + <location filename="../Sessions/SessionFile.py" line="249" /> <source>Save Remote Session</source> <translation type="unfinished" /> </message> <message> - <location filename="../Sessions/SessionFile.py" line="250" /> + <location filename="../Sessions/SessionFile.py" line="252" /> <source>Save Session</source> <translation type="unfinished" /> </message> <message> - <location filename="../Sessions/SessionFile.py" line="258" /> + <location filename="../Sessions/SessionFile.py" line="260" /> <source><p>The session file <b>{0}</b> could not be written.</p><p>Reason: {1}</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Sessions/SessionFile.py" line="282" /> + <location filename="../Sessions/SessionFile.py" line="284" /> <source>Read Remote Session</source> <translation type="unfinished" /> </message> <message> - <location filename="../Sessions/SessionFile.py" line="285" /> + <location filename="../Sessions/SessionFile.py" line="287" /> <source>Read Session</source> <translation type="unfinished" /> </message> <message> - <location filename="../Sessions/SessionFile.py" line="293" /> + <location filename="../Sessions/SessionFile.py" line="295" /> <source><p>The session file <b>{0}</b> could not be read.</p><p>Reason: {1}</p></source> <translation type="unfinished" /> </message> @@ -94610,1052 +94623,1052 @@ <context> <name>ViewManager</name> <message> - <location filename="../ViewManager/ViewManager.py" line="615" /> + <location filename="../ViewManager/ViewManager.py" line="625" /> <source>New</source> <translation>新建</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="617" /> + <location filename="../ViewManager/ViewManager.py" line="627" /> <source>&New</source> <translation>新建(&N)</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="619" /> - <source>Ctrl+N</source> - <comment>File|New</comment> - <translation>Ctrl+N</translation> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="626" /> - <source>Open an empty editor window</source> - <translation>打开一个空白编辑器窗口</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="629" /> + <source>Ctrl+N</source> + <comment>File|New</comment> + <translation>Ctrl+N</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="636" /> + <source>Open an empty editor window</source> + <translation>打开一个空白编辑器窗口</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="639" /> <source><b>New</b><p>An empty editor window will be created.</p></source> <translation><b>新建</b><p>创建一个空白编辑器窗口。</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="638" /> + <location filename="../ViewManager/ViewManager.py" line="648" /> <source>Open</source> <translation>打开</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="640" /> + <location filename="../ViewManager/ViewManager.py" line="650" /> <source>&Open...</source> <translation>打开(&O)…</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="642" /> + <location filename="../ViewManager/ViewManager.py" line="652" /> <source>Ctrl+O</source> <comment>File|Open</comment> <translation>Ctrl+O</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="649" /> + <location filename="../ViewManager/ViewManager.py" line="659" /> <source>Open a file</source> <translation>打开一个文件</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="652" /> + <location filename="../ViewManager/ViewManager.py" line="662" /> <source><b>Open a file</b><p>You will be asked for the name of a file to be opened in an editor window.</p></source> <translation><b>打开一个文件</b><p>在编辑器窗口中打开一个文件时将询问文件名称。</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="663" /> + <location filename="../ViewManager/ViewManager.py" line="673" /> <source>Open (Remote)</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="665" /> - <source>Open (Remote)...</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="672" /> - <source>Open a remote file</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="675" /> + <source>Open (Remote)...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="682" /> + <source>Open a remote file</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="685" /> <source><b>Open a remote file</b><p>You will be asked for the name of a remote file to be opened in an editor window.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="689" /> - <location filename="../ViewManager/ViewManager.py" line="687" /> - <source>Reload</source> - <translation type="unfinished">重新载入</translation> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="696" /> - <source>Reload the current file</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="699" /> + <location filename="../ViewManager/ViewManager.py" line="697" /> + <source>Reload</source> + <translation type="unfinished">重新载入</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="706" /> + <source>Reload the current file</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="709" /> <source><b>Reload</b><p>Reload the contents of current editor window. If the editor contents was modified, a warning will be issued.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="712" /> + <location filename="../ViewManager/ViewManager.py" line="722" /> <source>Close</source> <translation>关闭</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="714" /> + <location filename="../ViewManager/ViewManager.py" line="724" /> <source>&Close</source> <translation>关闭(&C)</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="716" /> - <source>Ctrl+W</source> - <comment>File|Close</comment> - <translation>Ctrl+W</translation> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="723" /> - <source>Close the current window</source> - <translation>关闭当前窗口</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="726" /> - <source><b>Close Window</b><p>Close the current window.</p></source> - <translation><b>关闭窗口</b><p>关闭当前窗口。</p></translation> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="735" /> - <source>Close All</source> - <translation>全部关闭</translation> + <source>Ctrl+W</source> + <comment>File|Close</comment> + <translation>Ctrl+W</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="733" /> + <source>Close the current window</source> + <translation>关闭当前窗口</translation> </message> <message> <location filename="../ViewManager/ViewManager.py" line="736" /> - <source>Clos&e All</source> - <translation>全部关闭(&E)</translation> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="743" /> - <source>Close all editor windows</source> - <translation>关闭所有编辑器窗口</translation> + <source><b>Close Window</b><p>Close the current window.</p></source> + <translation><b>关闭窗口</b><p>关闭当前窗口。</p></translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="745" /> + <source>Close All</source> + <translation>全部关闭</translation> </message> <message> <location filename="../ViewManager/ViewManager.py" line="746" /> + <source>Clos&e All</source> + <translation>全部关闭(&E)</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="753" /> + <source>Close all editor windows</source> + <translation>关闭所有编辑器窗口</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="756" /> <source><b>Close All Windows</b><p>Close all editor windows.</p></source> <translation><b>关闭所有窗口</b><p>关闭所有编辑器窗口。</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="759" /> + <location filename="../ViewManager/ViewManager.py" line="769" /> <source>Save</source> <translation>保存</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="761" /> + <location filename="../ViewManager/ViewManager.py" line="771" /> <source>&Save</source> <translation>保存(&S)</translation> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="316" /> - <location filename="../ViewManager/ViewManager.py" line="763" /> + <location filename="../ViewManager/ViewManager.py" line="773" /> <source>Ctrl+S</source> <comment>File|Save</comment> <translation>Ctrl+S</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="770" /> + <location filename="../ViewManager/ViewManager.py" line="780" /> <source>Save the current file</source> <translation>保存当前文件</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="773" /> - <source><b>Save File</b><p>Save the contents of current editor window.</p></source> - <translation><b>保存文件</b><p>保存当前编辑器窗口的内容。</p></translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="783" /> + <source><b>Save File</b><p>Save the contents of current editor window.</p></source> + <translation><b>保存文件</b><p>保存当前编辑器窗口的内容。</p></translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="793" /> <source>Save as</source> <translation>另存为</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="785" /> + <location filename="../ViewManager/ViewManager.py" line="795" /> <source>Save &as...</source> <translation>另存为(&A)…</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="787" /> + <location filename="../ViewManager/ViewManager.py" line="797" /> <source>Shift+Ctrl+S</source> <comment>File|Save As</comment> <translation>Shift+Ctrl+S</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="796" /> + <location filename="../ViewManager/ViewManager.py" line="806" /> <source>Save the current file to a new one</source> <translation>将当前文件保存到一个新文件中</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="801" /> + <location filename="../ViewManager/ViewManager.py" line="811" /> <source><b>Save File as</b><p>Save the contents of the current editor window to a new file. The file can be entered in a file selection dialog.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="812" /> + <location filename="../ViewManager/ViewManager.py" line="822" /> <source>Save as (Remote)</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="814" /> + <location filename="../ViewManager/ViewManager.py" line="824" /> <source>Save as (Remote)...</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="821" /> + <location filename="../ViewManager/ViewManager.py" line="831" /> <source>Save the current file to a new one on an eric-ide server</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="827" /> + <location filename="../ViewManager/ViewManager.py" line="837" /> <source><b>Save File as (Remote)</b><p>Save the contents of the current editor window to a new file on the connected eric-ide server. The file can be entered in a file selection dialog.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="839" /> + <location filename="../ViewManager/ViewManager.py" line="849" /> <source>Save Copy</source> <translation>保存副本</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="841" /> - <source>Save &Copy...</source> - <translation>保存副本(&C)…</translation> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="848" /> - <source>Save a copy of the current file</source> - <translation>保存当前文件的一个副本</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="851" /> + <source>Save &Copy...</source> + <translation>保存副本(&C)…</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="858" /> + <source>Save a copy of the current file</source> + <translation>保存当前文件的一个副本</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="861" /> <source><b>Save Copy</b><p>Save a copy of the contents of current editor window. The file can be entered in a file selection dialog.</p></source> <translation><b>保存副本</b>保存当前编辑器窗口内容的一个副本。文件可以在文件选择对话框中输入。</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="862" /> + <location filename="../ViewManager/ViewManager.py" line="872" /> <source>Save all</source> <translation>全部保存</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="864" /> - <source>Save a&ll</source> - <translation>全部保存(&A)</translation> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="871" /> - <source>Save all files</source> - <translation>保存所有文件</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="874" /> + <source>Save a&ll</source> + <translation>全部保存(&A)</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="881" /> + <source>Save all files</source> + <translation>保存所有文件</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="884" /> <source><b>Save All Files</b><p>Save the contents of all editor windows.</p></source> <translation><b>保存所有文件</b><p>保存所有编辑器窗口的内容。</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="886" /> + <location filename="../ViewManager/ViewManager.py" line="896" /> <source>Print</source> <translation>打印</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="888" /> + <location filename="../ViewManager/ViewManager.py" line="898" /> <source>&Print</source> <translation>打印(&P)</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="890" /> + <location filename="../ViewManager/ViewManager.py" line="900" /> <source>Ctrl+P</source> <comment>File|Print</comment> <translation>Ctrl+P</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="897" /> + <location filename="../ViewManager/ViewManager.py" line="907" /> <source>Print the current file</source> <translation>打印当前文件</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="900" /> + <location filename="../ViewManager/ViewManager.py" line="910" /> <source><b>Print File</b><p>Print the contents of current editor window.</p></source> <translation><b>打印文件</b><p>打印当前编辑器窗口中的内容。</p></translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="780" /> - <location filename="../ViewManager/ViewManager.py" line="913" /> - <location filename="../ViewManager/ViewManager.py" line="911" /> + <location filename="../ViewManager/ViewManager.py" line="923" /> + <location filename="../ViewManager/ViewManager.py" line="921" /> <source>Print Preview</source> <translation>打印预览</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="920" /> + <location filename="../ViewManager/ViewManager.py" line="930" /> <source>Print preview of the current file</source> <translation>当前文件的打印预览</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="925" /> + <location filename="../ViewManager/ViewManager.py" line="935" /> <source><b>Print Preview</b><p>Print preview of the current editor window.</p></source> <translation><b>打印预览</b><p>当前编辑器窗口的打印预览。</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="936" /> + <location filename="../ViewManager/ViewManager.py" line="946" /> <source>Find File</source> <translation type="unfinished">查找文件</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="938" /> + <location filename="../ViewManager/ViewManager.py" line="948" /> <source>Find &File...</source> <translation>查找文件…</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="940" /> + <location filename="../ViewManager/ViewManager.py" line="950" /> <source>Alt+Ctrl+F</source> <comment>File|Find File</comment> <translation type="unfinished">Alt+Ctrl+F</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="949" /> + <location filename="../ViewManager/ViewManager.py" line="959" /> <source>Search for a file by entering a search pattern</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="954" /> + <location filename="../ViewManager/ViewManager.py" line="964" /> <source><b>Find File</b><p>This searches for a file by entering a search pattern.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="970" /> + <location filename="../ViewManager/ViewManager.py" line="980" /> <source>&File</source> <translation>文件(&F)</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="972" /> + <location filename="../ViewManager/ViewManager.py" line="982" /> <source>Open &Recent Files</source> <translation>打开最近的文件(&R)</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="976" /> + <location filename="../ViewManager/ViewManager.py" line="986" /> <source>Open &Bookmarked Files</source> <translation>打开已设置书签的文件(&B)</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1024" /> - <location filename="../ViewManager/ViewManager.py" line="1022" /> + <location filename="../ViewManager/ViewManager.py" line="1034" /> + <location filename="../ViewManager/ViewManager.py" line="1032" /> <source>File</source> <translation>文件</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1051" /> + <location filename="../ViewManager/ViewManager.py" line="1061" /> <source>Export as</source> <translation>导出为</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1074" /> + <location filename="../ViewManager/ViewManager.py" line="1084" /> <source>Undo</source> <translation>撤消</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1076" /> + <location filename="../ViewManager/ViewManager.py" line="1086" /> <source>&Undo</source> <translation>撤消(&U)</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1078" /> + <location filename="../ViewManager/ViewManager.py" line="1088" /> <source>Ctrl+Z</source> <comment>Edit|Undo</comment> <translation>Ctrl+Z</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1081" /> + <location filename="../ViewManager/ViewManager.py" line="1091" /> <source>Alt+Backspace</source> <comment>Edit|Undo</comment> <translation>Alt+Backspace</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1087" /> + <location filename="../ViewManager/ViewManager.py" line="1097" /> <source>Undo the last change</source> <translation>撤消最后一次更改</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1090" /> - <source><b>Undo</b><p>Undo the last change done in the current editor.</p></source> - <translation><b>撤消</b><p>在当前编辑器中撤消最后一次更改。</p></translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="1100" /> + <source><b>Undo</b><p>Undo the last change done in the current editor.</p></source> + <translation><b>撤消</b><p>在当前编辑器中撤消最后一次更改。</p></translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="1110" /> <source>Redo</source> <translation>重做</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1102" /> + <location filename="../ViewManager/ViewManager.py" line="1112" /> <source>&Redo</source> <translation>重做(&R)</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1104" /> + <location filename="../ViewManager/ViewManager.py" line="1114" /> <source>Ctrl+Shift+Z</source> <comment>Edit|Redo</comment> <translation>Ctrl+Shift+Z</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1111" /> + <location filename="../ViewManager/ViewManager.py" line="1121" /> <source>Redo the last change</source> <translation>重做最后一次更改</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1114" /> + <location filename="../ViewManager/ViewManager.py" line="1124" /> <source><b>Redo</b><p>Redo the last change done in the current editor.</p></source> <translation><b>重做</b><p>在当前编辑器中重做最后一次更改。</p></translation> </message> <message> + <location filename="../ViewManager/ViewManager.py" line="1144" /> <location filename="../ViewManager/ViewManager.py" line="1134" /> - <location filename="../ViewManager/ViewManager.py" line="1124" /> <source>Revert to last saved state</source> <translation>还原到最后保存的状态</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1125" /> + <location filename="../ViewManager/ViewManager.py" line="1135" /> <source>Re&vert to last saved state</source> <translation>还原到最后保存的状态(&v)</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1127" /> + <location filename="../ViewManager/ViewManager.py" line="1137" /> <source>Ctrl+Y</source> <comment>Edit|Revert</comment> <translation>Ctrl+Y</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1137" /> + <location filename="../ViewManager/ViewManager.py" line="1147" /> <source><b>Revert to last saved state</b><p>Undo all changes up to the last saved state of the current editor.</p></source> <translation><b>还原到最后保存的状态</b><p>撤消所有更改到当前编辑器的最后保存状态。</p></translation> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="343" /> - <location filename="../ViewManager/ViewManager.py" line="1150" /> + <location filename="../ViewManager/ViewManager.py" line="1160" /> <source>Cut</source> <translation>剪切</translation> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="345" /> - <location filename="../ViewManager/ViewManager.py" line="1152" /> + <location filename="../ViewManager/ViewManager.py" line="1162" /> <source>Cu&t</source> <translation>剪切(&t)</translation> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="347" /> - <location filename="../ViewManager/ViewManager.py" line="1154" /> + <location filename="../ViewManager/ViewManager.py" line="1164" /> <source>Ctrl+X</source> <comment>Edit|Cut</comment> <translation>Ctrl+X</translation> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="350" /> - <location filename="../ViewManager/ViewManager.py" line="1157" /> + <location filename="../ViewManager/ViewManager.py" line="1167" /> <source>Shift+Del</source> <comment>Edit|Cut</comment> <translation>Shift+Del</translation> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="356" /> - <location filename="../ViewManager/ViewManager.py" line="1163" /> + <location filename="../ViewManager/ViewManager.py" line="1173" /> <source>Cut the selection</source> <translation>剪切所选内容</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1166" /> + <location filename="../ViewManager/ViewManager.py" line="1176" /> <source><b>Cut</b><p>Cut the selected text of the current editor to the clipboard.</p></source> <translation><b>剪切</b><p>将当前编辑器所选内容剪切到剪贴板中。</p></translation> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="365" /> - <location filename="../ViewManager/ViewManager.py" line="1177" /> + <location filename="../ViewManager/ViewManager.py" line="1187" /> <source>Copy</source> <translation>复制</translation> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="367" /> - <location filename="../ViewManager/ViewManager.py" line="1179" /> + <location filename="../ViewManager/ViewManager.py" line="1189" /> <source>&Copy</source> <translation>复制(&C)</translation> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="369" /> - <location filename="../ViewManager/ViewManager.py" line="1181" /> + <location filename="../ViewManager/ViewManager.py" line="1191" /> <source>Ctrl+C</source> <comment>Edit|Copy</comment> <translation>Ctrl+C</translation> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="372" /> - <location filename="../ViewManager/ViewManager.py" line="1184" /> + <location filename="../ViewManager/ViewManager.py" line="1194" /> <source>Ctrl+Ins</source> <comment>Edit|Copy</comment> <translation>Ctrl+Ins</translation> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="378" /> - <location filename="../ViewManager/ViewManager.py" line="1190" /> + <location filename="../ViewManager/ViewManager.py" line="1200" /> <source>Copy the selection</source> <translation>复制所选内容</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1193" /> + <location filename="../ViewManager/ViewManager.py" line="1203" /> <source><b>Copy</b><p>Copy the selected text of the current editor to the clipboard.</p></source> <translation><b>复制</b><p>将当前编辑器所选内容复制到剪贴板中。</p></translation> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="387" /> - <location filename="../ViewManager/ViewManager.py" line="1204" /> + <location filename="../ViewManager/ViewManager.py" line="1214" /> <source>Paste</source> <translation>粘贴</translation> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="389" /> - <location filename="../ViewManager/ViewManager.py" line="1206" /> + <location filename="../ViewManager/ViewManager.py" line="1216" /> <source>&Paste</source> <translation>粘贴(&P)</translation> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="391" /> - <location filename="../ViewManager/ViewManager.py" line="1208" /> + <location filename="../ViewManager/ViewManager.py" line="1218" /> <source>Ctrl+V</source> <comment>Edit|Paste</comment> <translation>Ctrl+V</translation> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="394" /> - <location filename="../ViewManager/ViewManager.py" line="1211" /> + <location filename="../ViewManager/ViewManager.py" line="1221" /> <source>Shift+Ins</source> <comment>Edit|Paste</comment> <translation>Shift+Ins</translation> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="400" /> - <location filename="../ViewManager/ViewManager.py" line="1217" /> + <location filename="../ViewManager/ViewManager.py" line="1227" /> <source>Paste the last cut/copied text</source> <translation>粘贴最近剪切或复制的文本</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1220" /> + <location filename="../ViewManager/ViewManager.py" line="1230" /> <source><b>Paste</b><p>Paste the last cut/copied text from the clipboard to the current editor.</p></source> <translation><b>粘贴</b><p>将最近剪切或复制的文本从剪贴板粘贴到当前编辑器中。</p></translation> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="414" /> <location filename="../QScintilla/ShellWindow.py" line="412" /> - <location filename="../ViewManager/ViewManager.py" line="1233" /> - <location filename="../ViewManager/ViewManager.py" line="1231" /> + <location filename="../ViewManager/ViewManager.py" line="1243" /> + <location filename="../ViewManager/ViewManager.py" line="1241" /> <source>Clear</source> <translation>清除</translation> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="416" /> - <location filename="../ViewManager/ViewManager.py" line="1235" /> + <location filename="../ViewManager/ViewManager.py" line="1245" /> <source>Alt+Shift+C</source> <comment>Edit|Clear</comment> <translation>Alt+Shift+C</translation> </message> <message> <location filename="../QScintilla/ShellWindow.py" line="423" /> - <location filename="../ViewManager/ViewManager.py" line="1242" /> + <location filename="../ViewManager/ViewManager.py" line="1252" /> <source>Clear all text</source> <translation>清除所有文本</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1245" /> + <location filename="../ViewManager/ViewManager.py" line="1255" /> <source><b>Clear</b><p>Delete all text of the current editor.</p></source> <translation><b>清除</b><p>删除当前编辑器中的所有文本。</p></translation> </message> <message> + <location filename="../ViewManager/ViewManager.py" line="1274" /> + <location filename="../ViewManager/ViewManager.py" line="1265" /> <location filename="../ViewManager/ViewManager.py" line="1264" /> - <location filename="../ViewManager/ViewManager.py" line="1255" /> - <location filename="../ViewManager/ViewManager.py" line="1254" /> <source>Join Lines</source> <translation>合并行</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1257" /> - <source>Ctrl+J</source> - <comment>Edit|Join Lines</comment> - <translation>Ctrl+J</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="1267" /> - <source><b>Join Lines</b><p>Join the current and the next lines.</p></source> - <translation><b>连接行</b><p>连接当前行和下面的行。</p></translation> + <source>Ctrl+J</source> + <comment>Edit|Join Lines</comment> + <translation>Ctrl+J</translation> </message> <message> <location filename="../ViewManager/ViewManager.py" line="1277" /> + <source><b>Join Lines</b><p>Join the current and the next lines.</p></source> + <translation><b>连接行</b><p>连接当前行和下面的行。</p></translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="1287" /> <source>Indent</source> <translation>缩进</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1279" /> + <location filename="../ViewManager/ViewManager.py" line="1289" /> <source>&Indent</source> <translation>缩进(&I)</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1281" /> - <source>Ctrl+I</source> - <comment>Edit|Indent</comment> - <translation>Ctrl+I</translation> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="1288" /> - <source>Indent line</source> - <translation>缩进行</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="1291" /> + <source>Ctrl+I</source> + <comment>Edit|Indent</comment> + <translation>Ctrl+I</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="1298" /> + <source>Indent line</source> + <translation>缩进行</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="1301" /> <source><b>Indent</b><p>Indents the current line or the lines of the selection by one level.</p></source> <translation><b>缩进</b><p>将当前行或所选择的行缩进一级。</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1302" /> + <location filename="../ViewManager/ViewManager.py" line="1312" /> <source>Unindent</source> <translation>取消缩进</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1304" /> + <location filename="../ViewManager/ViewManager.py" line="1314" /> <source>U&nindent</source> <translation>取消缩进(&U)</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1306" /> + <location filename="../ViewManager/ViewManager.py" line="1316" /> <source>Ctrl+Shift+I</source> <comment>Edit|Unindent</comment> <translation>Ctrl+Shift+I</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1315" /> + <location filename="../ViewManager/ViewManager.py" line="1325" /> <source>Unindent line</source> <translation>取消缩进行</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1318" /> + <location filename="../ViewManager/ViewManager.py" line="1328" /> <source><b>Unindent</b><p>Unindents the current line or the lines of the selection by one level.</p></source> <translation><b>取消缩进</b><p>将当前行或所选择的行取消缩进一级。</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1331" /> - <location filename="../ViewManager/ViewManager.py" line="1329" /> - <source>Smart indent</source> - <translation>智能缩进</translation> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="1338" /> - <source>Smart indent Line or Selection</source> - <translation>智能缩进行或所选内容</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="1341" /> + <location filename="../ViewManager/ViewManager.py" line="1339" /> + <source>Smart indent</source> + <translation>智能缩进</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="1348" /> + <source>Smart indent Line or Selection</source> + <translation>智能缩进行或所选内容</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="1351" /> <source><b>Smart indent</b><p>Indents the current line or the lines of the current selection smartly.</p></source> <translation><b>智能缩进</b><p>对当前行或当前选择的行进行智能缩进。</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1352" /> + <location filename="../ViewManager/ViewManager.py" line="1362" /> <source>Comment</source> <translation>注释</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1354" /> + <location filename="../ViewManager/ViewManager.py" line="1364" /> <source>C&omment</source> <translation>注释(&O)</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1356" /> - <source>Ctrl+M</source> - <comment>Edit|Comment</comment> - <translation>Ctrl+M</translation> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="1363" /> - <source>Comment Line or Selection</source> - <translation>注释行或所选内容</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="1366" /> + <source>Ctrl+M</source> + <comment>Edit|Comment</comment> + <translation>Ctrl+M</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="1373" /> + <source>Comment Line or Selection</source> + <translation>注释行或所选内容</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="1376" /> <source><b>Comment</b><p>Comments the current line or the lines of the current selection.</p></source> <translation><b>注释</b><p>注释当前行或当前选择的多行。</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1377" /> + <location filename="../ViewManager/ViewManager.py" line="1387" /> <source>Uncomment</source> <translation>取消注释</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1379" /> + <location filename="../ViewManager/ViewManager.py" line="1389" /> <source>Unco&mment</source> <translation>取消注释(&M)</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1381" /> + <location filename="../ViewManager/ViewManager.py" line="1391" /> <source>Ctrl+Shift+M</source> <comment>Edit|Uncomment</comment> <translation type="unfinished">Ctrl+Shift+M</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1390" /> + <location filename="../ViewManager/ViewManager.py" line="1400" /> <source>Uncomment Line or Selection</source> <translation>取消注释行或所选内容</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1393" /> + <location filename="../ViewManager/ViewManager.py" line="1403" /> <source><b>Uncomment</b><p>Uncomments the current line or the lines of the current selection.</p></source> <translation><b>取消注释</b><p>取消注释当前行或当前选择的多行。</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1406" /> - <location filename="../ViewManager/ViewManager.py" line="1404" /> + <location filename="../ViewManager/ViewManager.py" line="1416" /> + <location filename="../ViewManager/ViewManager.py" line="1414" /> <source>Toggle Comment</source> <translation>切换注释</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1408" /> + <location filename="../ViewManager/ViewManager.py" line="1418" /> <source>Ctrl+#</source> <comment>Edit|Toggle Comment</comment> <translation type="unfinished">Ctrl+#</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1417" /> + <location filename="../ViewManager/ViewManager.py" line="1427" /> <source>Toggle the comment of the current line, selection or comment block</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1423" /> + <location filename="../ViewManager/ViewManager.py" line="1433" /> <source><b>Toggle Comment</b><p>If the current line does not start with a block comment, the current line or selection is commented. If it is already commented, this comment block is uncommented. </p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1436" /> - <location filename="../ViewManager/ViewManager.py" line="1435" /> + <location filename="../ViewManager/ViewManager.py" line="1446" /> + <location filename="../ViewManager/ViewManager.py" line="1445" /> <source>Stream Comment</source> <translation>流注释</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1443" /> + <location filename="../ViewManager/ViewManager.py" line="1453" /> <source>Stream Comment Line or Selection</source> <translation>流注释行或所选内容</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1448" /> + <location filename="../ViewManager/ViewManager.py" line="1458" /> <source><b>Stream Comment</b><p>Stream comments the current line or the current selection.</p></source> <translation><b>流注释</b><p>对当前行或当前所选内容进行流注释。</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1460" /> - <location filename="../ViewManager/ViewManager.py" line="1459" /> - <source>Box Comment</source> - <translation>块注释</translation> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="1467" /> - <source>Box Comment Line or Selection</source> - <translation>块注释行或所选内容</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="1470" /> + <location filename="../ViewManager/ViewManager.py" line="1469" /> + <source>Box Comment</source> + <translation>块注释</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="1477" /> + <source>Box Comment Line or Selection</source> + <translation>块注释行或所选内容</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="1480" /> <source><b>Box Comment</b><p>Box comments the current line or the lines of the current selection.</p></source> <translation><b>块注释</b><p>对当前行或当前所选内容进行块注释。</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1481" /> + <location filename="../ViewManager/ViewManager.py" line="1491" /> <source>Select to brace</source> <translation>选择括号内容</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1482" /> + <location filename="../ViewManager/ViewManager.py" line="1492" /> <source>Select to &brace</source> <translation>选择括号内容(&B)</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1484" /> + <location filename="../ViewManager/ViewManager.py" line="1494" /> <source>Ctrl+E</source> <comment>Edit|Select to brace</comment> <translation>Ctrl+E</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1493" /> + <location filename="../ViewManager/ViewManager.py" line="1503" /> <source>Select text to the matching brace</source> <translation>选择成对括号中的文本</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1498" /> + <location filename="../ViewManager/ViewManager.py" line="1508" /> <source><b>Select to brace</b><p>Select text of the current editor to the matching brace.</p></source> <translation><b>选择括号内容</b><p>选择当前编辑器中成对括号中的文本。</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1509" /> + <location filename="../ViewManager/ViewManager.py" line="1519" /> <source>Select all</source> <translation>全选</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1511" /> + <location filename="../ViewManager/ViewManager.py" line="1521" /> <source>&Select all</source> <translation>全选(&S)</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1513" /> + <location filename="../ViewManager/ViewManager.py" line="1523" /> <source>Ctrl+A</source> <comment>Edit|Select all</comment> <translation>Ctrl+A</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1520" /> + <location filename="../ViewManager/ViewManager.py" line="1530" /> <source>Select all text</source> <translation>选择所有文本</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1523" /> - <source><b>Select All</b><p>Select all text of the current editor.</p></source> - <translation><b>全选</b><p>选择当前编辑器中的所有文本。</p></translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="1533" /> + <source><b>Select All</b><p>Select all text of the current editor.</p></source> + <translation><b>全选</b><p>选择当前编辑器中的所有文本。</p></translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="1543" /> <source>Deselect all</source> <translation>全部取消选择</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1534" /> + <location filename="../ViewManager/ViewManager.py" line="1544" /> <source>&Deselect all</source> <translation>全部取消选择(&D)</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1536" /> + <location filename="../ViewManager/ViewManager.py" line="1546" /> <source>Alt+Ctrl+A</source> <comment>Edit|Deselect all</comment> <translation>Alt+Ctrl+A</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1545" /> + <location filename="../ViewManager/ViewManager.py" line="1555" /> <source>Deselect all text</source> <translation>所有文本都不选择</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1548" /> + <location filename="../ViewManager/ViewManager.py" line="1558" /> <source><b>Deselect All</b><p>Deselect all text of the current editor.</p></source> <translation><b>取消全选</b><p>取消选择当前编辑器中的所有文本。</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1566" /> - <location filename="../ViewManager/ViewManager.py" line="1559" /> - <location filename="../ViewManager/ViewManager.py" line="1558" /> + <location filename="../ViewManager/ViewManager.py" line="1576" /> + <location filename="../ViewManager/ViewManager.py" line="1569" /> + <location filename="../ViewManager/ViewManager.py" line="1568" /> <source>Convert Line End Characters</source> <translation>转换行尾符</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1569" /> + <location filename="../ViewManager/ViewManager.py" line="1579" /> <source><b>Convert Line End Characters</b><p>Convert the line end characters to the currently set type.</p></source> <translation><b>转换行尾符</b><p>将行尾符转换成当前设置的类型。</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1588" /> - <location filename="../ViewManager/ViewManager.py" line="1581" /> - <location filename="../ViewManager/ViewManager.py" line="1580" /> - <source>Convert Tabs to Spaces</source> - <translation type="unfinished" /> - </message> - <message> + <location filename="../ViewManager/ViewManager.py" line="1598" /> <location filename="../ViewManager/ViewManager.py" line="1591" /> + <location filename="../ViewManager/ViewManager.py" line="1590" /> + <source>Convert Tabs to Spaces</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="1601" /> <source><b>Convert Tabs to Spaces</b><p>Convert tabulators to the configured amount of space characters.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1610" /> - <location filename="../ViewManager/ViewManager.py" line="1603" /> - <location filename="../ViewManager/ViewManager.py" line="1602" /> + <location filename="../ViewManager/ViewManager.py" line="1620" /> + <location filename="../ViewManager/ViewManager.py" line="1613" /> + <location filename="../ViewManager/ViewManager.py" line="1612" /> <source>Shorten empty lines</source> <translation>缩减空行</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1613" /> + <location filename="../ViewManager/ViewManager.py" line="1623" /> <source><b>Shorten empty lines</b><p>Shorten lines consisting solely of whitespace characters.</p></source> <translation><b>缩减空行</b><p>缩减只包含空白符号的多行。</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3497" /> - <location filename="../ViewManager/ViewManager.py" line="1624" /> + <location filename="../ViewManager/ViewManager.py" line="3507" /> + <location filename="../ViewManager/ViewManager.py" line="1634" /> <source>Complete</source> <translation>补全</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1625" /> + <location filename="../ViewManager/ViewManager.py" line="1635" /> <source>&Complete</source> <translation>补全(&C)</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1627" /> + <location filename="../ViewManager/ViewManager.py" line="1637" /> <source>Ctrl+Space</source> <comment>Edit|Complete</comment> <translation>Ctrl+Space</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1634" /> + <location filename="../ViewManager/ViewManager.py" line="1644" /> <source>Complete current word</source> <translation>补全当前单词</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1637" /> + <location filename="../ViewManager/ViewManager.py" line="1647" /> <source><b>Complete</b><p>Performs a completion of the word containing the cursor.</p></source> <translation><b>补全</b><p>对当前光标处的单词进行补全。</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1649" /> - <location filename="../ViewManager/ViewManager.py" line="1648" /> + <location filename="../ViewManager/ViewManager.py" line="1659" /> + <location filename="../ViewManager/ViewManager.py" line="1658" /> <source>Complete from Document</source> <translation>从文档补全</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1651" /> + <location filename="../ViewManager/ViewManager.py" line="1661" /> <source>Ctrl+Shift+Space</source> <comment>Edit|Complete from Document</comment> <translation>Ctrl+Shift+Space</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1660" /> + <location filename="../ViewManager/ViewManager.py" line="1670" /> <source>Complete current word from Document</source> <translation>从文档补全当前单词</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1665" /> + <location filename="../ViewManager/ViewManager.py" line="1675" /> <source><b>Complete from Document</b><p>Performs a completion from document of the word containing the cursor.</p></source> <translation><b>从文档补全</b><p>从文档提取信息补全当前光标处的单词。</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1677" /> - <location filename="../ViewManager/ViewManager.py" line="1676" /> + <location filename="../ViewManager/ViewManager.py" line="1687" /> + <location filename="../ViewManager/ViewManager.py" line="1686" /> <source>Complete from APIs</source> <translation>从 API 补全</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1679" /> + <location filename="../ViewManager/ViewManager.py" line="1689" /> <source>Ctrl+Alt+Space</source> <comment>Edit|Complete from APIs</comment> <translation>Ctrl+Alt+Space</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1688" /> + <location filename="../ViewManager/ViewManager.py" line="1698" /> <source>Complete current word from APIs</source> <translation>从 API 补全当前单词</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1691" /> + <location filename="../ViewManager/ViewManager.py" line="1701" /> <source><b>Complete from APIs</b><p>Performs a completion from APIs of the word containing the cursor.</p></source> <translation><b>从 API 补全</b><p>从 API 提取信息补全当前光标处的单词。</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1705" /> - <location filename="../ViewManager/ViewManager.py" line="1702" /> + <location filename="../ViewManager/ViewManager.py" line="1715" /> + <location filename="../ViewManager/ViewManager.py" line="1712" /> <source>Complete from Document and APIs</source> <translation>从文档和 API 补全</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1709" /> + <location filename="../ViewManager/ViewManager.py" line="1719" /> <source>Alt+Shift+Space</source> <comment>Edit|Complete from Document and APIs</comment> <translation>Alt+Shift+Space</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1720" /> + <location filename="../ViewManager/ViewManager.py" line="1730" /> <source>Complete current word from Document and APIs</source> <translation>从文档和 API 补全当前单词</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1725" /> + <location filename="../ViewManager/ViewManager.py" line="1735" /> <source><b>Complete from Document and APIs</b><p>Performs a completion from document and APIs of the word containing the cursor.</p></source> <translation><b>从文档和 API 补全</b><p>从文档和 API 提取信息补全当前光标处的单词。</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1736" /> + <location filename="../ViewManager/ViewManager.py" line="1746" /> <source>Calltip</source> <translation>调用提示</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1737" /> + <location filename="../ViewManager/ViewManager.py" line="1747" /> <source>&Calltip</source> <translation>调用提示(&C)</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1739" /> + <location filename="../ViewManager/ViewManager.py" line="1749" /> <source>Meta+Alt+Space</source> <comment>Edit|Calltip</comment> <translation>Meta+Alt+Space</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1748" /> + <location filename="../ViewManager/ViewManager.py" line="1758" /> <source>Show Calltips</source> <translation>显示调用提示</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1751" /> + <location filename="../ViewManager/ViewManager.py" line="1761" /> <source><b>Calltip</b><p>Show calltips based on the characters immediately to the left of the cursor.</p></source> <translation><b>调用提示</b><p>根据光标左边的字符即时显示调用提示。</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1764" /> - <location filename="../ViewManager/ViewManager.py" line="1762" /> + <location filename="../ViewManager/ViewManager.py" line="1774" /> + <location filename="../ViewManager/ViewManager.py" line="1772" /> <source>Code Info</source> <translation>代码信息</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1766" /> + <location filename="../ViewManager/ViewManager.py" line="1776" /> <source>Ctrl+Alt+I</source> <comment>Edit|Code Info</comment> <translation type="unfinished">Ctrl+Alt+I</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1775" /> + <location filename="../ViewManager/ViewManager.py" line="1785" /> <source>Show Code Info</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1778" /> + <location filename="../ViewManager/ViewManager.py" line="1788" /> <source><b>Code Info</b><p>Show code information based on the cursor position.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1789" /> - <location filename="../ViewManager/ViewManager.py" line="1788" /> + <location filename="../ViewManager/ViewManager.py" line="1799" /> + <location filename="../ViewManager/ViewManager.py" line="1798" /> <source>Sort</source> <translation>排序</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1791" /> + <location filename="../ViewManager/ViewManager.py" line="1801" /> <source>Ctrl+Alt+S</source> <comment>Edit|Sort</comment> <translation>Ctrl+Alt+S</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1798" /> + <location filename="../ViewManager/ViewManager.py" line="1808" /> <source>Sort the lines containing the rectangular selection</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1803" /> + <location filename="../ViewManager/ViewManager.py" line="1813" /> <source><b>Sort</b><p>Sort the lines spanned by a rectangular selection based on the selection ignoring leading and trailing whitespace.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1815" /> - <location filename="../ViewManager/ViewManager.py" line="1814" /> + <location filename="../ViewManager/ViewManager.py" line="1825" /> + <location filename="../ViewManager/ViewManager.py" line="1824" /> <source>Generate Docstring</source> <translation>生成文档字符串</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1817" /> + <location filename="../ViewManager/ViewManager.py" line="1827" /> <source>Ctrl+Alt+D</source> <comment>Edit|Generate Docstring</comment> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1826" /> + <location filename="../ViewManager/ViewManager.py" line="1836" /> <source>Generate a docstring for the current function/method</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="1831" /> + <location filename="../ViewManager/ViewManager.py" line="1841" /> <source><b>Generate Docstring</b><p>Generate a docstring for the current function/method if the cursor is placed on the line starting the function definition or on the line thereafter. The docstring is inserted at the appropriate position and the cursor is placed at the end of the description line.</p></source> <translation type="unfinished" /> </message> @@ -95664,22 +95677,22 @@ <location filename="../QScintilla/MiniEditor.py" line="929" /> <location filename="../QScintilla/ShellWindow.py" line="579" /> <location filename="../QScintilla/ShellWindow.py" line="578" /> - <location filename="../ViewManager/ViewManager.py" line="1858" /> - <location filename="../ViewManager/ViewManager.py" line="1857" /> + <location filename="../ViewManager/ViewManager.py" line="1868" /> + <location filename="../ViewManager/ViewManager.py" line="1867" /> <source>Move left one character</source> <translation>左移一个字符</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="931" /> <location filename="../QScintilla/ShellWindow.py" line="580" /> - <location filename="../ViewManager/ViewManager.py" line="1859" /> + <location filename="../ViewManager/ViewManager.py" line="1869" /> <source>Left</source> <translation>Left</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="939" /> <location filename="../QScintilla/ShellWindow.py" line="588" /> - <location filename="../ViewManager/ViewManager.py" line="1867" /> + <location filename="../ViewManager/ViewManager.py" line="1877" /> <source>Meta+B</source> <translation>Meta+B</translation> </message> @@ -95688,22 +95701,22 @@ <location filename="../QScintilla/MiniEditor.py" line="945" /> <location filename="../QScintilla/ShellWindow.py" line="595" /> <location filename="../QScintilla/ShellWindow.py" line="594" /> - <location filename="../ViewManager/ViewManager.py" line="1874" /> - <location filename="../ViewManager/ViewManager.py" line="1873" /> + <location filename="../ViewManager/ViewManager.py" line="1884" /> + <location filename="../ViewManager/ViewManager.py" line="1883" /> <source>Move right one character</source> <translation>右移一个字符</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="947" /> <location filename="../QScintilla/ShellWindow.py" line="596" /> - <location filename="../ViewManager/ViewManager.py" line="1875" /> + <location filename="../ViewManager/ViewManager.py" line="1885" /> <source>Right</source> <translation>Right</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="954" /> <location filename="../QScintilla/ShellWindow.py" line="603" /> - <location filename="../ViewManager/ViewManager.py" line="1882" /> + <location filename="../ViewManager/ViewManager.py" line="1892" /> <source>Meta+F</source> <translation>Meta+F</translation> </message> @@ -95712,22 +95725,22 @@ <location filename="../QScintilla/MiniEditor.py" line="961" /> <location filename="../QScintilla/ShellWindow.py" line="687" /> <location filename="../QScintilla/ShellWindow.py" line="686" /> - <location filename="../ViewManager/ViewManager.py" line="1890" /> - <location filename="../ViewManager/ViewManager.py" line="1889" /> + <location filename="../ViewManager/ViewManager.py" line="1900" /> + <location filename="../ViewManager/ViewManager.py" line="1899" /> <source>Move up one line</source> <translation>上移一行</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="963" /> <location filename="../QScintilla/ShellWindow.py" line="688" /> - <location filename="../ViewManager/ViewManager.py" line="1891" /> + <location filename="../ViewManager/ViewManager.py" line="1901" /> <source>Up</source> <translation>Up</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="970" /> <location filename="../QScintilla/ShellWindow.py" line="695" /> - <location filename="../ViewManager/ViewManager.py" line="1898" /> + <location filename="../ViewManager/ViewManager.py" line="1908" /> <source>Meta+P</source> <translation>Meta+P</translation> </message> @@ -95736,30 +95749,30 @@ <location filename="../QScintilla/MiniEditor.py" line="977" /> <location filename="../QScintilla/ShellWindow.py" line="703" /> <location filename="../QScintilla/ShellWindow.py" line="702" /> - <location filename="../ViewManager/ViewManager.py" line="1906" /> - <location filename="../ViewManager/ViewManager.py" line="1905" /> + <location filename="../ViewManager/ViewManager.py" line="1916" /> + <location filename="../ViewManager/ViewManager.py" line="1915" /> <source>Move down one line</source> <translation>下移一行</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="979" /> <location filename="../QScintilla/ShellWindow.py" line="704" /> - <location filename="../ViewManager/ViewManager.py" line="1907" /> + <location filename="../ViewManager/ViewManager.py" line="1917" /> <source>Down</source> <translation>Down</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="986" /> <location filename="../QScintilla/ShellWindow.py" line="711" /> - <location filename="../ViewManager/ViewManager.py" line="1914" /> + <location filename="../ViewManager/ViewManager.py" line="1924" /> <source>Meta+N</source> <translation>Meta+N</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="994" /> <location filename="../QScintilla/MiniEditor.py" line="993" /> - <location filename="../ViewManager/ViewManager.py" line="1922" /> - <location filename="../ViewManager/ViewManager.py" line="1921" /> + <location filename="../ViewManager/ViewManager.py" line="1932" /> + <location filename="../ViewManager/ViewManager.py" line="1931" /> <source>Move left one word part</source> <translation>左移一个单词部分</translation> </message> @@ -95767,16 +95780,16 @@ <location filename="../QScintilla/MiniEditor.py" line="1034" /> <location filename="../QScintilla/MiniEditor.py" line="1002" /> <location filename="../QScintilla/ShellWindow.py" line="619" /> - <location filename="../ViewManager/ViewManager.py" line="1962" /> - <location filename="../ViewManager/ViewManager.py" line="1930" /> + <location filename="../ViewManager/ViewManager.py" line="1972" /> + <location filename="../ViewManager/ViewManager.py" line="1940" /> <source>Alt+Left</source> <translation>Alt+Left</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1010" /> <location filename="../QScintilla/MiniEditor.py" line="1009" /> - <location filename="../ViewManager/ViewManager.py" line="1938" /> - <location filename="../ViewManager/ViewManager.py" line="1937" /> + <location filename="../ViewManager/ViewManager.py" line="1948" /> + <location filename="../ViewManager/ViewManager.py" line="1947" /> <source>Move right one word part</source> <translation>右移一个单词部分</translation> </message> @@ -95784,8 +95797,8 @@ <location filename="../QScintilla/MiniEditor.py" line="2164" /> <location filename="../QScintilla/MiniEditor.py" line="1054" /> <location filename="../QScintilla/MiniEditor.py" line="1018" /> - <location filename="../ViewManager/ViewManager.py" line="3071" /> - <location filename="../ViewManager/ViewManager.py" line="1946" /> + <location filename="../ViewManager/ViewManager.py" line="3081" /> + <location filename="../ViewManager/ViewManager.py" line="1956" /> <source>Alt+Right</source> <translation>Alt+Right</translation> </message> @@ -95794,8 +95807,8 @@ <location filename="../QScintilla/MiniEditor.py" line="1025" /> <location filename="../QScintilla/ShellWindow.py" line="611" /> <location filename="../QScintilla/ShellWindow.py" line="610" /> - <location filename="../ViewManager/ViewManager.py" line="1954" /> - <location filename="../ViewManager/ViewManager.py" line="1953" /> + <location filename="../ViewManager/ViewManager.py" line="1964" /> + <location filename="../ViewManager/ViewManager.py" line="1963" /> <source>Move left one word</source> <translation>左移一个词距</translation> </message> @@ -95803,8 +95816,8 @@ <location filename="../QScintilla/MiniEditor.py" line="1094" /> <location filename="../QScintilla/MiniEditor.py" line="1038" /> <location filename="../QScintilla/ShellWindow.py" line="623" /> - <location filename="../ViewManager/ViewManager.py" line="2018" /> - <location filename="../ViewManager/ViewManager.py" line="1966" /> + <location filename="../ViewManager/ViewManager.py" line="2028" /> + <location filename="../ViewManager/ViewManager.py" line="1976" /> <source>Ctrl+Left</source> <translation>Ctrl+Left</translation> </message> @@ -95813,8 +95826,8 @@ <location filename="../QScintilla/MiniEditor.py" line="1045" /> <location filename="../QScintilla/ShellWindow.py" line="631" /> <location filename="../QScintilla/ShellWindow.py" line="630" /> - <location filename="../ViewManager/ViewManager.py" line="1974" /> - <location filename="../ViewManager/ViewManager.py" line="1973" /> + <location filename="../ViewManager/ViewManager.py" line="1984" /> + <location filename="../ViewManager/ViewManager.py" line="1983" /> <source>Move right one word</source> <translation>右移一个词距</translation> </message> @@ -95822,8 +95835,8 @@ <location filename="../QScintilla/MiniEditor.py" line="1848" /> <location filename="../QScintilla/MiniEditor.py" line="1058" /> <location filename="../QScintilla/ShellWindow.py" line="639" /> - <location filename="../ViewManager/ViewManager.py" line="2755" /> - <location filename="../ViewManager/ViewManager.py" line="1982" /> + <location filename="../ViewManager/ViewManager.py" line="2765" /> + <location filename="../ViewManager/ViewManager.py" line="1992" /> <source>Ctrl+Right</source> <translation>Ctrl+Right</translation> </message> @@ -95832,8 +95845,8 @@ <location filename="../QScintilla/MiniEditor.py" line="1065" /> <location filename="../QScintilla/ShellWindow.py" line="649" /> <location filename="../QScintilla/ShellWindow.py" line="646" /> - <location filename="../ViewManager/ViewManager.py" line="1992" /> - <location filename="../ViewManager/ViewManager.py" line="1989" /> + <location filename="../ViewManager/ViewManager.py" line="2002" /> + <location filename="../ViewManager/ViewManager.py" line="1999" /> <source>Move to first visible character in document line</source> <translation>移动至文档行的第一个可见字符</translation> </message> @@ -95841,22 +95854,22 @@ <location filename="../QScintilla/MiniEditor.py" line="2109" /> <location filename="../QScintilla/MiniEditor.py" line="1078" /> <location filename="../QScintilla/ShellWindow.py" line="659" /> - <location filename="../ViewManager/ViewManager.py" line="3016" /> - <location filename="../ViewManager/ViewManager.py" line="2002" /> + <location filename="../ViewManager/ViewManager.py" line="3026" /> + <location filename="../ViewManager/ViewManager.py" line="2012" /> <source>Home</source> <translation>Home</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1086" /> <location filename="../QScintilla/MiniEditor.py" line="1085" /> - <location filename="../ViewManager/ViewManager.py" line="2010" /> - <location filename="../ViewManager/ViewManager.py" line="2009" /> + <location filename="../ViewManager/ViewManager.py" line="2020" /> + <location filename="../ViewManager/ViewManager.py" line="2019" /> <source>Move to start of display line</source> <translation>移动至所显示行的起始位置</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1098" /> - <location filename="../ViewManager/ViewManager.py" line="2022" /> + <location filename="../ViewManager/ViewManager.py" line="2032" /> <source>Alt+Home</source> <translation>Alt+Home</translation> </message> @@ -95865,15 +95878,15 @@ <location filename="../QScintilla/MiniEditor.py" line="1105" /> <location filename="../QScintilla/ShellWindow.py" line="667" /> <location filename="../QScintilla/ShellWindow.py" line="666" /> - <location filename="../ViewManager/ViewManager.py" line="2030" /> - <location filename="../ViewManager/ViewManager.py" line="2029" /> + <location filename="../ViewManager/ViewManager.py" line="2040" /> + <location filename="../ViewManager/ViewManager.py" line="2039" /> <source>Move to end of document line</source> <translation>移动至文档行的末尾</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1114" /> <location filename="../QScintilla/ShellWindow.py" line="675" /> - <location filename="../ViewManager/ViewManager.py" line="2038" /> + <location filename="../ViewManager/ViewManager.py" line="2048" /> <source>Meta+E</source> <translation>Meta+E</translation> </message> @@ -95881,16 +95894,16 @@ <location filename="../QScintilla/MiniEditor.py" line="2126" /> <location filename="../QScintilla/MiniEditor.py" line="1118" /> <location filename="../QScintilla/ShellWindow.py" line="679" /> - <location filename="../ViewManager/ViewManager.py" line="3033" /> - <location filename="../ViewManager/ViewManager.py" line="2042" /> + <location filename="../ViewManager/ViewManager.py" line="3043" /> + <location filename="../ViewManager/ViewManager.py" line="2052" /> <source>End</source> <translation>End</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1126" /> <location filename="../QScintilla/MiniEditor.py" line="1125" /> - <location filename="../ViewManager/ViewManager.py" line="2050" /> - <location filename="../ViewManager/ViewManager.py" line="2049" /> + <location filename="../ViewManager/ViewManager.py" line="2060" /> + <location filename="../ViewManager/ViewManager.py" line="2059" /> <source>Scroll view down one line</source> <translation>视图向下滚动一行</translation> </message> @@ -95898,16 +95911,16 @@ <location filename="../QScintilla/MiniEditor.py" line="1230" /> <location filename="../QScintilla/MiniEditor.py" line="1127" /> <location filename="../QScintilla/ShellWindow.py" line="720" /> - <location filename="../ViewManager/ViewManager.py" line="2154" /> - <location filename="../ViewManager/ViewManager.py" line="2051" /> + <location filename="../ViewManager/ViewManager.py" line="2164" /> + <location filename="../ViewManager/ViewManager.py" line="2061" /> <source>Ctrl+Down</source> <translation>Ctrl+Down</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1138" /> <location filename="../QScintilla/MiniEditor.py" line="1137" /> - <location filename="../ViewManager/ViewManager.py" line="2062" /> - <location filename="../ViewManager/ViewManager.py" line="2061" /> + <location filename="../ViewManager/ViewManager.py" line="2072" /> + <location filename="../ViewManager/ViewManager.py" line="2071" /> <source>Scroll view up one line</source> <translation>视图向上滚动一行</translation> </message> @@ -95915,36 +95928,36 @@ <location filename="../QScintilla/MiniEditor.py" line="1210" /> <location filename="../QScintilla/MiniEditor.py" line="1139" /> <location filename="../QScintilla/ShellWindow.py" line="732" /> - <location filename="../ViewManager/ViewManager.py" line="2134" /> - <location filename="../ViewManager/ViewManager.py" line="2063" /> + <location filename="../ViewManager/ViewManager.py" line="2144" /> + <location filename="../ViewManager/ViewManager.py" line="2073" /> <source>Ctrl+Up</source> <translation>Ctrl+Up</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1150" /> <location filename="../QScintilla/MiniEditor.py" line="1149" /> - <location filename="../ViewManager/ViewManager.py" line="2074" /> - <location filename="../ViewManager/ViewManager.py" line="2073" /> + <location filename="../ViewManager/ViewManager.py" line="2084" /> + <location filename="../ViewManager/ViewManager.py" line="2083" /> <source>Move up one paragraph</source> <translation>上移一段</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1151" /> - <location filename="../ViewManager/ViewManager.py" line="2075" /> + <location filename="../ViewManager/ViewManager.py" line="2085" /> <source>Alt+Up</source> <translation>Alt+Up</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1162" /> <location filename="../QScintilla/MiniEditor.py" line="1161" /> - <location filename="../ViewManager/ViewManager.py" line="2086" /> - <location filename="../ViewManager/ViewManager.py" line="2085" /> + <location filename="../ViewManager/ViewManager.py" line="2096" /> + <location filename="../ViewManager/ViewManager.py" line="2095" /> <source>Move down one paragraph</source> <translation>下移一段</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1163" /> - <location filename="../ViewManager/ViewManager.py" line="2087" /> + <location filename="../ViewManager/ViewManager.py" line="2097" /> <source>Alt+Down</source> <translation>Alt+Down</translation> </message> @@ -95953,15 +95966,15 @@ <location filename="../QScintilla/MiniEditor.py" line="1173" /> <location filename="../QScintilla/ShellWindow.py" line="743" /> <location filename="../QScintilla/ShellWindow.py" line="742" /> - <location filename="../ViewManager/ViewManager.py" line="2098" /> - <location filename="../ViewManager/ViewManager.py" line="2097" /> + <location filename="../ViewManager/ViewManager.py" line="2108" /> + <location filename="../ViewManager/ViewManager.py" line="2107" /> <source>Move up one page</source> <translation>上移一页</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1175" /> <location filename="../QScintilla/ShellWindow.py" line="744" /> - <location filename="../ViewManager/ViewManager.py" line="2099" /> + <location filename="../ViewManager/ViewManager.py" line="2109" /> <source>PgUp</source> <translation>PgUp</translation> </message> @@ -95970,50 +95983,50 @@ <location filename="../QScintilla/MiniEditor.py" line="1185" /> <location filename="../QScintilla/ShellWindow.py" line="755" /> <location filename="../QScintilla/ShellWindow.py" line="754" /> - <location filename="../ViewManager/ViewManager.py" line="2110" /> - <location filename="../ViewManager/ViewManager.py" line="2109" /> + <location filename="../ViewManager/ViewManager.py" line="2120" /> + <location filename="../ViewManager/ViewManager.py" line="2119" /> <source>Move down one page</source> <translation>下移一页</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1187" /> <location filename="../QScintilla/ShellWindow.py" line="756" /> - <location filename="../ViewManager/ViewManager.py" line="2111" /> + <location filename="../ViewManager/ViewManager.py" line="2121" /> <source>PgDown</source> <translation>PgDown</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1194" /> <location filename="../QScintilla/ShellWindow.py" line="763" /> - <location filename="../ViewManager/ViewManager.py" line="2118" /> + <location filename="../ViewManager/ViewManager.py" line="2128" /> <source>Meta+V</source> <translation>Meta+V</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1202" /> <location filename="../QScintilla/MiniEditor.py" line="1201" /> - <location filename="../ViewManager/ViewManager.py" line="2126" /> - <location filename="../ViewManager/ViewManager.py" line="2125" /> + <location filename="../ViewManager/ViewManager.py" line="2136" /> + <location filename="../ViewManager/ViewManager.py" line="2135" /> <source>Move to start of document</source> <translation>移动至文档的起始位置</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1214" /> - <location filename="../ViewManager/ViewManager.py" line="2138" /> + <location filename="../ViewManager/ViewManager.py" line="2148" /> <source>Ctrl+Home</source> <translation>Ctrl+Home</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1222" /> <location filename="../QScintilla/MiniEditor.py" line="1221" /> - <location filename="../ViewManager/ViewManager.py" line="2146" /> - <location filename="../ViewManager/ViewManager.py" line="2145" /> + <location filename="../ViewManager/ViewManager.py" line="2156" /> + <location filename="../ViewManager/ViewManager.py" line="2155" /> <source>Move to end of document</source> <translation>移动至文档的末尾</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1234" /> - <location filename="../ViewManager/ViewManager.py" line="2158" /> + <location filename="../ViewManager/ViewManager.py" line="2168" /> <source>Ctrl+End</source> <translation>Ctrl+End</translation> </message> @@ -96022,29 +96035,29 @@ <location filename="../QScintilla/MiniEditor.py" line="1241" /> <location filename="../QScintilla/ShellWindow.py" line="457" /> <location filename="../QScintilla/ShellWindow.py" line="456" /> - <location filename="../ViewManager/ViewManager.py" line="2166" /> - <location filename="../ViewManager/ViewManager.py" line="2165" /> + <location filename="../ViewManager/ViewManager.py" line="2176" /> + <location filename="../ViewManager/ViewManager.py" line="2175" /> <source>Indent one level</source> <translation>缩进一级</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1243" /> <location filename="../QScintilla/ShellWindow.py" line="458" /> - <location filename="../ViewManager/ViewManager.py" line="2167" /> + <location filename="../ViewManager/ViewManager.py" line="2177" /> <source>Tab</source> <translation>Tab 键</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1254" /> <location filename="../QScintilla/MiniEditor.py" line="1253" /> - <location filename="../ViewManager/ViewManager.py" line="2178" /> - <location filename="../ViewManager/ViewManager.py" line="2177" /> + <location filename="../ViewManager/ViewManager.py" line="2188" /> + <location filename="../ViewManager/ViewManager.py" line="2187" /> <source>Unindent one level</source> <translation>取消缩进一级</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1255" /> - <location filename="../ViewManager/ViewManager.py" line="2179" /> + <location filename="../ViewManager/ViewManager.py" line="2189" /> <source>Shift+Tab</source> <translation>Shift+Tab</translation> </message> @@ -96053,22 +96066,22 @@ <location filename="../QScintilla/MiniEditor.py" line="1265" /> <location filename="../QScintilla/ShellWindow.py" line="785" /> <location filename="../QScintilla/ShellWindow.py" line="782" /> - <location filename="../ViewManager/ViewManager.py" line="2192" /> - <location filename="../ViewManager/ViewManager.py" line="2189" /> + <location filename="../ViewManager/ViewManager.py" line="2202" /> + <location filename="../ViewManager/ViewManager.py" line="2199" /> <source>Extend selection left one character</source> <translation>选区向左扩展一个字符</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1271" /> <location filename="../QScintilla/ShellWindow.py" line="788" /> - <location filename="../ViewManager/ViewManager.py" line="2195" /> + <location filename="../ViewManager/ViewManager.py" line="2205" /> <source>Shift+Left</source> <translation>Shift+Left</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1278" /> <location filename="../QScintilla/ShellWindow.py" line="795" /> - <location filename="../ViewManager/ViewManager.py" line="2202" /> + <location filename="../ViewManager/ViewManager.py" line="2212" /> <source>Meta+Shift+B</source> <translation>Meta+Shift+B</translation> </message> @@ -96077,70 +96090,70 @@ <location filename="../QScintilla/MiniEditor.py" line="1285" /> <location filename="../QScintilla/ShellWindow.py" line="805" /> <location filename="../QScintilla/ShellWindow.py" line="802" /> - <location filename="../ViewManager/ViewManager.py" line="2212" /> - <location filename="../ViewManager/ViewManager.py" line="2209" /> + <location filename="../ViewManager/ViewManager.py" line="2222" /> + <location filename="../ViewManager/ViewManager.py" line="2219" /> <source>Extend selection right one character</source> <translation>选区向右扩展一个字符</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1291" /> <location filename="../QScintilla/ShellWindow.py" line="808" /> - <location filename="../ViewManager/ViewManager.py" line="2215" /> + <location filename="../ViewManager/ViewManager.py" line="2225" /> <source>Shift+Right</source> <translation>Shift+Right</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1298" /> <location filename="../QScintilla/ShellWindow.py" line="815" /> - <location filename="../ViewManager/ViewManager.py" line="2222" /> + <location filename="../ViewManager/ViewManager.py" line="2232" /> <source>Meta+Shift+F</source> <translation>Meta+Shift+F</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1306" /> <location filename="../QScintilla/MiniEditor.py" line="1305" /> - <location filename="../ViewManager/ViewManager.py" line="2230" /> - <location filename="../ViewManager/ViewManager.py" line="2229" /> + <location filename="../ViewManager/ViewManager.py" line="2240" /> + <location filename="../ViewManager/ViewManager.py" line="2239" /> <source>Extend selection up one line</source> <translation>选区向上扩展一行</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1307" /> - <location filename="../ViewManager/ViewManager.py" line="2231" /> + <location filename="../ViewManager/ViewManager.py" line="2241" /> <source>Shift+Up</source> <translation>Shift+Up</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1314" /> - <location filename="../ViewManager/ViewManager.py" line="2238" /> + <location filename="../ViewManager/ViewManager.py" line="2248" /> <source>Meta+Shift+P</source> <translation>Meta+Shift+P</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1322" /> <location filename="../QScintilla/MiniEditor.py" line="1321" /> - <location filename="../ViewManager/ViewManager.py" line="2246" /> - <location filename="../ViewManager/ViewManager.py" line="2245" /> + <location filename="../ViewManager/ViewManager.py" line="2256" /> + <location filename="../ViewManager/ViewManager.py" line="2255" /> <source>Extend selection down one line</source> <translation>选区向下扩展一行</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1323" /> - <location filename="../ViewManager/ViewManager.py" line="2247" /> + <location filename="../ViewManager/ViewManager.py" line="2257" /> <source>Shift+Down</source> <translation>Shift+Down</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1330" /> - <location filename="../ViewManager/ViewManager.py" line="2254" /> + <location filename="../ViewManager/ViewManager.py" line="2264" /> <source>Meta+Shift+N</source> <translation>Meta+Shift+N</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1340" /> <location filename="../QScintilla/MiniEditor.py" line="1337" /> - <location filename="../ViewManager/ViewManager.py" line="2264" /> - <location filename="../ViewManager/ViewManager.py" line="2261" /> + <location filename="../ViewManager/ViewManager.py" line="2274" /> + <location filename="../ViewManager/ViewManager.py" line="2271" /> <source>Extend selection left one word part</source> <translation>选区向左扩展一个单词部分</translation> </message> @@ -96148,16 +96161,16 @@ <location filename="../QScintilla/MiniEditor.py" line="1391" /> <location filename="../QScintilla/MiniEditor.py" line="1351" /> <location filename="../QScintilla/ShellWindow.py" line="832" /> - <location filename="../ViewManager/ViewManager.py" line="2315" /> - <location filename="../ViewManager/ViewManager.py" line="2275" /> + <location filename="../ViewManager/ViewManager.py" line="2325" /> + <location filename="../ViewManager/ViewManager.py" line="2285" /> <source>Alt+Shift+Left</source> <translation>Alt+Shift+Left</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1362" /> <location filename="../QScintilla/MiniEditor.py" line="1359" /> - <location filename="../ViewManager/ViewManager.py" line="2286" /> - <location filename="../ViewManager/ViewManager.py" line="2283" /> + <location filename="../ViewManager/ViewManager.py" line="2296" /> + <location filename="../ViewManager/ViewManager.py" line="2293" /> <source>Extend selection right one word part</source> <translation>选区向右扩展一个单词部分</translation> </message> @@ -96166,9 +96179,9 @@ <location filename="../QScintilla/MiniEditor.py" line="1419" /> <location filename="../QScintilla/MiniEditor.py" line="1373" /> <location filename="../QScintilla/ShellWindow.py" line="860" /> - <location filename="../ViewManager/ViewManager.py" line="3093" /> - <location filename="../ViewManager/ViewManager.py" line="2343" /> - <location filename="../ViewManager/ViewManager.py" line="2297" /> + <location filename="../ViewManager/ViewManager.py" line="3103" /> + <location filename="../ViewManager/ViewManager.py" line="2353" /> + <location filename="../ViewManager/ViewManager.py" line="2307" /> <source>Alt+Shift+Right</source> <translation>Alt+Shift+Right</translation> </message> @@ -96177,8 +96190,8 @@ <location filename="../QScintilla/MiniEditor.py" line="1381" /> <location filename="../QScintilla/ShellWindow.py" line="823" /> <location filename="../QScintilla/ShellWindow.py" line="822" /> - <location filename="../ViewManager/ViewManager.py" line="2306" /> - <location filename="../ViewManager/ViewManager.py" line="2305" /> + <location filename="../ViewManager/ViewManager.py" line="2316" /> + <location filename="../ViewManager/ViewManager.py" line="2315" /> <source>Extend selection left one word</source> <translation>选区向左扩展一个单词</translation> </message> @@ -96186,8 +96199,8 @@ <location filename="../QScintilla/MiniEditor.py" line="2312" /> <location filename="../QScintilla/MiniEditor.py" line="1397" /> <location filename="../QScintilla/ShellWindow.py" line="838" /> - <location filename="../ViewManager/ViewManager.py" line="3219" /> - <location filename="../ViewManager/ViewManager.py" line="2321" /> + <location filename="../ViewManager/ViewManager.py" line="3229" /> + <location filename="../ViewManager/ViewManager.py" line="2331" /> <source>Ctrl+Shift+Left</source> <translation>Ctrl+Shift+Left</translation> </message> @@ -96196,8 +96209,8 @@ <location filename="../QScintilla/MiniEditor.py" line="1405" /> <location filename="../QScintilla/ShellWindow.py" line="849" /> <location filename="../QScintilla/ShellWindow.py" line="846" /> - <location filename="../ViewManager/ViewManager.py" line="2332" /> - <location filename="../ViewManager/ViewManager.py" line="2329" /> + <location filename="../ViewManager/ViewManager.py" line="2342" /> + <location filename="../ViewManager/ViewManager.py" line="2339" /> <source>Extend selection right one word</source> <translation>选区向右扩展一个单词</translation> </message> @@ -96205,8 +96218,8 @@ <location filename="../QScintilla/MiniEditor.py" line="1873" /> <location filename="../QScintilla/MiniEditor.py" line="1425" /> <location filename="../QScintilla/ShellWindow.py" line="866" /> - <location filename="../ViewManager/ViewManager.py" line="2780" /> - <location filename="../ViewManager/ViewManager.py" line="2349" /> + <location filename="../ViewManager/ViewManager.py" line="2790" /> + <location filename="../ViewManager/ViewManager.py" line="2359" /> <source>Ctrl+Shift+Right</source> <translation>Ctrl+Shift+Right</translation> </message> @@ -96215,15 +96228,15 @@ <location filename="../QScintilla/MiniEditor.py" line="1433" /> <location filename="../QScintilla/ShellWindow.py" line="878" /> <location filename="../QScintilla/ShellWindow.py" line="874" /> - <location filename="../ViewManager/ViewManager.py" line="2361" /> - <location filename="../ViewManager/ViewManager.py" line="2357" /> + <location filename="../ViewManager/ViewManager.py" line="2371" /> + <location filename="../ViewManager/ViewManager.py" line="2367" /> <source>Extend selection to first visible character in document line</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1448" /> <location filename="../QScintilla/ShellWindow.py" line="889" /> - <location filename="../ViewManager/ViewManager.py" line="2372" /> + <location filename="../ViewManager/ViewManager.py" line="2382" /> <source>Shift+Home</source> <translation>Shift+Home</translation> </message> @@ -96232,124 +96245,124 @@ <location filename="../QScintilla/MiniEditor.py" line="1455" /> <location filename="../QScintilla/ShellWindow.py" line="899" /> <location filename="../QScintilla/ShellWindow.py" line="896" /> - <location filename="../ViewManager/ViewManager.py" line="2382" /> - <location filename="../ViewManager/ViewManager.py" line="2379" /> + <location filename="../ViewManager/ViewManager.py" line="2392" /> + <location filename="../ViewManager/ViewManager.py" line="2389" /> <source>Extend selection to end of document line</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1468" /> <location filename="../QScintilla/ShellWindow.py" line="909" /> - <location filename="../ViewManager/ViewManager.py" line="2392" /> + <location filename="../ViewManager/ViewManager.py" line="2402" /> <source>Meta+Shift+E</source> <translation>Meta+Shift+E</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1472" /> <location filename="../QScintilla/ShellWindow.py" line="913" /> - <location filename="../ViewManager/ViewManager.py" line="2396" /> + <location filename="../ViewManager/ViewManager.py" line="2406" /> <source>Shift+End</source> <translation>Shift+End</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1482" /> <location filename="../QScintilla/MiniEditor.py" line="1479" /> - <location filename="../ViewManager/ViewManager.py" line="2406" /> - <location filename="../ViewManager/ViewManager.py" line="2403" /> + <location filename="../ViewManager/ViewManager.py" line="2416" /> + <location filename="../ViewManager/ViewManager.py" line="2413" /> <source>Extend selection up one paragraph</source> <translation>选区向上扩展一段</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1485" /> - <location filename="../ViewManager/ViewManager.py" line="2409" /> + <location filename="../ViewManager/ViewManager.py" line="2419" /> <source>Alt+Shift+Up</source> <translation>Alt+Shift+Up</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1498" /> <location filename="../QScintilla/MiniEditor.py" line="1495" /> - <location filename="../ViewManager/ViewManager.py" line="2422" /> - <location filename="../ViewManager/ViewManager.py" line="2419" /> + <location filename="../ViewManager/ViewManager.py" line="2432" /> + <location filename="../ViewManager/ViewManager.py" line="2429" /> <source>Extend selection down one paragraph</source> <translation>选区向下扩展一段</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1501" /> - <location filename="../ViewManager/ViewManager.py" line="2425" /> + <location filename="../ViewManager/ViewManager.py" line="2435" /> <source>Alt+Shift+Down</source> <translation>Alt+Shift+Down</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1512" /> <location filename="../QScintilla/MiniEditor.py" line="1511" /> - <location filename="../ViewManager/ViewManager.py" line="2436" /> - <location filename="../ViewManager/ViewManager.py" line="2435" /> + <location filename="../ViewManager/ViewManager.py" line="2446" /> + <location filename="../ViewManager/ViewManager.py" line="2445" /> <source>Extend selection up one page</source> <translation>选区向上扩展一页</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1513" /> - <location filename="../ViewManager/ViewManager.py" line="2437" /> + <location filename="../ViewManager/ViewManager.py" line="2447" /> <source>Shift+PgUp</source> <translation>Shift+PgUp</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1524" /> <location filename="../QScintilla/MiniEditor.py" line="1523" /> - <location filename="../ViewManager/ViewManager.py" line="2448" /> - <location filename="../ViewManager/ViewManager.py" line="2447" /> + <location filename="../ViewManager/ViewManager.py" line="2458" /> + <location filename="../ViewManager/ViewManager.py" line="2457" /> <source>Extend selection down one page</source> <translation>选区向下扩展一页</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1525" /> - <location filename="../ViewManager/ViewManager.py" line="2449" /> + <location filename="../ViewManager/ViewManager.py" line="2459" /> <source>Shift+PgDown</source> <translation>Shift+PgDown</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1532" /> - <location filename="../ViewManager/ViewManager.py" line="2456" /> + <location filename="../ViewManager/ViewManager.py" line="2466" /> <source>Meta+Shift+V</source> <translation>Meta+Shift+V</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1542" /> <location filename="../QScintilla/MiniEditor.py" line="1539" /> - <location filename="../ViewManager/ViewManager.py" line="2466" /> - <location filename="../ViewManager/ViewManager.py" line="2463" /> + <location filename="../ViewManager/ViewManager.py" line="2476" /> + <location filename="../ViewManager/ViewManager.py" line="2473" /> <source>Extend selection to start of document</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1552" /> - <location filename="../ViewManager/ViewManager.py" line="2476" /> + <location filename="../ViewManager/ViewManager.py" line="2486" /> <source>Ctrl+Shift+Up</source> <translation>Ctrl+Shift+Up</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1557" /> - <location filename="../ViewManager/ViewManager.py" line="2481" /> + <location filename="../ViewManager/ViewManager.py" line="2491" /> <source>Ctrl+Shift+Home</source> <translation>Ctrl+Shift+Home</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1568" /> <location filename="../QScintilla/MiniEditor.py" line="1565" /> - <location filename="../ViewManager/ViewManager.py" line="2492" /> - <location filename="../ViewManager/ViewManager.py" line="2489" /> + <location filename="../ViewManager/ViewManager.py" line="2502" /> + <location filename="../ViewManager/ViewManager.py" line="2499" /> <source>Extend selection to end of document</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1579" /> - <location filename="../ViewManager/ViewManager.py" line="2503" /> + <location filename="../ViewManager/ViewManager.py" line="2513" /> <source>Ctrl+Shift+Down</source> <translation>Ctrl+Shift+Down</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1585" /> - <location filename="../ViewManager/ViewManager.py" line="2509" /> + <location filename="../ViewManager/ViewManager.py" line="2519" /> <source>Ctrl+Shift+End</source> <translation>Ctrl+Shift+End</translation> </message> @@ -96358,37 +96371,37 @@ <location filename="../QScintilla/MiniEditor.py" line="1593" /> <location filename="../QScintilla/ShellWindow.py" line="481" /> <location filename="../QScintilla/ShellWindow.py" line="480" /> - <location filename="../ViewManager/ViewManager.py" line="2518" /> - <location filename="../ViewManager/ViewManager.py" line="2517" /> + <location filename="../ViewManager/ViewManager.py" line="2528" /> + <location filename="../ViewManager/ViewManager.py" line="2527" /> <source>Delete previous character</source> <translation>删除前一个字符</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1595" /> <location filename="../QScintilla/ShellWindow.py" line="482" /> - <location filename="../ViewManager/ViewManager.py" line="2519" /> + <location filename="../ViewManager/ViewManager.py" line="2529" /> <source>Backspace</source> <translation>Backspace</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1602" /> <location filename="../QScintilla/ShellWindow.py" line="489" /> - <location filename="../ViewManager/ViewManager.py" line="2526" /> + <location filename="../ViewManager/ViewManager.py" line="2536" /> <source>Meta+H</source> <translation>Meta+H</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1607" /> <location filename="../QScintilla/ShellWindow.py" line="494" /> - <location filename="../ViewManager/ViewManager.py" line="2531" /> + <location filename="../ViewManager/ViewManager.py" line="2541" /> <source>Shift+Backspace</source> <translation>Shift+Backspace</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1618" /> <location filename="../QScintilla/MiniEditor.py" line="1615" /> - <location filename="../ViewManager/ViewManager.py" line="2542" /> - <location filename="../ViewManager/ViewManager.py" line="2539" /> + <location filename="../ViewManager/ViewManager.py" line="2552" /> + <location filename="../ViewManager/ViewManager.py" line="2549" /> <source>Delete previous character if not at start of line</source> <translation type="unfinished">如果不在行首,删除前一个字符</translation> </message> @@ -96397,22 +96410,22 @@ <location filename="../QScintilla/MiniEditor.py" line="1631" /> <location filename="../QScintilla/ShellWindow.py" line="503" /> <location filename="../QScintilla/ShellWindow.py" line="502" /> - <location filename="../ViewManager/ViewManager.py" line="2556" /> - <location filename="../ViewManager/ViewManager.py" line="2555" /> + <location filename="../ViewManager/ViewManager.py" line="2566" /> + <location filename="../ViewManager/ViewManager.py" line="2565" /> <source>Delete current character</source> <translation>删除当前字符</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1633" /> <location filename="../QScintilla/ShellWindow.py" line="504" /> - <location filename="../ViewManager/ViewManager.py" line="2557" /> + <location filename="../ViewManager/ViewManager.py" line="2567" /> <source>Del</source> <translation>Del</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1640" /> <location filename="../QScintilla/ShellWindow.py" line="511" /> - <location filename="../ViewManager/ViewManager.py" line="2564" /> + <location filename="../ViewManager/ViewManager.py" line="2574" /> <source>Meta+D</source> <translation>Meta+D</translation> </message> @@ -96421,15 +96434,15 @@ <location filename="../QScintilla/MiniEditor.py" line="1647" /> <location filename="../QScintilla/ShellWindow.py" line="519" /> <location filename="../QScintilla/ShellWindow.py" line="518" /> - <location filename="../ViewManager/ViewManager.py" line="2572" /> - <location filename="../ViewManager/ViewManager.py" line="2571" /> + <location filename="../ViewManager/ViewManager.py" line="2582" /> + <location filename="../ViewManager/ViewManager.py" line="2581" /> <source>Delete word to left</source> <translation>向左删除一个单词</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1649" /> <location filename="../QScintilla/ShellWindow.py" line="520" /> - <location filename="../ViewManager/ViewManager.py" line="2573" /> + <location filename="../ViewManager/ViewManager.py" line="2583" /> <source>Ctrl+Backspace</source> <translation>Ctrl+Backspace</translation> </message> @@ -96438,15 +96451,15 @@ <location filename="../QScintilla/MiniEditor.py" line="1659" /> <location filename="../QScintilla/ShellWindow.py" line="531" /> <location filename="../QScintilla/ShellWindow.py" line="530" /> - <location filename="../ViewManager/ViewManager.py" line="2584" /> - <location filename="../ViewManager/ViewManager.py" line="2583" /> + <location filename="../ViewManager/ViewManager.py" line="2594" /> + <location filename="../ViewManager/ViewManager.py" line="2593" /> <source>Delete word to right</source> <translation>向右删除一个单词</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1661" /> <location filename="../QScintilla/ShellWindow.py" line="532" /> - <location filename="../ViewManager/ViewManager.py" line="2585" /> + <location filename="../ViewManager/ViewManager.py" line="2595" /> <source>Ctrl+Del</source> <translation>Ctrl+Del</translation> </message> @@ -96455,15 +96468,15 @@ <location filename="../QScintilla/MiniEditor.py" line="1671" /> <location filename="../QScintilla/ShellWindow.py" line="543" /> <location filename="../QScintilla/ShellWindow.py" line="542" /> - <location filename="../ViewManager/ViewManager.py" line="2596" /> - <location filename="../ViewManager/ViewManager.py" line="2595" /> + <location filename="../ViewManager/ViewManager.py" line="2606" /> + <location filename="../ViewManager/ViewManager.py" line="2605" /> <source>Delete line to left</source> <translation>向左删除一行</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1674" /> <location filename="../QScintilla/ShellWindow.py" line="545" /> - <location filename="../ViewManager/ViewManager.py" line="2598" /> + <location filename="../ViewManager/ViewManager.py" line="2608" /> <source>Ctrl+Shift+Backspace</source> <translation>Ctrl+Shift+Backspace</translation> </message> @@ -96472,22 +96485,22 @@ <location filename="../QScintilla/MiniEditor.py" line="1685" /> <location filename="../QScintilla/ShellWindow.py" line="557" /> <location filename="../QScintilla/ShellWindow.py" line="556" /> - <location filename="../ViewManager/ViewManager.py" line="2610" /> - <location filename="../ViewManager/ViewManager.py" line="2609" /> + <location filename="../ViewManager/ViewManager.py" line="2620" /> + <location filename="../ViewManager/ViewManager.py" line="2619" /> <source>Delete line to right</source> <translation>向右删除一行</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1694" /> <location filename="../QScintilla/ShellWindow.py" line="565" /> - <location filename="../ViewManager/ViewManager.py" line="2618" /> + <location filename="../ViewManager/ViewManager.py" line="2628" /> <source>Meta+K</source> <translation>Meta+K</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1699" /> <location filename="../QScintilla/ShellWindow.py" line="570" /> - <location filename="../ViewManager/ViewManager.py" line="2623" /> + <location filename="../ViewManager/ViewManager.py" line="2633" /> <source>Ctrl+Shift+Del</source> <translation>Ctrl+Shift+Del</translation> </message> @@ -96496,38 +96509,38 @@ <location filename="../QScintilla/MiniEditor.py" line="1707" /> <location filename="../QScintilla/ShellWindow.py" line="469" /> <location filename="../QScintilla/ShellWindow.py" line="468" /> - <location filename="../ViewManager/ViewManager.py" line="2632" /> - <location filename="../ViewManager/ViewManager.py" line="2631" /> + <location filename="../ViewManager/ViewManager.py" line="2642" /> + <location filename="../ViewManager/ViewManager.py" line="2641" /> <source>Insert new line</source> <translation>插入新行</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1709" /> <location filename="../QScintilla/ShellWindow.py" line="470" /> - <location filename="../ViewManager/ViewManager.py" line="2633" /> + <location filename="../ViewManager/ViewManager.py" line="2643" /> <source>Return</source> <translation>Return</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1710" /> <location filename="../QScintilla/ShellWindow.py" line="471" /> - <location filename="../ViewManager/ViewManager.py" line="2634" /> + <location filename="../ViewManager/ViewManager.py" line="2644" /> <source>Enter</source> <translation>Enter</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="2646" /> - <location filename="../ViewManager/ViewManager.py" line="2643" /> + <location filename="../ViewManager/ViewManager.py" line="2656" /> + <location filename="../ViewManager/ViewManager.py" line="2653" /> <source>Insert new line below current line</source> <translation>在当前行之上插入新行</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="2649" /> + <location filename="../ViewManager/ViewManager.py" line="2659" /> <source>Shift+Return</source> <translation>Shift+Return</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="2650" /> + <location filename="../ViewManager/ViewManager.py" line="2660" /> <source>Shift+Enter</source> <translation>Shift+Enter</translation> </message> @@ -96536,129 +96549,129 @@ <location filename="../QScintilla/MiniEditor.py" line="1719" /> <location filename="../QScintilla/ShellWindow.py" line="445" /> <location filename="../QScintilla/ShellWindow.py" line="444" /> - <location filename="../ViewManager/ViewManager.py" line="2659" /> - <location filename="../ViewManager/ViewManager.py" line="2658" /> + <location filename="../ViewManager/ViewManager.py" line="2669" /> + <location filename="../ViewManager/ViewManager.py" line="2668" /> <source>Delete current line</source> <translation>删除当前行</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1721" /> <location filename="../QScintilla/ShellWindow.py" line="446" /> - <location filename="../ViewManager/ViewManager.py" line="2660" /> + <location filename="../ViewManager/ViewManager.py" line="2670" /> <source>Ctrl+Shift+L</source> <translation>Ctrl+Shift+L</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1732" /> <location filename="../QScintilla/MiniEditor.py" line="1731" /> - <location filename="../ViewManager/ViewManager.py" line="2671" /> - <location filename="../ViewManager/ViewManager.py" line="2670" /> + <location filename="../ViewManager/ViewManager.py" line="2681" /> + <location filename="../ViewManager/ViewManager.py" line="2680" /> <source>Duplicate current line</source> <translation>重复当前行</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1733" /> - <location filename="../ViewManager/ViewManager.py" line="2672" /> + <location filename="../ViewManager/ViewManager.py" line="2682" /> <source>Ctrl+D</source> <translation>Ctrl+D</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1746" /> <location filename="../QScintilla/MiniEditor.py" line="1743" /> - <location filename="../ViewManager/ViewManager.py" line="2685" /> - <location filename="../ViewManager/ViewManager.py" line="2682" /> + <location filename="../ViewManager/ViewManager.py" line="2695" /> + <location filename="../ViewManager/ViewManager.py" line="2692" /> <source>Swap current and previous lines</source> <translation>当前行与上一行交换位置</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1749" /> - <location filename="../ViewManager/ViewManager.py" line="2688" /> + <location filename="../ViewManager/ViewManager.py" line="2698" /> <source>Ctrl+T</source> <translation>Ctrl+T</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1760" /> <location filename="../QScintilla/MiniEditor.py" line="1759" /> - <location filename="../ViewManager/ViewManager.py" line="2699" /> - <location filename="../ViewManager/ViewManager.py" line="2698" /> + <location filename="../ViewManager/ViewManager.py" line="2709" /> + <location filename="../ViewManager/ViewManager.py" line="2708" /> <source>Reverse selected lines</source> <translation>反向选择行</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1761" /> - <location filename="../ViewManager/ViewManager.py" line="2700" /> + <location filename="../ViewManager/ViewManager.py" line="2710" /> <source>Meta+Alt+R</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1772" /> <location filename="../QScintilla/MiniEditor.py" line="1771" /> - <location filename="../ViewManager/ViewManager.py" line="2711" /> - <location filename="../ViewManager/ViewManager.py" line="2710" /> + <location filename="../ViewManager/ViewManager.py" line="2721" /> + <location filename="../ViewManager/ViewManager.py" line="2720" /> <source>Cut current line</source> <translation>剪切当前行</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1773" /> - <location filename="../ViewManager/ViewManager.py" line="2712" /> + <location filename="../ViewManager/ViewManager.py" line="2722" /> <source>Alt+Shift+L</source> <translation>Alt+Shift+L</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1784" /> <location filename="../QScintilla/MiniEditor.py" line="1783" /> - <location filename="../ViewManager/ViewManager.py" line="2723" /> - <location filename="../ViewManager/ViewManager.py" line="2722" /> + <location filename="../ViewManager/ViewManager.py" line="2733" /> + <location filename="../ViewManager/ViewManager.py" line="2732" /> <source>Copy current line</source> <translation>复制当前行</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1785" /> - <location filename="../ViewManager/ViewManager.py" line="2724" /> + <location filename="../ViewManager/ViewManager.py" line="2734" /> <source>Ctrl+Shift+T</source> <translation>Ctrl+Shift+T</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1796" /> <location filename="../QScintilla/MiniEditor.py" line="1795" /> - <location filename="../ViewManager/ViewManager.py" line="2735" /> - <location filename="../ViewManager/ViewManager.py" line="2734" /> + <location filename="../ViewManager/ViewManager.py" line="2745" /> + <location filename="../ViewManager/ViewManager.py" line="2744" /> <source>Toggle insert/overtype</source> <translation>切换插入/改写状态</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1797" /> - <location filename="../ViewManager/ViewManager.py" line="2736" /> + <location filename="../ViewManager/ViewManager.py" line="2746" /> <source>Ins</source> <translation>Ins</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1840" /> <location filename="../QScintilla/MiniEditor.py" line="1839" /> - <location filename="../ViewManager/ViewManager.py" line="2747" /> - <location filename="../ViewManager/ViewManager.py" line="2746" /> + <location filename="../ViewManager/ViewManager.py" line="2757" /> + <location filename="../ViewManager/ViewManager.py" line="2756" /> <source>Move to end of display line</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1852" /> - <location filename="../ViewManager/ViewManager.py" line="2759" /> + <location filename="../ViewManager/ViewManager.py" line="2769" /> <source>Alt+End</source> <translation>Alt+End</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1862" /> <location filename="../QScintilla/MiniEditor.py" line="1859" /> - <location filename="../ViewManager/ViewManager.py" line="2769" /> - <location filename="../ViewManager/ViewManager.py" line="2766" /> + <location filename="../ViewManager/ViewManager.py" line="2779" /> + <location filename="../ViewManager/ViewManager.py" line="2776" /> <source>Extend selection to end of display line</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1882" /> <location filename="../QScintilla/MiniEditor.py" line="1881" /> - <location filename="../ViewManager/ViewManager.py" line="2789" /> - <location filename="../ViewManager/ViewManager.py" line="2788" /> + <location filename="../ViewManager/ViewManager.py" line="2799" /> + <location filename="../ViewManager/ViewManager.py" line="2798" /> <source>Formfeed</source> <translation>Formfeed</translation> </message> @@ -96667,163 +96680,163 @@ <location filename="../QScintilla/MiniEditor.py" line="1893" /> <location filename="../QScintilla/ShellWindow.py" line="771" /> <location filename="../QScintilla/ShellWindow.py" line="770" /> - <location filename="../ViewManager/ViewManager.py" line="2801" /> - <location filename="../ViewManager/ViewManager.py" line="2800" /> + <location filename="../ViewManager/ViewManager.py" line="2811" /> + <location filename="../ViewManager/ViewManager.py" line="2810" /> <source>Escape</source> <translation>Escape</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1895" /> <location filename="../QScintilla/ShellWindow.py" line="772" /> - <location filename="../ViewManager/ViewManager.py" line="2802" /> + <location filename="../ViewManager/ViewManager.py" line="2812" /> <source>Esc</source> <translation>Esc</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1908" /> <location filename="../QScintilla/MiniEditor.py" line="1905" /> - <location filename="../ViewManager/ViewManager.py" line="2815" /> - <location filename="../ViewManager/ViewManager.py" line="2812" /> + <location filename="../ViewManager/ViewManager.py" line="2825" /> + <location filename="../ViewManager/ViewManager.py" line="2822" /> <source>Extend rectangular selection down one line</source> <translation>矩形选区向下扩展一行</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1911" /> - <location filename="../ViewManager/ViewManager.py" line="2818" /> + <location filename="../ViewManager/ViewManager.py" line="2828" /> <source>Alt+Ctrl+Down</source> <translation>Alt+Ctrl+Down</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1919" /> - <location filename="../ViewManager/ViewManager.py" line="2826" /> + <location filename="../ViewManager/ViewManager.py" line="2836" /> <source>Meta+Alt+Shift+N</source> <translation>Meta+Alt+Shift+N</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1930" /> <location filename="../QScintilla/MiniEditor.py" line="1927" /> - <location filename="../ViewManager/ViewManager.py" line="2837" /> - <location filename="../ViewManager/ViewManager.py" line="2834" /> + <location filename="../ViewManager/ViewManager.py" line="2847" /> + <location filename="../ViewManager/ViewManager.py" line="2844" /> <source>Extend rectangular selection up one line</source> <translation>矩形选区向上扩展一行</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1933" /> - <location filename="../ViewManager/ViewManager.py" line="2840" /> + <location filename="../ViewManager/ViewManager.py" line="2850" /> <source>Alt+Ctrl+Up</source> <translation>Alt+Ctrl+Up</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1941" /> - <location filename="../ViewManager/ViewManager.py" line="2848" /> + <location filename="../ViewManager/ViewManager.py" line="2858" /> <source>Meta+Alt+Shift+P</source> <translation>Meta+Alt+Shift+P</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1952" /> <location filename="../QScintilla/MiniEditor.py" line="1949" /> - <location filename="../ViewManager/ViewManager.py" line="2859" /> - <location filename="../ViewManager/ViewManager.py" line="2856" /> + <location filename="../ViewManager/ViewManager.py" line="2869" /> + <location filename="../ViewManager/ViewManager.py" line="2866" /> <source>Extend rectangular selection left one character</source> <translation>矩形选区向左扩展一个字符</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1955" /> - <location filename="../ViewManager/ViewManager.py" line="2862" /> + <location filename="../ViewManager/ViewManager.py" line="2872" /> <source>Alt+Ctrl+Left</source> <translation>Alt+Ctrl+Left</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1963" /> - <location filename="../ViewManager/ViewManager.py" line="2870" /> + <location filename="../ViewManager/ViewManager.py" line="2880" /> <source>Meta+Alt+Shift+B</source> <translation>Meta+Alt+Shift+B</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1974" /> <location filename="../QScintilla/MiniEditor.py" line="1971" /> - <location filename="../ViewManager/ViewManager.py" line="2881" /> - <location filename="../ViewManager/ViewManager.py" line="2878" /> + <location filename="../ViewManager/ViewManager.py" line="2891" /> + <location filename="../ViewManager/ViewManager.py" line="2888" /> <source>Extend rectangular selection right one character</source> <translation>矩形选区向右扩展一个字符</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1977" /> - <location filename="../ViewManager/ViewManager.py" line="2884" /> + <location filename="../ViewManager/ViewManager.py" line="2894" /> <source>Alt+Ctrl+Right</source> <translation>Alt+Ctrl+Right</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1985" /> - <location filename="../ViewManager/ViewManager.py" line="2892" /> + <location filename="../ViewManager/ViewManager.py" line="2902" /> <source>Meta+Alt+Shift+F</source> <translation>Meta+Alt+Shift+F</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1998" /> <location filename="../QScintilla/MiniEditor.py" line="1993" /> - <location filename="../ViewManager/ViewManager.py" line="2905" /> - <location filename="../ViewManager/ViewManager.py" line="2900" /> + <location filename="../ViewManager/ViewManager.py" line="2915" /> + <location filename="../ViewManager/ViewManager.py" line="2910" /> <source>Extend rectangular selection to first visible character in document line</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2011" /> - <location filename="../ViewManager/ViewManager.py" line="2918" /> + <location filename="../ViewManager/ViewManager.py" line="2928" /> <source>Alt+Shift+Home</source> <translation>Alt+Shift+Home</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2022" /> <location filename="../QScintilla/MiniEditor.py" line="2019" /> - <location filename="../ViewManager/ViewManager.py" line="2929" /> - <location filename="../ViewManager/ViewManager.py" line="2926" /> + <location filename="../ViewManager/ViewManager.py" line="2939" /> + <location filename="../ViewManager/ViewManager.py" line="2936" /> <source>Extend rectangular selection to end of document line</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2033" /> - <location filename="../ViewManager/ViewManager.py" line="2940" /> + <location filename="../ViewManager/ViewManager.py" line="2950" /> <source>Meta+Alt+Shift+E</source> <translation>Meta+Alt+Shift+E</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2038" /> - <location filename="../ViewManager/ViewManager.py" line="2945" /> + <location filename="../ViewManager/ViewManager.py" line="2955" /> <source>Alt+Shift+End</source> <translation>Alt+Shift+End</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2048" /> <location filename="../QScintilla/MiniEditor.py" line="2045" /> - <location filename="../ViewManager/ViewManager.py" line="2955" /> - <location filename="../ViewManager/ViewManager.py" line="2952" /> + <location filename="../ViewManager/ViewManager.py" line="2965" /> + <location filename="../ViewManager/ViewManager.py" line="2962" /> <source>Extend rectangular selection up one page</source> <translation>矩形选区向上扩展一页</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2051" /> - <location filename="../ViewManager/ViewManager.py" line="2958" /> + <location filename="../ViewManager/ViewManager.py" line="2968" /> <source>Alt+Shift+PgUp</source> <translation>Alt+Shift+PgUp</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2064" /> <location filename="../QScintilla/MiniEditor.py" line="2061" /> - <location filename="../ViewManager/ViewManager.py" line="2971" /> - <location filename="../ViewManager/ViewManager.py" line="2968" /> + <location filename="../ViewManager/ViewManager.py" line="2981" /> + <location filename="../ViewManager/ViewManager.py" line="2978" /> <source>Extend rectangular selection down one page</source> <translation>矩形选区向下扩展一页</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2067" /> - <location filename="../ViewManager/ViewManager.py" line="2974" /> + <location filename="../ViewManager/ViewManager.py" line="2984" /> <source>Alt+Shift+PgDown</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2075" /> - <location filename="../ViewManager/ViewManager.py" line="2982" /> + <location filename="../ViewManager/ViewManager.py" line="2992" /> <source>Meta+Alt+Shift+V</source> <translation type="unfinished" /> </message> @@ -96832,299 +96845,299 @@ <location filename="../QScintilla/MiniEditor.py" line="2549" /> <location filename="../QScintilla/MiniEditor.py" line="2084" /> <location filename="../QScintilla/MiniEditor.py" line="2083" /> - <location filename="../ViewManager/ViewManager.py" line="2991" /> - <location filename="../ViewManager/ViewManager.py" line="2990" /> + <location filename="../ViewManager/ViewManager.py" line="3001" /> + <location filename="../ViewManager/ViewManager.py" line="3000" /> <source>Duplicate current selection</source> <translation>重复当前选区</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2551" /> <location filename="../QScintilla/MiniEditor.py" line="2085" /> - <location filename="../ViewManager/ViewManager.py" line="2992" /> + <location filename="../ViewManager/ViewManager.py" line="3002" /> <source>Ctrl+Shift+D</source> <translation>Ctrl+Shift+D</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2099" /> <location filename="../QScintilla/MiniEditor.py" line="2096" /> - <location filename="../ViewManager/ViewManager.py" line="3006" /> - <location filename="../ViewManager/ViewManager.py" line="3003" /> + <location filename="../ViewManager/ViewManager.py" line="3016" /> + <location filename="../ViewManager/ViewManager.py" line="3013" /> <source>Scroll to start of document</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2118" /> <location filename="../QScintilla/MiniEditor.py" line="2117" /> - <location filename="../ViewManager/ViewManager.py" line="3025" /> - <location filename="../ViewManager/ViewManager.py" line="3024" /> + <location filename="../ViewManager/ViewManager.py" line="3035" /> + <location filename="../ViewManager/ViewManager.py" line="3034" /> <source>Scroll to end of document</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2137" /> <location filename="../QScintilla/MiniEditor.py" line="2134" /> - <location filename="../ViewManager/ViewManager.py" line="3044" /> - <location filename="../ViewManager/ViewManager.py" line="3041" /> + <location filename="../ViewManager/ViewManager.py" line="3054" /> + <location filename="../ViewManager/ViewManager.py" line="3051" /> <source>Scroll vertically to center current line</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2147" /> - <location filename="../ViewManager/ViewManager.py" line="3054" /> + <location filename="../ViewManager/ViewManager.py" line="3064" /> <source>Meta+L</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2156" /> <location filename="../QScintilla/MiniEditor.py" line="2155" /> - <location filename="../ViewManager/ViewManager.py" line="3063" /> - <location filename="../ViewManager/ViewManager.py" line="3062" /> + <location filename="../ViewManager/ViewManager.py" line="3073" /> + <location filename="../ViewManager/ViewManager.py" line="3072" /> <source>Move to end of next word</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2175" /> <location filename="../QScintilla/MiniEditor.py" line="2172" /> - <location filename="../ViewManager/ViewManager.py" line="3082" /> - <location filename="../ViewManager/ViewManager.py" line="3079" /> + <location filename="../ViewManager/ViewManager.py" line="3092" /> + <location filename="../ViewManager/ViewManager.py" line="3089" /> <source>Extend selection to end of next word</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2198" /> <location filename="../QScintilla/MiniEditor.py" line="2195" /> - <location filename="../ViewManager/ViewManager.py" line="3105" /> - <location filename="../ViewManager/ViewManager.py" line="3102" /> + <location filename="../ViewManager/ViewManager.py" line="3115" /> + <location filename="../ViewManager/ViewManager.py" line="3112" /> <source>Move to end of previous word</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2215" /> <location filename="../QScintilla/MiniEditor.py" line="2212" /> - <location filename="../ViewManager/ViewManager.py" line="3122" /> - <location filename="../ViewManager/ViewManager.py" line="3119" /> + <location filename="../ViewManager/ViewManager.py" line="3132" /> + <location filename="../ViewManager/ViewManager.py" line="3129" /> <source>Extend selection to end of previous word</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2232" /> <location filename="../QScintilla/MiniEditor.py" line="2229" /> - <location filename="../ViewManager/ViewManager.py" line="3139" /> - <location filename="../ViewManager/ViewManager.py" line="3136" /> + <location filename="../ViewManager/ViewManager.py" line="3149" /> + <location filename="../ViewManager/ViewManager.py" line="3146" /> <source>Move to start of document line</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2242" /> - <location filename="../ViewManager/ViewManager.py" line="3149" /> + <location filename="../ViewManager/ViewManager.py" line="3159" /> <source>Meta+A</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2253" /> <location filename="../QScintilla/MiniEditor.py" line="2250" /> - <location filename="../ViewManager/ViewManager.py" line="3160" /> - <location filename="../ViewManager/ViewManager.py" line="3157" /> + <location filename="../ViewManager/ViewManager.py" line="3170" /> + <location filename="../ViewManager/ViewManager.py" line="3167" /> <source>Extend selection to start of document line</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2264" /> - <location filename="../ViewManager/ViewManager.py" line="3171" /> + <location filename="../ViewManager/ViewManager.py" line="3181" /> <source>Meta+Shift+A</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2277" /> <location filename="../QScintilla/MiniEditor.py" line="2273" /> - <location filename="../ViewManager/ViewManager.py" line="3184" /> - <location filename="../ViewManager/ViewManager.py" line="3180" /> + <location filename="../ViewManager/ViewManager.py" line="3194" /> + <location filename="../ViewManager/ViewManager.py" line="3190" /> <source>Extend rectangular selection to start of document line</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2289" /> - <location filename="../ViewManager/ViewManager.py" line="3196" /> + <location filename="../ViewManager/ViewManager.py" line="3206" /> <source>Meta+Alt+Shift+A</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2301" /> <location filename="../QScintilla/MiniEditor.py" line="2298" /> - <location filename="../ViewManager/ViewManager.py" line="3208" /> - <location filename="../ViewManager/ViewManager.py" line="3205" /> + <location filename="../ViewManager/ViewManager.py" line="3218" /> + <location filename="../ViewManager/ViewManager.py" line="3215" /> <source>Extend selection to start of display line</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2324" /> <location filename="../QScintilla/MiniEditor.py" line="2321" /> - <location filename="../ViewManager/ViewManager.py" line="3231" /> - <location filename="../ViewManager/ViewManager.py" line="3228" /> + <location filename="../ViewManager/ViewManager.py" line="3241" /> + <location filename="../ViewManager/ViewManager.py" line="3238" /> <source>Move to start of display or document line</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2342" /> <location filename="../QScintilla/MiniEditor.py" line="2338" /> - <location filename="../ViewManager/ViewManager.py" line="3249" /> - <location filename="../ViewManager/ViewManager.py" line="3245" /> + <location filename="../ViewManager/ViewManager.py" line="3259" /> + <location filename="../ViewManager/ViewManager.py" line="3255" /> <source>Extend selection to start of display or document line</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2361" /> <location filename="../QScintilla/MiniEditor.py" line="2357" /> - <location filename="../ViewManager/ViewManager.py" line="3268" /> - <location filename="../ViewManager/ViewManager.py" line="3264" /> + <location filename="../ViewManager/ViewManager.py" line="3278" /> + <location filename="../ViewManager/ViewManager.py" line="3274" /> <source>Move to first visible character in display or document line</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2381" /> <location filename="../QScintilla/MiniEditor.py" line="2376" /> - <location filename="../ViewManager/ViewManager.py" line="3288" /> - <location filename="../ViewManager/ViewManager.py" line="3283" /> + <location filename="../ViewManager/ViewManager.py" line="3298" /> + <location filename="../ViewManager/ViewManager.py" line="3293" /> <source>Extend selection to first visible character in display or document line</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2400" /> <location filename="../QScintilla/MiniEditor.py" line="2397" /> - <location filename="../ViewManager/ViewManager.py" line="3307" /> - <location filename="../ViewManager/ViewManager.py" line="3304" /> + <location filename="../ViewManager/ViewManager.py" line="3317" /> + <location filename="../ViewManager/ViewManager.py" line="3314" /> <source>Move to end of display or document line</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2417" /> <location filename="../QScintilla/MiniEditor.py" line="2414" /> - <location filename="../ViewManager/ViewManager.py" line="3324" /> - <location filename="../ViewManager/ViewManager.py" line="3321" /> + <location filename="../ViewManager/ViewManager.py" line="3334" /> + <location filename="../ViewManager/ViewManager.py" line="3331" /> <source>Extend selection to end of display or document line</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2432" /> <location filename="../QScintilla/MiniEditor.py" line="2431" /> - <location filename="../ViewManager/ViewManager.py" line="3339" /> - <location filename="../ViewManager/ViewManager.py" line="3338" /> + <location filename="../ViewManager/ViewManager.py" line="3349" /> + <location filename="../ViewManager/ViewManager.py" line="3348" /> <source>Stuttered move up one page</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2447" /> <location filename="../QScintilla/MiniEditor.py" line="2444" /> - <location filename="../ViewManager/ViewManager.py" line="3354" /> - <location filename="../ViewManager/ViewManager.py" line="3351" /> + <location filename="../ViewManager/ViewManager.py" line="3364" /> + <location filename="../ViewManager/ViewManager.py" line="3361" /> <source>Stuttered extend selection up one page</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2464" /> <location filename="../QScintilla/MiniEditor.py" line="2461" /> - <location filename="../ViewManager/ViewManager.py" line="3371" /> - <location filename="../ViewManager/ViewManager.py" line="3368" /> + <location filename="../ViewManager/ViewManager.py" line="3381" /> + <location filename="../ViewManager/ViewManager.py" line="3378" /> <source>Stuttered move down one page</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2481" /> <location filename="../QScintilla/MiniEditor.py" line="2478" /> - <location filename="../ViewManager/ViewManager.py" line="3388" /> - <location filename="../ViewManager/ViewManager.py" line="3385" /> + <location filename="../ViewManager/ViewManager.py" line="3398" /> + <location filename="../ViewManager/ViewManager.py" line="3395" /> <source>Stuttered extend selection down one page</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2498" /> <location filename="../QScintilla/MiniEditor.py" line="2495" /> - <location filename="../ViewManager/ViewManager.py" line="3405" /> - <location filename="../ViewManager/ViewManager.py" line="3402" /> + <location filename="../ViewManager/ViewManager.py" line="3415" /> + <location filename="../ViewManager/ViewManager.py" line="3412" /> <source>Delete right to end of next word</source> <translation type="unfinished">删除下一个单词末尾的右边</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2508" /> - <location filename="../ViewManager/ViewManager.py" line="3415" /> + <location filename="../ViewManager/ViewManager.py" line="3425" /> <source>Alt+Del</source> <translation>Alt+Del</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2519" /> <location filename="../QScintilla/MiniEditor.py" line="2516" /> - <location filename="../ViewManager/ViewManager.py" line="3426" /> - <location filename="../ViewManager/ViewManager.py" line="3423" /> + <location filename="../ViewManager/ViewManager.py" line="3436" /> + <location filename="../ViewManager/ViewManager.py" line="3433" /> <source>Move selected lines up one line</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2536" /> <location filename="../QScintilla/MiniEditor.py" line="2533" /> - <location filename="../ViewManager/ViewManager.py" line="3443" /> - <location filename="../ViewManager/ViewManager.py" line="3440" /> + <location filename="../ViewManager/ViewManager.py" line="3453" /> + <location filename="../ViewManager/ViewManager.py" line="3450" /> <source>Move selected lines down one line</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1810" /> <location filename="../QScintilla/MiniEditor.py" line="1807" /> - <location filename="../ViewManager/ViewManager.py" line="3461" /> - <location filename="../ViewManager/ViewManager.py" line="3458" /> + <location filename="../ViewManager/ViewManager.py" line="3471" /> + <location filename="../ViewManager/ViewManager.py" line="3468" /> <source>Convert selection to lower case</source> <translation>将所选内容转换成小写</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1813" /> - <location filename="../ViewManager/ViewManager.py" line="3464" /> + <location filename="../ViewManager/ViewManager.py" line="3474" /> <source>Alt+Shift+U</source> <translation>Alt+Shift+U</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1826" /> <location filename="../QScintilla/MiniEditor.py" line="1823" /> - <location filename="../ViewManager/ViewManager.py" line="3477" /> - <location filename="../ViewManager/ViewManager.py" line="3474" /> + <location filename="../ViewManager/ViewManager.py" line="3487" /> + <location filename="../ViewManager/ViewManager.py" line="3484" /> <source>Convert selection to upper case</source> <translation>将所选内容转换成大写</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="1829" /> - <location filename="../ViewManager/ViewManager.py" line="3480" /> + <location filename="../ViewManager/ViewManager.py" line="3490" /> <source>Ctrl+Shift+U</source> <translation>Ctrl+Shift+U</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3506" /> + <location filename="../ViewManager/ViewManager.py" line="3516" /> <source>&Edit</source> <translation>编辑(&E)</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3564" /> - <location filename="../ViewManager/ViewManager.py" line="3562" /> + <location filename="../ViewManager/ViewManager.py" line="3574" /> + <location filename="../ViewManager/ViewManager.py" line="3572" /> <source>Edit</source> <translation>编辑</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2568" /> <location filename="../QScintilla/ShellWindow.py" line="927" /> - <location filename="../ViewManager/ViewManager.py" line="4167" /> - <location filename="../ViewManager/ViewManager.py" line="4165" /> - <location filename="../ViewManager/ViewManager.py" line="3598" /> + <location filename="../ViewManager/ViewManager.py" line="4177" /> + <location filename="../ViewManager/ViewManager.py" line="4175" /> + <location filename="../ViewManager/ViewManager.py" line="3608" /> <source>Search</source> <translation>搜索</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2570" /> <location filename="../QScintilla/ShellWindow.py" line="929" /> - <location filename="../ViewManager/ViewManager.py" line="3600" /> + <location filename="../ViewManager/ViewManager.py" line="3610" /> <source>&Search...</source> <translation>搜索(&S)…</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2572" /> <location filename="../QScintilla/ShellWindow.py" line="931" /> - <location filename="../ViewManager/ViewManager.py" line="3602" /> + <location filename="../ViewManager/ViewManager.py" line="3612" /> <source>Ctrl+F</source> <comment>Search|Search</comment> <translation>Ctrl+F</translation> @@ -97132,34 +97145,34 @@ <message> <location filename="../QScintilla/MiniEditor.py" line="2579" /> <location filename="../QScintilla/ShellWindow.py" line="938" /> - <location filename="../ViewManager/ViewManager.py" line="3609" /> + <location filename="../ViewManager/ViewManager.py" line="3619" /> <source>Search for a text</source> <translation>搜索文本</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2582" /> - <location filename="../ViewManager/ViewManager.py" line="3612" /> + <location filename="../ViewManager/ViewManager.py" line="3622" /> <source><b>Search</b><p>Search for some text in the current editor. A dialog is shown to enter the searchtext and options for the search.</p></source> <translation><b>搜索</b><p>在当前编辑器中搜索某文本。显示一个对话框可以输入要搜索的文本和搜索选项。</p></translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2594" /> <location filename="../QScintilla/ShellWindow.py" line="953" /> - <location filename="../ViewManager/ViewManager.py" line="3624" /> + <location filename="../ViewManager/ViewManager.py" line="3634" /> <source>Search next</source> <translation>搜索下一个</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2596" /> <location filename="../QScintilla/ShellWindow.py" line="955" /> - <location filename="../ViewManager/ViewManager.py" line="3626" /> + <location filename="../ViewManager/ViewManager.py" line="3636" /> <source>Search &next</source> <translation>搜索下一个(&N)</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2598" /> <location filename="../QScintilla/ShellWindow.py" line="957" /> - <location filename="../ViewManager/ViewManager.py" line="3628" /> + <location filename="../ViewManager/ViewManager.py" line="3638" /> <source>F3</source> <comment>Search|Search next</comment> <translation>F3</translation> @@ -97167,34 +97180,34 @@ <message> <location filename="../QScintilla/MiniEditor.py" line="2605" /> <location filename="../QScintilla/ShellWindow.py" line="964" /> - <location filename="../ViewManager/ViewManager.py" line="3635" /> + <location filename="../ViewManager/ViewManager.py" line="3645" /> <source>Search next occurrence of text</source> <translation>搜索下一处文本</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2608" /> - <location filename="../ViewManager/ViewManager.py" line="3638" /> + <location filename="../ViewManager/ViewManager.py" line="3648" /> <source><b>Search next</b><p>Search the next occurrence of some text in the current editor. The previously entered searchtext and options are reused.</p></source> <translation><b>搜索下一个</b><p>在当前编辑器中搜索某文本下一次出现的位置。仍然使用前面输入的搜索文本和选项。</p></translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2620" /> <location filename="../QScintilla/ShellWindow.py" line="981" /> - <location filename="../ViewManager/ViewManager.py" line="3650" /> + <location filename="../ViewManager/ViewManager.py" line="3660" /> <source>Search previous</source> <translation>搜索上一个</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2622" /> <location filename="../QScintilla/ShellWindow.py" line="983" /> - <location filename="../ViewManager/ViewManager.py" line="3652" /> + <location filename="../ViewManager/ViewManager.py" line="3662" /> <source>Search &previous</source> <translation>搜索上一个(&P)</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2624" /> <location filename="../QScintilla/ShellWindow.py" line="985" /> - <location filename="../ViewManager/ViewManager.py" line="3654" /> + <location filename="../ViewManager/ViewManager.py" line="3664" /> <source>Shift+F3</source> <comment>Search|Search previous</comment> <translation>Shift+F3</translation> @@ -97202,436 +97215,436 @@ <message> <location filename="../QScintilla/MiniEditor.py" line="2633" /> <location filename="../QScintilla/ShellWindow.py" line="994" /> - <location filename="../ViewManager/ViewManager.py" line="3663" /> + <location filename="../ViewManager/ViewManager.py" line="3673" /> <source>Search previous occurrence of text</source> <translation>搜索上一处文本</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2638" /> - <location filename="../ViewManager/ViewManager.py" line="3668" /> + <location filename="../ViewManager/ViewManager.py" line="3678" /> <source><b>Search previous</b><p>Search the previous occurrence of some text in the current editor. The previously entered searchtext and options are reused.</p></source> <translation><b>搜索上一个</b><p>在当前编辑器中搜索某文本上一次出现的位置。仍然使用前面输入的搜索文本和选项。</p></translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2652" /> <location filename="../QScintilla/MiniEditor.py" line="2650" /> - <location filename="../ViewManager/ViewManager.py" line="3682" /> - <location filename="../ViewManager/ViewManager.py" line="3680" /> + <location filename="../ViewManager/ViewManager.py" line="3692" /> + <location filename="../ViewManager/ViewManager.py" line="3690" /> <source>Clear search markers</source> <translation>清除搜索标记</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2654" /> - <location filename="../ViewManager/ViewManager.py" line="3684" /> + <location filename="../ViewManager/ViewManager.py" line="3694" /> <source>Ctrl+3</source> <comment>Search|Clear search markers</comment> <translation>Ctrl+3</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2663" /> - <location filename="../ViewManager/ViewManager.py" line="3693" /> + <location filename="../ViewManager/ViewManager.py" line="3703" /> <source>Clear all displayed search markers</source> <translation>清除所有显示的搜索标记</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2668" /> - <location filename="../ViewManager/ViewManager.py" line="3698" /> + <location filename="../ViewManager/ViewManager.py" line="3708" /> <source><b>Clear search markers</b><p>Clear all displayed search markers.</p></source> <translation><b>清除搜索标记</b><p>清除所有显示的搜索标记。</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3710" /> - <location filename="../ViewManager/ViewManager.py" line="3708" /> + <location filename="../ViewManager/ViewManager.py" line="3720" /> + <location filename="../ViewManager/ViewManager.py" line="3718" /> <source>Search current word forward</source> <translation>向前搜索当前单词</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3712" /> + <location filename="../ViewManager/ViewManager.py" line="3722" /> <source>Ctrl+.</source> <comment>Search|Search current word forward</comment> <translation>Ctrl+.</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3721" /> + <location filename="../ViewManager/ViewManager.py" line="3731" /> <source>Search next occurrence of the current word</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3726" /> + <location filename="../ViewManager/ViewManager.py" line="3736" /> <source><b>Search current word forward</b><p>Search the next occurrence of the current word of the current editor.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3739" /> - <location filename="../ViewManager/ViewManager.py" line="3737" /> + <location filename="../ViewManager/ViewManager.py" line="3749" /> + <location filename="../ViewManager/ViewManager.py" line="3747" /> <source>Search current word backward</source> <translation>向后搜索当前单词</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3741" /> + <location filename="../ViewManager/ViewManager.py" line="3751" /> <source>Ctrl+,</source> <comment>Search|Search current word backward</comment> <translation>Ctrl+,</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3750" /> + <location filename="../ViewManager/ViewManager.py" line="3760" /> <source>Search previous occurrence of the current word</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3755" /> + <location filename="../ViewManager/ViewManager.py" line="3765" /> <source><b>Search current word backward</b><p>Search the previous occurrence of the current word of the current editor.</p></source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2678" /> - <location filename="../ViewManager/ViewManager.py" line="3766" /> + <location filename="../ViewManager/ViewManager.py" line="3776" /> <source>Replace</source> <translation>替换</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2679" /> - <location filename="../ViewManager/ViewManager.py" line="3767" /> + <location filename="../ViewManager/ViewManager.py" line="3777" /> <source>&Replace...</source> <translation>替换(&R)…</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2681" /> - <location filename="../ViewManager/ViewManager.py" line="3769" /> + <location filename="../ViewManager/ViewManager.py" line="3779" /> <source>Ctrl+R</source> <comment>Search|Replace</comment> <translation>Ctrl+R</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2688" /> - <location filename="../ViewManager/ViewManager.py" line="3776" /> + <location filename="../ViewManager/ViewManager.py" line="3786" /> <source>Replace some text</source> <translation>替换某文本</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2691" /> - <location filename="../ViewManager/ViewManager.py" line="3779" /> + <location filename="../ViewManager/ViewManager.py" line="3789" /> <source><b>Replace</b><p>Search for some text in the current editor and replace it. A dialog is shown to enter the searchtext, the replacement text and options for the search and replace.</p></source> <translation><b>替换</b><p>在当前编辑器搜索某文本并替换之。显示一个对话框可输入搜索文本、替换文本以及搜索替换的选项。</p></translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2705" /> <location filename="../QScintilla/MiniEditor.py" line="2703" /> - <location filename="../ViewManager/ViewManager.py" line="3793" /> - <location filename="../ViewManager/ViewManager.py" line="3791" /> + <location filename="../ViewManager/ViewManager.py" line="3803" /> + <location filename="../ViewManager/ViewManager.py" line="3801" /> <source>Replace and Search</source> <translation type="unfinished">替换和搜索</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2707" /> - <location filename="../ViewManager/ViewManager.py" line="3795" /> + <location filename="../ViewManager/ViewManager.py" line="3805" /> <source>Meta+R</source> <comment>Search|Replace and Search</comment> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2716" /> - <location filename="../ViewManager/ViewManager.py" line="3804" /> + <location filename="../ViewManager/ViewManager.py" line="3814" /> <source>Replace the found text and search the next occurrence</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2721" /> - <location filename="../ViewManager/ViewManager.py" line="3809" /> + <location filename="../ViewManager/ViewManager.py" line="3819" /> <source><b>Replace and Search</b><p>Replace the found occurrence of text in the current editor and search for the next one. The previously entered search text and options are reused.</p></source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2737" /> <location filename="../QScintilla/MiniEditor.py" line="2735" /> - <location filename="../ViewManager/ViewManager.py" line="3825" /> - <location filename="../ViewManager/ViewManager.py" line="3823" /> + <location filename="../ViewManager/ViewManager.py" line="3835" /> + <location filename="../ViewManager/ViewManager.py" line="3833" /> <source>Replace Occurrence</source> <translation>替换当前</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2739" /> - <location filename="../ViewManager/ViewManager.py" line="3827" /> + <location filename="../ViewManager/ViewManager.py" line="3837" /> <source>Ctrl+Meta+R</source> <comment>Search|Replace Occurrence</comment> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2748" /> - <location filename="../ViewManager/ViewManager.py" line="3836" /> + <location filename="../ViewManager/ViewManager.py" line="3846" /> <source>Replace the found text</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2751" /> - <location filename="../ViewManager/ViewManager.py" line="3839" /> + <location filename="../ViewManager/ViewManager.py" line="3849" /> <source><b>Replace Occurrence</b><p>Replace the found occurrence of the search text in the current editor.</p></source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2764" /> <location filename="../QScintilla/MiniEditor.py" line="2762" /> - <location filename="../ViewManager/ViewManager.py" line="3852" /> - <location filename="../ViewManager/ViewManager.py" line="3850" /> + <location filename="../ViewManager/ViewManager.py" line="3862" /> + <location filename="../ViewManager/ViewManager.py" line="3860" /> <source>Replace All</source> <translation type="unfinished">替换全部</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2766" /> - <location filename="../ViewManager/ViewManager.py" line="3854" /> + <location filename="../ViewManager/ViewManager.py" line="3864" /> <source>Shift+Meta+R</source> <comment>Search|Replace All</comment> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2775" /> - <location filename="../ViewManager/ViewManager.py" line="3863" /> + <location filename="../ViewManager/ViewManager.py" line="3873" /> <source>Replace search text occurrences</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2778" /> - <location filename="../ViewManager/ViewManager.py" line="3866" /> + <location filename="../ViewManager/ViewManager.py" line="3876" /> <source><b>Replace All</b><p>Replace all occurrences of the search text in the current editor.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3888" /> - <location filename="../ViewManager/ViewManager.py" line="3877" /> + <location filename="../ViewManager/ViewManager.py" line="3898" /> + <location filename="../ViewManager/ViewManager.py" line="3887" /> <source>Goto Line</source> <translation>跳转行</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3879" /> + <location filename="../ViewManager/ViewManager.py" line="3889" /> <source>&Goto Line...</source> <translation>跳转行(&G)…</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3881" /> + <location filename="../ViewManager/ViewManager.py" line="3891" /> <source>Ctrl+G</source> <comment>Search|Goto Line</comment> <translation>Ctrl+G</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3891" /> + <location filename="../ViewManager/ViewManager.py" line="3901" /> <source><b>Goto Line</b><p>Go to a specific line of text in the current editor. A dialog is shown to enter the linenumber.</p></source> <translation><b>跳转行</b><p>跳转到当前编辑器中文本的指定行。显示的对话框可输入行号。</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3913" /> - <location filename="../ViewManager/ViewManager.py" line="3902" /> + <location filename="../ViewManager/ViewManager.py" line="3923" /> + <location filename="../ViewManager/ViewManager.py" line="3912" /> <source>Goto Brace</source> <translation>跳转括号</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3904" /> + <location filename="../ViewManager/ViewManager.py" line="3914" /> <source>Goto &Brace</source> <translation>跳转括号(&B)</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3906" /> - <source>Ctrl+L</source> - <comment>Search|Goto Brace</comment> - <translation>Ctrl+L</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="3916" /> + <source>Ctrl+L</source> + <comment>Search|Goto Brace</comment> + <translation>Ctrl+L</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="3926" /> <source><b>Goto Brace</b><p>Go to the matching brace in the current editor.</p></source> <translation><b>跳转括号</b><p>跳转到当前编辑器中匹配的括号处。</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3939" /> - <location filename="../ViewManager/ViewManager.py" line="3926" /> + <location filename="../ViewManager/ViewManager.py" line="3949" /> + <location filename="../ViewManager/ViewManager.py" line="3936" /> <source>Goto Last Edit Location</source> <translation>跳转至上一次编辑位置</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3928" /> + <location filename="../ViewManager/ViewManager.py" line="3938" /> <source>Goto Last &Edit Location</source> <translation>跳转至上一次编辑位置(&E)</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3930" /> + <location filename="../ViewManager/ViewManager.py" line="3940" /> <source>Ctrl+Shift+G</source> <comment>Search|Goto Last Edit Location</comment> <translation>Ctrl+Shift+G</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3942" /> + <location filename="../ViewManager/ViewManager.py" line="3952" /> <source><b>Goto Last Edit Location</b><p>Go to the location of the last edit in the current editor.</p></source> <translation><b>跳转至上一次编辑位置</b>前往当前编辑器上一次编辑的位置。</b></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3954" /> - <location filename="../ViewManager/ViewManager.py" line="3953" /> + <location filename="../ViewManager/ViewManager.py" line="3964" /> + <location filename="../ViewManager/ViewManager.py" line="3963" /> <source>Goto Previous Method or Class</source> <translation>跳转至上一个方法或类</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3956" /> + <location filename="../ViewManager/ViewManager.py" line="3966" /> <source>Ctrl+Shift+Up</source> <comment>Search|Goto Previous Method or Class</comment> <translation>Ctrl+Shift+Up</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3967" /> + <location filename="../ViewManager/ViewManager.py" line="3977" /> <source>Go to the previous method or class definition</source> <translation>跳转之上一个方法或类的定义</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3972" /> + <location filename="../ViewManager/ViewManager.py" line="3982" /> <source><b>Goto Previous Method or Class</b><p>Goes to the line of the previous method or class definition and highlights the name.</p></source> <translation><b>跳转至上一个方法或类</b><p>跳转至上一个方法或类的定义所在行并高亮其名称。</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3984" /> - <location filename="../ViewManager/ViewManager.py" line="3983" /> + <location filename="../ViewManager/ViewManager.py" line="3994" /> + <location filename="../ViewManager/ViewManager.py" line="3993" /> <source>Goto Next Method or Class</source> <translation>跳转至下一个方法或类</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3986" /> + <location filename="../ViewManager/ViewManager.py" line="3996" /> <source>Ctrl+Shift+Down</source> <comment>Search|Goto Next Method or Class</comment> <translation>Ctrl+Shift+Down</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="3995" /> + <location filename="../ViewManager/ViewManager.py" line="4005" /> <source>Go to the next method or class definition</source> <translation>跳转之下一个方法或类的定义</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4000" /> + <location filename="../ViewManager/ViewManager.py" line="4010" /> <source><b>Goto Next Method or Class</b><p>Goes to the line of the next method or class definition and highlights the name.</p></source> <translation><b>跳转至下一个方法或类</b><p>跳转至下一个方法或类的定义所在行并高亮其名称。</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4013" /> + <location filename="../ViewManager/ViewManager.py" line="4023" /> <source>Search in Files</source> <translation>在文件中搜索</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4015" /> + <location filename="../ViewManager/ViewManager.py" line="4025" /> <source>Search in &Files...</source> <translation>在文件中搜索(&F)…</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4017" /> + <location filename="../ViewManager/ViewManager.py" line="4027" /> <source>Shift+Ctrl+F</source> <comment>Search|Search Files</comment> <translation>Shift+Ctrl+F</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4026" /> + <location filename="../ViewManager/ViewManager.py" line="4036" /> <source>Search for a text in files</source> <translation>在文件中搜索文本</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4029" /> + <location filename="../ViewManager/ViewManager.py" line="4039" /> <source><b>Search in Files</b><p>Search for some text in the files of a directory tree or the project. A window is shown to enter the searchtext and options for the search and to display the result.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4041" /> + <location filename="../ViewManager/ViewManager.py" line="4051" /> <source>Replace in Files</source> <translation>在文件中替换</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4042" /> + <location filename="../ViewManager/ViewManager.py" line="4052" /> <source>Replace in F&iles...</source> <translation>在文件中替换(&I)…</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4044" /> + <location filename="../ViewManager/ViewManager.py" line="4054" /> <source>Shift+Ctrl+R</source> <comment>Search|Replace in Files</comment> <translation>Shift+Ctrl+R</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4053" /> + <location filename="../ViewManager/ViewManager.py" line="4063" /> <source>Search for a text in files and replace it</source> <translation>在文件中搜索文本并替换之</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4058" /> + <location filename="../ViewManager/ViewManager.py" line="4068" /> <source><b>Replace in Files</b><p>Search for some text in the files of a directory tree or the project and replace it. A window is shown to enter the searchtext, the replacement text and options for the search and to display the result.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4071" /> + <location filename="../ViewManager/ViewManager.py" line="4081" /> <source>Search in Open Files</source> <translation>在打开的文件中搜索</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4073" /> + <location filename="../ViewManager/ViewManager.py" line="4083" /> <source>Search in Open Files...</source> <translation>在打开的文件中搜索…</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4075" /> + <location filename="../ViewManager/ViewManager.py" line="4085" /> <source>Meta+Ctrl+Alt+F</source> <comment>Search|Search Open Files</comment> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4084" /> + <location filename="../ViewManager/ViewManager.py" line="4094" /> <source>Search for a text in open files</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4087" /> + <location filename="../ViewManager/ViewManager.py" line="4097" /> <source><b>Search in Open Files</b><p>Search for some text in the currently opened files. A window is shown to enter the search text and options for the search and to display the result.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4099" /> + <location filename="../ViewManager/ViewManager.py" line="4109" /> <source>Replace in Open Files</source> <translation>在打开的文件中替换</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4100" /> + <location filename="../ViewManager/ViewManager.py" line="4110" /> <source>Replace in Open Files...</source> <translation>在打开的文件中替换…</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4102" /> + <location filename="../ViewManager/ViewManager.py" line="4112" /> <source>Meta+Ctrl+Alt+R</source> <comment>Search|Replace in Open Files</comment> <translation>Meta+Ctrl+Alt+R</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4111" /> + <location filename="../ViewManager/ViewManager.py" line="4121" /> <source>Search for a text in open files and replace it</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4116" /> + <location filename="../ViewManager/ViewManager.py" line="4126" /> <source><b>Replace in Open Files</b><p>Search for some text in the currently opened files and replace it. A window is shown to enter the search text, the replacement text and options for the search and to display the result.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4137" /> + <location filename="../ViewManager/ViewManager.py" line="4147" /> <source>&Search</source> <translation>搜索(&S)</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2793" /> <location filename="../QScintilla/ShellWindow.py" line="1020" /> - <location filename="../ViewManager/ViewManager.py" line="4208" /> + <location filename="../ViewManager/ViewManager.py" line="4218" /> <source>Zoom in</source> <translation>放大</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2795" /> <location filename="../QScintilla/ShellWindow.py" line="1022" /> - <location filename="../ViewManager/ViewManager.py" line="4210" /> + <location filename="../ViewManager/ViewManager.py" line="4220" /> <source>Zoom &in</source> <translation>放大(&I)</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2797" /> <location filename="../QScintilla/ShellWindow.py" line="1024" /> - <location filename="../ViewManager/ViewManager.py" line="4212" /> + <location filename="../ViewManager/ViewManager.py" line="4222" /> <source>Ctrl++</source> <comment>View|Zoom in</comment> <translation>Ctrl++</translation> @@ -97639,7 +97652,7 @@ <message> <location filename="../QScintilla/MiniEditor.py" line="2800" /> <location filename="../QScintilla/ShellWindow.py" line="1027" /> - <location filename="../ViewManager/ViewManager.py" line="4215" /> + <location filename="../ViewManager/ViewManager.py" line="4225" /> <source>Zoom In</source> <comment>View|Zoom in</comment> <translation>放大</translation> @@ -97647,35 +97660,35 @@ <message> <location filename="../QScintilla/MiniEditor.py" line="2806" /> <location filename="../QScintilla/ShellWindow.py" line="1033" /> - <location filename="../ViewManager/ViewManager.py" line="4221" /> + <location filename="../ViewManager/ViewManager.py" line="4231" /> <source>Zoom in on the text</source> <translation>放大显示文本</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2809" /> <location filename="../QScintilla/ShellWindow.py" line="1036" /> - <location filename="../ViewManager/ViewManager.py" line="4224" /> + <location filename="../ViewManager/ViewManager.py" line="4234" /> <source><b>Zoom in</b><p>Zoom in on the text. This makes the text bigger.</p></source> <translation><b>放大</b><p>放大显示文本。将使文本变大。</p></translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2819" /> <location filename="../QScintilla/ShellWindow.py" line="1046" /> - <location filename="../ViewManager/ViewManager.py" line="4234" /> + <location filename="../ViewManager/ViewManager.py" line="4244" /> <source>Zoom out</source> <translation>缩小</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2821" /> <location filename="../QScintilla/ShellWindow.py" line="1048" /> - <location filename="../ViewManager/ViewManager.py" line="4236" /> + <location filename="../ViewManager/ViewManager.py" line="4246" /> <source>Zoom &out</source> <translation>缩小(&O)</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2823" /> <location filename="../QScintilla/ShellWindow.py" line="1050" /> - <location filename="../ViewManager/ViewManager.py" line="4238" /> + <location filename="../ViewManager/ViewManager.py" line="4248" /> <source>Ctrl+-</source> <comment>View|Zoom out</comment> <translation>Ctrl+-</translation> @@ -97683,7 +97696,7 @@ <message> <location filename="../QScintilla/MiniEditor.py" line="2826" /> <location filename="../QScintilla/ShellWindow.py" line="1053" /> - <location filename="../ViewManager/ViewManager.py" line="4241" /> + <location filename="../ViewManager/ViewManager.py" line="4251" /> <source>Zoom Out</source> <comment>View|Zoom out</comment> <translation>缩小</translation> @@ -97691,35 +97704,35 @@ <message> <location filename="../QScintilla/MiniEditor.py" line="2832" /> <location filename="../QScintilla/ShellWindow.py" line="1059" /> - <location filename="../ViewManager/ViewManager.py" line="4247" /> + <location filename="../ViewManager/ViewManager.py" line="4257" /> <source>Zoom out on the text</source> <translation>缩小显示文本</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2835" /> <location filename="../QScintilla/ShellWindow.py" line="1062" /> - <location filename="../ViewManager/ViewManager.py" line="4250" /> + <location filename="../ViewManager/ViewManager.py" line="4260" /> <source><b>Zoom out</b><p>Zoom out on the text. This makes the text smaller.</p></source> <translation><b>缩小</b><p>缩小显示文本。将使文本变小。</p></translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2845" /> <location filename="../QScintilla/ShellWindow.py" line="1072" /> - <location filename="../ViewManager/ViewManager.py" line="4260" /> + <location filename="../ViewManager/ViewManager.py" line="4270" /> <source>Zoom reset</source> <translation>重置缩放</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2847" /> <location filename="../QScintilla/ShellWindow.py" line="1074" /> - <location filename="../ViewManager/ViewManager.py" line="4262" /> + <location filename="../ViewManager/ViewManager.py" line="4272" /> <source>Zoom &reset</source> <translation>重置缩放(&R)</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2849" /> <location filename="../QScintilla/ShellWindow.py" line="1076" /> - <location filename="../ViewManager/ViewManager.py" line="4264" /> + <location filename="../ViewManager/ViewManager.py" line="4274" /> <source>Ctrl+0</source> <comment>View|Zoom reset</comment> <translation>Ctrl+0</translation> @@ -97727,894 +97740,894 @@ <message> <location filename="../QScintilla/MiniEditor.py" line="2856" /> <location filename="../QScintilla/ShellWindow.py" line="1083" /> - <location filename="../ViewManager/ViewManager.py" line="4271" /> + <location filename="../ViewManager/ViewManager.py" line="4281" /> <source>Reset the zoom of the text</source> <translation>重置文本缩放大小</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2859" /> <location filename="../QScintilla/ShellWindow.py" line="1086" /> - <location filename="../ViewManager/ViewManager.py" line="4274" /> + <location filename="../ViewManager/ViewManager.py" line="4284" /> <source><b>Zoom reset</b><p>Reset the zoom of the text. This sets the zoom factor to 100%.</p></source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2870" /> <location filename="../QScintilla/ShellWindow.py" line="1097" /> - <location filename="../ViewManager/ViewManager.py" line="4285" /> + <location filename="../ViewManager/ViewManager.py" line="4295" /> <source>Zoom</source> <translation>缩放</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2872" /> <location filename="../QScintilla/ShellWindow.py" line="1099" /> - <location filename="../ViewManager/ViewManager.py" line="4287" /> + <location filename="../ViewManager/ViewManager.py" line="4297" /> <source>&Zoom</source> <translation>缩放(&Z)</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2879" /> <location filename="../QScintilla/ShellWindow.py" line="1106" /> - <location filename="../ViewManager/ViewManager.py" line="4294" /> + <location filename="../ViewManager/ViewManager.py" line="4304" /> <source>Zoom the text</source> <translation>缩放文本</translation> </message> <message> <location filename="../QScintilla/MiniEditor.py" line="2882" /> <location filename="../QScintilla/ShellWindow.py" line="1109" /> - <location filename="../ViewManager/ViewManager.py" line="4297" /> + <location filename="../ViewManager/ViewManager.py" line="4307" /> <source><b>Zoom</b><p>Zoom the text. This opens a dialog where the desired size can be entered.</p></source> <translation><b>缩放</b><p>缩放文本。打开一个对话框以输入所需大小。</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4316" /> - <location filename="../ViewManager/ViewManager.py" line="4308" /> + <location filename="../ViewManager/ViewManager.py" line="4326" /> + <location filename="../ViewManager/ViewManager.py" line="4318" /> <source>Toggle all folds</source> <translation>开关所有折叠</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4309" /> - <source>&Toggle all folds</source> - <translation type="unfinished">开关所有折叠(&A)</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="4319" /> + <source>&Toggle all folds</source> + <translation type="unfinished">开关所有折叠(&A)</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4329" /> <source><b>Toggle all folds</b><p>Toggle all folds of the current editor.</p></source> <translation><b>开关所有折叠</b><p>打开或关闭当前编辑器的所有折叠。</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4341" /> - <location filename="../ViewManager/ViewManager.py" line="4329" /> + <location filename="../ViewManager/ViewManager.py" line="4351" /> + <location filename="../ViewManager/ViewManager.py" line="4339" /> <source>Toggle all folds (including children)</source> <translation>开关所有折叠(包含子项)</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4332" /> + <location filename="../ViewManager/ViewManager.py" line="4342" /> <source>Toggle all &folds (including children)</source> <translation>开关所有折叠(&F)(包含子项)</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4346" /> + <location filename="../ViewManager/ViewManager.py" line="4356" /> <source><b>Toggle all folds (including children)</b><p>Toggle all folds of the current editor including all children.</p></source> <translation><b>开关所有折叠(包含子项)</b><p>打开或关闭当前编辑器中的所有折叠,包括子折叠。</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4365" /> - <location filename="../ViewManager/ViewManager.py" line="4357" /> + <location filename="../ViewManager/ViewManager.py" line="4375" /> + <location filename="../ViewManager/ViewManager.py" line="4367" /> <source>Toggle current fold</source> <translation>开关当前折叠</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4358" /> - <source>Toggle &current fold</source> - <translation>开关当前折叠(&C)</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="4368" /> + <source>Toggle &current fold</source> + <translation>开关当前折叠(&C)</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4378" /> <source><b>Toggle current fold</b><p>Toggle the folds of the current line of the current editor.</p></source> <translation><b>开关当前折叠</b><p>打开或关闭当前编辑器的当前行中的折叠。</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4387" /> - <location filename="../ViewManager/ViewManager.py" line="4379" /> + <location filename="../ViewManager/ViewManager.py" line="4397" /> + <location filename="../ViewManager/ViewManager.py" line="4389" /> <source>Clear all folds</source> <translation>清除所有折叠</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4380" /> - <source>Clear &all folds</source> - <translation type="unfinished">清除&所有折叠</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="4390" /> + <source>Clear &all folds</source> + <translation type="unfinished">清除&所有折叠</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4400" /> <source><b>Clear all folds</b><p>Clear all folds of the current editor, i.e. ensure that all lines are displayed unfolded.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4410" /> - <location filename="../ViewManager/ViewManager.py" line="4403" /> - <location filename="../ViewManager/ViewManager.py" line="4401" /> + <location filename="../ViewManager/ViewManager.py" line="4420" /> + <location filename="../ViewManager/ViewManager.py" line="4413" /> + <location filename="../ViewManager/ViewManager.py" line="4411" /> <source>Remove all highlights</source> <translation>取消所有高亮</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4413" /> - <source><b>Remove all highlights</b><p>Remove the highlights of all editors.</p></source> - <translation><b>取消所有高亮</b><p>取消所有编辑器中的高亮。</p></translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="4423" /> + <source><b>Remove all highlights</b><p>Remove the highlights of all editors.</p></source> + <translation><b>取消所有高亮</b><p>取消所有编辑器中的高亮。</p></translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4433" /> <source>New Document View</source> <translation>新建文档视图</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4425" /> + <location filename="../ViewManager/ViewManager.py" line="4435" /> <source>New &Document View</source> <translation>新建文档视图(&D)</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4432" /> + <location filename="../ViewManager/ViewManager.py" line="4442" /> <source>Open a new view of the current document</source> <translation>在新视图(新选项卡)中打开当前文档</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4437" /> + <location filename="../ViewManager/ViewManager.py" line="4447" /> <source><b>New Document View</b><p>Opens a new view of the current document. Both views show the same document. However, the cursors may be positioned independently.</p></source> <translation><b>新建文档视图</b><p>在新视图中打开当前文档。两个视图将显示同一个文档。然而,两者的光标位置各自独立。</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4453" /> - <location filename="../ViewManager/ViewManager.py" line="4449" /> + <location filename="../ViewManager/ViewManager.py" line="4463" /> + <location filename="../ViewManager/ViewManager.py" line="4459" /> <source>New Document View (with new split)</source> <translation>新建文档视图(在新拆分页中)</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4462" /> + <location filename="../ViewManager/ViewManager.py" line="4472" /> <source>Open a new view of the current document in a new split</source> <translation>在新拆分页中的新视图(新选项卡)中打开当前文档</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4467" /> + <location filename="../ViewManager/ViewManager.py" line="4477" /> <source><b>New Document View</b><p>Opens a new view of the current document in a new split. Both views show the same document. However, the cursors may be positioned independently.</p></source> <translation><b>新建文档视图</b><p>在新拆分页的新视图中打开当前文档。两个视图将显示同一个文档。然而,两者的光标位置各自独立。</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4479" /> + <location filename="../ViewManager/ViewManager.py" line="4489" /> <source>Split view</source> <translation>拆分视图</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4481" /> - <source>&Split view</source> - <translation>拆分视图(&S)</translation> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="4488" /> - <source>Add a split to the view</source> - <translation>对视图进行拆分</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="4491" /> - <source><b>Split view</b><p>Add a split to the view.</p></source> - <translation><b>拆分视图</b><p>对视图进行拆分。</p></translation> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="4500" /> - <source>Arrange horizontally</source> - <translation>水平排列</translation> + <source>&Split view</source> + <translation>拆分视图(&S)</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4498" /> + <source>Add a split to the view</source> + <translation>对视图进行拆分</translation> </message> <message> <location filename="../ViewManager/ViewManager.py" line="4501" /> + <source><b>Split view</b><p>Add a split to the view.</p></source> + <translation><b>拆分视图</b><p>对视图进行拆分。</p></translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4510" /> + <source>Arrange horizontally</source> + <translation>水平排列</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4511" /> <source>Arrange &horizontally</source> <translation>水平排列(&H)</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4509" /> + <location filename="../ViewManager/ViewManager.py" line="4519" /> <source>Arrange the splitted views horizontally</source> <translation>将拆分的视图进行水平排列</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4514" /> + <location filename="../ViewManager/ViewManager.py" line="4524" /> <source><b>Arrange horizontally</b><p>Arrange the splitted views horizontally.</p></source> <translation><b>水平排列</b><p>将拆分的视图进行水平排列。</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4525" /> + <location filename="../ViewManager/ViewManager.py" line="4535" /> <source>Remove split</source> <translation>移除拆分</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4527" /> - <source>&Remove split</source> - <translation>移除拆分(&R)</translation> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="4534" /> - <source>Remove the current split</source> - <translation>移除当前拆分</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="4537" /> - <source><b>Remove split</b><p>Remove the current split.</p></source> - <translation><b>移除拆分</b><p>移除当前拆分。</p></translation> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="4546" /> - <source>Next split</source> - <translation>下一个拆分</translation> + <source>&Remove split</source> + <translation>移除拆分(&R)</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4544" /> + <source>Remove the current split</source> + <translation>移除当前拆分</translation> </message> <message> <location filename="../ViewManager/ViewManager.py" line="4547" /> + <source><b>Remove split</b><p>Remove the current split.</p></source> + <translation><b>移除拆分</b><p>移除当前拆分。</p></translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4556" /> + <source>Next split</source> + <translation>下一个拆分</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4557" /> <source>&Next split</source> <translation>下一个拆分(&N)</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4549" /> + <location filename="../ViewManager/ViewManager.py" line="4559" /> <source>Ctrl+Alt+N</source> <comment>View|Next split</comment> <translation>Ctrl+Alt+N</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4558" /> + <location filename="../ViewManager/ViewManager.py" line="4568" /> <source>Move to the next split</source> <translation>移动到下一个拆分中</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4561" /> - <source><b>Next split</b><p>Move to the next split.</p></source> - <translation><b>下一个拆分</b><p>移动到下一个拆分中。</p></translation> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="4570" /> - <source>Previous split</source> - <translation>上一个拆分</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="4571" /> + <source><b>Next split</b><p>Move to the next split.</p></source> + <translation><b>下一个拆分</b><p>移动到下一个拆分中。</p></translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4580" /> + <source>Previous split</source> + <translation>上一个拆分</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4581" /> <source>&Previous split</source> <translation>上一个拆分(&P)</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4573" /> + <location filename="../ViewManager/ViewManager.py" line="4583" /> <source>Ctrl+Alt+P</source> <comment>View|Previous split</comment> <translation>Ctrl+Alt+P</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4582" /> + <location filename="../ViewManager/ViewManager.py" line="4592" /> <source>Move to the previous split</source> <translation>移动到上一个拆分中</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4585" /> + <location filename="../ViewManager/ViewManager.py" line="4595" /> <source><b>Previous split</b><p>Move to the previous split.</p></source> <translation><b>上一个拆分</b><p>移动到上一个拆分中。</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4596" /> - <location filename="../ViewManager/ViewManager.py" line="4594" /> + <location filename="../ViewManager/ViewManager.py" line="4606" /> + <location filename="../ViewManager/ViewManager.py" line="4604" /> <source>Preview</source> <translation>预览</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4604" /> + <location filename="../ViewManager/ViewManager.py" line="4614" /> <source>Preview the current file in the web browser</source> <translation>在网页浏览器中预览当前文件</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4609" /> + <location filename="../ViewManager/ViewManager.py" line="4619" /> <source><b>Preview</b><p>This opens the web browser with a preview of the current file.</p></source> <translation><b>预览</b><p>在网页浏览器中打开当前文件,显示预览。</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4623" /> - <location filename="../ViewManager/ViewManager.py" line="4621" /> + <location filename="../ViewManager/ViewManager.py" line="4633" /> + <location filename="../ViewManager/ViewManager.py" line="4631" /> <source>Python AST Viewer</source> <translation type="unfinished">Python AST查看器</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4631" /> + <location filename="../ViewManager/ViewManager.py" line="4641" /> <source>Show the AST for the current Python file</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4636" /> + <location filename="../ViewManager/ViewManager.py" line="4646" /> <source><b>Python AST Viewer</b><p>This opens the a tree view of the AST of the current Python source file.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4650" /> - <location filename="../ViewManager/ViewManager.py" line="4648" /> + <location filename="../ViewManager/ViewManager.py" line="4660" /> + <location filename="../ViewManager/ViewManager.py" line="4658" /> <source>Python Disassembly Viewer</source> <translation type="unfinished">Python 反汇编查看器</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4658" /> + <location filename="../ViewManager/ViewManager.py" line="4668" /> <source>Show the Disassembly for the current Python file</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4663" /> + <location filename="../ViewManager/ViewManager.py" line="4673" /> <source><b>Python Disassembly Viewer</b><p>This opens the a tree view of the Disassembly of the current Python source file.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4699" /> + <location filename="../ViewManager/ViewManager.py" line="4709" /> <source>&View</source> <translation>视图(&V)</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4734" /> - <location filename="../ViewManager/ViewManager.py" line="4732" /> + <location filename="../ViewManager/ViewManager.py" line="4744" /> + <location filename="../ViewManager/ViewManager.py" line="4742" /> <source>View</source> <translation>视图</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4773" /> - <location filename="../ViewManager/ViewManager.py" line="4765" /> + <location filename="../ViewManager/ViewManager.py" line="4783" /> + <location filename="../ViewManager/ViewManager.py" line="4775" /> <source>Start Macro Recording</source> <translation>开始宏录制</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4766" /> - <source>S&tart Macro Recording</source> - <translation>开始宏录制(&T)</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="4776" /> + <source>S&tart Macro Recording</source> + <translation>开始宏录制(&T)</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4786" /> <source><b>Start Macro Recording</b><p>Start recording editor commands into a new macro.</p></source> <translation><b>开始宏录制</b><p>开始将编辑器命令录制到一个新宏中。</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4794" /> - <location filename="../ViewManager/ViewManager.py" line="4786" /> + <location filename="../ViewManager/ViewManager.py" line="4804" /> + <location filename="../ViewManager/ViewManager.py" line="4796" /> <source>Stop Macro Recording</source> <translation>中止宏录制</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4787" /> - <source>Sto&p Macro Recording</source> - <translation>中止宏录制(&P)</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="4797" /> + <source>Sto&p Macro Recording</source> + <translation>中止宏录制(&P)</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4807" /> <source><b>Stop Macro Recording</b><p>Stop recording editor commands into a new macro.</p></source> <translation><b>中止宏录制</b><p>中止将编辑器命令录制到一个新宏中。</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4815" /> - <location filename="../ViewManager/ViewManager.py" line="4807" /> + <location filename="../ViewManager/ViewManager.py" line="4825" /> + <location filename="../ViewManager/ViewManager.py" line="4817" /> <source>Run Macro</source> <translation>运行宏</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4808" /> - <source>&Run Macro</source> - <translation>运行宏(&R)</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="4818" /> + <source>&Run Macro</source> + <translation>运行宏(&R)</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4828" /> <source><b>Run Macro</b><p>Run a previously recorded editor macro.</p></source> <translation><b>运行宏</b><p>运行一个已经录制好的编辑器宏。</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4836" /> - <location filename="../ViewManager/ViewManager.py" line="4828" /> + <location filename="../ViewManager/ViewManager.py" line="4846" /> + <location filename="../ViewManager/ViewManager.py" line="4838" /> <source>Delete Macro</source> <translation>删除宏</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4829" /> - <source>&Delete Macro</source> - <translation>删除宏(&D)</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="4839" /> + <source>&Delete Macro</source> + <translation>删除宏(&D)</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4849" /> <source><b>Delete Macro</b><p>Delete a previously recorded editor macro.</p></source> <translation><b>删除宏</b><p>删除一个已经录制好的编辑器宏。</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4857" /> - <location filename="../ViewManager/ViewManager.py" line="4849" /> + <location filename="../ViewManager/ViewManager.py" line="4867" /> + <location filename="../ViewManager/ViewManager.py" line="4859" /> <source>Load Macro</source> <translation>载入宏</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4850" /> - <source>&Load Macro</source> - <translation>载入宏(&L)</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="4860" /> - <source><b>Load Macro</b><p>Load an editor macro from a file.</p></source> - <translation><b>载入宏</b><p>从文件中载入一个编辑器宏。</p></translation> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="4877" /> - <location filename="../ViewManager/ViewManager.py" line="4869" /> - <source>Save Macro</source> - <translation>保存宏</translation> + <source>&Load Macro</source> + <translation>载入宏(&L)</translation> </message> <message> <location filename="../ViewManager/ViewManager.py" line="4870" /> - <source>&Save Macro</source> - <translation>保存宏(&S)</translation> + <source><b>Load Macro</b><p>Load an editor macro from a file.</p></source> + <translation><b>载入宏</b><p>从文件中载入一个编辑器宏。</p></translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4887" /> + <location filename="../ViewManager/ViewManager.py" line="4879" /> + <source>Save Macro</source> + <translation>保存宏</translation> </message> <message> <location filename="../ViewManager/ViewManager.py" line="4880" /> + <source>&Save Macro</source> + <translation>保存宏(&S)</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="4890" /> <source><b>Save Macro</b><p>Save a previously recorded editor macro to a file.</p></source> <translation><b>保存宏</b><p>将前面录制好的编辑器宏保存到一个文件中。</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4898" /> + <location filename="../ViewManager/ViewManager.py" line="4908" /> <source>&Macros</source> <translation>宏(&M)</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4929" /> - <location filename="../ViewManager/ViewManager.py" line="4916" /> + <location filename="../ViewManager/ViewManager.py" line="4939" /> + <location filename="../ViewManager/ViewManager.py" line="4926" /> <source>Toggle Bookmark</source> <translation>切换书签</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4918" /> + <location filename="../ViewManager/ViewManager.py" line="4928" /> <source>&Toggle Bookmark</source> <translation>切换书签(&T)</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4920" /> + <location filename="../ViewManager/ViewManager.py" line="4930" /> <source>Alt+Ctrl+T</source> <comment>Bookmark|Toggle</comment> <translation>Alt+Ctrl+T</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4932" /> + <location filename="../ViewManager/ViewManager.py" line="4942" /> <source><b>Toggle Bookmark</b><p>Toggle a bookmark at the current line of the current editor.</p></source> <translation><b>切换书签</b><p>在当前编辑器的当前行打开或关闭书签。</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4956" /> - <location filename="../ViewManager/ViewManager.py" line="4943" /> + <location filename="../ViewManager/ViewManager.py" line="4966" /> + <location filename="../ViewManager/ViewManager.py" line="4953" /> <source>Next Bookmark</source> <translation>下一个书签</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4945" /> + <location filename="../ViewManager/ViewManager.py" line="4955" /> <source>&Next Bookmark</source> <translation>下一个书签(&N)</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4947" /> + <location filename="../ViewManager/ViewManager.py" line="4957" /> <source>Ctrl+PgDown</source> <comment>Bookmark|Next</comment> <translation>Ctrl+PgDown</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4959" /> + <location filename="../ViewManager/ViewManager.py" line="4969" /> <source><b>Next Bookmark</b><p>Go to next bookmark of the current editor.</p></source> <translation><b>下一个书签</b><p>跳转到当前编辑器的下一个书签处。</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4982" /> - <location filename="../ViewManager/ViewManager.py" line="4969" /> + <location filename="../ViewManager/ViewManager.py" line="4992" /> + <location filename="../ViewManager/ViewManager.py" line="4979" /> <source>Previous Bookmark</source> <translation>上一个书签</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4971" /> + <location filename="../ViewManager/ViewManager.py" line="4981" /> <source>&Previous Bookmark</source> <translation>上一个书签(&P)</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4973" /> + <location filename="../ViewManager/ViewManager.py" line="4983" /> <source>Ctrl+PgUp</source> <comment>Bookmark|Previous</comment> <translation>Ctrl+PgUp</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4985" /> + <location filename="../ViewManager/ViewManager.py" line="4995" /> <source><b>Previous Bookmark</b><p>Go to previous bookmark of the current editor.</p></source> <translation><b>上一个书签</b><p>跳转到当前编辑器的上一个书签处。</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5007" /> - <location filename="../ViewManager/ViewManager.py" line="4995" /> + <location filename="../ViewManager/ViewManager.py" line="5017" /> + <location filename="../ViewManager/ViewManager.py" line="5005" /> <source>Clear Bookmarks</source> <translation>清除书签</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4996" /> + <location filename="../ViewManager/ViewManager.py" line="5006" /> <source>&Clear Bookmarks</source> <translation>清除书签(&C)</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="4998" /> + <location filename="../ViewManager/ViewManager.py" line="5008" /> <source>Alt+Ctrl+C</source> <comment>Bookmark|Clear</comment> <translation>Alt+Ctrl+C</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5010" /> + <location filename="../ViewManager/ViewManager.py" line="5020" /> <source><b>Clear Bookmarks</b><p>Clear bookmarks of all editors.</p></source> <translation><b>清除书签</b><p>清除所有编辑器的书签。</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5029" /> - <location filename="../ViewManager/ViewManager.py" line="5020" /> + <location filename="../ViewManager/ViewManager.py" line="5039" /> + <location filename="../ViewManager/ViewManager.py" line="5030" /> <source>Goto Syntax Error</source> <translation>转到语法错误处</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5022" /> - <source>&Goto Syntax Error</source> - <translation>转到语法错误处(&G)</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="5032" /> + <source>&Goto Syntax Error</source> + <translation>转到语法错误处(&G)</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="5042" /> <source><b>Goto Syntax Error</b><p>Go to next syntax error of the current editor.</p></source> <translation><b>转到语法错误处</b><p>跳转到当前编辑器的下一个语法错误处。</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5050" /> - <location filename="../ViewManager/ViewManager.py" line="5042" /> + <location filename="../ViewManager/ViewManager.py" line="5060" /> + <location filename="../ViewManager/ViewManager.py" line="5052" /> <source>Clear Syntax Errors</source> <translation>清除语法错误</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5043" /> - <source>Clear &Syntax Errors</source> - <translation>清除语法错误(&S)</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="5053" /> + <source>Clear &Syntax Errors</source> + <translation>清除语法错误(&S)</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="5063" /> <source><b>Clear Syntax Errors</b><p>Clear syntax errors of all editors.</p></source> <translation><b>清除语法错误</b><p>清除所有编辑器的语法错误。</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5072" /> - <location filename="../ViewManager/ViewManager.py" line="5063" /> + <location filename="../ViewManager/ViewManager.py" line="5082" /> + <location filename="../ViewManager/ViewManager.py" line="5073" /> <source>Next warning message</source> <translation>下一个警告消息</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5065" /> - <source>&Next warning message</source> - <translation>下一个警告消息(&N)</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="5075" /> + <source>&Next warning message</source> + <translation>下一个警告消息(&N)</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="5085" /> <source><b>Next warning message</b><p>Go to next line of the current editor having a pyflakes warning.</p></source> <translation><b>下一个警告信息</b><p>跳转至当前编辑器中下一个出现 pyflakes 警告的行。</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5095" /> - <location filename="../ViewManager/ViewManager.py" line="5086" /> + <location filename="../ViewManager/ViewManager.py" line="5105" /> + <location filename="../ViewManager/ViewManager.py" line="5096" /> <source>Previous warning message</source> <translation>上一个警告消息</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5088" /> - <source>&Previous warning message</source> - <translation>上一个警告消息(&P)</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="5098" /> + <source>&Previous warning message</source> + <translation>上一个警告消息(&P)</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="5108" /> <source><b>Previous warning message</b><p>Go to previous line of the current editor having a pyflakes warning.</p></source> <translation><b>上一个警告信息</b><p>跳转至当前编辑器中上一个出现 pyflakes 警告的行。</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5117" /> - <location filename="../ViewManager/ViewManager.py" line="5109" /> + <location filename="../ViewManager/ViewManager.py" line="5127" /> + <location filename="../ViewManager/ViewManager.py" line="5119" /> <source>Clear Warning Messages</source> <translation>清空警告消息</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5110" /> - <source>Clear &Warning Messages</source> - <translation>清空警告消息(&W)</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="5120" /> + <source>Clear &Warning Messages</source> + <translation>清空警告消息(&W)</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="5130" /> <source><b>Clear Warning Messages</b><p>Clear pyflakes warning messages of all editors.</p></source> <translation><b>清空警告信息</b><p>在所有编辑器中清空 pyflakes 警告信息。</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5139" /> - <location filename="../ViewManager/ViewManager.py" line="5130" /> + <location filename="../ViewManager/ViewManager.py" line="5149" /> + <location filename="../ViewManager/ViewManager.py" line="5140" /> <source>Next uncovered line</source> <translation>下一个未覆盖行</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5132" /> - <source>&Next uncovered line</source> - <translation>下一个未覆盖行(&N)</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="5142" /> + <source>&Next uncovered line</source> + <translation>下一个未覆盖行(&N)</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="5152" /> <source><b>Next uncovered line</b><p>Go to next line of the current editor marked as not covered.</p></source> <translation><b>下一个未覆盖行</b><p>跳转到下一个当前编辑器标记为不覆盖的行。</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5162" /> - <location filename="../ViewManager/ViewManager.py" line="5153" /> + <location filename="../ViewManager/ViewManager.py" line="5172" /> + <location filename="../ViewManager/ViewManager.py" line="5163" /> <source>Previous uncovered line</source> <translation>上一个未覆盖行</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5155" /> - <source>&Previous uncovered line</source> - <translation>上一个未覆盖行(&P)</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="5165" /> + <source>&Previous uncovered line</source> + <translation>上一个未覆盖行(&P)</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="5175" /> <source><b>Previous uncovered line</b><p>Go to previous line of the current editor marked as not covered.</p></source> <translation><b>上一个未覆盖行</b><p>跳转到上一个编辑器标记为不覆盖的行。</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5185" /> - <location filename="../ViewManager/ViewManager.py" line="5176" /> + <location filename="../ViewManager/ViewManager.py" line="5195" /> + <location filename="../ViewManager/ViewManager.py" line="5186" /> <source>Next Task</source> <translation>下一个任务</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5178" /> - <source>&Next Task</source> - <translation>下一个任务(&N)</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="5188" /> + <source>&Next Task</source> + <translation>下一个任务(&N)</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="5198" /> <source><b>Next Task</b><p>Go to next line of the current editor having a task.</p></source> <translation><b>下一个任务</b><p>跳转到下一个包含任务的当前编辑器的行。</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5207" /> - <location filename="../ViewManager/ViewManager.py" line="5198" /> + <location filename="../ViewManager/ViewManager.py" line="5217" /> + <location filename="../ViewManager/ViewManager.py" line="5208" /> <source>Previous Task</source> <translation>上一个任务</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5200" /> - <source>&Previous Task</source> - <translation>上一个任务(&P)</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="5210" /> + <source>&Previous Task</source> + <translation>上一个任务(&P)</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="5220" /> <source><b>Previous Task</b><p>Go to previous line of the current editor having a task.</p></source> <translation><b>上一个任务</b><p>跳转到上一个包含任务的当前编辑器的行。</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5230" /> - <location filename="../ViewManager/ViewManager.py" line="5221" /> + <location filename="../ViewManager/ViewManager.py" line="5240" /> + <location filename="../ViewManager/ViewManager.py" line="5231" /> <source>Next Change</source> <translation type="unfinished">下一个更改</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5223" /> - <source>&Next Change</source> - <translation type="unfinished">&下一个更改</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="5233" /> + <source>&Next Change</source> + <translation type="unfinished">&下一个更改</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="5243" /> <source><b>Next Change</b><p>Go to next line of the current editor having a change marker.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5253" /> - <location filename="../ViewManager/ViewManager.py" line="5244" /> + <location filename="../ViewManager/ViewManager.py" line="5263" /> + <location filename="../ViewManager/ViewManager.py" line="5254" /> <source>Previous Change</source> <translation>上一个更改</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5246" /> - <source>&Previous Change</source> - <translation>上一个更改(&P)</translation> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="5256" /> + <source>&Previous Change</source> + <translation>上一个更改(&P)</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="5266" /> <source><b>Previous Change</b><p>Go to previous line of the current editor having a change marker.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5277" /> - <location filename="../ViewManager/ViewManager.py" line="5275" /> + <location filename="../ViewManager/ViewManager.py" line="5287" /> + <location filename="../ViewManager/ViewManager.py" line="5285" /> <source>&Bookmarks</source> <translation>书签(&B)</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5321" /> - <location filename="../ViewManager/ViewManager.py" line="5319" /> + <location filename="../ViewManager/ViewManager.py" line="5331" /> + <location filename="../ViewManager/ViewManager.py" line="5329" /> <source>Bookmarks</source> <translation>书签</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5355" /> + <location filename="../ViewManager/ViewManager.py" line="5365" /> <source>Check spelling</source> <translation>检查拼写</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5357" /> + <location filename="../ViewManager/ViewManager.py" line="5367" /> <source>Check &spelling...</source> <translation>检查拼写(&S)…</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5359" /> + <location filename="../ViewManager/ViewManager.py" line="5369" /> <source>Shift+F7</source> <comment>Spelling|Spell Check</comment> <translation>Shift+F7</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5368" /> + <location filename="../ViewManager/ViewManager.py" line="5378" /> <source>Perform spell check of current editor</source> <translation>对当前编辑器进行拼写检查</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5373" /> - <source><b>Check spelling</b><p>Perform a spell check of the current editor.</p></source> - <translation type="unfinished" /> - </message> - <message> <location filename="../ViewManager/ViewManager.py" line="5383" /> - <source>Automatic spell checking</source> - <translation>自动拼写检查</translation> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="5385" /> - <source>&Automatic spell checking</source> - <translation>自动拼写检查(&A)</translation> + <source><b>Check spelling</b><p>Perform a spell check of the current editor.</p></source> + <translation type="unfinished" /> </message> <message> <location filename="../ViewManager/ViewManager.py" line="5393" /> + <source>Automatic spell checking</source> + <translation>自动拼写检查</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="5395" /> + <source>&Automatic spell checking</source> + <translation>自动拼写检查(&A)</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="5403" /> <source>(De-)Activate automatic spell checking</source> <translation>(不)激活自动拼写检查</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5398" /> + <location filename="../ViewManager/ViewManager.py" line="5408" /> <source><b>Automatic spell checking</b><p>Activate or deactivate the automatic spell checking function of all editors.</p></source> <translation><b>自动拼写检查</b><p>激活或不激活所有编辑器的自动拼写检查功能。</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5432" /> + <location filename="../ViewManager/ViewManager.py" line="5442" /> <source>Edit Dictionary</source> <translation type="unfinished">编辑字典</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5435" /> + <location filename="../ViewManager/ViewManager.py" line="5445" /> <source>Project Word List</source> <translation type="unfinished">项目词汇表</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5439" /> + <location filename="../ViewManager/ViewManager.py" line="5449" /> <source>Project Exception List</source> <translation type="unfinished">项目异常列表</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5444" /> + <location filename="../ViewManager/ViewManager.py" line="5454" /> <source>User Word List</source> <translation type="unfinished">用户词汇表</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5448" /> + <location filename="../ViewManager/ViewManager.py" line="5458" /> <source>User Exception List</source> <translation type="unfinished">用户异常列表</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5469" /> - <location filename="../ViewManager/ViewManager.py" line="5467" /> + <location filename="../ViewManager/ViewManager.py" line="5479" /> + <location filename="../ViewManager/ViewManager.py" line="5477" /> <source>Spelling</source> <translation>拼写法</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5492" /> + <location filename="../ViewManager/ViewManager.py" line="5502" /> <source>Open Files</source> <translation type="unfinished">打开多个文件</translation> </message> <message> + <location filename="../ViewManager/ViewManager.py" line="5531" /> <location filename="../ViewManager/ViewManager.py" line="5521" /> - <location filename="../ViewManager/ViewManager.py" line="5511" /> <source>Open Remote Files</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5578" /> + <location filename="../ViewManager/ViewManager.py" line="5588" /> <source>File Modified</source> <translation>文件已改变</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5579" /> + <location filename="../ViewManager/ViewManager.py" line="5589" /> <source><p>The file <b>{0}</b> has unsaved changes.</p></source> <translation><p>文件 <b>{0}</b> 有未保存的更改。</p></translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6078" /> + <location filename="../ViewManager/ViewManager.py" line="6090" /> <source>Line: {0:5}</source> <translation>行:{0:5}</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6084" /> + <location filename="../ViewManager/ViewManager.py" line="6096" /> <source>Pos: {0:5}</source> <translation>列:{0:5}</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6104" /> + <location filename="../ViewManager/ViewManager.py" line="6116" /> <source>Language: {0}</source> <translation>语言:{0}</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6113" /> + <location filename="../ViewManager/ViewManager.py" line="6125" /> <source>EOL Mode: {0}</source> <translation>行尾模式:{0}</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6641" /> - <location filename="../ViewManager/ViewManager.py" line="6598" /> + <location filename="../ViewManager/ViewManager.py" line="6668" /> + <location filename="../ViewManager/ViewManager.py" line="6625" /> <source>&Clear</source> <translation>清除(&C)</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6635" /> + <location filename="../ViewManager/ViewManager.py" line="6662" /> <source>&Add</source> <translation>添加(&A)</translation> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6638" /> + <location filename="../ViewManager/ViewManager.py" line="6665" /> <source>&Edit...</source> <translation>编辑(&E)…</translation> </message> <message> + <location filename="../ViewManager/ViewManager.py" line="7735" /> + <location filename="../ViewManager/ViewManager.py" line="7721" /> + <location filename="../ViewManager/ViewManager.py" line="7689" /> + <source>Edit Spelling Dictionary</source> + <translation type="unfinished">编辑拼写字典</translation> + </message> + <message> + <location filename="../ViewManager/ViewManager.py" line="7692" /> + <source><p>The spelling dictionary file <b>{0}</b> could not be read.</p><p>Reason: {1}</p></source> + <translation type="unfinished" /> + </message> + <message> <location filename="../ViewManager/ViewManager.py" line="7708" /> - <location filename="../ViewManager/ViewManager.py" line="7694" /> - <location filename="../ViewManager/ViewManager.py" line="7662" /> - <source>Edit Spelling Dictionary</source> - <translation type="unfinished">编辑拼写字典</translation> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="7665" /> - <source><p>The spelling dictionary file <b>{0}</b> could not be read.</p><p>Reason: {1}</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../ViewManager/ViewManager.py" line="7681" /> <source>Editing {0}</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="7697" /> + <location filename="../ViewManager/ViewManager.py" line="7724" /> <source><p>The spelling dictionary file <b>{0}</b> could not be written.</p><p>Reason: {1}</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="7711" /> + <location filename="../ViewManager/ViewManager.py" line="7738" /> <source>The spelling dictionary was saved successfully.</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="5522" /> + <location filename="../ViewManager/ViewManager.py" line="5532" /> <source>You must be connected to a remote eric-ide server. Aborting...</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6820" /> + <location filename="../ViewManager/ViewManager.py" line="6847" /> <source>Clear Editor</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="6821" /> + <location filename="../ViewManager/ViewManager.py" line="6848" /> <source>Do you really want to delete all text of the current editor?</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="8241" /> - <location filename="../ViewManager/ViewManager.py" line="8224" /> + <location filename="../ViewManager/ViewManager.py" line="8268" /> + <location filename="../ViewManager/ViewManager.py" line="8251" /> <source>File System Watcher Error</source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="8225" /> + <location filename="../ViewManager/ViewManager.py" line="8252" /> <source><p>The operating system resources for file system watches are exhausted. This limit should be increased. On a Linux system you should <ul><li>sudo nano /etc/sysctl.conf</li><li>add to the bottom "fs.inotify.max_user_instances = 1024"</li><li>save and close the editor</li><li>sudo sysctl -p</li></ul></p><p>Error Message: {0}</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../ViewManager/ViewManager.py" line="8242" /> + <location filename="../ViewManager/ViewManager.py" line="8269" /> <source>The file system watcher reported an error with code <b>{0}</b>.</p><p>Error Message: {1}</p></source> <translation type="unfinished" /> </message> @@ -99465,54 +99478,54 @@ <context> <name>VirtualenvManager</name> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="317" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="319" /> <source>Add Virtual Environment</source> <translation type="unfinished" /> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="318" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="320" /> <source>A virtual environment named <b>{0}</b> exists already. Shall it be replaced?</source> <translation type="unfinished" /> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="355" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="357" /> <source>Change Virtual Environment</source> <translation type="unfinished" /> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="388" /> - <location filename="../VirtualEnv/VirtualenvManager.py" line="356" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="390" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="358" /> <source>A virtual environment named <b>{0}</b> does not exist. Aborting!</source> <translation type="unfinished" /> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="387" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="389" /> <source>Rename Virtual Environment</source> <translation type="unfinished" /> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="479" /> - <location filename="../VirtualEnv/VirtualenvManager.py" line="412" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="481" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="414" /> <source>{0} - {1}</source> <translation type="unfinished" /> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="419" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="421" /> <source>Delete Virtual Environments</source> <translation type="unfinished" /> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="420" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="422" /> <source>Do you really want to delete these virtual environments?</source> <translation type="unfinished" /> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="486" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="488" /> <source>Remove Virtual Environments</source> <translation type="unfinished" /> </message> <message> - <location filename="../VirtualEnv/VirtualenvManager.py" line="487" /> + <location filename="../VirtualEnv/VirtualenvManager.py" line="489" /> <source>Do you really want to remove these virtual environments?</source> <translation type="unfinished" /> </message> @@ -99520,7 +99533,7 @@ <context> <name>VirtualenvManagerDialog</name> <message> - <location filename="../VirtualEnv/VirtualenvManagerWidgets.py" line="442" /> + <location filename="../VirtualEnv/VirtualenvManagerWidgets.py" line="448" /> <source>Manage Virtual Environments</source> <translation type="unfinished" /> </message> @@ -99643,7 +99656,7 @@ <context> <name>VirtualenvManagerWindow</name> <message> - <location filename="../VirtualEnv/VirtualenvManagerWidgets.py" line="482" /> + <location filename="../VirtualEnv/VirtualenvManagerWidgets.py" line="488" /> <source>Manage Virtual Environments</source> <translation type="unfinished" /> </message>