Sun, 28 Mar 2021 18:51:58 +0200
MicroPython
- added option to select the baud rate for flashing ESP32 and ESP8266 boards
--- a/docs/changelog Sun Mar 28 18:51:40 2021 +0200 +++ b/docs/changelog Sun Mar 28 18:51:58 2021 +0200 @@ -1,5 +1,10 @@ Change Log ---------- +Version 21.5: +- bug fixes +- MicroPython + -- added option to select the baud rate for flashing ESP32 and ESP8266 boards + Version 21.4: - bug fixes - Code Style Checker
--- a/eric6/Documentation/Source/eric6.MicroPython.EspFirmwareSelectionDialog.html Sun Mar 28 18:51:40 2021 +0200 +++ b/eric6/Documentation/Source/eric6.MicroPython.EspFirmwareSelectionDialog.html Sun Mar 28 18:51:58 2021 +0200 @@ -133,13 +133,14 @@ <dt>Return:</dt> <dd> tuple containing the selected chip type, the path of the - firmware file, the flash mode and the flash address + firmware file, the baud rate, the flash mode and the flash + address </dd> </dl> <dl> <dt>Return Type:</dt> <dd> -tuple of (str, str, str, str) +tuple of (str, str, str, str, str) </dd> </dl> <a NAME="EspFirmwareSelectionDialog.on_espComboBox_currentTextChanged" ID="EspFirmwareSelectionDialog.on_espComboBox_currentTextChanged"></a>
--- a/eric6/MicroPython/EspDevices.py Sun Mar 28 18:51:40 2021 +0200 +++ b/eric6/MicroPython/EspDevices.py Sun Mar 28 18:51:58 2021 +0200 @@ -201,7 +201,7 @@ from .EspFirmwareSelectionDialog import EspFirmwareSelectionDialog dlg = EspFirmwareSelectionDialog() if dlg.exec() == QDialog.DialogCode.Accepted: - chip, firmware, flashMode, _ = dlg.getData() + chip, firmware, baudRate, flashMode, _ = dlg.getData() if chip == "esp8266": flashAddress = "0x0000" elif chip == "esp32": @@ -216,6 +216,10 @@ "--port", self.microPython.getCurrentPort(), "write_flash", ] + if baudRate != "115200": + flashArgs.extend([ + "--baud", baudRate + ]) if flashMode: flashArgs.extend([ "--flash_mode", flashMode @@ -239,7 +243,7 @@ from .EspFirmwareSelectionDialog import EspFirmwareSelectionDialog dlg = EspFirmwareSelectionDialog(addon=True) if dlg.exec() == QDialog.DialogCode.Accepted: - chip, firmware, flashMode, flashAddress = dlg.getData() + chip, firmware, baudRate, flashMode, flashAddress = dlg.getData() flashArgs = [ "-u", "-m", "esptool", @@ -247,6 +251,10 @@ "--port", self.microPython.getCurrentPort(), "write_flash", ] + if baudRate != "115200": + flashArgs.extend([ + "--baud", baudRate + ]) if flashMode: flashArgs.extend([ "--flash_mode", flashMode
--- a/eric6/MicroPython/EspFirmwareSelectionDialog.py Sun Mar 28 18:51:40 2021 +0200 +++ b/eric6/MicroPython/EspFirmwareSelectionDialog.py Sun Mar 28 18:51:58 2021 +0200 @@ -52,6 +52,10 @@ self.espComboBox.addItems(["", "ESP32", "ESP8266"]) + self.baudRateComboBox.addItems([ + "74.880", "115.200", "230.400", "460.800", "921.600", "1.500.000"]) + self.baudRateComboBox.setCurrentIndex(1) + for text, mode in self.FlashModes: self.modeComboBox.addItem(text, mode) @@ -104,8 +108,9 @@ Public method to get the entered data. @return tuple containing the selected chip type, the path of the - firmware file, the flash mode and the flash address - @rtype tuple of (str, str, str, str) + firmware file, the baud rate, the flash mode and the flash + address + @rtype tuple of (str, str, str, str, str) """ if self.__addon: address = self.addressEdit.text() @@ -115,6 +120,7 @@ return ( self.espComboBox.currentText().lower(), self.firmwarePicker.text(), + self.baudRateComboBox.currentText.replace(".", ""), self.modeComboBox.currentData(), address, )
--- a/eric6/MicroPython/EspFirmwareSelectionDialog.ui Sun Mar 28 18:51:40 2021 +0200 +++ b/eric6/MicroPython/EspFirmwareSelectionDialog.ui Sun Mar 28 18:51:58 2021 +0200 @@ -7,7 +7,7 @@ <x>0</x> <y>0</y> <width>500</width> - <height>140</height> + <height>198</height> </rect> </property> <property name="windowTitle"> @@ -67,6 +67,33 @@ </widget> </item> <item row="2" column="0"> + <widget class="QLabel" name="label_5"> + <property name="text"> + <string>Baud Rate:</string> + </property> + </widget> + </item> + <item row="2" column="1"> + <widget class="QComboBox" name="baudRateComboBox"> + <property name="toolTip"> + <string>Select the baud rate to be used foor flashing (default: 115.200 bps)</string> + </property> + </widget> + </item> + <item row="2" column="2"> + <spacer name="horizontalSpacer_2"> + <property name="orientation"> + <enum>Qt::Horizontal</enum> + </property> + <property name="sizeHint" stdset="0"> + <size> + <width>298</width> + <height>20</height> + </size> + </property> + </spacer> + </item> + <item row="3" column="0"> <widget class="QLabel" name="label_3"> <property name="toolTip"> <string/> @@ -76,28 +103,28 @@ </property> </widget> </item> - <item row="2" column="1"> + <item row="3" column="1"> <widget class="QComboBox" name="modeComboBox"> <property name="toolTip"> <string>Select the flash mode</string> </property> </widget> </item> - <item row="2" column="2"> + <item row="3" column="2"> <widget class="QLabel" name="label_4"> <property name="text"> <string>Leave empty to use the default mode.</string> </property> </widget> </item> - <item row="3" column="0"> + <item row="4" column="0"> <widget class="QLabel" name="addressLabel"> <property name="text"> <string>Address:</string> </property> </widget> </item> - <item row="3" column="1" colspan="2"> + <item row="4" column="1" colspan="2"> <widget class="E5ClearableLineEdit" name="addressEdit"> <property name="toolTip"> <string>Enter the flash addres in the hexadecimal form</string> @@ -137,6 +164,7 @@ <tabstops> <tabstop>espComboBox</tabstop> <tabstop>firmwarePicker</tabstop> + <tabstop>baudRateComboBox</tabstop> <tabstop>modeComboBox</tabstop> <tabstop>addressEdit</tabstop> </tabstops>
--- a/eric6/i18n/eric6_cs.ts Sun Mar 28 18:51:40 2021 +0200 +++ b/eric6/i18n/eric6_cs.ts Sun Mar 28 18:51:58 2021 +0200 @@ -1617,37 +1617,37 @@ <context> <name>BackgroundService</name> <message> - <location filename="../Utilities/BackgroundService.py" line="135"/> + <location filename="../Utilities/BackgroundService.py" line="138"/> <source>{0} not configured.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Utilities/BackgroundService.py" line="190"/> + <location filename="../Utilities/BackgroundService.py" line="193"/> <source>Restart background client?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Utilities/BackgroundService.py" line="445"/> + <location filename="../Utilities/BackgroundService.py" line="448"/> <source>Eric's background client disconnected because of an unknown reason.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Utilities/BackgroundService.py" line="451"/> + <location filename="../Utilities/BackgroundService.py" line="454"/> <source>Background client disconnected.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Utilities/BackgroundService.py" line="190"/> + <location filename="../Utilities/BackgroundService.py" line="193"/> <source><p>The background client for <b>{0}</b> has stopped due to an exception. It's used by various plug-ins like the different checkers.</p><p>Select<ul><li><b>'Yes'</b> to restart the client, but abort the last job</li><li><b>'Retry'</b> to restart the client and the last job</li><li><b>'No'</b> to leave the client off.</li></ul></p><p>Note: The client can be restarted by opening and accepting the preferences dialog or reloading/changing the project.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Utilities/BackgroundService.py" line="451"/> + <location filename="../Utilities/BackgroundService.py" line="454"/> <source>The background client for <b>{0}</b> disconnected because of an unknown reason.<br>Should it be restarted?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Utilities/BackgroundService.py" line="216"/> + <location filename="../Utilities/BackgroundService.py" line="219"/> <source>An error in Eric's background client stopped the service.</source> <translation type="unfinished"></translation> </message> @@ -3553,7 +3553,7 @@ <context> <name>CodeStyleChecker</name> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="577"/> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="578"/> <source>No message defined for code '{0}'.</source> <translation type="unfinished"></translation> </message> @@ -9966,7 +9966,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../E5Gui/E5ErrorMessageFilterDialog.py" line="35"/> + <location filename="../E5Gui/E5ErrorMessageFilterDialog.py" line="32"/> <source><b>Error Message Filters</b><p>This list shows the configured message filters used to suppress error messages from within Qt.</p><p>A default list of message filters is added to this user list.</p></source> <translation type="unfinished"></translation> </message> @@ -12165,7 +12165,7 @@ <translation>Použít Pygments lexer.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7991"/> + <location filename="../QScintilla/Editor.py" line="7992"/> <source>Check spelling...</source> <translation>Zatrhnout kontrolu...</translation> </message> @@ -12175,12 +12175,12 @@ <translation>Zatrhnout výběr kontroly...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7994"/> + <location filename="../QScintilla/Editor.py" line="7995"/> <source>Add to dictionary</source> <translation>Přidat do slovníku</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7996"/> + <location filename="../QScintilla/Editor.py" line="7997"/> <source>Ignore All</source> <translation>Ignorovat vše</translation> </message> @@ -12315,12 +12315,12 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8412"/> + <location filename="../QScintilla/Editor.py" line="8413"/> <source>Sort Lines</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8412"/> + <location filename="../QScintilla/Editor.py" line="8413"/> <source>The selection contains illegal data for a numerical sort.</source> <translation type="unfinished"></translation> </message> @@ -12395,12 +12395,12 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8501"/> + <location filename="../QScintilla/Editor.py" line="8502"/> <source>Register Mouse Click Handler</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8501"/> + <location filename="../QScintilla/Editor.py" line="8502"/> <source>A mouse click handler for "{0}" was already registered by "{1}". Aborting request by "{2}"...</source> <translation type="unfinished"></translation> </message> @@ -12430,12 +12430,12 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8622"/> + <location filename="../QScintilla/Editor.py" line="8623"/> <source>EditorConfig Properties</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8622"/> + <location filename="../QScintilla/Editor.py" line="8623"/> <source><p>The EditorConfig properties for file <b>{0}</b> could not be loaded.</p></source> <translation type="unfinished"></translation> </message> @@ -12480,7 +12480,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8816"/> + <location filename="../QScintilla/Editor.py" line="8817"/> <source>Generate Docstring</source> <translation type="unfinished"></translation> </message> @@ -18381,12 +18381,12 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/EspDevices.py" line="227"/> + <location filename="../MicroPython/EspDevices.py" line="231"/> <source>Flash MicroPython Firmware</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/EspDevices.py" line="258"/> + <location filename="../MicroPython/EspDevices.py" line="266"/> <source>Flash Additional Firmware</source> <translation type="unfinished"></translation> </message> @@ -18411,7 +18411,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/EspDevices.py" line="319"/> + <location filename="../MicroPython/EspDevices.py" line="327"/> <source>'esptool write_flash' Output</source> <translation type="unfinished"></translation> </message> @@ -18421,47 +18421,47 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/EspDevices.py" line="285"/> + <location filename="../MicroPython/EspDevices.py" line="293"/> <source>Backup Firmware</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/EspDevices.py" line="319"/> + <location filename="../MicroPython/EspDevices.py" line="327"/> <source>Restore Firmware</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/EspDevices.py" line="337"/> + <location filename="../MicroPython/EspDevices.py" line="345"/> <source>Show Chip ID</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/EspDevices.py" line="354"/> + <location filename="../MicroPython/EspDevices.py" line="362"/> <source>Show Flash ID</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/EspDevices.py" line="371"/> + <location filename="../MicroPython/EspDevices.py" line="379"/> <source>Show MAC Address</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/EspDevices.py" line="285"/> + <location filename="../MicroPython/EspDevices.py" line="293"/> <source>'esptool read_flash' Output</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/EspDevices.py" line="337"/> + <location filename="../MicroPython/EspDevices.py" line="345"/> <source>'esptool chip_id' Output</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/EspDevices.py" line="354"/> + <location filename="../MicroPython/EspDevices.py" line="362"/> <source>'esptool flash_id' Output</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/EspDevices.py" line="371"/> + <location filename="../MicroPython/EspDevices.py" line="379"/> <source>'esptool read_mac' Output</source> <translation type="unfinished"></translation> </message> @@ -18494,12 +18494,12 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="96"/> + <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="123"/> <source>Address:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="103"/> + <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="130"/> <source>Enter the flash addres in the hexadecimal form</source> <translation type="unfinished"></translation> </message> @@ -18509,20 +18509,30 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="75"/> + <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="102"/> <source>Flash Mode:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="82"/> + <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="109"/> <source>Select the flash mode</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="89"/> + <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="116"/> <source>Leave empty to use the default mode.</source> <translation type="unfinished"></translation> </message> + <message> + <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="72"/> + <source>Baud Rate:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="79"/> + <source>Select the baud rate to be used foor flashing (default: 115.200 bps)</source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>ExceptionLogger</name> @@ -48406,599 +48416,599 @@ <context> <name>MiniEditor</name> <message> - <location filename="../QScintilla/MiniEditor.py" line="561"/> + <location filename="../QScintilla/MiniEditor.py" line="562"/> <source>New</source> <translation>Nový</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="561"/> + <location filename="../QScintilla/MiniEditor.py" line="562"/> <source>&New</source> <translation>&Nový</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="561"/> + <location filename="../QScintilla/MiniEditor.py" line="562"/> <source>Ctrl+N</source> <comment>File|New</comment> <translation></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="567"/> - <source>Open an empty editor window</source> - <translation>Otevřít prázdné editační okno</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="568"/> + <source>Open an empty editor window</source> + <translation>Otevřít prázdné editační okno</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="569"/> <source><b>New</b><p>An empty editor window will be created.</p></source> <translation><b>Nový</b><p>Bude otevřeno prázdné editační okno.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="575"/> + <location filename="../QScintilla/MiniEditor.py" line="576"/> <source>Open</source> <translation>Otevřít</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="575"/> + <location filename="../QScintilla/MiniEditor.py" line="576"/> <source>&Open...</source> <translation>&Otevřít...</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="575"/> + <location filename="../QScintilla/MiniEditor.py" line="576"/> <source>Ctrl+O</source> <comment>File|Open</comment> <translation></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="581"/> - <source>Open a file</source> - <translation>Otevřít soubor</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="582"/> + <source>Open a file</source> + <translation>Otevřít soubor</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="583"/> <source><b>Open a file</b><p>You will be asked for the name of a file to be opened.</p></source> <translation><b>Otevřít soubor</b><p>Budete dotázáni na jméno souboru, který se má otevřít do editačního okna.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="589"/> + <location filename="../QScintilla/MiniEditor.py" line="590"/> <source>Save</source> <translation>Uložit</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="589"/> + <location filename="../QScintilla/MiniEditor.py" line="590"/> <source>&Save</source> <translation>&Uložit</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="589"/> + <location filename="../QScintilla/MiniEditor.py" line="590"/> <source>Ctrl+S</source> <comment>File|Save</comment> <translation></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="595"/> - <source>Save the current file</source> - <translation>Uložit aktuální soubor</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="596"/> + <source>Save the current file</source> + <translation>Uložit aktuální soubor</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="597"/> <source><b>Save File</b><p>Save the contents of current editor window.</p></source> <translation><b>Uložit soubor</b><p>Uložit obsah aktuálního editačního okna.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="603"/> + <location filename="../QScintilla/MiniEditor.py" line="604"/> <source>Save as</source> <translation>Uložit jako</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="603"/> + <location filename="../QScintilla/MiniEditor.py" line="604"/> <source>Save &as...</source> <translation>Uložit j&ako...</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="603"/> + <location filename="../QScintilla/MiniEditor.py" line="604"/> <source>Shift+Ctrl+S</source> <comment>File|Save As</comment> <translation></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="609"/> + <location filename="../QScintilla/MiniEditor.py" line="610"/> <source>Save the current file to a new one</source> <translation>Uložit aktuální soubor do nového</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="611"/> + <location filename="../QScintilla/MiniEditor.py" line="612"/> <source><b>Save File as</b><p>Save the contents of current editor window to a new file. The file can be entered in a file selection dialog.</p></source> <translation><b>Uložit soubor jako</b><p>Uložit obsah aktuálního editačního okna do nového souboru. Název souboru bude zadán v dialogu výběru souboru.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="634"/> + <location filename="../QScintilla/MiniEditor.py" line="635"/> <source>Close</source> <translation>Zavřít</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="634"/> + <location filename="../QScintilla/MiniEditor.py" line="635"/> <source>&Close</source> <translation>&Zavřít</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="634"/> + <location filename="../QScintilla/MiniEditor.py" line="635"/> <source>Ctrl+W</source> <comment>File|Close</comment> <translation></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="640"/> - <source>Close the editor window</source> - <translation>Zavřít editační okno</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="641"/> + <source>Close the editor window</source> + <translation>Zavřít editační okno</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="642"/> <source><b>Close Window</b><p>Close the current window.</p></source> <translation><b>Zavřít okno</b><p>Zavřít aktuální okno.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="680"/> + <location filename="../QScintilla/MiniEditor.py" line="681"/> <source>Undo</source> <translation>Vrátit</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="680"/> + <location filename="../QScintilla/MiniEditor.py" line="681"/> <source>&Undo</source> <translation>&Vrátit</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="680"/> + <location filename="../QScintilla/MiniEditor.py" line="681"/> <source>Ctrl+Z</source> <comment>Edit|Undo</comment> <translation></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="680"/> + <location filename="../QScintilla/MiniEditor.py" line="681"/> <source>Alt+Backspace</source> <comment>Edit|Undo</comment> <translation></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="687"/> - <source>Undo the last change</source> - <translation>Vrátit poslední změnu</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="688"/> + <source>Undo the last change</source> + <translation>Vrátit poslední změnu</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="689"/> <source><b>Undo</b><p>Undo the last change done in the current editor.</p></source> <translation><b>Undo</b><p>Vrátit poslední změnu v aktuálním editačním okně.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="695"/> + <location filename="../QScintilla/MiniEditor.py" line="696"/> <source>Redo</source> <translation>Znovu použít</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="695"/> + <location filename="../QScintilla/MiniEditor.py" line="696"/> <source>&Redo</source> <translation>&Znovu použít</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="695"/> + <location filename="../QScintilla/MiniEditor.py" line="696"/> <source>Ctrl+Shift+Z</source> <comment>Edit|Redo</comment> <translation></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="701"/> - <source>Redo the last change</source> - <translation>Znovu použít poslední změnu</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="702"/> + <source>Redo the last change</source> + <translation>Znovu použít poslední změnu</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="703"/> <source><b>Redo</b><p>Redo the last change done in the current editor.</p></source> <translation><b>Redo</b><p>Znovu použít poslení změnu, která byla provedena v aktuálním editačním okně.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="709"/> + <location filename="../QScintilla/MiniEditor.py" line="710"/> <source>Cut</source> <translation>Vyjmout</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="709"/> + <location filename="../QScintilla/MiniEditor.py" line="710"/> <source>Cu&t</source> <translation>Vyjmou&t</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="709"/> + <location filename="../QScintilla/MiniEditor.py" line="710"/> <source>Ctrl+X</source> <comment>Edit|Cut</comment> <translation></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="709"/> + <location filename="../QScintilla/MiniEditor.py" line="710"/> <source>Shift+Del</source> <comment>Edit|Cut</comment> <translation></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="716"/> - <source>Cut the selection</source> - <translation>Vyjmout výběr</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="717"/> + <source>Cut the selection</source> + <translation>Vyjmout výběr</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="718"/> <source><b>Cut</b><p>Cut the selected text of the current editor to the clipboard.</p></source> <translation><b>Vyjmout</b><p>Vyjme vybraný text z aktuálního editačního okna a vloží jej do schránky.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="725"/> + <location filename="../QScintilla/MiniEditor.py" line="726"/> <source>Copy</source> <translation>Kopírovat</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="725"/> + <location filename="../QScintilla/MiniEditor.py" line="726"/> <source>&Copy</source> <translation>&Kopírovat</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="725"/> + <location filename="../QScintilla/MiniEditor.py" line="726"/> <source>Ctrl+C</source> <comment>Edit|Copy</comment> <translation></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="725"/> + <location filename="../QScintilla/MiniEditor.py" line="726"/> <source>Ctrl+Ins</source> <comment>Edit|Copy</comment> <translation></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="732"/> - <source>Copy the selection</source> - <translation>Kopírovat výběr</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="733"/> + <source>Copy the selection</source> + <translation>Kopírovat výběr</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="734"/> <source><b>Copy</b><p>Copy the selected text of the current editor to the clipboard.</p></source> <translation><b>Kopírovat</b><p>Zkopíruje vybraný text v aktuálním editačním okně a uloží jej do schránky.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="741"/> + <location filename="../QScintilla/MiniEditor.py" line="742"/> <source>Paste</source> <translation>Vložit</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="741"/> + <location filename="../QScintilla/MiniEditor.py" line="742"/> <source>&Paste</source> <translation>V&ložit</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="741"/> + <location filename="../QScintilla/MiniEditor.py" line="742"/> <source>Ctrl+V</source> <comment>Edit|Paste</comment> <translation></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="741"/> + <location filename="../QScintilla/MiniEditor.py" line="742"/> <source>Shift+Ins</source> <comment>Edit|Paste</comment> <translation></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="748"/> + <location filename="../QScintilla/MiniEditor.py" line="749"/> <source>Paste the last cut/copied text</source> <translation>Vložit text ze schránky</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="750"/> + <location filename="../QScintilla/MiniEditor.py" line="751"/> <source><b>Paste</b><p>Paste the last cut/copied text from the clipboard to the current editor.</p></source> <translation><b>Vložit</b><p>Vloží text, který byl uložen do schránky při předchozím kroku Vyjmout nebo Kopírovat.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="758"/> + <location filename="../QScintilla/MiniEditor.py" line="759"/> <source>Clear</source> <translation>Vyčistit</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="758"/> + <location filename="../QScintilla/MiniEditor.py" line="759"/> <source>Cl&ear</source> <translation>Vyči&stit</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="758"/> + <location filename="../QScintilla/MiniEditor.py" line="759"/> <source>Alt+Shift+C</source> <comment>Edit|Clear</comment> <translation></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="765"/> - <source>Clear all text</source> - <translation>Vyčistit všechen text</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="766"/> + <source>Clear all text</source> + <translation>Vyčistit všechen text</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="767"/> <source><b>Clear</b><p>Delete all text of the current editor.</p></source> <translation><b>Vyčistit</b><p>Smazat všechnen text v aktuálním editoru.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2373"/> + <location filename="../QScintilla/MiniEditor.py" line="2374"/> <source>About</source> <translation>O aplikaci</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2373"/> + <location filename="../QScintilla/MiniEditor.py" line="2374"/> <source>&About</source> <translation>O &aplikaci</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2377"/> + <location filename="../QScintilla/MiniEditor.py" line="2378"/> <source>Display information about this software</source> <translation>Zobrazit informace a tomto software</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2379"/> + <location filename="../QScintilla/MiniEditor.py" line="2380"/> <source><b>About</b><p>Display some information about this software.</p></source> <translation><b>O aplikaci</b><p>Zobrazí se informace o tomto software.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2385"/> + <location filename="../QScintilla/MiniEditor.py" line="2386"/> <source>About Qt</source> <translation>O Qt</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2385"/> + <location filename="../QScintilla/MiniEditor.py" line="2386"/> <source>About &Qt</source> <translation>O &Qt</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2389"/> + <location filename="../QScintilla/MiniEditor.py" line="2390"/> <source>Display information about the Qt toolkit</source> <translation>Zobrazit informace o Qt toolkitu</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2391"/> + <location filename="../QScintilla/MiniEditor.py" line="2392"/> <source><b>About Qt</b><p>Display some information about the Qt toolkit.</p></source> <translation><b>O Qt</b><p>Zobrazit informace o Qt toolkitu.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2421"/> + <location filename="../QScintilla/MiniEditor.py" line="2422"/> <source>&File</source> <translation>S&oubor</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2433"/> + <location filename="../QScintilla/MiniEditor.py" line="2434"/> <source>&Edit</source> <translation>&Edit</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2459"/> + <location filename="../QScintilla/MiniEditor.py" line="2460"/> <source>&Help</source> <translation>&Nápověda</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2536"/> + <location filename="../QScintilla/MiniEditor.py" line="2537"/> <source><p>This part of the status bar displays the line number of the editor.</p></source> <translation><p>Tato část status baru zobrazuje číslo řádku v editoru.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2543"/> + <location filename="../QScintilla/MiniEditor.py" line="2544"/> <source><p>This part of the status bar displays the cursor position of the editor.</p></source> <translation><p>Tato část status baru zobrazuje pozici kurzoru v editoru.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2560"/> + <location filename="../QScintilla/MiniEditor.py" line="2561"/> <source>Ready</source> <translation>Hotovo</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2642"/> + <location filename="../QScintilla/MiniEditor.py" line="2643"/> <source>File loaded</source> <translation>Soubor načten</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3089"/> + <location filename="../QScintilla/MiniEditor.py" line="3090"/> <source>Untitled</source> <translation>Beze jména</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2757"/> + <location filename="../QScintilla/MiniEditor.py" line="2758"/> <source>Mini Editor</source> <translation></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3130"/> - <source>Select all</source> - <translation>Vybrat vše</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="3131"/> + <source>Select all</source> + <translation>Vybrat vše</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="3132"/> <source>Deselect all</source> <translation>Zrušit celý výběr</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3145"/> + <location filename="../QScintilla/MiniEditor.py" line="3146"/> <source>Languages</source> <translation>Jazyky</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3148"/> + <location filename="../QScintilla/MiniEditor.py" line="3149"/> <source>No Language</source> <translation>Žádný jazyk</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2614"/> + <location filename="../QScintilla/MiniEditor.py" line="2615"/> <source>Open File</source> <translation>Otevřít soubor</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2728"/> + <location filename="../QScintilla/MiniEditor.py" line="2729"/> <source>File saved</source> <translation>Soubor uložen</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2529"/> + <location filename="../QScintilla/MiniEditor.py" line="2530"/> <source><p>This part of the status bar displays an indication of the editors files writability.</p></source> <translation><p>Tato část statusbaru zobrazuje indikátor práva zápisu editoru do souboru.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2398"/> + <location filename="../QScintilla/MiniEditor.py" line="2399"/> <source>What's This?</source> <translation>Co je to?</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2398"/> + <location filename="../QScintilla/MiniEditor.py" line="2399"/> <source>&What's This?</source> <translation>&Co je to?</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2398"/> + <location filename="../QScintilla/MiniEditor.py" line="2399"/> <source>Shift+F1</source> <comment>Help|What's This?'</comment> <translation></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2404"/> - <source>Context sensitive help</source> - <translation>Kontextově senzitivní nápověda</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="2405"/> + <source>Context sensitive help</source> + <translation>Kontextově senzitivní nápověda</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="2406"/> <source><b>Display context sensitive help</b><p>In What's This? mode, the mouse cursor shows an arrow with a question mark, and you can click on the interface elements to get a short description of what they do and how to use them. In dialogs, this feature can be accessed using the context help button in the titlebar.</p></source> <translation><b>Zobrazit kontextově senzitivní nápovědu</b><p>V režimu "Co je to?" se nad různými prvky aplikace u kurzoru zobrazí otazník. Když pak kliknete na tyto prvky, zobrazí se krátký popis co daný prvek znamená a jak jej použít. V dialogových oknech se tato funkce spustí tlačítkem kontextové nápovědy na horní liště.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2471"/> + <location filename="../QScintilla/MiniEditor.py" line="2472"/> <source>File</source> <translation>Soubor</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2484"/> + <location filename="../QScintilla/MiniEditor.py" line="2485"/> <source>Edit</source> <translation>Editovat</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2494"/> + <location filename="../QScintilla/MiniEditor.py" line="2495"/> <source>Find</source> <translation>Hledat</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2508"/> + <location filename="../QScintilla/MiniEditor.py" line="2509"/> <source>Help</source> <translation>Nápověda</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="648"/> + <location filename="../QScintilla/MiniEditor.py" line="649"/> <source>Print</source> <translation>Tisk</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="648"/> + <location filename="../QScintilla/MiniEditor.py" line="649"/> <source>&Print</source> <translation>&Tisk</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="648"/> + <location filename="../QScintilla/MiniEditor.py" line="649"/> <source>Ctrl+P</source> <comment>File|Print</comment> <translation></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="654"/> - <source>Print the current file</source> - <translation>Tisk aktuálního souboru</translation> - </message> - <message> - <location filename="../QScintilla/MiniEditor.py" line="3049"/> - <source>Printing...</source> - <translation>Tisk...</translation> - </message> - <message> - <location filename="../QScintilla/MiniEditor.py" line="3070"/> - <source>Printing completed</source> - <translation>Tisk je hotov</translation> - </message> - <message> - <location filename="../QScintilla/MiniEditor.py" line="3072"/> - <source>Error while printing</source> - <translation>Chyba během tisku</translation> - </message> - <message> - <location filename="../QScintilla/MiniEditor.py" line="3075"/> - <source>Printing aborted</source> - <translation>Tisk byl zrušen</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="655"/> + <source>Print the current file</source> + <translation>Tisk aktuálního souboru</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="3050"/> + <source>Printing...</source> + <translation>Tisk...</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="3071"/> + <source>Printing completed</source> + <translation>Tisk je hotov</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="3073"/> + <source>Error while printing</source> + <translation>Chyba během tisku</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="3076"/> + <source>Printing aborted</source> + <translation>Tisk byl zrušen</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="656"/> <source><b>Print File</b><p>Print the contents of the current file.</p></source> <translation><b>Tisk souboru</b><p>Tisk obsahu aktuálního souboru.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="662"/> + <location filename="../QScintilla/MiniEditor.py" line="663"/> <source>Print Preview</source> <translation>Náhled tisku</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="667"/> + <location filename="../QScintilla/MiniEditor.py" line="668"/> <source>Print preview of the current file</source> <translation>Náhled tisku aktuálního souboru</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="669"/> + <location filename="../QScintilla/MiniEditor.py" line="670"/> <source><b>Print Preview</b><p>Print preview of the current file.</p></source> <translation><b>Náhkled tisku</b><p>Náhkled tisku aktuálního souboru.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3172"/> + <location filename="../QScintilla/MiniEditor.py" line="3173"/> <source>Guessed</source> <translation>Odhadem</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3194"/> + <location filename="../QScintilla/MiniEditor.py" line="3195"/> <source>Alternatives</source> <translation>Alternativy</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3218"/> + <location filename="../QScintilla/MiniEditor.py" line="3219"/> <source>Pygments Lexer</source> <translation>Pygments Lexer</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3218"/> + <location filename="../QScintilla/MiniEditor.py" line="3219"/> <source>Select the Pygments lexer to apply.</source> <translation>Použít Pygments lexer.</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="483"/> + <location filename="../QScintilla/MiniEditor.py" line="484"/> <source>Line: {0:5}</source> <translation>Řádek: {0:5}</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="487"/> + <location filename="../QScintilla/MiniEditor.py" line="488"/> <source>Pos: {0:5}</source> <translation>Poz: {0:5}</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2614"/> + <location filename="../QScintilla/MiniEditor.py" line="2615"/> <source><p>The file <b>{0}</b> could not be opened.</p><p>Reason: {1}</p></source> <translation><p>Soubor <b>{0}</b> nelze otevřít.<br />Důvod: {1}</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2721"/> + <location filename="../QScintilla/MiniEditor.py" line="2722"/> <source>Save File</source> <translation>Uložit soubor</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2721"/> + <location filename="../QScintilla/MiniEditor.py" line="2722"/> <source><p>The file <b>{0}</b> could not be saved.<br/>Reason: {1}</p></source> <translation><p>Soubor <b>{0}</b> nelze uložit.<br />Důvod: {1}</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2757"/> + <location filename="../QScintilla/MiniEditor.py" line="2758"/> <source>{0}[*] - {1}</source> <translation></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3190"/> + <location filename="../QScintilla/MiniEditor.py" line="3191"/> <source>Alternatives ({0})</source> <translation>Alternativy ({0})</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2587"/> + <location filename="../QScintilla/MiniEditor.py" line="2588"/> <source>The document has unsaved changes.</source> <translation type="unfinished"></translation> </message> @@ -49018,77 +49028,77 @@ <translation type="obsolete">eric5 Mini Editor {6 ?}</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="619"/> + <location filename="../QScintilla/MiniEditor.py" line="620"/> <source>Save Copy</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="619"/> + <location filename="../QScintilla/MiniEditor.py" line="620"/> <source>Save &Copy...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="624"/> + <location filename="../QScintilla/MiniEditor.py" line="625"/> <source>Save a copy of the current file</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="626"/> + <location filename="../QScintilla/MiniEditor.py" line="627"/> <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"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3735"/> + <location filename="../QScintilla/MiniEditor.py" line="3736"/> <source>EditorConfig Properties</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3735"/> + <location filename="../QScintilla/MiniEditor.py" line="3736"/> <source><p>The EditorConfig properties for file <b>{0}</b> could not be loaded.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2740"/> + <location filename="../QScintilla/MiniEditor.py" line="2741"/> <source>[*] - {0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="502"/> + <location filename="../QScintilla/MiniEditor.py" line="503"/> <source>Language: {0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2451"/> + <location filename="../QScintilla/MiniEditor.py" line="2452"/> <source>&View</source> <translation type="unfinished">Poh&led</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2501"/> + <location filename="../QScintilla/MiniEditor.py" line="2502"/> <source>View</source> <translation type="unfinished">Pohled</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2521"/> + <location filename="../QScintilla/MiniEditor.py" line="2522"/> <source><p>This part of the status bar displays the editor language.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2554"/> + <location filename="../QScintilla/MiniEditor.py" line="2555"/> <source><p>This part of the status bar allows zooming the editor.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="413"/> + <location filename="../QScintilla/MiniEditor.py" line="414"/> <source>About eric Mini Editor</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="413"/> + <location filename="../QScintilla/MiniEditor.py" line="414"/> <source>The eric Mini Editor is an editor component based on QScintilla. It may be used for simple editing tasks, that don't need the power of a full blown editor.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2587"/> + <location filename="../QScintilla/MiniEditor.py" line="2588"/> <source>eric Mini Editor</source> <translation type="unfinished"></translation> </message> @@ -78042,112 +78052,112 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/UF2FlashDialog.py" line="519"/> + <location filename="../MicroPython/UF2FlashDialog.py" line="522"/> <source>MicroPython/CircuitPython Files (*.uf2);;All Files (*)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/UF2FlashDialog.py" line="590"/> + <location filename="../MicroPython/UF2FlashDialog.py" line="593"/> <source>Manual Select</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/UF2FlashDialog.py" line="691"/> + <location filename="../MicroPython/UF2FlashDialog.py" line="698"/> <source>Reset Instructions:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/UF2FlashDialog.py" line="635"/> + <location filename="../MicroPython/UF2FlashDialog.py" line="638"/> <source><h4>No known devices detected.</h4><p>Follow the appropriate instructions below to set <b>one</b> board into 'bootloader' mode. Press <b>Refresh</b> when ready.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/UF2FlashDialog.py" line="658"/> + <location filename="../MicroPython/UF2FlashDialog.py" line="665"/> <source><h4>Flash {0} Firmware</h4><p>Follow the instructions below to set <b>one</b> board into 'bootloader' mode. Press <b>Refresh</b> when ready.</p><hr/>{1}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/UF2FlashDialog.py" line="668"/> + <location filename="../MicroPython/UF2FlashDialog.py" line="675"/> <source><h4>Potentially UF2 capable devices found</h4><p>Found these potentially UF2 capable devices:</p><ul><li>{0}</li></ul><p>Follow the instructions below to set <b>one</b> board into 'bootloader' mode. Press <b>Refresh</b> when ready.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/UF2FlashDialog.py" line="693"/> + <location filename="../MicroPython/UF2FlashDialog.py" line="700"/> <source><h4>No known devices detected.</h4><p>Follow the instructions below to set <b>one</b> board into 'bootloader' mode. Press <b>Refresh</b> when ready.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/UF2FlashDialog.py" line="705"/> + <location filename="../MicroPython/UF2FlashDialog.py" line="712"/> <source>Flash Instructions:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/UF2FlashDialog.py" line="732"/> + <location filename="../MicroPython/UF2FlashDialog.py" line="739"/> <source>Boot Volume not found:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/UF2FlashDialog.py" line="734"/> + <location filename="../MicroPython/UF2FlashDialog.py" line="741"/> <source><h4>No Boot Volume detected.</h4><p>Please ensure that the boot volume of the device to be flashed is available. </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/UF2FlashDialog.py" line="740"/> + <location filename="../MicroPython/UF2FlashDialog.py" line="747"/> <source>This volume should be named <b>{0}</b>. Press <b>Refresh</b> when ready.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/UF2FlashDialog.py" line="745"/> + <location filename="../MicroPython/UF2FlashDialog.py" line="752"/> <source>This volume should have one of these names.</p><ul><li>{0}</li></ul><p>Press <b>Refresh</b> when ready.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/UF2FlashDialog.py" line="771"/> + <location filename="../MicroPython/UF2FlashDialog.py" line="778"/> <source>Multiple Boot Volumes found:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/UF2FlashDialog.py" line="773"/> + <location filename="../MicroPython/UF2FlashDialog.py" line="780"/> <source><h4>Multiple Boot Volumes were found</h4><p>These volume paths were found.</p><ul><li>{0}</li></ul><p>Please ensure that only one device of a type is ready for flashing. Press <b>Refresh</b> when ready.</p></source> <translation type="unfinished"></translation> </message> <message> + <location filename="../MicroPython/UF2FlashDialog.py" line="806"/> + <source>Flashing {0}</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../MicroPython/UF2FlashDialog.py" line="714"/> + <source><h4>Flash method 'manual' selected.</h4><p>Follow the instructions below to flash a device by entering the data manually.</p><ol><li>Change the device to 'bootloader' mode.</li><li>Wait until the device has entered 'bootloader' mode.</li><li>Ensure the boot volume is available (this may require mounting it) and select its path.</li><li>Select the firmware file to be flashed and click the flash button.</li></ol></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../MicroPython/UF2FlashDialog.py" line="808"/> + <source><p>Flashing the {0} firmware to the device. Please wait until the device resets automatically.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../MicroPython/UF2FlashDialog.py" line="487"/> + <source>'{0}' Board</source> + <translation type="unfinished"></translation> + </message> + <message> <location filename="../MicroPython/UF2FlashDialog.py" line="799"/> - <source>Flashing {0}</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../MicroPython/UF2FlashDialog.py" line="707"/> - <source><h4>Flash method 'manual' selected.</h4><p>Follow the instructions below to flash a device by entering the data manually.</p><ol><li>Change the device to 'bootloader' mode.</li><li>Wait until the device has entered 'bootloader' mode.</li><li>Ensure the boot volume is available (this may require mounting it) and select its path.</li><li>Select the firmware file to be flashed and click the flash button.</li></ol></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../MicroPython/UF2FlashDialog.py" line="801"/> - <source><p>Flashing the {0} firmware to the device. Please wait until the device resets automatically.</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../MicroPython/UF2FlashDialog.py" line="484"/> - <source>'{0}' Board</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../MicroPython/UF2FlashDialog.py" line="792"/> <source>Flashing Firmware</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/UF2FlashDialog.py" line="793"/> + <location filename="../MicroPython/UF2FlashDialog.py" line="800"/> <source><p>Flashing the selected firmware to the device. Please wait until the device resets automatically.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/UF2FlashDialog.py" line="752"/> + <location filename="../MicroPython/UF2FlashDialog.py" line="759"/> <source><h4>Reset Instructions</h4><p>Follow the instructions below to set the board into 'bootloader' mode. Press <b>Refresh</b> when ready.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/UF2FlashDialog.py" line="414"/> + <location filename="../MicroPython/UF2FlashDialog.py" line="416"/> <source><h3>Pi Pico (RP2040) Board</h3><p>In order to prepare the board for flashing follow these steps:</p><ol><li>Enter 'bootloader' mode (board <b>without</b> RESET button):<ul><li>Plug in your board while holding the BOOTSEL button.</li></ul>Enter 'bootloader' mode (board <b>with</b> RESET button):<ul><li>hold down RESET</li><li>hold down BOOTSEL</li><li>release RESET</li><li>release BOOTSEL</li></ul></li><li>Wait until the device has entered 'bootloader' mode.</li><li>Ensure the boot volume is available (this may require mounting it).</li><li>Select the firmware file to be flashed and click the flash button.</li></ol></source> <translation type="unfinished"></translation> </message>
--- a/eric6/i18n/eric6_de.ts Sun Mar 28 18:51:40 2021 +0200 +++ b/eric6/i18n/eric6_de.ts Sun Mar 28 18:51:58 2021 +0200 @@ -1,5 +1,6 @@ <?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE TS><TS version="2.0" language="de" sourcelanguage=""> +<!DOCTYPE TS> +<TS version="2.1" language="de"> <context> <name>AboutDialog</name> <message> @@ -1599,37 +1600,37 @@ <context> <name>BackgroundService</name> <message> - <location filename="../Utilities/BackgroundService.py" line="135"/> + <location filename="../Utilities/BackgroundService.py" line="138"/> <source>{0} not configured.</source> <translation>{0} nicht konfiguriert.</translation> </message> <message> - <location filename="../Utilities/BackgroundService.py" line="190"/> + <location filename="../Utilities/BackgroundService.py" line="193"/> <source>Restart background client?</source> <translation>Hintergrund Client neu starten?</translation> </message> <message> - <location filename="../Utilities/BackgroundService.py" line="451"/> + <location filename="../Utilities/BackgroundService.py" line="454"/> <source>Background client disconnected.</source> <translation>Hintergrund Client wurde getrennt.</translation> </message> <message> - <location filename="../Utilities/BackgroundService.py" line="445"/> + <location filename="../Utilities/BackgroundService.py" line="448"/> <source>Eric's background client disconnected because of an unknown reason.</source> <translation>Die Verbindung zu Erics Hintergund Client wurde aus unbekanntem Grund getrennt.</translation> </message> <message> - <location filename="../Utilities/BackgroundService.py" line="190"/> + <location filename="../Utilities/BackgroundService.py" line="193"/> <source><p>The background client for <b>{0}</b> has stopped due to an exception. It's used by various plug-ins like the different checkers.</p><p>Select<ul><li><b>'Yes'</b> to restart the client, but abort the last job</li><li><b>'Retry'</b> to restart the client and the last job</li><li><b>'No'</b> to leave the client off.</li></ul></p><p>Note: The client can be restarted by opening and accepting the preferences dialog or reloading/changing the project.</p></source> <translation><p>Der Hintergund Client für <b>{0}</b> wurde durch eine Exception gestoppt. Er wird für verschiedene Plugins, wie z.B. die Checker, verwendet.</p><p>Wähle:<ul><li><b>'Ja'</b>, um den Client aber nicht den letzten Job neu zu starten</li><li><b>'Wiederholen'</b>, um den Client und letzten Job neu zu starten</li><li><b>'Nein'</b>, um den Client nicht neu zu starten.</li></ul></p><p>Hinweis: Der Client kann immer wieder gestartet werden, indem der Einstellungsdialog mit Ok geschlossen wird oder durch das Neuladen/ Wechseln des Projektes.</p></translation> </message> <message> - <location filename="../Utilities/BackgroundService.py" line="451"/> + <location filename="../Utilities/BackgroundService.py" line="454"/> <source>The background client for <b>{0}</b> disconnected because of an unknown reason.<br>Should it be restarted?</source> <translation>Die Verbindung zum Hintergund Client für <b>{0}</b> wurde aus unbekanntem Grund getrennt.<br>Soll er neu gestartet werden?</translation> </message> <message> - <location filename="../Utilities/BackgroundService.py" line="216"/> + <location filename="../Utilities/BackgroundService.py" line="219"/> <source>An error in Eric's background client stopped the service.</source> <translation>Ein Fehler im Eric Hintergrunddienst hat den Dienst beendet.</translation> </message> @@ -2115,8 +2116,8 @@ </message> <message> <location filename="../WebBrowser/Bookmarks/BookmarksMenu.py" line="170"/> - <source>Open in New Tab<byte value="x9"/>Ctrl+LMB</source> - <translation>In neuem Register öffnen<byte value="x9"/>Strg+LMK</translation> + <source>Open in New Tab Ctrl+LMB</source> + <translation>In neuem Register öffnen Strg+LMK</translation> </message> <message> <location filename="../WebBrowser/Bookmarks/BookmarksMenu.py" line="174"/> @@ -2184,8 +2185,8 @@ </message> <message> <location filename="../WebBrowser/Bookmarks/BookmarksToolBar.py" line="90"/> - <source>Open in New Tab<byte value="x9"/>Ctrl+LMB</source> - <translation>In neuem Register öffnen<byte value="x9"/>Strg+LMK</translation> + <source>Open in New Tab Ctrl+LMB</source> + <translation>In neuem Register öffnen Strg+LMK</translation> </message> <message> <location filename="../WebBrowser/Bookmarks/BookmarksToolBar.py" line="94"/> @@ -3485,7 +3486,7 @@ <context> <name>CodeStyleChecker</name> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="577"/> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="578"/> <source>No message defined for code '{0}'.</source> <translation>Keine Nachricht für '{0}' definiert.</translation> </message> @@ -9674,7 +9675,7 @@ <translation>Fehlermeldungsfilter</translation> </message> <message> - <location filename="../E5Gui/E5ErrorMessageFilterDialog.py" line="35"/> + <location filename="../E5Gui/E5ErrorMessageFilterDialog.py" line="32"/> <source><b>Error Message Filters</b><p>This list shows the configured message filters used to suppress error messages from within Qt.</p><p>A default list of message filters is added to this user list.</p></source> <translation><b>Fehlermeldungsfilter</b><p>Diese Liste zeigt alle konfigurierten Fehlermeldungsfilter zur Unterdrückung von Qt Fehlermeldung.</p><p>Eine Standardfehlerliste wird dieser Nutzer definierten Liste angefügt.</p></translation> </message> @@ -11829,7 +11830,7 @@ <translation>Wähle den anzuwendenden Pygments Lexer.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7991"/> + <location filename="../QScintilla/Editor.py" line="7992"/> <source>Check spelling...</source> <translation>Rechtschreibprüfung...</translation> </message> @@ -11839,12 +11840,12 @@ <translation>Rechtschreibprüfung für Auswahl...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7994"/> + <location filename="../QScintilla/Editor.py" line="7995"/> <source>Add to dictionary</source> <translation>Zum Wörterbuch hinzufügen</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7996"/> + <location filename="../QScintilla/Editor.py" line="7997"/> <source>Ignore All</source> <translation>Alle ignorieren</translation> </message> @@ -11929,12 +11930,12 @@ <translation>Vorherige Änderung</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8412"/> + <location filename="../QScintilla/Editor.py" line="8413"/> <source>Sort Lines</source> <translation>Zeilen sortieren</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8412"/> + <location filename="../QScintilla/Editor.py" line="8413"/> <source>The selection contains illegal data for a numerical sort.</source> <translation>Die Auswahl enthält für eine numerische Sortierung ungültige Daten.</translation> </message> @@ -12004,12 +12005,12 @@ <translation>Der Calltipps-Provider namens '{0}' ist bereits registriert. Die Wiederholung wird ignoriert.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8501"/> + <location filename="../QScintilla/Editor.py" line="8502"/> <source>Register Mouse Click Handler</source> <translation>Maus Klick Handler registrieren</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8501"/> + <location filename="../QScintilla/Editor.py" line="8502"/> <source>A mouse click handler for "{0}" was already registered by "{1}". Aborting request by "{2}"...</source> <translation>Ein Maus Klick Handler für "{0}" wurde bereits durch "{1}" registriert. Die Anfrage durch "{2}" wird abgebrochen...</translation> </message> @@ -12039,12 +12040,12 @@ <translation>Auswahl in Konsole ausführen</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8622"/> + <location filename="../QScintilla/Editor.py" line="8623"/> <source>EditorConfig Properties</source> <translation>EditorConfig Eigenschaften</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8622"/> + <location filename="../QScintilla/Editor.py" line="8623"/> <source><p>The EditorConfig properties for file <b>{0}</b> could not be loaded.</p></source> <translation><p>Die EditorConfig Eigenschaften für die Datei <b>{0}</b> konnten nicht geladen werden.</p></translation> </message> @@ -12089,7 +12090,7 @@ <translation><p>Die Datei <b>{0}</b> wurde geändert, während sie in eric geöffnet war. Neu einlesen?</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8816"/> + <location filename="../QScintilla/Editor.py" line="8817"/> <source>Generate Docstring</source> <translation>Docstring erzeugen</translation> </message> @@ -17643,12 +17644,12 @@ <translation>Flash löschen</translation> </message> <message> - <location filename="../MicroPython/EspDevices.py" line="227"/> + <location filename="../MicroPython/EspDevices.py" line="231"/> <source>Flash MicroPython Firmware</source> <translation>MicroPython Firmware flashen</translation> </message> <message> - <location filename="../MicroPython/EspDevices.py" line="258"/> + <location filename="../MicroPython/EspDevices.py" line="266"/> <source>Flash Additional Firmware</source> <translation>Zusätzliche Firmware flashen</translation> </message> @@ -17673,7 +17674,7 @@ <translation>Chiptyp '{0}' wird nicht unterstützt.</translation> </message> <message> - <location filename="../MicroPython/EspDevices.py" line="319"/> + <location filename="../MicroPython/EspDevices.py" line="327"/> <source>'esptool write_flash' Output</source> <translation>Ausgabe von 'esptool write_flash'</translation> </message> @@ -17683,47 +17684,47 @@ <translation>Gerät zurücksetzen</translation> </message> <message> - <location filename="../MicroPython/EspDevices.py" line="285"/> + <location filename="../MicroPython/EspDevices.py" line="293"/> <source>Backup Firmware</source> <translation>Firmware sichern</translation> </message> <message> - <location filename="../MicroPython/EspDevices.py" line="319"/> + <location filename="../MicroPython/EspDevices.py" line="327"/> <source>Restore Firmware</source> <translation>Firmware zurückspielen</translation> </message> <message> - <location filename="../MicroPython/EspDevices.py" line="337"/> + <location filename="../MicroPython/EspDevices.py" line="345"/> <source>Show Chip ID</source> <translation>Chip ID anzeigen</translation> </message> <message> - <location filename="../MicroPython/EspDevices.py" line="354"/> + <location filename="../MicroPython/EspDevices.py" line="362"/> <source>Show Flash ID</source> <translation>Flash ID anzeigen</translation> </message> <message> - <location filename="../MicroPython/EspDevices.py" line="371"/> + <location filename="../MicroPython/EspDevices.py" line="379"/> <source>Show MAC Address</source> <translation>MAC Adresse anzeigen</translation> </message> <message> - <location filename="../MicroPython/EspDevices.py" line="285"/> + <location filename="../MicroPython/EspDevices.py" line="293"/> <source>'esptool read_flash' Output</source> <translation>Ausgabe von 'esptool read_flash'</translation> </message> <message> - <location filename="../MicroPython/EspDevices.py" line="337"/> + <location filename="../MicroPython/EspDevices.py" line="345"/> <source>'esptool chip_id' Output</source> <translation>Ausgabe von 'esptool chip_id'</translation> </message> <message> - <location filename="../MicroPython/EspDevices.py" line="354"/> + <location filename="../MicroPython/EspDevices.py" line="362"/> <source>'esptool flash_id' Output</source> <translation>Ausgabe von 'esptool flash_id'</translation> </message> <message> - <location filename="../MicroPython/EspDevices.py" line="371"/> + <location filename="../MicroPython/EspDevices.py" line="379"/> <source>'esptool read_mac' Output</source> <translation>Ausgabe von 'esptool read_mac'</translation> </message> @@ -17756,12 +17757,12 @@ <translation>Gib den Pfad der Firmwaredatei ein</translation> </message> <message> - <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="96"/> + <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="123"/> <source>Address:</source> <translation>Adresse:</translation> </message> <message> - <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="103"/> + <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="130"/> <source>Enter the flash addres in the hexadecimal form</source> <translation>Gib die Flash Speicheradresse in Hexadezimalform ein</translation> </message> @@ -17771,20 +17772,30 @@ <translation>Firmwaredateien (*.bin);;Alle Dateien (*)</translation> </message> <message> - <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="75"/> + <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="102"/> <source>Flash Mode:</source> <translation>Flash Modus:</translation> </message> <message> - <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="82"/> + <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="109"/> <source>Select the flash mode</source> <translation>Wähle den Flashmodus aus</translation> </message> <message> - <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="89"/> + <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="116"/> <source>Leave empty to use the default mode.</source> <translation>Leer lassen, um den Standardmodus zu verwenden.</translation> </message> + <message> + <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="72"/> + <source>Baud Rate:</source> + <translation>Baudrate:</translation> + </message> + <message> + <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="79"/> + <source>Select the baud rate to be used foor flashing (default: 115.200 bps)</source> + <translation>Wähle die zum Flashen zu verwendende Baudrate (Standard: 115.200 BpS)</translation> + </message> </context> <context> <name>ExceptionLogger</name> @@ -44781,12 +44792,12 @@ </message> <message> <location filename="../MicroPython/MicroPythonWidget.py" line="1195"/> - <source>µPy Chart</source> + <source>µPy Chart</source> <translation>µPy Chart</translation> </message> <message> <location filename="../MicroPython/MicroPythonWidget.py" line="1278"/> - <source>µPy Files</source> + <source>µPy Files</source> <translation>µPy Dateien</translation> </message> <message> @@ -45085,674 +45096,674 @@ <context> <name>MiniEditor</name> <message> - <location filename="../QScintilla/MiniEditor.py" line="561"/> + <location filename="../QScintilla/MiniEditor.py" line="562"/> <source>New</source> <translation>Neu</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="561"/> + <location filename="../QScintilla/MiniEditor.py" line="562"/> <source>&New</source> <translation>&Neu</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="561"/> + <location filename="../QScintilla/MiniEditor.py" line="562"/> <source>Ctrl+N</source> <comment>File|New</comment> <translation>Ctrl+N</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="567"/> - <source>Open an empty editor window</source> - <translation>Öffnet ein leeres Editorfenster</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="568"/> + <source>Open an empty editor window</source> + <translation>Öffnet ein leeres Editorfenster</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="569"/> <source><b>New</b><p>An empty editor window will be created.</p></source> <translation><b>Neu</b><p>Ein neues Editorfenster wird geöffnet.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="575"/> + <location filename="../QScintilla/MiniEditor.py" line="576"/> <source>Open</source> <translation>Öffnen</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="575"/> + <location filename="../QScintilla/MiniEditor.py" line="576"/> <source>&Open...</source> <translation>&Öffnen...</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="575"/> + <location filename="../QScintilla/MiniEditor.py" line="576"/> <source>Ctrl+O</source> <comment>File|Open</comment> <translation>Ctrl+O</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="581"/> + <location filename="../QScintilla/MiniEditor.py" line="582"/> <source>Open a file</source> <translation>Datei öffnen</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="582"/> + <location filename="../QScintilla/MiniEditor.py" line="583"/> <source><b>Open a file</b><p>You will be asked for the name of a file to be opened.</p></source> <translation><b>Datei öffnen</b><p>Sie werden nach dem Namen einer Datei gefragt, die geöffnet werden soll.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="589"/> + <location filename="../QScintilla/MiniEditor.py" line="590"/> <source>Save</source> <translation>Speichern</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="589"/> + <location filename="../QScintilla/MiniEditor.py" line="590"/> <source>&Save</source> <translation>&Speichern</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="589"/> + <location filename="../QScintilla/MiniEditor.py" line="590"/> <source>Ctrl+S</source> <comment>File|Save</comment> <translation>Ctrl+S</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="595"/> - <source>Save the current file</source> - <translation>Speichert die aktuelle Datei</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="596"/> + <source>Save the current file</source> + <translation>Speichert die aktuelle Datei</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="597"/> <source><b>Save File</b><p>Save the contents of current editor window.</p></source> <translation><b>Datei speichern</b><p>Dies speichert den Inhalt des aktuellen Editorfensters.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="603"/> + <location filename="../QScintilla/MiniEditor.py" line="604"/> <source>Save as</source> <translation>Speichern unter</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="603"/> + <location filename="../QScintilla/MiniEditor.py" line="604"/> <source>Save &as...</source> <translation>Speichern &unter...</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="603"/> + <location filename="../QScintilla/MiniEditor.py" line="604"/> <source>Shift+Ctrl+S</source> <comment>File|Save As</comment> <translation>Shift+Ctrl+S</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="609"/> + <location filename="../QScintilla/MiniEditor.py" line="610"/> <source>Save the current file to a new one</source> <translation>Speichere die aktuelle Datei unter neuem Namen</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="611"/> + <location filename="../QScintilla/MiniEditor.py" line="612"/> <source><b>Save File as</b><p>Save the contents of current editor window to a new file. The file can be entered in a file selection dialog.</p></source> <translation><b>Speichen unter</b><p>Dies speichert den Inhalt des aktuellen Editors in eine neue Datei. Die Datei kann mit einem Dateiauswahldialog eingegeben werden.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="634"/> + <location filename="../QScintilla/MiniEditor.py" line="635"/> <source>Close</source> <translation>Schließen</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="634"/> + <location filename="../QScintilla/MiniEditor.py" line="635"/> <source>&Close</source> <translation>Schl&ießen</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="634"/> + <location filename="../QScintilla/MiniEditor.py" line="635"/> <source>Ctrl+W</source> <comment>File|Close</comment> <translation>Ctrl+W</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="640"/> + <location filename="../QScintilla/MiniEditor.py" line="641"/> <source>Close the editor window</source> <translation>Schließt das Editorfenster</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="641"/> + <location filename="../QScintilla/MiniEditor.py" line="642"/> <source><b>Close Window</b><p>Close the current window.</p></source> <translation><b>Fenster schließen</b><p>Dies schließt das aktuelle Editorfenster.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="680"/> + <location filename="../QScintilla/MiniEditor.py" line="681"/> <source>Undo</source> <translation>Rückgängig</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="680"/> + <location filename="../QScintilla/MiniEditor.py" line="681"/> <source>&Undo</source> <translation>&Rückgängig</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="680"/> + <location filename="../QScintilla/MiniEditor.py" line="681"/> <source>Ctrl+Z</source> <comment>Edit|Undo</comment> <translation>Ctrl+Z</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="680"/> + <location filename="../QScintilla/MiniEditor.py" line="681"/> <source>Alt+Backspace</source> <comment>Edit|Undo</comment> <translation>Alt+Backspace</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="687"/> + <location filename="../QScintilla/MiniEditor.py" line="688"/> <source>Undo the last change</source> <translation>Die letzte Änderung rückgängig machen</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="688"/> + <location filename="../QScintilla/MiniEditor.py" line="689"/> <source><b>Undo</b><p>Undo the last change done in the current editor.</p></source> <translation><b>Rückgängig</b><p>Dies macht die letzte Änderung des aktuellen Editors rückgängig.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="695"/> + <location filename="../QScintilla/MiniEditor.py" line="696"/> <source>Redo</source> <translation>Wiederherstellen</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="695"/> + <location filename="../QScintilla/MiniEditor.py" line="696"/> <source>&Redo</source> <translation>Wieder&herstellen</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="695"/> + <location filename="../QScintilla/MiniEditor.py" line="696"/> <source>Ctrl+Shift+Z</source> <comment>Edit|Redo</comment> <translation>Ctrl+Shift+Z</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="701"/> + <location filename="../QScintilla/MiniEditor.py" line="702"/> <source>Redo the last change</source> <translation>Die letzte Änderung wiederherstellen</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="702"/> + <location filename="../QScintilla/MiniEditor.py" line="703"/> <source><b>Redo</b><p>Redo the last change done in the current editor.</p></source> <translation><b>Wiederherstellen</b><p>Dies stellt die letzte Änderung des aktuellen Editors wieder her.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="709"/> + <location filename="../QScintilla/MiniEditor.py" line="710"/> <source>Cut</source> <translation>Ausschneiden</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="709"/> + <location filename="../QScintilla/MiniEditor.py" line="710"/> <source>Cu&t</source> <translation>&Ausschneiden</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="709"/> + <location filename="../QScintilla/MiniEditor.py" line="710"/> <source>Ctrl+X</source> <comment>Edit|Cut</comment> <translation>Ctrl+X</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="709"/> + <location filename="../QScintilla/MiniEditor.py" line="710"/> <source>Shift+Del</source> <comment>Edit|Cut</comment> <translation>Shift+Del</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="716"/> - <source>Cut the selection</source> - <translation>Schneidet die Auswahl aus</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="717"/> + <source>Cut the selection</source> + <translation>Schneidet die Auswahl aus</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="718"/> <source><b>Cut</b><p>Cut the selected text of the current editor to the clipboard.</p></source> <translation><b>Ausschneiden</b><p>Dies schneidet den ausgewählten Text des aktuellen Editors aus und legt ihn in der Zwischenablage ab.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="725"/> + <location filename="../QScintilla/MiniEditor.py" line="726"/> <source>Copy</source> <translation>Kopieren</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="725"/> + <location filename="../QScintilla/MiniEditor.py" line="726"/> <source>&Copy</source> <translation>&Kopieren</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="725"/> + <location filename="../QScintilla/MiniEditor.py" line="726"/> <source>Ctrl+C</source> <comment>Edit|Copy</comment> <translation>Ctrl+C</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="725"/> + <location filename="../QScintilla/MiniEditor.py" line="726"/> <source>Ctrl+Ins</source> <comment>Edit|Copy</comment> <translation>Ctrl+Einfg</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="732"/> - <source>Copy the selection</source> - <translation>Kopiert die Auswahl</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="733"/> + <source>Copy the selection</source> + <translation>Kopiert die Auswahl</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="734"/> <source><b>Copy</b><p>Copy the selected text of the current editor to the clipboard.</p></source> <translation><b>Kopieren</b><p>Dies kopiert den ausgewählten Text des aktuellen Editors in die Zwischenablage.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="741"/> + <location filename="../QScintilla/MiniEditor.py" line="742"/> <source>Paste</source> <translation>Einfügen</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="741"/> + <location filename="../QScintilla/MiniEditor.py" line="742"/> <source>&Paste</source> <translation>Ein&fügen</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="741"/> + <location filename="../QScintilla/MiniEditor.py" line="742"/> <source>Ctrl+V</source> <comment>Edit|Paste</comment> <translation>Ctrl+V</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="741"/> + <location filename="../QScintilla/MiniEditor.py" line="742"/> <source>Shift+Ins</source> <comment>Edit|Paste</comment> <translation>Shift+Ins</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="748"/> + <location filename="../QScintilla/MiniEditor.py" line="749"/> <source>Paste the last cut/copied text</source> <translation>Fügt den Inhalt der Zwischenablage ein</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="750"/> + <location filename="../QScintilla/MiniEditor.py" line="751"/> <source><b>Paste</b><p>Paste the last cut/copied text from the clipboard to the current editor.</p></source> <translation><b>Einfügen</b><p>Dies fügt den zuletzt ausgeschnittenen/kopierten Text aus der Zwischenablage in den aktuellen Editor ein.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="758"/> + <location filename="../QScintilla/MiniEditor.py" line="759"/> <source>Clear</source> <translation>Löschen</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="758"/> + <location filename="../QScintilla/MiniEditor.py" line="759"/> <source>Cl&ear</source> <translation>All&es löschen</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="758"/> + <location filename="../QScintilla/MiniEditor.py" line="759"/> <source>Alt+Shift+C</source> <comment>Edit|Clear</comment> <translation>Alt+Shift+C</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="765"/> - <source>Clear all text</source> - <translation>Löscht den gesamten Text</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="766"/> + <source>Clear all text</source> + <translation>Löscht den gesamten Text</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="767"/> <source><b>Clear</b><p>Delete all text of the current editor.</p></source> <translation><b>Alles Löschen</b><p>Dies löscht den gesamten Text des aktuellen Editors.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2373"/> + <location filename="../QScintilla/MiniEditor.py" line="2374"/> <source>About</source> <translation>Über</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2373"/> + <location filename="../QScintilla/MiniEditor.py" line="2374"/> <source>&About</source> <translation>&Über</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2377"/> + <location filename="../QScintilla/MiniEditor.py" line="2378"/> <source>Display information about this software</source> <translation>Zeigt Informationen zu diesem Programm an</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2379"/> + <location filename="../QScintilla/MiniEditor.py" line="2380"/> <source><b>About</b><p>Display some information about this software.</p></source> <translation><b>Über</b><p>Zeigt einige Informationen über dieses Programm an.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2385"/> + <location filename="../QScintilla/MiniEditor.py" line="2386"/> <source>About Qt</source> <translation>Über Qt</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2385"/> + <location filename="../QScintilla/MiniEditor.py" line="2386"/> <source>About &Qt</source> <translation>Über &Qt</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2389"/> + <location filename="../QScintilla/MiniEditor.py" line="2390"/> <source>Display information about the Qt toolkit</source> <translation>Zeige Informationen über das Qt-Toolkit an</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2391"/> + <location filename="../QScintilla/MiniEditor.py" line="2392"/> <source><b>About Qt</b><p>Display some information about the Qt toolkit.</p></source> <translation><b>Über Qt</b><p>Zeige Informationen über das Qt-Toolkit an.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2421"/> + <location filename="../QScintilla/MiniEditor.py" line="2422"/> <source>&File</source> <translation>&Datei</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2433"/> + <location filename="../QScintilla/MiniEditor.py" line="2434"/> <source>&Edit</source> <translation>&Bearbeiten</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2459"/> + <location filename="../QScintilla/MiniEditor.py" line="2460"/> <source>&Help</source> <translation>&Hilfe</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2536"/> + <location filename="../QScintilla/MiniEditor.py" line="2537"/> <source><p>This part of the status bar displays the line number of the editor.</p></source> <translation><p>Dieser Teil der Statusleiste zeigt die Zeilennummer des Editors an.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2543"/> + <location filename="../QScintilla/MiniEditor.py" line="2544"/> <source><p>This part of the status bar displays the cursor position of the editor.</p></source> <translation><p>Dieser Teil der Statusleiste zeigt die Cursorposition des Editors an.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2560"/> + <location filename="../QScintilla/MiniEditor.py" line="2561"/> <source>Ready</source> <translation>Bereit</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2642"/> + <location filename="../QScintilla/MiniEditor.py" line="2643"/> <source>File loaded</source> <translation>Datei geladen</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3089"/> + <location filename="../QScintilla/MiniEditor.py" line="3090"/> <source>Untitled</source> <translation>Unbenannt</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2757"/> + <location filename="../QScintilla/MiniEditor.py" line="2758"/> <source>{0}[*] - {1}</source> <translation>{0} [*] – {1}</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2757"/> + <location filename="../QScintilla/MiniEditor.py" line="2758"/> <source>Mini Editor</source> <translation>Mini Editor</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3130"/> - <source>Select all</source> - <translation>Alles auswählen</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="3131"/> + <source>Select all</source> + <translation>Alles auswählen</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="3132"/> <source>Deselect all</source> <translation>Auswahl aufheben</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3145"/> + <location filename="../QScintilla/MiniEditor.py" line="3146"/> <source>Languages</source> <translation>Sprachen</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3148"/> + <location filename="../QScintilla/MiniEditor.py" line="3149"/> <source>No Language</source> <translation>Keine Sprache</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2614"/> + <location filename="../QScintilla/MiniEditor.py" line="2615"/> <source>Open File</source> <translation>Datei öffnen</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2728"/> + <location filename="../QScintilla/MiniEditor.py" line="2729"/> <source>File saved</source> <translation>Datei gespeichert</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2529"/> + <location filename="../QScintilla/MiniEditor.py" line="2530"/> <source><p>This part of the status bar displays an indication of the editors files writability.</p></source> <translation><p>Dieser Teil der Statusleiste zeigt an, ob die Datei geschrieben werden kann.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2398"/> + <location filename="../QScintilla/MiniEditor.py" line="2399"/> <source>What's This?</source> <translation>Was ist das?</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2398"/> + <location filename="../QScintilla/MiniEditor.py" line="2399"/> <source>&What's This?</source> <translation>&Was ist das?</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2398"/> + <location filename="../QScintilla/MiniEditor.py" line="2399"/> <source>Shift+F1</source> <comment>Help|What's This?'</comment> <translation>Shift+F1</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2404"/> - <source>Context sensitive help</source> - <translation>Kontextsensitive Hilfe</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="2405"/> + <source>Context sensitive help</source> + <translation>Kontextsensitive Hilfe</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="2406"/> <source><b>Display context sensitive help</b><p>In What's This? mode, the mouse cursor shows an arrow with a question mark, and you can click on the interface elements to get a short description of what they do and how to use them. In dialogs, this feature can be accessed using the context help button in the titlebar.</p></source> <translation><b>Zeige kontextsensitive Hilfe an<b></p>Im „Was ist das?“-Modus (der Mauszeiger stellt einen Pfeil mit Fragezeichen dar) wird auf einen Mausklick eine kurze Hilfebeschreibung zu dem ausgewählten MMI-Element angezeigt. In Dialogen kann diese Funktionalität durch den entsprechenden Knopf im Fensterkopf erreicht werden.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2471"/> + <location filename="../QScintilla/MiniEditor.py" line="2472"/> <source>File</source> <translation>Datei</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2484"/> + <location filename="../QScintilla/MiniEditor.py" line="2485"/> <source>Edit</source> <translation>Bearbeiten</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2494"/> + <location filename="../QScintilla/MiniEditor.py" line="2495"/> <source>Find</source> <translation>Suchen</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2508"/> + <location filename="../QScintilla/MiniEditor.py" line="2509"/> <source>Help</source> <translation>Hilfe</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="648"/> + <location filename="../QScintilla/MiniEditor.py" line="649"/> <source>Print</source> <translation>Drucken</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="648"/> + <location filename="../QScintilla/MiniEditor.py" line="649"/> <source>&Print</source> <translation>&Drucken</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="648"/> + <location filename="../QScintilla/MiniEditor.py" line="649"/> <source>Ctrl+P</source> <comment>File|Print</comment> <translation>Ctrl+P</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="654"/> - <source>Print the current file</source> - <translation>Druckt die aktuelle Datei</translation> - </message> - <message> - <location filename="../QScintilla/MiniEditor.py" line="3049"/> - <source>Printing...</source> - <translation>Drucke...</translation> - </message> - <message> - <location filename="../QScintilla/MiniEditor.py" line="3070"/> - <source>Printing completed</source> - <translation>Drucken beendet</translation> - </message> - <message> - <location filename="../QScintilla/MiniEditor.py" line="3072"/> - <source>Error while printing</source> - <translation>Fehler beim Drucken</translation> - </message> - <message> - <location filename="../QScintilla/MiniEditor.py" line="3075"/> - <source>Printing aborted</source> - <translation>Drucken abgebrochen</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="655"/> + <source>Print the current file</source> + <translation>Druckt die aktuelle Datei</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="3050"/> + <source>Printing...</source> + <translation>Drucke...</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="3071"/> + <source>Printing completed</source> + <translation>Drucken beendet</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="3073"/> + <source>Error while printing</source> + <translation>Fehler beim Drucken</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="3076"/> + <source>Printing aborted</source> + <translation>Drucken abgebrochen</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="656"/> <source><b>Print File</b><p>Print the contents of the current file.</p></source> <translation><b>Datei drucken</b><p>Dies druckt den Inhalt der aktuellen Datei.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="662"/> + <location filename="../QScintilla/MiniEditor.py" line="663"/> <source>Print Preview</source> <translation>Druckvorschau</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="667"/> + <location filename="../QScintilla/MiniEditor.py" line="668"/> <source>Print preview of the current file</source> <translation>Druckvorschau der aktuellen Datei</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="669"/> + <location filename="../QScintilla/MiniEditor.py" line="670"/> <source><b>Print Preview</b><p>Print preview of the current file.</p></source> <translation><b>Druckvorschau</b><p>Zeift eine Druckvorschau der aktuellen Datei.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3172"/> + <location filename="../QScintilla/MiniEditor.py" line="3173"/> <source>Guessed</source> <translation>Ermittelt</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3194"/> + <location filename="../QScintilla/MiniEditor.py" line="3195"/> <source>Alternatives</source> <translation>Alternativen</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3190"/> + <location filename="../QScintilla/MiniEditor.py" line="3191"/> <source>Alternatives ({0})</source> <translation>Alternativen ({0})</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3218"/> + <location filename="../QScintilla/MiniEditor.py" line="3219"/> <source>Pygments Lexer</source> <translation>Pygments Lexer</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3218"/> + <location filename="../QScintilla/MiniEditor.py" line="3219"/> <source>Select the Pygments lexer to apply.</source> <translation>Wähle den anzuwendenden Pygments Lexer.</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="483"/> + <location filename="../QScintilla/MiniEditor.py" line="484"/> <source>Line: {0:5}</source> <translation>Zeile: {0:5}</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="487"/> + <location filename="../QScintilla/MiniEditor.py" line="488"/> <source>Pos: {0:5}</source> <translation>Pos: {0:5}</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2614"/> + <location filename="../QScintilla/MiniEditor.py" line="2615"/> <source><p>The file <b>{0}</b> could not be opened.</p><p>Reason: {1}</p></source> <translation><p>Die Datei <b>{0}</b> konnte nicht geöffnet werden.<p><p>Ursache: {1}</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2721"/> + <location filename="../QScintilla/MiniEditor.py" line="2722"/> <source>Save File</source> <translation>Datei speichern</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2721"/> + <location filename="../QScintilla/MiniEditor.py" line="2722"/> <source><p>The file <b>{0}</b> could not be saved.<br/>Reason: {1}</p></source> <translation><p>Die Datei <b>{0}</b> konnte nicht gesichert werden.<br/>Grund: {1}</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2587"/> + <location filename="../QScintilla/MiniEditor.py" line="2588"/> <source>The document has unsaved changes.</source> <translation>Das Dokument hat ungesicherte Änderungen.</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="619"/> + <location filename="../QScintilla/MiniEditor.py" line="620"/> <source>Save Copy</source> <translation>Kopie speichern</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="619"/> + <location filename="../QScintilla/MiniEditor.py" line="620"/> <source>Save &Copy...</source> <translation>&Kopie speichern...</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="624"/> + <location filename="../QScintilla/MiniEditor.py" line="625"/> <source>Save a copy of the current file</source> <translation>Speichert eine Kopie der aktuellen Datei</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="626"/> + <location filename="../QScintilla/MiniEditor.py" line="627"/> <source><b>Save Copy</b><p>Save a copy of the contents of current editor window. The file can be entered in a file selection dialog.</p></source> <translation><b>Kopie speichern</b><p>Speichern einer Kopie des Inhalts des aktuellen Editorfensters. Die Datei kann mit einem Dateiauswahldialog eingegeben werden.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3735"/> + <location filename="../QScintilla/MiniEditor.py" line="3736"/> <source>EditorConfig Properties</source> <translation>EditorConfig Eigenschaften</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3735"/> + <location filename="../QScintilla/MiniEditor.py" line="3736"/> <source><p>The EditorConfig properties for file <b>{0}</b> could not be loaded.</p></source> <translation><p>Die EditorConfig Eigenschaften für die Datei <b>{0}</b> konnten nicht geladen werden.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2740"/> + <location filename="../QScintilla/MiniEditor.py" line="2741"/> <source>[*] - {0}</source> <translation>[*] - {0}</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="502"/> + <location filename="../QScintilla/MiniEditor.py" line="503"/> <source>Language: {0}</source> <translation>Sprache: {0}</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2451"/> + <location filename="../QScintilla/MiniEditor.py" line="2452"/> <source>&View</source> <translation>&Ansicht</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2501"/> + <location filename="../QScintilla/MiniEditor.py" line="2502"/> <source>View</source> <translation>Ansicht</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2521"/> + <location filename="../QScintilla/MiniEditor.py" line="2522"/> <source><p>This part of the status bar displays the editor language.</p></source> <translation><p>Dieser Teil der Statusleiste zeigt die Sprache des Editors an.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2554"/> + <location filename="../QScintilla/MiniEditor.py" line="2555"/> <source><p>This part of the status bar allows zooming the editor.</p></source> <translation><p>Dieser Teil der Statusleiste ermöglicht das Zoomen des Editors.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="413"/> + <location filename="../QScintilla/MiniEditor.py" line="414"/> <source>About eric Mini Editor</source> <translation>Über den eric Mini Editor</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="413"/> + <location filename="../QScintilla/MiniEditor.py" line="414"/> <source>The eric Mini Editor is an editor component based on QScintilla. It may be used for simple editing tasks, that don't need the power of a full blown editor.</source> <translation>Der eric Mini-Editor ist eine Editorkomponente, die auf QScintilla basiert. Sie kann für einfachere Editieraufgaben, die keinen ausgewachsenen Editor benötigen, verwendet werden.</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2587"/> + <location filename="../QScintilla/MiniEditor.py" line="2588"/> <source>eric Mini Editor</source> <translation>eric Mini Editor</translation> </message> @@ -73659,112 +73670,112 @@ <translation><h3>CircuitPython Gerät</h3><p>Um das Gerät zum Flashen vorzubereiten, folgen sie den folgenden Schritten:</p><ol><li>Aktiviere den 'Bootloader' Modus durch zweimaliges Drücken des Reset Knopfes.</li><li>Warten sie, bis das Gerät den 'Bootloader' Modus eingenommen hat.</li><li>(Falls dies nicht erfolgt, versuchen sie es mit einer kürzeren oder längeren Pause zwischen den Drücken.)</li><li>Stellen sie sicher, dass der Boot Datenträger verfügbar ist (evtl. ist er zu mounten).</li><li>Wählen sie die zu flashende Firmwaredatei und klicken sie den Flash Knopf.</li></ol></translation> </message> <message> - <location filename="../MicroPython/UF2FlashDialog.py" line="519"/> + <location filename="../MicroPython/UF2FlashDialog.py" line="522"/> <source>MicroPython/CircuitPython Files (*.uf2);;All Files (*)</source> <translation>MicroPython/CircuitPython Dateien (*.uf2);;Alle Dateien (*)</translation> </message> <message> - <location filename="../MicroPython/UF2FlashDialog.py" line="590"/> + <location filename="../MicroPython/UF2FlashDialog.py" line="593"/> <source>Manual Select</source> <translation>Manuelle Auswahl</translation> </message> <message> - <location filename="../MicroPython/UF2FlashDialog.py" line="691"/> + <location filename="../MicroPython/UF2FlashDialog.py" line="698"/> <source>Reset Instructions:</source> <translation>Reset Instruktionen:</translation> </message> <message> - <location filename="../MicroPython/UF2FlashDialog.py" line="635"/> + <location filename="../MicroPython/UF2FlashDialog.py" line="638"/> <source><h4>No known devices detected.</h4><p>Follow the appropriate instructions below to set <b>one</b> board into 'bootloader' mode. Press <b>Refresh</b> when ready.</p></source> <translation><h4>Kein bekanntes Gerät erkannt.</h4><p>Folgen sie den entsprechenden Anweisungen, um <b>ein</b> Gerät in den 'Bootloader' Modus zu versetzen. Drücken sie <b>Aktualisieren</b>, wenn sie bereit sind.</p></translation> </message> <message> - <location filename="../MicroPython/UF2FlashDialog.py" line="658"/> + <location filename="../MicroPython/UF2FlashDialog.py" line="665"/> <source><h4>Flash {0} Firmware</h4><p>Follow the instructions below to set <b>one</b> board into 'bootloader' mode. Press <b>Refresh</b> when ready.</p><hr/>{1}</source> <translation><h4>{0} Firmware flashen</h4><p>Folgen sie den Anweisungen, um <b>ein</b> Gerät in den 'Bootloader' Modus zu versetzen. Drücken sie <b>Aktualisieren</b>, wenn sie bereit sind.</p><hr/>{1}</translation> </message> <message> - <location filename="../MicroPython/UF2FlashDialog.py" line="668"/> + <location filename="../MicroPython/UF2FlashDialog.py" line="675"/> <source><h4>Potentially UF2 capable devices found</h4><p>Found these potentially UF2 capable devices:</p><ul><li>{0}</li></ul><p>Follow the instructions below to set <b>one</b> board into 'bootloader' mode. Press <b>Refresh</b> when ready.</p></source> <translation><h4>Potentiell UF2 fähige Geräte gefunden</h4><p>Es wurde folgende potentiell UF2 fähige Geräte gefunden:</p><ul><li>{0}</li></ul><p>Folgen sie den Anweisungen, um <b>ein</b> Gerät in den 'Bootloader' Modus zu versetzen. Drücken sie <b>Aktualisieren</b>, wenn sie bereit sind.</p></translation> </message> <message> - <location filename="../MicroPython/UF2FlashDialog.py" line="693"/> + <location filename="../MicroPython/UF2FlashDialog.py" line="700"/> <source><h4>No known devices detected.</h4><p>Follow the instructions below to set <b>one</b> board into 'bootloader' mode. Press <b>Refresh</b> when ready.</p></source> <translation><h4>Keine bekannten Geräte erkannt.</h4><p>Folgen sie den Anweisungen, um <b>ein</b> Gerät in den 'Bootloader' Modus zu versetzen. Drücken sie <b>Aktualisieren</b>, wenn sie bereit sind.</p></translation> </message> <message> - <location filename="../MicroPython/UF2FlashDialog.py" line="705"/> + <location filename="../MicroPython/UF2FlashDialog.py" line="712"/> <source>Flash Instructions:</source> <translation>Flash Instruktionen:</translation> </message> <message> - <location filename="../MicroPython/UF2FlashDialog.py" line="732"/> + <location filename="../MicroPython/UF2FlashDialog.py" line="739"/> <source>Boot Volume not found:</source> <translation>Boot Datenträger nicht gefunden:</translation> </message> <message> - <location filename="../MicroPython/UF2FlashDialog.py" line="734"/> + <location filename="../MicroPython/UF2FlashDialog.py" line="741"/> <source><h4>No Boot Volume detected.</h4><p>Please ensure that the boot volume of the device to be flashed is available. </source> <translation><h4>Es wurde kein Boot Datenträger gefunden.</h4><p>Bitte stellen sie sicher, dass der Boot Datenträger für das zu flashende Gerät verfügbar ist. </translation> </message> <message> - <location filename="../MicroPython/UF2FlashDialog.py" line="740"/> + <location filename="../MicroPython/UF2FlashDialog.py" line="747"/> <source>This volume should be named <b>{0}</b>. Press <b>Refresh</b> when ready.</p></source> <translation>Dieser Datenträger sollte die Bezeichnung <b>{0}</b> haben. Drücken sie <b>Aktualisieren</b>, wenn sie bereit sind.</p></translation> </message> <message> - <location filename="../MicroPython/UF2FlashDialog.py" line="745"/> + <location filename="../MicroPython/UF2FlashDialog.py" line="752"/> <source>This volume should have one of these names.</p><ul><li>{0}</li></ul><p>Press <b>Refresh</b> when ready.</p></source> <translation>Dieser Datenträger sollte eine dieser Bezeichnungen haben.</p><ul><li>{0}</li></ul><p>Drücken sie <b>Aktualisieren</b>, wenn sie bereit sind.</p></translation> </message> <message> - <location filename="../MicroPython/UF2FlashDialog.py" line="771"/> + <location filename="../MicroPython/UF2FlashDialog.py" line="778"/> <source>Multiple Boot Volumes found:</source> <translation>Mehrere Boot Datenträger erkannt:</translation> </message> <message> - <location filename="../MicroPython/UF2FlashDialog.py" line="773"/> + <location filename="../MicroPython/UF2FlashDialog.py" line="780"/> <source><h4>Multiple Boot Volumes were found</h4><p>These volume paths were found.</p><ul><li>{0}</li></ul><p>Please ensure that only one device of a type is ready for flashing. Press <b>Refresh</b> when ready.</p></source> <translation><h4>Mehrere Boot Datenträger wurden erkannt</h4><p>Diese Datenträgerpfade wurden erkannt.</p><ul><li>{0}</li></ul><p>Bitte stellen sie sicher, dass nur ein Gerät zum Flashen bereit ist. Drücken sie <b>Aktualisieren</b>, wenn sie bereit sind.</p></translation> </message> <message> + <location filename="../MicroPython/UF2FlashDialog.py" line="806"/> + <source>Flashing {0}</source> + <translation>Flashe {0}</translation> + </message> + <message> + <location filename="../MicroPython/UF2FlashDialog.py" line="714"/> + <source><h4>Flash method 'manual' selected.</h4><p>Follow the instructions below to flash a device by entering the data manually.</p><ol><li>Change the device to 'bootloader' mode.</li><li>Wait until the device has entered 'bootloader' mode.</li><li>Ensure the boot volume is available (this may require mounting it) and select its path.</li><li>Select the firmware file to be flashed and click the flash button.</li></ol></source> + <translation><h4>Flash Method 'manuell' ausgewählt.</h4>Folgen sie den Anweisungen, um ein Gerät mit manueller Eingabe der Parameter zu flashen.</p><ol><li>Bringen sie das Gerät in den 'Bootloader' Modus.</li><li>Warten sie, bis das Gerät den 'Bootloader' Modus eingenommen hat.</li><li>Stellen sie sicher, dass der Boot Datenträger verfügbar ist (evtl. ist er zu mounten).</li><li>Wählen sie die zu flashende Firmwaredatei und klicken sie den Flash Knopf.</li></ol></translation> + </message> + <message> + <location filename="../MicroPython/UF2FlashDialog.py" line="808"/> + <source><p>Flashing the {0} firmware to the device. Please wait until the device resets automatically.</p></source> + <translation><p>Flashe die {0} Firmware auf das Gerät. Bitte warten sie, bis sich das Gerät automatisch resettet.</p></translation> + </message> + <message> + <location filename="../MicroPython/UF2FlashDialog.py" line="487"/> + <source>'{0}' Board</source> + <translation>'{0}' Board</translation> + </message> + <message> <location filename="../MicroPython/UF2FlashDialog.py" line="799"/> - <source>Flashing {0}</source> - <translation>Flashe {0}</translation> - </message> - <message> - <location filename="../MicroPython/UF2FlashDialog.py" line="707"/> - <source><h4>Flash method 'manual' selected.</h4><p>Follow the instructions below to flash a device by entering the data manually.</p><ol><li>Change the device to 'bootloader' mode.</li><li>Wait until the device has entered 'bootloader' mode.</li><li>Ensure the boot volume is available (this may require mounting it) and select its path.</li><li>Select the firmware file to be flashed and click the flash button.</li></ol></source> - <translation><h4>Flash Method 'manuell' ausgewählt.</h4>Folgen sie den Anweisungen, um ein Gerät mit manueller Eingabe der Parameter zu flashen.</p><ol><li>Bringen sie das Gerät in den 'Bootloader' Modus.</li><li>Warten sie, bis das Gerät den 'Bootloader' Modus eingenommen hat.</li><li>Stellen sie sicher, dass der Boot Datenträger verfügbar ist (evtl. ist er zu mounten).</li><li>Wählen sie die zu flashende Firmwaredatei und klicken sie den Flash Knopf.</li></ol></translation> - </message> - <message> - <location filename="../MicroPython/UF2FlashDialog.py" line="801"/> - <source><p>Flashing the {0} firmware to the device. Please wait until the device resets automatically.</p></source> - <translation><p>Flashe die {0} Firmware auf das Gerät. Bitte warten sie, bis sich das Gerät automatisch resettet.</p></translation> - </message> - <message> - <location filename="../MicroPython/UF2FlashDialog.py" line="484"/> - <source>'{0}' Board</source> - <translation>'{0}' Board</translation> - </message> - <message> - <location filename="../MicroPython/UF2FlashDialog.py" line="792"/> <source>Flashing Firmware</source> <translation>Flashe Firmware</translation> </message> <message> - <location filename="../MicroPython/UF2FlashDialog.py" line="793"/> + <location filename="../MicroPython/UF2FlashDialog.py" line="800"/> <source><p>Flashing the selected firmware to the device. Please wait until the device resets automatically.</p></source> <translation><p>Flashe die ausgewählte Firmware auf das Gerät. Bitte warten Sie bis sich das Gerät automatisch resettet.</p></translation> </message> <message> - <location filename="../MicroPython/UF2FlashDialog.py" line="752"/> + <location filename="../MicroPython/UF2FlashDialog.py" line="759"/> <source><h4>Reset Instructions</h4><p>Follow the instructions below to set the board into 'bootloader' mode. Press <b>Refresh</b> when ready.</p></source> <translation><h4>Reset Instruktionen</h4><p>Folgen sie den Anweisungen, um das Gerät in den 'Bootloader' Modus zu versetzen. Drücken sie <b>Aktualisieren</b>, wenn sie bereit sind.</p></translation> </message> <message> - <location filename="../MicroPython/UF2FlashDialog.py" line="414"/> + <location filename="../MicroPython/UF2FlashDialog.py" line="416"/> <source><h3>Pi Pico (RP2040) Board</h3><p>In order to prepare the board for flashing follow these steps:</p><ol><li>Enter 'bootloader' mode (board <b>without</b> RESET button):<ul><li>Plug in your board while holding the BOOTSEL button.</li></ul>Enter 'bootloader' mode (board <b>with</b> RESET button):<ul><li>hold down RESET</li><li>hold down BOOTSEL</li><li>release RESET</li><li>release BOOTSEL</li></ul></li><li>Wait until the device has entered 'bootloader' mode.</li><li>Ensure the boot volume is available (this may require mounting it).</li><li>Select the firmware file to be flashed and click the flash button.</li></ol></source> <translation><h3>Pi Pico (RP2040) Gerät</h3><p>Um das Gerät zum Flashen vorzubereiten, folgen sie den folgenden Schritten:</p><ol><li>'Bootloader' Modus aktivieren (Gerät <b>ohne</b> RESET Knopf):<ul><li>Verbinden sie das Gerät während der BOOTSEL Knopf gedrückt gehalten wird.</li></ul>'Bootloader' Modus aktivieren (Gerät <b>mit</b> RESET Knopf):<ul><li>RESET drücken und halten</li><li>BOOTSEL drücken und halten</li><li>RESET loslassen</li><li>BOOTSEL loslassen</li></ul></li><li>Warten sie, bis das Gerät den 'Bootloader' Modus eingenommen hat.</li><li>Stellen sie sicher, dass der Boot Datenträger verfügbar ist (evtl. ist er zu mounten).</li><li>Wählen sie die zu flashende Firmwaredatei und klicken sie den Flash Knopf.</li></ol></translation> </message> @@ -84547,8 +84558,8 @@ </message> <message> <location filename="../WebBrowser/WebBrowserView.py" line="666"/> - <source>Open Link in New Tab<byte value="x9"/>Ctrl+LMB</source> - <translation>Link in neuem Fenster öffnen<byte value="x9"/>Strg+LMK</translation> + <source>Open Link in New Tab Ctrl+LMB</source> + <translation>Link in neuem Fenster öffnen Strg+LMK</translation> </message> <message> <location filename="../WebBrowser/WebBrowserView.py" line="672"/>
--- a/eric6/i18n/eric6_empty.ts Sun Mar 28 18:51:40 2021 +0200 +++ b/eric6/i18n/eric6_empty.ts Sun Mar 28 18:51:58 2021 +0200 @@ -1583,37 +1583,37 @@ <context> <name>BackgroundService</name> <message> - <location filename="../Utilities/BackgroundService.py" line="135"/> + <location filename="../Utilities/BackgroundService.py" line="138"/> <source>{0} not configured.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Utilities/BackgroundService.py" line="190"/> + <location filename="../Utilities/BackgroundService.py" line="193"/> <source>Restart background client?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Utilities/BackgroundService.py" line="190"/> + <location filename="../Utilities/BackgroundService.py" line="193"/> <source><p>The background client for <b>{0}</b> has stopped due to an exception. It's used by various plug-ins like the different checkers.</p><p>Select<ul><li><b>'Yes'</b> to restart the client, but abort the last job</li><li><b>'Retry'</b> to restart the client and the last job</li><li><b>'No'</b> to leave the client off.</li></ul></p><p>Note: The client can be restarted by opening and accepting the preferences dialog or reloading/changing the project.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Utilities/BackgroundService.py" line="445"/> + <location filename="../Utilities/BackgroundService.py" line="448"/> <source>Eric's background client disconnected because of an unknown reason.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Utilities/BackgroundService.py" line="451"/> + <location filename="../Utilities/BackgroundService.py" line="454"/> <source>Background client disconnected.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Utilities/BackgroundService.py" line="451"/> + <location filename="../Utilities/BackgroundService.py" line="454"/> <source>The background client for <b>{0}</b> disconnected because of an unknown reason.<br>Should it be restarted?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Utilities/BackgroundService.py" line="216"/> + <location filename="../Utilities/BackgroundService.py" line="219"/> <source>An error in Eric's background client stopped the service.</source> <translation type="unfinished"></translation> </message> @@ -3449,7 +3449,7 @@ <context> <name>CodeStyleChecker</name> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="577"/> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="578"/> <source>No message defined for code '{0}'.</source> <translation type="unfinished"></translation> </message> @@ -9590,7 +9590,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../E5Gui/E5ErrorMessageFilterDialog.py" line="35"/> + <location filename="../E5Gui/E5ErrorMessageFilterDialog.py" line="32"/> <source><b>Error Message Filters</b><p>This list shows the configured message filters used to suppress error messages from within Qt.</p><p>A default list of message filters is added to this user list.</p></source> <translation type="unfinished"></translation> </message> @@ -11152,7 +11152,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7991"/> + <location filename="../QScintilla/Editor.py" line="7992"/> <source>Check spelling...</source> <translation type="unfinished"></translation> </message> @@ -11887,32 +11887,32 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7994"/> + <location filename="../QScintilla/Editor.py" line="7995"/> <source>Add to dictionary</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7996"/> + <location filename="../QScintilla/Editor.py" line="7997"/> <source>Ignore All</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8412"/> + <location filename="../QScintilla/Editor.py" line="8413"/> <source>Sort Lines</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8412"/> + <location filename="../QScintilla/Editor.py" line="8413"/> <source>The selection contains illegal data for a numerical sort.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8501"/> + <location filename="../QScintilla/Editor.py" line="8502"/> <source>Register Mouse Click Handler</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8501"/> + <location filename="../QScintilla/Editor.py" line="8502"/> <source>A mouse click handler for "{0}" was already registered by "{1}". Aborting request by "{2}"...</source> <translation type="unfinished"></translation> </message> @@ -11937,12 +11937,12 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8622"/> + <location filename="../QScintilla/Editor.py" line="8623"/> <source>EditorConfig Properties</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8622"/> + <location filename="../QScintilla/Editor.py" line="8623"/> <source><p>The EditorConfig properties for file <b>{0}</b> could not be loaded.</p></source> <translation type="unfinished"></translation> </message> @@ -11987,7 +11987,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8816"/> + <location filename="../QScintilla/Editor.py" line="8817"/> <source>Generate Docstring</source> <translation type="unfinished"></translation> </message> @@ -17527,12 +17527,12 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/EspDevices.py" line="227"/> + <location filename="../MicroPython/EspDevices.py" line="231"/> <source>Flash MicroPython Firmware</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/EspDevices.py" line="258"/> + <location filename="../MicroPython/EspDevices.py" line="266"/> <source>Flash Additional Firmware</source> <translation type="unfinished"></translation> </message> @@ -17557,7 +17557,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/EspDevices.py" line="319"/> + <location filename="../MicroPython/EspDevices.py" line="327"/> <source>'esptool write_flash' Output</source> <translation type="unfinished"></translation> </message> @@ -17567,47 +17567,47 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/EspDevices.py" line="285"/> + <location filename="../MicroPython/EspDevices.py" line="293"/> <source>Backup Firmware</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/EspDevices.py" line="319"/> + <location filename="../MicroPython/EspDevices.py" line="327"/> <source>Restore Firmware</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/EspDevices.py" line="337"/> + <location filename="../MicroPython/EspDevices.py" line="345"/> <source>Show Chip ID</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/EspDevices.py" line="354"/> + <location filename="../MicroPython/EspDevices.py" line="362"/> <source>Show Flash ID</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/EspDevices.py" line="371"/> + <location filename="../MicroPython/EspDevices.py" line="379"/> <source>Show MAC Address</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/EspDevices.py" line="285"/> + <location filename="../MicroPython/EspDevices.py" line="293"/> <source>'esptool read_flash' Output</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/EspDevices.py" line="337"/> + <location filename="../MicroPython/EspDevices.py" line="345"/> <source>'esptool chip_id' Output</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/EspDevices.py" line="354"/> + <location filename="../MicroPython/EspDevices.py" line="362"/> <source>'esptool flash_id' Output</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/EspDevices.py" line="371"/> + <location filename="../MicroPython/EspDevices.py" line="379"/> <source>'esptool read_mac' Output</source> <translation type="unfinished"></translation> </message> @@ -17640,12 +17640,12 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="96"/> + <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="123"/> <source>Address:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="103"/> + <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="130"/> <source>Enter the flash addres in the hexadecimal form</source> <translation type="unfinished"></translation> </message> @@ -17655,20 +17655,30 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="75"/> + <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="102"/> <source>Flash Mode:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="82"/> + <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="109"/> <source>Select the flash mode</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="89"/> + <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="116"/> <source>Leave empty to use the default mode.</source> <translation type="unfinished"></translation> </message> + <message> + <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="72"/> + <source>Baud Rate:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="79"/> + <source>Select the baud rate to be used foor flashing (default: 115.200 bps)</source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>ExceptionLogger</name> @@ -44853,674 +44863,674 @@ <context> <name>MiniEditor</name> <message> - <location filename="../QScintilla/MiniEditor.py" line="2721"/> + <location filename="../QScintilla/MiniEditor.py" line="2722"/> <source>Save File</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2721"/> + <location filename="../QScintilla/MiniEditor.py" line="2722"/> <source><p>The file <b>{0}</b> could not be saved.<br/>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2728"/> + <location filename="../QScintilla/MiniEditor.py" line="2729"/> <source>File saved</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="483"/> + <location filename="../QScintilla/MiniEditor.py" line="484"/> <source>Line: {0:5}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="487"/> + <location filename="../QScintilla/MiniEditor.py" line="488"/> <source>Pos: {0:5}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="561"/> + <location filename="../QScintilla/MiniEditor.py" line="562"/> <source>New</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="561"/> + <location filename="../QScintilla/MiniEditor.py" line="562"/> <source>&New</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="561"/> + <location filename="../QScintilla/MiniEditor.py" line="562"/> <source>Ctrl+N</source> <comment>File|New</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="567"/> - <source>Open an empty editor window</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="568"/> + <source>Open an empty editor window</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="569"/> <source><b>New</b><p>An empty editor window will be created.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="575"/> + <location filename="../QScintilla/MiniEditor.py" line="576"/> <source>Open</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="575"/> + <location filename="../QScintilla/MiniEditor.py" line="576"/> <source>&Open...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="575"/> + <location filename="../QScintilla/MiniEditor.py" line="576"/> <source>Ctrl+O</source> <comment>File|Open</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="581"/> - <source>Open a file</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="582"/> + <source>Open a file</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="583"/> <source><b>Open a file</b><p>You will be asked for the name of a file to be opened.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="589"/> + <location filename="../QScintilla/MiniEditor.py" line="590"/> <source>Save</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="589"/> + <location filename="../QScintilla/MiniEditor.py" line="590"/> <source>&Save</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="589"/> + <location filename="../QScintilla/MiniEditor.py" line="590"/> <source>Ctrl+S</source> <comment>File|Save</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="595"/> - <source>Save the current file</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="596"/> + <source>Save the current file</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="597"/> <source><b>Save File</b><p>Save the contents of current editor window.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="603"/> + <location filename="../QScintilla/MiniEditor.py" line="604"/> <source>Save as</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="603"/> + <location filename="../QScintilla/MiniEditor.py" line="604"/> <source>Save &as...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="603"/> + <location filename="../QScintilla/MiniEditor.py" line="604"/> <source>Shift+Ctrl+S</source> <comment>File|Save As</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="609"/> + <location filename="../QScintilla/MiniEditor.py" line="610"/> <source>Save the current file to a new one</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="611"/> + <location filename="../QScintilla/MiniEditor.py" line="612"/> <source><b>Save File as</b><p>Save the contents of current editor window to a new file. The file can be entered in a file selection dialog.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="619"/> + <location filename="../QScintilla/MiniEditor.py" line="620"/> <source>Save Copy</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="619"/> + <location filename="../QScintilla/MiniEditor.py" line="620"/> <source>Save &Copy...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="624"/> + <location filename="../QScintilla/MiniEditor.py" line="625"/> <source>Save a copy of the current file</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="626"/> + <location filename="../QScintilla/MiniEditor.py" line="627"/> <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"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="634"/> + <location filename="../QScintilla/MiniEditor.py" line="635"/> <source>Close</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="634"/> + <location filename="../QScintilla/MiniEditor.py" line="635"/> <source>&Close</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="634"/> + <location filename="../QScintilla/MiniEditor.py" line="635"/> <source>Ctrl+W</source> <comment>File|Close</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="640"/> - <source>Close the editor window</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="641"/> + <source>Close the editor window</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="642"/> <source><b>Close Window</b><p>Close the current window.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="648"/> + <location filename="../QScintilla/MiniEditor.py" line="649"/> <source>Print</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="648"/> + <location filename="../QScintilla/MiniEditor.py" line="649"/> <source>&Print</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="648"/> + <location filename="../QScintilla/MiniEditor.py" line="649"/> <source>Ctrl+P</source> <comment>File|Print</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="654"/> - <source>Print the current file</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="655"/> + <source>Print the current file</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="656"/> <source><b>Print File</b><p>Print the contents of the current file.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="662"/> + <location filename="../QScintilla/MiniEditor.py" line="663"/> <source>Print Preview</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="667"/> + <location filename="../QScintilla/MiniEditor.py" line="668"/> <source>Print preview of the current file</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="669"/> + <location filename="../QScintilla/MiniEditor.py" line="670"/> <source><b>Print Preview</b><p>Print preview of the current file.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="680"/> + <location filename="../QScintilla/MiniEditor.py" line="681"/> <source>Undo</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="680"/> + <location filename="../QScintilla/MiniEditor.py" line="681"/> <source>&Undo</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="680"/> + <location filename="../QScintilla/MiniEditor.py" line="681"/> <source>Ctrl+Z</source> <comment>Edit|Undo</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="680"/> + <location filename="../QScintilla/MiniEditor.py" line="681"/> <source>Alt+Backspace</source> <comment>Edit|Undo</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="687"/> - <source>Undo the last change</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="688"/> + <source>Undo the last change</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="689"/> <source><b>Undo</b><p>Undo the last change done in the current editor.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="695"/> + <location filename="../QScintilla/MiniEditor.py" line="696"/> <source>Redo</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="695"/> + <location filename="../QScintilla/MiniEditor.py" line="696"/> <source>&Redo</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="695"/> + <location filename="../QScintilla/MiniEditor.py" line="696"/> <source>Ctrl+Shift+Z</source> <comment>Edit|Redo</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="701"/> - <source>Redo the last change</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="702"/> + <source>Redo the last change</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="703"/> <source><b>Redo</b><p>Redo the last change done in the current editor.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="709"/> + <location filename="../QScintilla/MiniEditor.py" line="710"/> <source>Cut</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="709"/> + <location filename="../QScintilla/MiniEditor.py" line="710"/> <source>Cu&t</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="709"/> + <location filename="../QScintilla/MiniEditor.py" line="710"/> <source>Ctrl+X</source> <comment>Edit|Cut</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="709"/> + <location filename="../QScintilla/MiniEditor.py" line="710"/> <source>Shift+Del</source> <comment>Edit|Cut</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="716"/> - <source>Cut the selection</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="717"/> + <source>Cut the selection</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="718"/> <source><b>Cut</b><p>Cut the selected text of the current editor to the clipboard.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="725"/> + <location filename="../QScintilla/MiniEditor.py" line="726"/> <source>Copy</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="725"/> + <location filename="../QScintilla/MiniEditor.py" line="726"/> <source>&Copy</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="725"/> + <location filename="../QScintilla/MiniEditor.py" line="726"/> <source>Ctrl+C</source> <comment>Edit|Copy</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="725"/> + <location filename="../QScintilla/MiniEditor.py" line="726"/> <source>Ctrl+Ins</source> <comment>Edit|Copy</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="732"/> - <source>Copy the selection</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="733"/> + <source>Copy the selection</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="734"/> <source><b>Copy</b><p>Copy the selected text of the current editor to the clipboard.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="741"/> + <location filename="../QScintilla/MiniEditor.py" line="742"/> <source>Paste</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="741"/> + <location filename="../QScintilla/MiniEditor.py" line="742"/> <source>&Paste</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="741"/> + <location filename="../QScintilla/MiniEditor.py" line="742"/> <source>Ctrl+V</source> <comment>Edit|Paste</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="741"/> + <location filename="../QScintilla/MiniEditor.py" line="742"/> <source>Shift+Ins</source> <comment>Edit|Paste</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="748"/> + <location filename="../QScintilla/MiniEditor.py" line="749"/> <source>Paste the last cut/copied text</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="750"/> + <location filename="../QScintilla/MiniEditor.py" line="751"/> <source><b>Paste</b><p>Paste the last cut/copied text from the clipboard to the current editor.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="758"/> + <location filename="../QScintilla/MiniEditor.py" line="759"/> <source>Clear</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="758"/> + <location filename="../QScintilla/MiniEditor.py" line="759"/> <source>Cl&ear</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="758"/> + <location filename="../QScintilla/MiniEditor.py" line="759"/> <source>Alt+Shift+C</source> <comment>Edit|Clear</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="765"/> - <source>Clear all text</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="766"/> + <source>Clear all text</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="767"/> <source><b>Clear</b><p>Delete all text of the current editor.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2373"/> + <location filename="../QScintilla/MiniEditor.py" line="2374"/> <source>About</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2373"/> + <location filename="../QScintilla/MiniEditor.py" line="2374"/> <source>&About</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2377"/> + <location filename="../QScintilla/MiniEditor.py" line="2378"/> <source>Display information about this software</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2379"/> + <location filename="../QScintilla/MiniEditor.py" line="2380"/> <source><b>About</b><p>Display some information about this software.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2385"/> + <location filename="../QScintilla/MiniEditor.py" line="2386"/> <source>About Qt</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2385"/> + <location filename="../QScintilla/MiniEditor.py" line="2386"/> <source>About &Qt</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2389"/> + <location filename="../QScintilla/MiniEditor.py" line="2390"/> <source>Display information about the Qt toolkit</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2391"/> + <location filename="../QScintilla/MiniEditor.py" line="2392"/> <source><b>About Qt</b><p>Display some information about the Qt toolkit.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2398"/> + <location filename="../QScintilla/MiniEditor.py" line="2399"/> <source>What's This?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2398"/> + <location filename="../QScintilla/MiniEditor.py" line="2399"/> <source>&What's This?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2398"/> + <location filename="../QScintilla/MiniEditor.py" line="2399"/> <source>Shift+F1</source> <comment>Help|What's This?'</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2404"/> - <source>Context sensitive help</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="2405"/> + <source>Context sensitive help</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="2406"/> <source><b>Display context sensitive help</b><p>In What's This? mode, the mouse cursor shows an arrow with a question mark, and you can click on the interface elements to get a short description of what they do and how to use them. In dialogs, this feature can be accessed using the context help button in the titlebar.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2421"/> + <location filename="../QScintilla/MiniEditor.py" line="2422"/> <source>&File</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2433"/> + <location filename="../QScintilla/MiniEditor.py" line="2434"/> <source>&Edit</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2459"/> + <location filename="../QScintilla/MiniEditor.py" line="2460"/> <source>&Help</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2471"/> + <location filename="../QScintilla/MiniEditor.py" line="2472"/> <source>File</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2484"/> + <location filename="../QScintilla/MiniEditor.py" line="2485"/> <source>Edit</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2494"/> + <location filename="../QScintilla/MiniEditor.py" line="2495"/> <source>Find</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2508"/> + <location filename="../QScintilla/MiniEditor.py" line="2509"/> <source>Help</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2529"/> + <location filename="../QScintilla/MiniEditor.py" line="2530"/> <source><p>This part of the status bar displays an indication of the editors files writability.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2536"/> + <location filename="../QScintilla/MiniEditor.py" line="2537"/> <source><p>This part of the status bar displays the line number of the editor.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2543"/> + <location filename="../QScintilla/MiniEditor.py" line="2544"/> <source><p>This part of the status bar displays the cursor position of the editor.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2560"/> + <location filename="../QScintilla/MiniEditor.py" line="2561"/> <source>Ready</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2587"/> + <location filename="../QScintilla/MiniEditor.py" line="2588"/> <source>The document has unsaved changes.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2614"/> + <location filename="../QScintilla/MiniEditor.py" line="2615"/> <source>Open File</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2614"/> + <location filename="../QScintilla/MiniEditor.py" line="2615"/> <source><p>The file <b>{0}</b> could not be opened.</p><p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2642"/> + <location filename="../QScintilla/MiniEditor.py" line="2643"/> <source>File loaded</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3089"/> + <location filename="../QScintilla/MiniEditor.py" line="3090"/> <source>Untitled</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2757"/> + <location filename="../QScintilla/MiniEditor.py" line="2758"/> <source>{0}[*] - {1}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2757"/> + <location filename="../QScintilla/MiniEditor.py" line="2758"/> <source>Mini Editor</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3049"/> + <location filename="../QScintilla/MiniEditor.py" line="3050"/> <source>Printing...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3070"/> + <location filename="../QScintilla/MiniEditor.py" line="3071"/> <source>Printing completed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3072"/> + <location filename="../QScintilla/MiniEditor.py" line="3073"/> <source>Error while printing</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3075"/> + <location filename="../QScintilla/MiniEditor.py" line="3076"/> <source>Printing aborted</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3130"/> - <source>Select all</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="3131"/> + <source>Select all</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="3132"/> <source>Deselect all</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3145"/> + <location filename="../QScintilla/MiniEditor.py" line="3146"/> <source>Languages</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3148"/> + <location filename="../QScintilla/MiniEditor.py" line="3149"/> <source>No Language</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3172"/> + <location filename="../QScintilla/MiniEditor.py" line="3173"/> <source>Guessed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3194"/> + <location filename="../QScintilla/MiniEditor.py" line="3195"/> <source>Alternatives</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3190"/> + <location filename="../QScintilla/MiniEditor.py" line="3191"/> <source>Alternatives ({0})</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3218"/> + <location filename="../QScintilla/MiniEditor.py" line="3219"/> <source>Pygments Lexer</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3218"/> + <location filename="../QScintilla/MiniEditor.py" line="3219"/> <source>Select the Pygments lexer to apply.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3735"/> + <location filename="../QScintilla/MiniEditor.py" line="3736"/> <source>EditorConfig Properties</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3735"/> + <location filename="../QScintilla/MiniEditor.py" line="3736"/> <source><p>The EditorConfig properties for file <b>{0}</b> could not be loaded.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2740"/> + <location filename="../QScintilla/MiniEditor.py" line="2741"/> <source>[*] - {0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="502"/> + <location filename="../QScintilla/MiniEditor.py" line="503"/> <source>Language: {0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2451"/> + <location filename="../QScintilla/MiniEditor.py" line="2452"/> <source>&View</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2501"/> + <location filename="../QScintilla/MiniEditor.py" line="2502"/> <source>View</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2521"/> + <location filename="../QScintilla/MiniEditor.py" line="2522"/> <source><p>This part of the status bar displays the editor language.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2554"/> + <location filename="../QScintilla/MiniEditor.py" line="2555"/> <source><p>This part of the status bar allows zooming the editor.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="413"/> + <location filename="../QScintilla/MiniEditor.py" line="414"/> <source>About eric Mini Editor</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="413"/> + <location filename="../QScintilla/MiniEditor.py" line="414"/> <source>The eric Mini Editor is an editor component based on QScintilla. It may be used for simple editing tasks, that don't need the power of a full blown editor.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2587"/> + <location filename="../QScintilla/MiniEditor.py" line="2588"/> <source>eric Mini Editor</source> <translation type="unfinished"></translation> </message> @@ -73107,112 +73117,112 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/UF2FlashDialog.py" line="519"/> + <location filename="../MicroPython/UF2FlashDialog.py" line="522"/> <source>MicroPython/CircuitPython Files (*.uf2);;All Files (*)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/UF2FlashDialog.py" line="590"/> + <location filename="../MicroPython/UF2FlashDialog.py" line="593"/> <source>Manual Select</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/UF2FlashDialog.py" line="691"/> + <location filename="../MicroPython/UF2FlashDialog.py" line="698"/> <source>Reset Instructions:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/UF2FlashDialog.py" line="635"/> + <location filename="../MicroPython/UF2FlashDialog.py" line="638"/> <source><h4>No known devices detected.</h4><p>Follow the appropriate instructions below to set <b>one</b> board into 'bootloader' mode. Press <b>Refresh</b> when ready.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/UF2FlashDialog.py" line="658"/> + <location filename="../MicroPython/UF2FlashDialog.py" line="665"/> <source><h4>Flash {0} Firmware</h4><p>Follow the instructions below to set <b>one</b> board into 'bootloader' mode. Press <b>Refresh</b> when ready.</p><hr/>{1}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/UF2FlashDialog.py" line="668"/> + <location filename="../MicroPython/UF2FlashDialog.py" line="675"/> <source><h4>Potentially UF2 capable devices found</h4><p>Found these potentially UF2 capable devices:</p><ul><li>{0}</li></ul><p>Follow the instructions below to set <b>one</b> board into 'bootloader' mode. Press <b>Refresh</b> when ready.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/UF2FlashDialog.py" line="693"/> + <location filename="../MicroPython/UF2FlashDialog.py" line="700"/> <source><h4>No known devices detected.</h4><p>Follow the instructions below to set <b>one</b> board into 'bootloader' mode. Press <b>Refresh</b> when ready.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/UF2FlashDialog.py" line="705"/> + <location filename="../MicroPython/UF2FlashDialog.py" line="712"/> <source>Flash Instructions:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/UF2FlashDialog.py" line="732"/> + <location filename="../MicroPython/UF2FlashDialog.py" line="739"/> <source>Boot Volume not found:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/UF2FlashDialog.py" line="734"/> + <location filename="../MicroPython/UF2FlashDialog.py" line="741"/> <source><h4>No Boot Volume detected.</h4><p>Please ensure that the boot volume of the device to be flashed is available. </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/UF2FlashDialog.py" line="740"/> + <location filename="../MicroPython/UF2FlashDialog.py" line="747"/> <source>This volume should be named <b>{0}</b>. Press <b>Refresh</b> when ready.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/UF2FlashDialog.py" line="745"/> + <location filename="../MicroPython/UF2FlashDialog.py" line="752"/> <source>This volume should have one of these names.</p><ul><li>{0}</li></ul><p>Press <b>Refresh</b> when ready.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/UF2FlashDialog.py" line="771"/> + <location filename="../MicroPython/UF2FlashDialog.py" line="778"/> <source>Multiple Boot Volumes found:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/UF2FlashDialog.py" line="773"/> + <location filename="../MicroPython/UF2FlashDialog.py" line="780"/> <source><h4>Multiple Boot Volumes were found</h4><p>These volume paths were found.</p><ul><li>{0}</li></ul><p>Please ensure that only one device of a type is ready for flashing. Press <b>Refresh</b> when ready.</p></source> <translation type="unfinished"></translation> </message> <message> + <location filename="../MicroPython/UF2FlashDialog.py" line="806"/> + <source>Flashing {0}</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../MicroPython/UF2FlashDialog.py" line="714"/> + <source><h4>Flash method 'manual' selected.</h4><p>Follow the instructions below to flash a device by entering the data manually.</p><ol><li>Change the device to 'bootloader' mode.</li><li>Wait until the device has entered 'bootloader' mode.</li><li>Ensure the boot volume is available (this may require mounting it) and select its path.</li><li>Select the firmware file to be flashed and click the flash button.</li></ol></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../MicroPython/UF2FlashDialog.py" line="808"/> + <source><p>Flashing the {0} firmware to the device. Please wait until the device resets automatically.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../MicroPython/UF2FlashDialog.py" line="487"/> + <source>'{0}' Board</source> + <translation type="unfinished"></translation> + </message> + <message> <location filename="../MicroPython/UF2FlashDialog.py" line="799"/> - <source>Flashing {0}</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../MicroPython/UF2FlashDialog.py" line="707"/> - <source><h4>Flash method 'manual' selected.</h4><p>Follow the instructions below to flash a device by entering the data manually.</p><ol><li>Change the device to 'bootloader' mode.</li><li>Wait until the device has entered 'bootloader' mode.</li><li>Ensure the boot volume is available (this may require mounting it) and select its path.</li><li>Select the firmware file to be flashed and click the flash button.</li></ol></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../MicroPython/UF2FlashDialog.py" line="801"/> - <source><p>Flashing the {0} firmware to the device. Please wait until the device resets automatically.</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../MicroPython/UF2FlashDialog.py" line="484"/> - <source>'{0}' Board</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../MicroPython/UF2FlashDialog.py" line="792"/> <source>Flashing Firmware</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/UF2FlashDialog.py" line="793"/> + <location filename="../MicroPython/UF2FlashDialog.py" line="800"/> <source><p>Flashing the selected firmware to the device. Please wait until the device resets automatically.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/UF2FlashDialog.py" line="752"/> + <location filename="../MicroPython/UF2FlashDialog.py" line="759"/> <source><h4>Reset Instructions</h4><p>Follow the instructions below to set the board into 'bootloader' mode. Press <b>Refresh</b> when ready.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/UF2FlashDialog.py" line="414"/> + <location filename="../MicroPython/UF2FlashDialog.py" line="416"/> <source><h3>Pi Pico (RP2040) Board</h3><p>In order to prepare the board for flashing follow these steps:</p><ol><li>Enter 'bootloader' mode (board <b>without</b> RESET button):<ul><li>Plug in your board while holding the BOOTSEL button.</li></ul>Enter 'bootloader' mode (board <b>with</b> RESET button):<ul><li>hold down RESET</li><li>hold down BOOTSEL</li><li>release RESET</li><li>release BOOTSEL</li></ul></li><li>Wait until the device has entered 'bootloader' mode.</li><li>Ensure the boot volume is available (this may require mounting it).</li><li>Select the firmware file to be flashed and click the flash button.</li></ol></source> <translation type="unfinished"></translation> </message>
--- a/eric6/i18n/eric6_en.ts Sun Mar 28 18:51:40 2021 +0200 +++ b/eric6/i18n/eric6_en.ts Sun Mar 28 18:51:58 2021 +0200 @@ -1583,37 +1583,37 @@ <context> <name>BackgroundService</name> <message> - <location filename="../Utilities/BackgroundService.py" line="135"/> + <location filename="../Utilities/BackgroundService.py" line="138"/> <source>{0} not configured.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Utilities/BackgroundService.py" line="190"/> + <location filename="../Utilities/BackgroundService.py" line="193"/> <source>Restart background client?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Utilities/BackgroundService.py" line="445"/> + <location filename="../Utilities/BackgroundService.py" line="448"/> <source>Eric's background client disconnected because of an unknown reason.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Utilities/BackgroundService.py" line="451"/> + <location filename="../Utilities/BackgroundService.py" line="454"/> <source>Background client disconnected.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Utilities/BackgroundService.py" line="190"/> + <location filename="../Utilities/BackgroundService.py" line="193"/> <source><p>The background client for <b>{0}</b> has stopped due to an exception. It's used by various plug-ins like the different checkers.</p><p>Select<ul><li><b>'Yes'</b> to restart the client, but abort the last job</li><li><b>'Retry'</b> to restart the client and the last job</li><li><b>'No'</b> to leave the client off.</li></ul></p><p>Note: The client can be restarted by opening and accepting the preferences dialog or reloading/changing the project.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Utilities/BackgroundService.py" line="451"/> + <location filename="../Utilities/BackgroundService.py" line="454"/> <source>The background client for <b>{0}</b> disconnected because of an unknown reason.<br>Should it be restarted?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Utilities/BackgroundService.py" line="216"/> + <location filename="../Utilities/BackgroundService.py" line="219"/> <source>An error in Eric's background client stopped the service.</source> <translation type="unfinished"></translation> </message> @@ -3449,7 +3449,7 @@ <context> <name>CodeStyleChecker</name> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="577"/> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="578"/> <source>No message defined for code '{0}'.</source> <translation type="unfinished"></translation> </message> @@ -9605,7 +9605,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../E5Gui/E5ErrorMessageFilterDialog.py" line="35"/> + <location filename="../E5Gui/E5ErrorMessageFilterDialog.py" line="32"/> <source><b>Error Message Filters</b><p>This list shows the configured message filters used to suppress error messages from within Qt.</p><p>A default list of message filters is added to this user list.</p></source> <translation type="unfinished"></translation> </message> @@ -11167,7 +11167,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7991"/> + <location filename="../QScintilla/Editor.py" line="7992"/> <source>Check spelling...</source> <translation type="unfinished"></translation> </message> @@ -11797,12 +11797,12 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7994"/> + <location filename="../QScintilla/Editor.py" line="7995"/> <source>Add to dictionary</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7996"/> + <location filename="../QScintilla/Editor.py" line="7997"/> <source>Ignore All</source> <translation type="unfinished"></translation> </message> @@ -11842,12 +11842,12 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8412"/> + <location filename="../QScintilla/Editor.py" line="8413"/> <source>Sort Lines</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8412"/> + <location filename="../QScintilla/Editor.py" line="8413"/> <source>The selection contains illegal data for a numerical sort.</source> <translation type="unfinished"></translation> </message> @@ -11917,12 +11917,12 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8501"/> + <location filename="../QScintilla/Editor.py" line="8502"/> <source>Register Mouse Click Handler</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8501"/> + <location filename="../QScintilla/Editor.py" line="8502"/> <source>A mouse click handler for "{0}" was already registered by "{1}". Aborting request by "{2}"...</source> <translation type="unfinished"></translation> </message> @@ -11952,12 +11952,12 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8622"/> + <location filename="../QScintilla/Editor.py" line="8623"/> <source>EditorConfig Properties</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8622"/> + <location filename="../QScintilla/Editor.py" line="8623"/> <source><p>The EditorConfig properties for file <b>{0}</b> could not be loaded.</p></source> <translation type="unfinished"></translation> </message> @@ -12002,7 +12002,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8816"/> + <location filename="../QScintilla/Editor.py" line="8817"/> <source>Generate Docstring</source> <translation type="unfinished"></translation> </message> @@ -17542,12 +17542,12 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/EspDevices.py" line="227"/> + <location filename="../MicroPython/EspDevices.py" line="231"/> <source>Flash MicroPython Firmware</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/EspDevices.py" line="258"/> + <location filename="../MicroPython/EspDevices.py" line="266"/> <source>Flash Additional Firmware</source> <translation type="unfinished"></translation> </message> @@ -17572,7 +17572,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/EspDevices.py" line="319"/> + <location filename="../MicroPython/EspDevices.py" line="327"/> <source>'esptool write_flash' Output</source> <translation type="unfinished"></translation> </message> @@ -17582,47 +17582,47 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/EspDevices.py" line="285"/> + <location filename="../MicroPython/EspDevices.py" line="293"/> <source>Backup Firmware</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/EspDevices.py" line="319"/> + <location filename="../MicroPython/EspDevices.py" line="327"/> <source>Restore Firmware</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/EspDevices.py" line="337"/> + <location filename="../MicroPython/EspDevices.py" line="345"/> <source>Show Chip ID</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/EspDevices.py" line="354"/> + <location filename="../MicroPython/EspDevices.py" line="362"/> <source>Show Flash ID</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/EspDevices.py" line="371"/> + <location filename="../MicroPython/EspDevices.py" line="379"/> <source>Show MAC Address</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/EspDevices.py" line="285"/> + <location filename="../MicroPython/EspDevices.py" line="293"/> <source>'esptool read_flash' Output</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/EspDevices.py" line="337"/> + <location filename="../MicroPython/EspDevices.py" line="345"/> <source>'esptool chip_id' Output</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/EspDevices.py" line="354"/> + <location filename="../MicroPython/EspDevices.py" line="362"/> <source>'esptool flash_id' Output</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/EspDevices.py" line="371"/> + <location filename="../MicroPython/EspDevices.py" line="379"/> <source>'esptool read_mac' Output</source> <translation type="unfinished"></translation> </message> @@ -17655,12 +17655,12 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="96"/> + <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="123"/> <source>Address:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="103"/> + <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="130"/> <source>Enter the flash addres in the hexadecimal form</source> <translation type="unfinished"></translation> </message> @@ -17670,20 +17670,30 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="75"/> + <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="102"/> <source>Flash Mode:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="82"/> + <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="109"/> <source>Select the flash mode</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="89"/> + <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="116"/> <source>Leave empty to use the default mode.</source> <translation type="unfinished"></translation> </message> + <message> + <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="72"/> + <source>Baud Rate:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="79"/> + <source>Select the baud rate to be used foor flashing (default: 115.200 bps)</source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>ExceptionLogger</name> @@ -44897,674 +44907,674 @@ <context> <name>MiniEditor</name> <message> - <location filename="../QScintilla/MiniEditor.py" line="483"/> + <location filename="../QScintilla/MiniEditor.py" line="484"/> <source>Line: {0:5}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="487"/> + <location filename="../QScintilla/MiniEditor.py" line="488"/> <source>Pos: {0:5}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="561"/> + <location filename="../QScintilla/MiniEditor.py" line="562"/> <source>New</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="561"/> + <location filename="../QScintilla/MiniEditor.py" line="562"/> <source>&New</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="561"/> + <location filename="../QScintilla/MiniEditor.py" line="562"/> <source>Ctrl+N</source> <comment>File|New</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="567"/> - <source>Open an empty editor window</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="568"/> + <source>Open an empty editor window</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="569"/> <source><b>New</b><p>An empty editor window will be created.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="575"/> + <location filename="../QScintilla/MiniEditor.py" line="576"/> <source>Open</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="575"/> + <location filename="../QScintilla/MiniEditor.py" line="576"/> <source>&Open...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="575"/> + <location filename="../QScintilla/MiniEditor.py" line="576"/> <source>Ctrl+O</source> <comment>File|Open</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="581"/> - <source>Open a file</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="582"/> + <source>Open a file</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="583"/> <source><b>Open a file</b><p>You will be asked for the name of a file to be opened.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="589"/> + <location filename="../QScintilla/MiniEditor.py" line="590"/> <source>Save</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="589"/> + <location filename="../QScintilla/MiniEditor.py" line="590"/> <source>&Save</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="589"/> + <location filename="../QScintilla/MiniEditor.py" line="590"/> <source>Ctrl+S</source> <comment>File|Save</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="595"/> - <source>Save the current file</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="596"/> + <source>Save the current file</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="597"/> <source><b>Save File</b><p>Save the contents of current editor window.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="603"/> + <location filename="../QScintilla/MiniEditor.py" line="604"/> <source>Save as</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="603"/> + <location filename="../QScintilla/MiniEditor.py" line="604"/> <source>Save &as...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="603"/> + <location filename="../QScintilla/MiniEditor.py" line="604"/> <source>Shift+Ctrl+S</source> <comment>File|Save As</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="609"/> + <location filename="../QScintilla/MiniEditor.py" line="610"/> <source>Save the current file to a new one</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="611"/> + <location filename="../QScintilla/MiniEditor.py" line="612"/> <source><b>Save File as</b><p>Save the contents of current editor window to a new file. The file can be entered in a file selection dialog.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="634"/> + <location filename="../QScintilla/MiniEditor.py" line="635"/> <source>Close</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="634"/> + <location filename="../QScintilla/MiniEditor.py" line="635"/> <source>&Close</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="634"/> + <location filename="../QScintilla/MiniEditor.py" line="635"/> <source>Ctrl+W</source> <comment>File|Close</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="640"/> - <source>Close the editor window</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="641"/> + <source>Close the editor window</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="642"/> <source><b>Close Window</b><p>Close the current window.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="648"/> + <location filename="../QScintilla/MiniEditor.py" line="649"/> <source>Print</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="648"/> + <location filename="../QScintilla/MiniEditor.py" line="649"/> <source>&Print</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="648"/> + <location filename="../QScintilla/MiniEditor.py" line="649"/> <source>Ctrl+P</source> <comment>File|Print</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="654"/> - <source>Print the current file</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="655"/> + <source>Print the current file</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="656"/> <source><b>Print File</b><p>Print the contents of the current file.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="662"/> + <location filename="../QScintilla/MiniEditor.py" line="663"/> <source>Print Preview</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="667"/> + <location filename="../QScintilla/MiniEditor.py" line="668"/> <source>Print preview of the current file</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="669"/> + <location filename="../QScintilla/MiniEditor.py" line="670"/> <source><b>Print Preview</b><p>Print preview of the current file.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="680"/> + <location filename="../QScintilla/MiniEditor.py" line="681"/> <source>Undo</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="680"/> + <location filename="../QScintilla/MiniEditor.py" line="681"/> <source>&Undo</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="680"/> + <location filename="../QScintilla/MiniEditor.py" line="681"/> <source>Ctrl+Z</source> <comment>Edit|Undo</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="680"/> + <location filename="../QScintilla/MiniEditor.py" line="681"/> <source>Alt+Backspace</source> <comment>Edit|Undo</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="687"/> - <source>Undo the last change</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="688"/> + <source>Undo the last change</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="689"/> <source><b>Undo</b><p>Undo the last change done in the current editor.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="695"/> + <location filename="../QScintilla/MiniEditor.py" line="696"/> <source>Redo</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="695"/> + <location filename="../QScintilla/MiniEditor.py" line="696"/> <source>&Redo</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="695"/> + <location filename="../QScintilla/MiniEditor.py" line="696"/> <source>Ctrl+Shift+Z</source> <comment>Edit|Redo</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="701"/> - <source>Redo the last change</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="702"/> + <source>Redo the last change</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="703"/> <source><b>Redo</b><p>Redo the last change done in the current editor.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="709"/> + <location filename="../QScintilla/MiniEditor.py" line="710"/> <source>Cut</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="709"/> + <location filename="../QScintilla/MiniEditor.py" line="710"/> <source>Cu&t</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="709"/> + <location filename="../QScintilla/MiniEditor.py" line="710"/> <source>Ctrl+X</source> <comment>Edit|Cut</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="709"/> + <location filename="../QScintilla/MiniEditor.py" line="710"/> <source>Shift+Del</source> <comment>Edit|Cut</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="716"/> - <source>Cut the selection</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="717"/> + <source>Cut the selection</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="718"/> <source><b>Cut</b><p>Cut the selected text of the current editor to the clipboard.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="725"/> + <location filename="../QScintilla/MiniEditor.py" line="726"/> <source>Copy</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="725"/> + <location filename="../QScintilla/MiniEditor.py" line="726"/> <source>&Copy</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="725"/> + <location filename="../QScintilla/MiniEditor.py" line="726"/> <source>Ctrl+C</source> <comment>Edit|Copy</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="725"/> + <location filename="../QScintilla/MiniEditor.py" line="726"/> <source>Ctrl+Ins</source> <comment>Edit|Copy</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="732"/> - <source>Copy the selection</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="733"/> + <source>Copy the selection</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="734"/> <source><b>Copy</b><p>Copy the selected text of the current editor to the clipboard.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="741"/> + <location filename="../QScintilla/MiniEditor.py" line="742"/> <source>Paste</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="741"/> + <location filename="../QScintilla/MiniEditor.py" line="742"/> <source>&Paste</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="741"/> + <location filename="../QScintilla/MiniEditor.py" line="742"/> <source>Ctrl+V</source> <comment>Edit|Paste</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="741"/> + <location filename="../QScintilla/MiniEditor.py" line="742"/> <source>Shift+Ins</source> <comment>Edit|Paste</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="748"/> + <location filename="../QScintilla/MiniEditor.py" line="749"/> <source>Paste the last cut/copied text</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="750"/> + <location filename="../QScintilla/MiniEditor.py" line="751"/> <source><b>Paste</b><p>Paste the last cut/copied text from the clipboard to the current editor.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="758"/> + <location filename="../QScintilla/MiniEditor.py" line="759"/> <source>Clear</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="758"/> + <location filename="../QScintilla/MiniEditor.py" line="759"/> <source>Cl&ear</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="758"/> + <location filename="../QScintilla/MiniEditor.py" line="759"/> <source>Alt+Shift+C</source> <comment>Edit|Clear</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="765"/> - <source>Clear all text</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="766"/> + <source>Clear all text</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="767"/> <source><b>Clear</b><p>Delete all text of the current editor.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2373"/> + <location filename="../QScintilla/MiniEditor.py" line="2374"/> <source>About</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2373"/> + <location filename="../QScintilla/MiniEditor.py" line="2374"/> <source>&About</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2377"/> + <location filename="../QScintilla/MiniEditor.py" line="2378"/> <source>Display information about this software</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2379"/> + <location filename="../QScintilla/MiniEditor.py" line="2380"/> <source><b>About</b><p>Display some information about this software.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2385"/> + <location filename="../QScintilla/MiniEditor.py" line="2386"/> <source>About Qt</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2385"/> + <location filename="../QScintilla/MiniEditor.py" line="2386"/> <source>About &Qt</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2389"/> + <location filename="../QScintilla/MiniEditor.py" line="2390"/> <source>Display information about the Qt toolkit</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2391"/> + <location filename="../QScintilla/MiniEditor.py" line="2392"/> <source><b>About Qt</b><p>Display some information about the Qt toolkit.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2398"/> + <location filename="../QScintilla/MiniEditor.py" line="2399"/> <source>What's This?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2398"/> + <location filename="../QScintilla/MiniEditor.py" line="2399"/> <source>&What's This?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2398"/> + <location filename="../QScintilla/MiniEditor.py" line="2399"/> <source>Shift+F1</source> <comment>Help|What's This?'</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2404"/> - <source>Context sensitive help</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="2405"/> + <source>Context sensitive help</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="2406"/> <source><b>Display context sensitive help</b><p>In What's This? mode, the mouse cursor shows an arrow with a question mark, and you can click on the interface elements to get a short description of what they do and how to use them. In dialogs, this feature can be accessed using the context help button in the titlebar.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2421"/> + <location filename="../QScintilla/MiniEditor.py" line="2422"/> <source>&File</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2433"/> + <location filename="../QScintilla/MiniEditor.py" line="2434"/> <source>&Edit</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2459"/> + <location filename="../QScintilla/MiniEditor.py" line="2460"/> <source>&Help</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2471"/> + <location filename="../QScintilla/MiniEditor.py" line="2472"/> <source>File</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2484"/> + <location filename="../QScintilla/MiniEditor.py" line="2485"/> <source>Edit</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2494"/> + <location filename="../QScintilla/MiniEditor.py" line="2495"/> <source>Find</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2508"/> + <location filename="../QScintilla/MiniEditor.py" line="2509"/> <source>Help</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2529"/> + <location filename="../QScintilla/MiniEditor.py" line="2530"/> <source><p>This part of the status bar displays an indication of the editors files writability.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2536"/> + <location filename="../QScintilla/MiniEditor.py" line="2537"/> <source><p>This part of the status bar displays the line number of the editor.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2543"/> + <location filename="../QScintilla/MiniEditor.py" line="2544"/> <source><p>This part of the status bar displays the cursor position of the editor.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2560"/> + <location filename="../QScintilla/MiniEditor.py" line="2561"/> <source>Ready</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2587"/> + <location filename="../QScintilla/MiniEditor.py" line="2588"/> <source>The document has unsaved changes.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2614"/> + <location filename="../QScintilla/MiniEditor.py" line="2615"/> <source>Open File</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2614"/> + <location filename="../QScintilla/MiniEditor.py" line="2615"/> <source><p>The file <b>{0}</b> could not be opened.</p><p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2642"/> + <location filename="../QScintilla/MiniEditor.py" line="2643"/> <source>File loaded</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2721"/> + <location filename="../QScintilla/MiniEditor.py" line="2722"/> <source>Save File</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2721"/> + <location filename="../QScintilla/MiniEditor.py" line="2722"/> <source><p>The file <b>{0}</b> could not be saved.<br/>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2728"/> + <location filename="../QScintilla/MiniEditor.py" line="2729"/> <source>File saved</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3089"/> + <location filename="../QScintilla/MiniEditor.py" line="3090"/> <source>Untitled</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2757"/> + <location filename="../QScintilla/MiniEditor.py" line="2758"/> <source>{0}[*] - {1}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2757"/> + <location filename="../QScintilla/MiniEditor.py" line="2758"/> <source>Mini Editor</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3049"/> + <location filename="../QScintilla/MiniEditor.py" line="3050"/> <source>Printing...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3070"/> + <location filename="../QScintilla/MiniEditor.py" line="3071"/> <source>Printing completed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3072"/> + <location filename="../QScintilla/MiniEditor.py" line="3073"/> <source>Error while printing</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3075"/> + <location filename="../QScintilla/MiniEditor.py" line="3076"/> <source>Printing aborted</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3130"/> - <source>Select all</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="3131"/> + <source>Select all</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="3132"/> <source>Deselect all</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3145"/> + <location filename="../QScintilla/MiniEditor.py" line="3146"/> <source>Languages</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3148"/> + <location filename="../QScintilla/MiniEditor.py" line="3149"/> <source>No Language</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3172"/> + <location filename="../QScintilla/MiniEditor.py" line="3173"/> <source>Guessed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3194"/> + <location filename="../QScintilla/MiniEditor.py" line="3195"/> <source>Alternatives</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3190"/> + <location filename="../QScintilla/MiniEditor.py" line="3191"/> <source>Alternatives ({0})</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3218"/> + <location filename="../QScintilla/MiniEditor.py" line="3219"/> <source>Pygments Lexer</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3218"/> + <location filename="../QScintilla/MiniEditor.py" line="3219"/> <source>Select the Pygments lexer to apply.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="619"/> + <location filename="../QScintilla/MiniEditor.py" line="620"/> <source>Save Copy</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="619"/> + <location filename="../QScintilla/MiniEditor.py" line="620"/> <source>Save &Copy...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="624"/> + <location filename="../QScintilla/MiniEditor.py" line="625"/> <source>Save a copy of the current file</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="626"/> + <location filename="../QScintilla/MiniEditor.py" line="627"/> <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"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3735"/> + <location filename="../QScintilla/MiniEditor.py" line="3736"/> <source>EditorConfig Properties</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3735"/> + <location filename="../QScintilla/MiniEditor.py" line="3736"/> <source><p>The EditorConfig properties for file <b>{0}</b> could not be loaded.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2740"/> + <location filename="../QScintilla/MiniEditor.py" line="2741"/> <source>[*] - {0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="502"/> + <location filename="../QScintilla/MiniEditor.py" line="503"/> <source>Language: {0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2451"/> + <location filename="../QScintilla/MiniEditor.py" line="2452"/> <source>&View</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2501"/> + <location filename="../QScintilla/MiniEditor.py" line="2502"/> <source>View</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2521"/> + <location filename="../QScintilla/MiniEditor.py" line="2522"/> <source><p>This part of the status bar displays the editor language.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2554"/> + <location filename="../QScintilla/MiniEditor.py" line="2555"/> <source><p>This part of the status bar allows zooming the editor.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="413"/> + <location filename="../QScintilla/MiniEditor.py" line="414"/> <source>About eric Mini Editor</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="413"/> + <location filename="../QScintilla/MiniEditor.py" line="414"/> <source>The eric Mini Editor is an editor component based on QScintilla. It may be used for simple editing tasks, that don't need the power of a full blown editor.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2587"/> + <location filename="../QScintilla/MiniEditor.py" line="2588"/> <source>eric Mini Editor</source> <translation type="unfinished"></translation> </message> @@ -73155,112 +73165,112 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/UF2FlashDialog.py" line="519"/> + <location filename="../MicroPython/UF2FlashDialog.py" line="522"/> <source>MicroPython/CircuitPython Files (*.uf2);;All Files (*)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/UF2FlashDialog.py" line="590"/> + <location filename="../MicroPython/UF2FlashDialog.py" line="593"/> <source>Manual Select</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/UF2FlashDialog.py" line="691"/> + <location filename="../MicroPython/UF2FlashDialog.py" line="698"/> <source>Reset Instructions:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/UF2FlashDialog.py" line="635"/> + <location filename="../MicroPython/UF2FlashDialog.py" line="638"/> <source><h4>No known devices detected.</h4><p>Follow the appropriate instructions below to set <b>one</b> board into 'bootloader' mode. Press <b>Refresh</b> when ready.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/UF2FlashDialog.py" line="658"/> + <location filename="../MicroPython/UF2FlashDialog.py" line="665"/> <source><h4>Flash {0} Firmware</h4><p>Follow the instructions below to set <b>one</b> board into 'bootloader' mode. Press <b>Refresh</b> when ready.</p><hr/>{1}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/UF2FlashDialog.py" line="668"/> + <location filename="../MicroPython/UF2FlashDialog.py" line="675"/> <source><h4>Potentially UF2 capable devices found</h4><p>Found these potentially UF2 capable devices:</p><ul><li>{0}</li></ul><p>Follow the instructions below to set <b>one</b> board into 'bootloader' mode. Press <b>Refresh</b> when ready.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/UF2FlashDialog.py" line="693"/> + <location filename="../MicroPython/UF2FlashDialog.py" line="700"/> <source><h4>No known devices detected.</h4><p>Follow the instructions below to set <b>one</b> board into 'bootloader' mode. Press <b>Refresh</b> when ready.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/UF2FlashDialog.py" line="705"/> + <location filename="../MicroPython/UF2FlashDialog.py" line="712"/> <source>Flash Instructions:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/UF2FlashDialog.py" line="732"/> + <location filename="../MicroPython/UF2FlashDialog.py" line="739"/> <source>Boot Volume not found:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/UF2FlashDialog.py" line="734"/> + <location filename="../MicroPython/UF2FlashDialog.py" line="741"/> <source><h4>No Boot Volume detected.</h4><p>Please ensure that the boot volume of the device to be flashed is available. </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/UF2FlashDialog.py" line="740"/> + <location filename="../MicroPython/UF2FlashDialog.py" line="747"/> <source>This volume should be named <b>{0}</b>. Press <b>Refresh</b> when ready.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/UF2FlashDialog.py" line="745"/> + <location filename="../MicroPython/UF2FlashDialog.py" line="752"/> <source>This volume should have one of these names.</p><ul><li>{0}</li></ul><p>Press <b>Refresh</b> when ready.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/UF2FlashDialog.py" line="771"/> + <location filename="../MicroPython/UF2FlashDialog.py" line="778"/> <source>Multiple Boot Volumes found:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/UF2FlashDialog.py" line="773"/> + <location filename="../MicroPython/UF2FlashDialog.py" line="780"/> <source><h4>Multiple Boot Volumes were found</h4><p>These volume paths were found.</p><ul><li>{0}</li></ul><p>Please ensure that only one device of a type is ready for flashing. Press <b>Refresh</b> when ready.</p></source> <translation type="unfinished"></translation> </message> <message> + <location filename="../MicroPython/UF2FlashDialog.py" line="806"/> + <source>Flashing {0}</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../MicroPython/UF2FlashDialog.py" line="714"/> + <source><h4>Flash method 'manual' selected.</h4><p>Follow the instructions below to flash a device by entering the data manually.</p><ol><li>Change the device to 'bootloader' mode.</li><li>Wait until the device has entered 'bootloader' mode.</li><li>Ensure the boot volume is available (this may require mounting it) and select its path.</li><li>Select the firmware file to be flashed and click the flash button.</li></ol></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../MicroPython/UF2FlashDialog.py" line="808"/> + <source><p>Flashing the {0} firmware to the device. Please wait until the device resets automatically.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../MicroPython/UF2FlashDialog.py" line="487"/> + <source>'{0}' Board</source> + <translation type="unfinished"></translation> + </message> + <message> <location filename="../MicroPython/UF2FlashDialog.py" line="799"/> - <source>Flashing {0}</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../MicroPython/UF2FlashDialog.py" line="707"/> - <source><h4>Flash method 'manual' selected.</h4><p>Follow the instructions below to flash a device by entering the data manually.</p><ol><li>Change the device to 'bootloader' mode.</li><li>Wait until the device has entered 'bootloader' mode.</li><li>Ensure the boot volume is available (this may require mounting it) and select its path.</li><li>Select the firmware file to be flashed and click the flash button.</li></ol></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../MicroPython/UF2FlashDialog.py" line="801"/> - <source><p>Flashing the {0} firmware to the device. Please wait until the device resets automatically.</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../MicroPython/UF2FlashDialog.py" line="484"/> - <source>'{0}' Board</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../MicroPython/UF2FlashDialog.py" line="792"/> <source>Flashing Firmware</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/UF2FlashDialog.py" line="793"/> + <location filename="../MicroPython/UF2FlashDialog.py" line="800"/> <source><p>Flashing the selected firmware to the device. Please wait until the device resets automatically.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/UF2FlashDialog.py" line="752"/> + <location filename="../MicroPython/UF2FlashDialog.py" line="759"/> <source><h4>Reset Instructions</h4><p>Follow the instructions below to set the board into 'bootloader' mode. Press <b>Refresh</b> when ready.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/UF2FlashDialog.py" line="414"/> + <location filename="../MicroPython/UF2FlashDialog.py" line="416"/> <source><h3>Pi Pico (RP2040) Board</h3><p>In order to prepare the board for flashing follow these steps:</p><ol><li>Enter 'bootloader' mode (board <b>without</b> RESET button):<ul><li>Plug in your board while holding the BOOTSEL button.</li></ul>Enter 'bootloader' mode (board <b>with</b> RESET button):<ul><li>hold down RESET</li><li>hold down BOOTSEL</li><li>release RESET</li><li>release BOOTSEL</li></ul></li><li>Wait until the device has entered 'bootloader' mode.</li><li>Ensure the boot volume is available (this may require mounting it).</li><li>Select the firmware file to be flashed and click the flash button.</li></ol></source> <translation type="unfinished"></translation> </message>
--- a/eric6/i18n/eric6_es.ts Sun Mar 28 18:51:40 2021 +0200 +++ b/eric6/i18n/eric6_es.ts Sun Mar 28 18:51:58 2021 +0200 @@ -17647,12 +17647,12 @@ <translation>Borrar Flash</translation> </message> <message> - <location filename="../MicroPython/EspDevices.py" line="227"/> + <location filename="../MicroPython/EspDevices.py" line="231"/> <source>Flash MicroPython Firmware</source> <translation>Flash MicroPython Firmware</translation> </message> <message> - <location filename="../MicroPython/EspDevices.py" line="258"/> + <location filename="../MicroPython/EspDevices.py" line="266"/> <source>Flash Additional Firmware</source> <translation>Flash Additional Firmware</translation> </message> @@ -17677,7 +17677,7 @@ <translation>Tipo de chip no soportado '{0}'.</translation> </message> <message> - <location filename="../MicroPython/EspDevices.py" line="319"/> + <location filename="../MicroPython/EspDevices.py" line="327"/> <source>'esptool write_flash' Output</source> <translation>Salida de 'esptool write_flash'</translation> </message> @@ -17687,47 +17687,47 @@ <translation>Resetear Dispositivo</translation> </message> <message> - <location filename="../MicroPython/EspDevices.py" line="285"/> + <location filename="../MicroPython/EspDevices.py" line="293"/> <source>Backup Firmware</source> <translation>Copia de Seguridad de Firmware</translation> </message> <message> - <location filename="../MicroPython/EspDevices.py" line="319"/> + <location filename="../MicroPython/EspDevices.py" line="327"/> <source>Restore Firmware</source> <translation>Restaurar Firmware</translation> </message> <message> - <location filename="../MicroPython/EspDevices.py" line="337"/> + <location filename="../MicroPython/EspDevices.py" line="345"/> <source>Show Chip ID</source> <translation>Mostrar ID de Chip</translation> </message> <message> - <location filename="../MicroPython/EspDevices.py" line="354"/> + <location filename="../MicroPython/EspDevices.py" line="362"/> <source>Show Flash ID</source> <translation>Mostrar ID de Flash</translation> </message> <message> - <location filename="../MicroPython/EspDevices.py" line="371"/> + <location filename="../MicroPython/EspDevices.py" line="379"/> <source>Show MAC Address</source> <translation>Mostrar dirección MAC</translation> </message> <message> - <location filename="../MicroPython/EspDevices.py" line="285"/> + <location filename="../MicroPython/EspDevices.py" line="293"/> <source>'esptool read_flash' Output</source> <translation>Salida de 'esptool read_flash'</translation> </message> <message> - <location filename="../MicroPython/EspDevices.py" line="337"/> + <location filename="../MicroPython/EspDevices.py" line="345"/> <source>'esptool chip_id' Output</source> <translation>Salida de 'esptool chip_id'</translation> </message> <message> - <location filename="../MicroPython/EspDevices.py" line="354"/> + <location filename="../MicroPython/EspDevices.py" line="362"/> <source>'esptool flash_id' Output</source> <translation>Salida de 'esptool flash_id'</translation> </message> <message> - <location filename="../MicroPython/EspDevices.py" line="371"/> + <location filename="../MicroPython/EspDevices.py" line="379"/> <source>'esptool read_mac' Output</source> <translation>Salida de 'esptool read_mac'</translation> </message> @@ -17760,12 +17760,12 @@ <translation>Introducir la ruta del archivo patch</translation> </message> <message> - <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="96"/> + <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="123"/> <source>Address:</source> <translation>Dirección:</translation> </message> <message> - <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="103"/> + <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="130"/> <source>Enter the flash addres in the hexadecimal form</source> <translation>Introducir la dirección del flash en forma hexadecimal</translation> </message> @@ -17775,20 +17775,30 @@ <translation>Archivos de Firmware (*.bin);;Todos los Archivos (*)</translation> </message> <message> - <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="75"/> + <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="102"/> <source>Flash Mode:</source> <translation>Flash Mode:</translation> </message> <message> - <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="82"/> + <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="109"/> <source>Select the flash mode</source> <translation>Seleccionar el modo de flash</translation> </message> <message> - <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="89"/> + <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="116"/> <source>Leave empty to use the default mode.</source> <translation>Dejar en blanco para usar el modo por defecto.</translation> </message> + <message> + <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="72"/> + <source>Baud Rate:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="79"/> + <source>Select the baud rate to be used foor flashing (default: 115.200 bps)</source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>ExceptionLogger</name>
--- a/eric6/i18n/eric6_fr.ts Sun Mar 28 18:51:40 2021 +0200 +++ b/eric6/i18n/eric6_fr.ts Sun Mar 28 18:51:58 2021 +0200 @@ -1639,37 +1639,37 @@ <context> <name>BackgroundService</name> <message> - <location filename="../Utilities/BackgroundService.py" line="135"/> + <location filename="../Utilities/BackgroundService.py" line="138"/> <source>{0} not configured.</source> <translation>{0} n'est pas configuré.</translation> </message> <message> - <location filename="../Utilities/BackgroundService.py" line="190"/> + <location filename="../Utilities/BackgroundService.py" line="193"/> <source>Restart background client?</source> <translation>Redémarrer le client en arrière plan ?</translation> </message> <message> - <location filename="../Utilities/BackgroundService.py" line="445"/> + <location filename="../Utilities/BackgroundService.py" line="448"/> <source>Eric's background client disconnected because of an unknown reason.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Utilities/BackgroundService.py" line="451"/> + <location filename="../Utilities/BackgroundService.py" line="454"/> <source>Background client disconnected.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Utilities/BackgroundService.py" line="190"/> + <location filename="../Utilities/BackgroundService.py" line="193"/> <source><p>The background client for <b>{0}</b> has stopped due to an exception. It's used by various plug-ins like the different checkers.</p><p>Select<ul><li><b>'Yes'</b> to restart the client, but abort the last job</li><li><b>'Retry'</b> to restart the client and the last job</li><li><b>'No'</b> to leave the client off.</li></ul></p><p>Note: The client can be restarted by opening and accepting the preferences dialog or reloading/changing the project.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Utilities/BackgroundService.py" line="451"/> + <location filename="../Utilities/BackgroundService.py" line="454"/> <source>The background client for <b>{0}</b> disconnected because of an unknown reason.<br>Should it be restarted?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Utilities/BackgroundService.py" line="216"/> + <location filename="../Utilities/BackgroundService.py" line="219"/> <source>An error in Eric's background client stopped the service.</source> <translation type="unfinished"></translation> </message> @@ -3610,7 +3610,7 @@ <context> <name>CodeStyleChecker</name> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="577"/> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="578"/> <source>No message defined for code '{0}'.</source> <translation>Pas de message défini pour le code '{0}'.</translation> </message> @@ -9993,7 +9993,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../E5Gui/E5ErrorMessageFilterDialog.py" line="35"/> + <location filename="../E5Gui/E5ErrorMessageFilterDialog.py" line="32"/> <source><b>Error Message Filters</b><p>This list shows the configured message filters used to suppress error messages from within Qt.</p><p>A default list of message filters is added to this user list.</p></source> <translation type="unfinished"></translation> </message> @@ -12147,7 +12147,7 @@ <translation>Sélectionne l'analyseur Pygments à appliquer.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7991"/> + <location filename="../QScintilla/Editor.py" line="7992"/> <source>Check spelling...</source> <translation>Correction orthographique...</translation> </message> @@ -12157,12 +12157,12 @@ <translation>Correction orthographique de la sélection...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7994"/> + <location filename="../QScintilla/Editor.py" line="7995"/> <source>Add to dictionary</source> <translation>Ajouter au dictionnaire</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7996"/> + <location filename="../QScintilla/Editor.py" line="7997"/> <source>Ignore All</source> <translation>Tout ignorer</translation> </message> @@ -12297,12 +12297,12 @@ <translation>Modification précédente</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8412"/> + <location filename="../QScintilla/Editor.py" line="8413"/> <source>Sort Lines</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8412"/> + <location filename="../QScintilla/Editor.py" line="8413"/> <source>The selection contains illegal data for a numerical sort.</source> <translation>La sélection contient des données illégales pour un tri numérique.</translation> </message> @@ -12377,12 +12377,12 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8501"/> + <location filename="../QScintilla/Editor.py" line="8502"/> <source>Register Mouse Click Handler</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8501"/> + <location filename="../QScintilla/Editor.py" line="8502"/> <source>A mouse click handler for "{0}" was already registered by "{1}". Aborting request by "{2}"...</source> <translation type="unfinished"></translation> </message> @@ -12412,12 +12412,12 @@ <translation>Exécuter la sélection en console</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8622"/> + <location filename="../QScintilla/Editor.py" line="8623"/> <source>EditorConfig Properties</source> <translation>Propriétés d'EditorConfig</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8622"/> + <location filename="../QScintilla/Editor.py" line="8623"/> <source><p>The EditorConfig properties for file <b>{0}</b> could not be loaded.</p></source> <translation><p>Les propriétés d'EditorConfig du fichier <b>{0}</b> n'ont pas pu être chargées.</p></translation> </message> @@ -12462,7 +12462,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8816"/> + <location filename="../QScintilla/Editor.py" line="8817"/> <source>Generate Docstring</source> <translation type="unfinished"></translation> </message> @@ -18382,12 +18382,12 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/EspDevices.py" line="227"/> + <location filename="../MicroPython/EspDevices.py" line="231"/> <source>Flash MicroPython Firmware</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/EspDevices.py" line="258"/> + <location filename="../MicroPython/EspDevices.py" line="266"/> <source>Flash Additional Firmware</source> <translation type="unfinished"></translation> </message> @@ -18412,7 +18412,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/EspDevices.py" line="319"/> + <location filename="../MicroPython/EspDevices.py" line="327"/> <source>'esptool write_flash' Output</source> <translation type="unfinished"></translation> </message> @@ -18422,47 +18422,47 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/EspDevices.py" line="285"/> + <location filename="../MicroPython/EspDevices.py" line="293"/> <source>Backup Firmware</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/EspDevices.py" line="319"/> + <location filename="../MicroPython/EspDevices.py" line="327"/> <source>Restore Firmware</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/EspDevices.py" line="337"/> + <location filename="../MicroPython/EspDevices.py" line="345"/> <source>Show Chip ID</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/EspDevices.py" line="354"/> + <location filename="../MicroPython/EspDevices.py" line="362"/> <source>Show Flash ID</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/EspDevices.py" line="371"/> + <location filename="../MicroPython/EspDevices.py" line="379"/> <source>Show MAC Address</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/EspDevices.py" line="285"/> + <location filename="../MicroPython/EspDevices.py" line="293"/> <source>'esptool read_flash' Output</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/EspDevices.py" line="337"/> + <location filename="../MicroPython/EspDevices.py" line="345"/> <source>'esptool chip_id' Output</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/EspDevices.py" line="354"/> + <location filename="../MicroPython/EspDevices.py" line="362"/> <source>'esptool flash_id' Output</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/EspDevices.py" line="371"/> + <location filename="../MicroPython/EspDevices.py" line="379"/> <source>'esptool read_mac' Output</source> <translation type="unfinished"></translation> </message> @@ -18495,12 +18495,12 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="96"/> + <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="123"/> <source>Address:</source> <translation>Adresse :</translation> </message> <message> - <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="103"/> + <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="130"/> <source>Enter the flash addres in the hexadecimal form</source> <translation type="unfinished"></translation> </message> @@ -18510,20 +18510,30 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="75"/> + <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="102"/> <source>Flash Mode:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="82"/> + <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="109"/> <source>Select the flash mode</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="89"/> + <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="116"/> <source>Leave empty to use the default mode.</source> <translation type="unfinished"></translation> </message> + <message> + <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="72"/> + <source>Baud Rate:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="79"/> + <source>Select the baud rate to be used foor flashing (default: 115.200 bps)</source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>ExceptionLogger</name> @@ -47867,599 +47877,599 @@ <context> <name>MiniEditor</name> <message> - <location filename="../QScintilla/MiniEditor.py" line="561"/> + <location filename="../QScintilla/MiniEditor.py" line="562"/> <source>New</source> <translation>Nouveau</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="561"/> + <location filename="../QScintilla/MiniEditor.py" line="562"/> <source>&New</source> <translation>&Nouveau</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="561"/> + <location filename="../QScintilla/MiniEditor.py" line="562"/> <source>Ctrl+N</source> <comment>File|New</comment> <translation>Ctrl+N</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="567"/> - <source>Open an empty editor window</source> - <translation>Ouvre une nouvelle page vide</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="568"/> + <source>Open an empty editor window</source> + <translation>Ouvre une nouvelle page vide</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="569"/> <source><b>New</b><p>An empty editor window will be created.</p></source> <translation><b>Nouveau</b><p>Ouverture d'une nouvelle fenêtre d'édition.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="575"/> + <location filename="../QScintilla/MiniEditor.py" line="576"/> <source>Open</source> <translation>Ouvrir</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="575"/> + <location filename="../QScintilla/MiniEditor.py" line="576"/> <source>&Open...</source> <translation>&Ouvrir...</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="575"/> + <location filename="../QScintilla/MiniEditor.py" line="576"/> <source>Ctrl+O</source> <comment>File|Open</comment> <translation>Ctrl+O</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="581"/> - <source>Open a file</source> - <translation>Ouvrir un Fichier</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="582"/> + <source>Open a file</source> + <translation>Ouvrir un Fichier</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="583"/> <source><b>Open a file</b><p>You will be asked for the name of a file to be opened.</p></source> <translation><b>Ouvrir un fichier</b><p>Permet de saisir le nom d'un fichier à ouvrir</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="589"/> + <location filename="../QScintilla/MiniEditor.py" line="590"/> <source>Save</source> <translation>Enregistrer</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="589"/> + <location filename="../QScintilla/MiniEditor.py" line="590"/> <source>&Save</source> <translation>&Enregistrer</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="589"/> + <location filename="../QScintilla/MiniEditor.py" line="590"/> <source>Ctrl+S</source> <comment>File|Save</comment> <translation>Ctrl+S</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="595"/> - <source>Save the current file</source> - <translation>Enregistre le fichier courant</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="596"/> + <source>Save the current file</source> + <translation>Enregistre le fichier courant</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="597"/> <source><b>Save File</b><p>Save the contents of current editor window.</p></source> <translation><b>Enregistrer</b><p>Enregistre le fichier en cours.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="603"/> + <location filename="../QScintilla/MiniEditor.py" line="604"/> <source>Save as</source> <translation>Enregistrer sous</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="603"/> + <location filename="../QScintilla/MiniEditor.py" line="604"/> <source>Save &as...</source> <translation>&Enregistrer sous...</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="603"/> + <location filename="../QScintilla/MiniEditor.py" line="604"/> <source>Shift+Ctrl+S</source> <comment>File|Save As</comment> <translation>Shift+Ctrl+S</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="609"/> + <location filename="../QScintilla/MiniEditor.py" line="610"/> <source>Save the current file to a new one</source> <translation>Enregistre dans un nouveau fichier</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="611"/> + <location filename="../QScintilla/MiniEditor.py" line="612"/> <source><b>Save File as</b><p>Save the contents of current editor window to a new file. The file can be entered in a file selection dialog.</p></source> <translation><b>Enregistrer sous</b><p>Enregistre le buffer dans un nouveau fichier. Le nom du fichier est choisi via une boite de sélection de fichier.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="634"/> + <location filename="../QScintilla/MiniEditor.py" line="635"/> <source>Close</source> <translation>Fermer</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="634"/> + <location filename="../QScintilla/MiniEditor.py" line="635"/> <source>&Close</source> <translation>&Fermer</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="634"/> + <location filename="../QScintilla/MiniEditor.py" line="635"/> <source>Ctrl+W</source> <comment>File|Close</comment> <translation>Ctrl+W</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="640"/> - <source>Close the editor window</source> - <translation>Ferme la fenêtre de l'éditeur</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="641"/> + <source>Close the editor window</source> + <translation>Ferme la fenêtre de l'éditeur</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="642"/> <source><b>Close Window</b><p>Close the current window.</p></source> <translation><b>Fermer</b><p>Ferme la fenêtre en cours.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="680"/> + <location filename="../QScintilla/MiniEditor.py" line="681"/> <source>Undo</source> <translation>Défaire</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="680"/> + <location filename="../QScintilla/MiniEditor.py" line="681"/> <source>&Undo</source> <translation>&Défaire</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="680"/> + <location filename="../QScintilla/MiniEditor.py" line="681"/> <source>Ctrl+Z</source> <comment>Edit|Undo</comment> <translation>Ctrl+Z</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="680"/> + <location filename="../QScintilla/MiniEditor.py" line="681"/> <source>Alt+Backspace</source> <comment>Edit|Undo</comment> <translation>Alt+Backspace</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="687"/> + <location filename="../QScintilla/MiniEditor.py" line="688"/> <source>Undo the last change</source> <translation>Annule la dernière modification</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="688"/> + <location filename="../QScintilla/MiniEditor.py" line="689"/> <source><b>Undo</b><p>Undo the last change done in the current editor.</p></source> <translation><b>Défaire</b><p>Annule la dernière modification effectuée dans l'éditeur courant.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="695"/> + <location filename="../QScintilla/MiniEditor.py" line="696"/> <source>Redo</source> <translation>Refaire</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="695"/> + <location filename="../QScintilla/MiniEditor.py" line="696"/> <source>&Redo</source> <translation>&Refaire</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="695"/> + <location filename="../QScintilla/MiniEditor.py" line="696"/> <source>Ctrl+Shift+Z</source> <comment>Edit|Redo</comment> <translation>Ctrl+Shift+Z</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="701"/> - <source>Redo the last change</source> - <translation>Recharge la dernière modification</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="702"/> + <source>Redo the last change</source> + <translation>Recharge la dernière modification</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="703"/> <source><b>Redo</b><p>Redo the last change done in the current editor.</p></source> <translation><b>Refaire</b><p>Réeffectue la dernière modification dans l'éditeur courant.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="709"/> + <location filename="../QScintilla/MiniEditor.py" line="710"/> <source>Cut</source> <translation>Couper</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="709"/> + <location filename="../QScintilla/MiniEditor.py" line="710"/> <source>Cu&t</source> <translation>Cou&per</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="709"/> + <location filename="../QScintilla/MiniEditor.py" line="710"/> <source>Ctrl+X</source> <comment>Edit|Cut</comment> <translation>Ctrl+X</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="709"/> + <location filename="../QScintilla/MiniEditor.py" line="710"/> <source>Shift+Del</source> <comment>Edit|Cut</comment> <translation>Shift+Del</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="716"/> - <source>Cut the selection</source> - <translation>Coupe la sélection</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="717"/> + <source>Cut the selection</source> + <translation>Coupe la sélection</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="718"/> <source><b>Cut</b><p>Cut the selected text of the current editor to the clipboard.</p></source> <translation><b>Couper</b><p>Coupe le texte sélectionné vers le presse-papier</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="725"/> + <location filename="../QScintilla/MiniEditor.py" line="726"/> <source>Copy</source> <translation>Copier</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="725"/> + <location filename="../QScintilla/MiniEditor.py" line="726"/> <source>&Copy</source> <translation>&Copier</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="725"/> + <location filename="../QScintilla/MiniEditor.py" line="726"/> <source>Ctrl+C</source> <comment>Edit|Copy</comment> <translation>Ctrl+C</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="725"/> + <location filename="../QScintilla/MiniEditor.py" line="726"/> <source>Ctrl+Ins</source> <comment>Edit|Copy</comment> <translation>Ctrl+Ins</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="732"/> + <location filename="../QScintilla/MiniEditor.py" line="733"/> <source>Copy the selection</source> <translation>Copie la sélection</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="733"/> + <location filename="../QScintilla/MiniEditor.py" line="734"/> <source><b>Copy</b><p>Copy the selected text of the current editor to the clipboard.</p></source> <translation><b>Copier</b><p>Copie le texte sélectionné vers le presse-papier</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="741"/> + <location filename="../QScintilla/MiniEditor.py" line="742"/> <source>Paste</source> <translation>Coller</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="741"/> + <location filename="../QScintilla/MiniEditor.py" line="742"/> <source>&Paste</source> <translation>Col&ler</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="741"/> + <location filename="../QScintilla/MiniEditor.py" line="742"/> <source>Ctrl+V</source> <comment>Edit|Paste</comment> <translation>Ctrl+V</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="741"/> + <location filename="../QScintilla/MiniEditor.py" line="742"/> <source>Shift+Ins</source> <comment>Edit|Paste</comment> <translation>Shift+Ins</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="748"/> + <location filename="../QScintilla/MiniEditor.py" line="749"/> <source>Paste the last cut/copied text</source> <translation>Colle le dernier texte copié/coupé</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="750"/> + <location filename="../QScintilla/MiniEditor.py" line="751"/> <source><b>Paste</b><p>Paste the last cut/copied text from the clipboard to the current editor.</p></source> <translation><b>Coller</b><p>Colle le dernier texte copié/coupé dans l'éditeur courant.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="758"/> + <location filename="../QScintilla/MiniEditor.py" line="759"/> <source>Clear</source> <translation>Effacer</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="758"/> + <location filename="../QScintilla/MiniEditor.py" line="759"/> <source>Cl&ear</source> <translation>Ef&facer</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="758"/> + <location filename="../QScintilla/MiniEditor.py" line="759"/> <source>Alt+Shift+C</source> <comment>Edit|Clear</comment> <translation>Alt+Shift+C</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="765"/> - <source>Clear all text</source> - <translation>Efface tout le texte</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="766"/> + <source>Clear all text</source> + <translation>Efface tout le texte</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="767"/> <source><b>Clear</b><p>Delete all text of the current editor.</p></source> <translation><b>Effacer</b><p>Supprime tout le texte de l'éditeur courant.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2373"/> + <location filename="../QScintilla/MiniEditor.py" line="2374"/> <source>About</source> <translation>À propos de</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2373"/> + <location filename="../QScintilla/MiniEditor.py" line="2374"/> <source>&About</source> <translation>&À propos de </translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2377"/> + <location filename="../QScintilla/MiniEditor.py" line="2378"/> <source>Display information about this software</source> <translation>Affiche les informations concernant le logiciel</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2379"/> + <location filename="../QScintilla/MiniEditor.py" line="2380"/> <source><b>About</b><p>Display some information about this software.</p></source> <translation><b>À propos de</b><p>Affiche certaines informations concernant le logiciel.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2385"/> + <location filename="../QScintilla/MiniEditor.py" line="2386"/> <source>About Qt</source> <translation>À propos de Qt</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2385"/> + <location filename="../QScintilla/MiniEditor.py" line="2386"/> <source>About &Qt</source> <translation>À propos de &Qt</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2389"/> + <location filename="../QScintilla/MiniEditor.py" line="2390"/> <source>Display information about the Qt toolkit</source> <translation>Affiche les informations concernant Qt</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2391"/> + <location filename="../QScintilla/MiniEditor.py" line="2392"/> <source><b>About Qt</b><p>Display some information about the Qt toolkit.</p></source> <translation><b>À propos de Qt</b><p>Affiche les informations concernant Qt</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2421"/> + <location filename="../QScintilla/MiniEditor.py" line="2422"/> <source>&File</source> <translation>&Fichier</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2433"/> + <location filename="../QScintilla/MiniEditor.py" line="2434"/> <source>&Edit</source> <translation>&Edition</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2459"/> + <location filename="../QScintilla/MiniEditor.py" line="2460"/> <source>&Help</source> <translation>A&ide</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2536"/> + <location filename="../QScintilla/MiniEditor.py" line="2537"/> <source><p>This part of the status bar displays the line number of the editor.</p></source> <translation><p>Cette zone de la barre d'état affiche le numéro de ligne de l'éditeur.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2543"/> + <location filename="../QScintilla/MiniEditor.py" line="2544"/> <source><p>This part of the status bar displays the cursor position of the editor.</p></source> <translation><p>Cette zone de la barre d'état affiche la position du curseur.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2560"/> + <location filename="../QScintilla/MiniEditor.py" line="2561"/> <source>Ready</source> <translation>Prêt</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2642"/> + <location filename="../QScintilla/MiniEditor.py" line="2643"/> <source>File loaded</source> <translation>Fichier chargé</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3089"/> + <location filename="../QScintilla/MiniEditor.py" line="3090"/> <source>Untitled</source> <translation>SansTitre</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2757"/> + <location filename="../QScintilla/MiniEditor.py" line="2758"/> <source>Mini Editor</source> <translation>Mini éditeur</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3130"/> - <source>Select all</source> - <translation>Tout sélectionner</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="3131"/> + <source>Select all</source> + <translation>Tout sélectionner</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="3132"/> <source>Deselect all</source> <translation>Tout déselectionner</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3145"/> + <location filename="../QScintilla/MiniEditor.py" line="3146"/> <source>Languages</source> <translation>Langages</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3148"/> + <location filename="../QScintilla/MiniEditor.py" line="3149"/> <source>No Language</source> <translation>Pas de langage</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2614"/> + <location filename="../QScintilla/MiniEditor.py" line="2615"/> <source>Open File</source> <translation>Ouvrir Fichier</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2728"/> + <location filename="../QScintilla/MiniEditor.py" line="2729"/> <source>File saved</source> <translation>Fichier enregistré</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2529"/> + <location filename="../QScintilla/MiniEditor.py" line="2530"/> <source><p>This part of the status bar displays an indication of the editors files writability.</p></source> <translation><p>Cette zone de la barre d'état affiche une indication sur les droits d'écriture des fichiers.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2398"/> + <location filename="../QScintilla/MiniEditor.py" line="2399"/> <source>What's This?</source> <translation>Qu'est-ce que c'est ?</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2398"/> + <location filename="../QScintilla/MiniEditor.py" line="2399"/> <source>&What's This?</source> <translation>&Qu'est-ce que c'est?</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2398"/> + <location filename="../QScintilla/MiniEditor.py" line="2399"/> <source>Shift+F1</source> <comment>Help|What's This?'</comment> <translation>Shift+F1</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2404"/> + <location filename="../QScintilla/MiniEditor.py" line="2405"/> <source>Context sensitive help</source> <translation>Aide contextuelle</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2405"/> + <location filename="../QScintilla/MiniEditor.py" line="2406"/> <source><b>Display context sensitive help</b><p>In What's This? mode, the mouse cursor shows an arrow with a question mark, and you can click on the interface elements to get a short description of what they do and how to use them. In dialogs, this feature can be accessed using the context help button in the titlebar.</p></source> <translation><b>Affiche l'aide contextuelle</b><p>Dans le mode "Qu'est-ce que c'est?", la souris est affichée avec un point d'interrogation, et on peut cliquer sur les éléments de l'interface pour obtenir une courte description de l'élément. Cette fonction peut être obtenue avec le bouton d'aide contextuelle de la barre principale.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2471"/> + <location filename="../QScintilla/MiniEditor.py" line="2472"/> <source>File</source> <translation>Fichier</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2484"/> + <location filename="../QScintilla/MiniEditor.py" line="2485"/> <source>Edit</source> <translation>Editer</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2494"/> + <location filename="../QScintilla/MiniEditor.py" line="2495"/> <source>Find</source> <translation>Rechercher</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2508"/> + <location filename="../QScintilla/MiniEditor.py" line="2509"/> <source>Help</source> <translation>Aide</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="648"/> + <location filename="../QScintilla/MiniEditor.py" line="649"/> <source>Print</source> <translation>Imprimer</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="648"/> + <location filename="../QScintilla/MiniEditor.py" line="649"/> <source>&Print</source> <translation>&Imprimer</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="648"/> + <location filename="../QScintilla/MiniEditor.py" line="649"/> <source>Ctrl+P</source> <comment>File|Print</comment> <translation>Ctrl+P</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="654"/> + <location filename="../QScintilla/MiniEditor.py" line="655"/> <source>Print the current file</source> <translation>Imprime le fichier courant</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3049"/> + <location filename="../QScintilla/MiniEditor.py" line="3050"/> <source>Printing...</source> <translation>Impression....</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3070"/> + <location filename="../QScintilla/MiniEditor.py" line="3071"/> <source>Printing completed</source> <translation>Impression terminée</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3072"/> + <location filename="../QScintilla/MiniEditor.py" line="3073"/> <source>Error while printing</source> <translation>Erreur durant l'impression</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3075"/> + <location filename="../QScintilla/MiniEditor.py" line="3076"/> <source>Printing aborted</source> <translation>Impression abandonnée</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="655"/> + <location filename="../QScintilla/MiniEditor.py" line="656"/> <source><b>Print File</b><p>Print the contents of the current file.</p></source> <translation><b>Imprimer le fichier</b><p>Imprime le fichier courant.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="662"/> + <location filename="../QScintilla/MiniEditor.py" line="663"/> <source>Print Preview</source> <translation>Aperçu avant impression</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="667"/> + <location filename="../QScintilla/MiniEditor.py" line="668"/> <source>Print preview of the current file</source> <translation>Aperçu avant impression du fichier courant</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="669"/> + <location filename="../QScintilla/MiniEditor.py" line="670"/> <source><b>Print Preview</b><p>Print preview of the current file.</p></source> <translation><b>Aperçu avant impression</b><p>Aperçu avant impression du fichier courant.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3172"/> + <location filename="../QScintilla/MiniEditor.py" line="3173"/> <source>Guessed</source> <translation>Suggestion</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3194"/> + <location filename="../QScintilla/MiniEditor.py" line="3195"/> <source>Alternatives</source> <translation>Alternatives</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3218"/> + <location filename="../QScintilla/MiniEditor.py" line="3219"/> <source>Pygments Lexer</source> <translation>Analyseur Pygments</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3218"/> + <location filename="../QScintilla/MiniEditor.py" line="3219"/> <source>Select the Pygments lexer to apply.</source> <translation>Sélectionne l'analyseur Pygments à appliquer.</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="483"/> + <location filename="../QScintilla/MiniEditor.py" line="484"/> <source>Line: {0:5}</source> <translation>Ligne : {0:5}</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="487"/> + <location filename="../QScintilla/MiniEditor.py" line="488"/> <source>Pos: {0:5}</source> <translation>Position : {0:5}</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2614"/> + <location filename="../QScintilla/MiniEditor.py" line="2615"/> <source><p>The file <b>{0}</b> could not be opened.</p><p>Reason: {1}</p></source> <translation><p>Le fichier<b>{0}</b> ne peut être ouvert.</p><p>Raison : {1}</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2721"/> + <location filename="../QScintilla/MiniEditor.py" line="2722"/> <source>Save File</source> <translation>Enregistrer le fichier</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2721"/> + <location filename="../QScintilla/MiniEditor.py" line="2722"/> <source><p>The file <b>{0}</b> could not be saved.<br/>Reason: {1}</p></source> <translation><p>Le fichier <b>{0}</b> ne peut être enregistré.</p><p>Raison : {1}</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2757"/> + <location filename="../QScintilla/MiniEditor.py" line="2758"/> <source>{0}[*] - {1}</source> <translation>{0}[*] - {1}</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3190"/> + <location filename="../QScintilla/MiniEditor.py" line="3191"/> <source>Alternatives ({0})</source> <translation>Alternatives ({0})</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2587"/> + <location filename="../QScintilla/MiniEditor.py" line="2588"/> <source>The document has unsaved changes.</source> <translation>Le document a des modifications non enregistrées.</translation> </message> @@ -48479,57 +48489,57 @@ <translation type="obsolete">Mini-éditeur eric6</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="619"/> + <location filename="../QScintilla/MiniEditor.py" line="620"/> <source>Save Copy</source> <translation>Enregistrer une copie</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="619"/> + <location filename="../QScintilla/MiniEditor.py" line="620"/> <source>Save &Copy...</source> <translation>Enregistrer une &copie...</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="624"/> + <location filename="../QScintilla/MiniEditor.py" line="625"/> <source>Save a copy of the current file</source> <translation>Enregistrer une copie du fichier courant</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="626"/> + <location filename="../QScintilla/MiniEditor.py" line="627"/> <source><b>Save Copy</b><p>Save a copy of the contents of current editor window. The file can be entered in a file selection dialog.</p></source> <translation><b>Enregistrer une copie</b><p>Enregistre une copie du contenu de l'éditeur courant. Le fichier peut être entré dans un sélectionneur de fichiers.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3735"/> + <location filename="../QScintilla/MiniEditor.py" line="3736"/> <source>EditorConfig Properties</source> <translation type="unfinished">Propriétés d'EditorConfig</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3735"/> + <location filename="../QScintilla/MiniEditor.py" line="3736"/> <source><p>The EditorConfig properties for file <b>{0}</b> could not be loaded.</p></source> <translation type="unfinished"><p>Les propriétés d'EditorConfig du fichier <b>{0}</b> n'ont pas pu être chargées.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2740"/> + <location filename="../QScintilla/MiniEditor.py" line="2741"/> <source>[*] - {0}</source> <translation>[*] - {0}</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="502"/> + <location filename="../QScintilla/MiniEditor.py" line="503"/> <source>Language: {0}</source> <translation type="unfinished">Langage : {0}</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2451"/> + <location filename="../QScintilla/MiniEditor.py" line="2452"/> <source>&View</source> <translation type="unfinished">&Affichage</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2501"/> + <location filename="../QScintilla/MiniEditor.py" line="2502"/> <source>View</source> <translation type="unfinished">Affichage</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2521"/> + <location filename="../QScintilla/MiniEditor.py" line="2522"/> <source><p>This part of the status bar displays the editor language.</p></source> <translation type="unfinished"></translation> </message> @@ -48539,22 +48549,22 @@ <translation type="obsolete"><p>Cette zone de la barre d'état permet de zoomer l'éditeur courant ou le shell.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2554"/> + <location filename="../QScintilla/MiniEditor.py" line="2555"/> <source><p>This part of the status bar allows zooming the editor.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="413"/> + <location filename="../QScintilla/MiniEditor.py" line="414"/> <source>About eric Mini Editor</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="413"/> + <location filename="../QScintilla/MiniEditor.py" line="414"/> <source>The eric Mini Editor is an editor component based on QScintilla. It may be used for simple editing tasks, that don't need the power of a full blown editor.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2587"/> + <location filename="../QScintilla/MiniEditor.py" line="2588"/> <source>eric Mini Editor</source> <translation type="unfinished"></translation> </message> @@ -77674,112 +77684,112 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/UF2FlashDialog.py" line="519"/> + <location filename="../MicroPython/UF2FlashDialog.py" line="522"/> <source>MicroPython/CircuitPython Files (*.uf2);;All Files (*)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/UF2FlashDialog.py" line="590"/> + <location filename="../MicroPython/UF2FlashDialog.py" line="593"/> <source>Manual Select</source> <translation type="unfinished">Sélection Manuelle</translation> </message> <message> - <location filename="../MicroPython/UF2FlashDialog.py" line="691"/> + <location filename="../MicroPython/UF2FlashDialog.py" line="698"/> <source>Reset Instructions:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/UF2FlashDialog.py" line="635"/> + <location filename="../MicroPython/UF2FlashDialog.py" line="638"/> <source><h4>No known devices detected.</h4><p>Follow the appropriate instructions below to set <b>one</b> board into 'bootloader' mode. Press <b>Refresh</b> when ready.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/UF2FlashDialog.py" line="658"/> + <location filename="../MicroPython/UF2FlashDialog.py" line="665"/> <source><h4>Flash {0} Firmware</h4><p>Follow the instructions below to set <b>one</b> board into 'bootloader' mode. Press <b>Refresh</b> when ready.</p><hr/>{1}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/UF2FlashDialog.py" line="668"/> + <location filename="../MicroPython/UF2FlashDialog.py" line="675"/> <source><h4>Potentially UF2 capable devices found</h4><p>Found these potentially UF2 capable devices:</p><ul><li>{0}</li></ul><p>Follow the instructions below to set <b>one</b> board into 'bootloader' mode. Press <b>Refresh</b> when ready.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/UF2FlashDialog.py" line="693"/> + <location filename="../MicroPython/UF2FlashDialog.py" line="700"/> <source><h4>No known devices detected.</h4><p>Follow the instructions below to set <b>one</b> board into 'bootloader' mode. Press <b>Refresh</b> when ready.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/UF2FlashDialog.py" line="705"/> + <location filename="../MicroPython/UF2FlashDialog.py" line="712"/> <source>Flash Instructions:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/UF2FlashDialog.py" line="732"/> + <location filename="../MicroPython/UF2FlashDialog.py" line="739"/> <source>Boot Volume not found:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/UF2FlashDialog.py" line="734"/> + <location filename="../MicroPython/UF2FlashDialog.py" line="741"/> <source><h4>No Boot Volume detected.</h4><p>Please ensure that the boot volume of the device to be flashed is available. </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/UF2FlashDialog.py" line="740"/> + <location filename="../MicroPython/UF2FlashDialog.py" line="747"/> <source>This volume should be named <b>{0}</b>. Press <b>Refresh</b> when ready.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/UF2FlashDialog.py" line="745"/> + <location filename="../MicroPython/UF2FlashDialog.py" line="752"/> <source>This volume should have one of these names.</p><ul><li>{0}</li></ul><p>Press <b>Refresh</b> when ready.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/UF2FlashDialog.py" line="771"/> + <location filename="../MicroPython/UF2FlashDialog.py" line="778"/> <source>Multiple Boot Volumes found:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/UF2FlashDialog.py" line="773"/> + <location filename="../MicroPython/UF2FlashDialog.py" line="780"/> <source><h4>Multiple Boot Volumes were found</h4><p>These volume paths were found.</p><ul><li>{0}</li></ul><p>Please ensure that only one device of a type is ready for flashing. Press <b>Refresh</b> when ready.</p></source> <translation type="unfinished"></translation> </message> <message> + <location filename="../MicroPython/UF2FlashDialog.py" line="806"/> + <source>Flashing {0}</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../MicroPython/UF2FlashDialog.py" line="714"/> + <source><h4>Flash method 'manual' selected.</h4><p>Follow the instructions below to flash a device by entering the data manually.</p><ol><li>Change the device to 'bootloader' mode.</li><li>Wait until the device has entered 'bootloader' mode.</li><li>Ensure the boot volume is available (this may require mounting it) and select its path.</li><li>Select the firmware file to be flashed and click the flash button.</li></ol></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../MicroPython/UF2FlashDialog.py" line="808"/> + <source><p>Flashing the {0} firmware to the device. Please wait until the device resets automatically.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../MicroPython/UF2FlashDialog.py" line="487"/> + <source>'{0}' Board</source> + <translation type="unfinished"></translation> + </message> + <message> <location filename="../MicroPython/UF2FlashDialog.py" line="799"/> - <source>Flashing {0}</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../MicroPython/UF2FlashDialog.py" line="707"/> - <source><h4>Flash method 'manual' selected.</h4><p>Follow the instructions below to flash a device by entering the data manually.</p><ol><li>Change the device to 'bootloader' mode.</li><li>Wait until the device has entered 'bootloader' mode.</li><li>Ensure the boot volume is available (this may require mounting it) and select its path.</li><li>Select the firmware file to be flashed and click the flash button.</li></ol></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../MicroPython/UF2FlashDialog.py" line="801"/> - <source><p>Flashing the {0} firmware to the device. Please wait until the device resets automatically.</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../MicroPython/UF2FlashDialog.py" line="484"/> - <source>'{0}' Board</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../MicroPython/UF2FlashDialog.py" line="792"/> <source>Flashing Firmware</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/UF2FlashDialog.py" line="793"/> + <location filename="../MicroPython/UF2FlashDialog.py" line="800"/> <source><p>Flashing the selected firmware to the device. Please wait until the device resets automatically.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/UF2FlashDialog.py" line="752"/> + <location filename="../MicroPython/UF2FlashDialog.py" line="759"/> <source><h4>Reset Instructions</h4><p>Follow the instructions below to set the board into 'bootloader' mode. Press <b>Refresh</b> when ready.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/UF2FlashDialog.py" line="414"/> + <location filename="../MicroPython/UF2FlashDialog.py" line="416"/> <source><h3>Pi Pico (RP2040) Board</h3><p>In order to prepare the board for flashing follow these steps:</p><ol><li>Enter 'bootloader' mode (board <b>without</b> RESET button):<ul><li>Plug in your board while holding the BOOTSEL button.</li></ul>Enter 'bootloader' mode (board <b>with</b> RESET button):<ul><li>hold down RESET</li><li>hold down BOOTSEL</li><li>release RESET</li><li>release BOOTSEL</li></ul></li><li>Wait until the device has entered 'bootloader' mode.</li><li>Ensure the boot volume is available (this may require mounting it).</li><li>Select the firmware file to be flashed and click the flash button.</li></ol></source> <translation type="unfinished"></translation> </message>
--- a/eric6/i18n/eric6_it.ts Sun Mar 28 18:51:40 2021 +0200 +++ b/eric6/i18n/eric6_it.ts Sun Mar 28 18:51:58 2021 +0200 @@ -1636,37 +1636,37 @@ <context> <name>BackgroundService</name> <message> - <location filename="../Utilities/BackgroundService.py" line="135"/> + <location filename="../Utilities/BackgroundService.py" line="138"/> <source>{0} not configured.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Utilities/BackgroundService.py" line="190"/> + <location filename="../Utilities/BackgroundService.py" line="193"/> <source>Restart background client?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Utilities/BackgroundService.py" line="445"/> + <location filename="../Utilities/BackgroundService.py" line="448"/> <source>Eric's background client disconnected because of an unknown reason.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Utilities/BackgroundService.py" line="451"/> + <location filename="../Utilities/BackgroundService.py" line="454"/> <source>Background client disconnected.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Utilities/BackgroundService.py" line="190"/> + <location filename="../Utilities/BackgroundService.py" line="193"/> <source><p>The background client for <b>{0}</b> has stopped due to an exception. It's used by various plug-ins like the different checkers.</p><p>Select<ul><li><b>'Yes'</b> to restart the client, but abort the last job</li><li><b>'Retry'</b> to restart the client and the last job</li><li><b>'No'</b> to leave the client off.</li></ul></p><p>Note: The client can be restarted by opening and accepting the preferences dialog or reloading/changing the project.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Utilities/BackgroundService.py" line="451"/> + <location filename="../Utilities/BackgroundService.py" line="454"/> <source>The background client for <b>{0}</b> disconnected because of an unknown reason.<br>Should it be restarted?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Utilities/BackgroundService.py" line="216"/> + <location filename="../Utilities/BackgroundService.py" line="219"/> <source>An error in Eric's background client stopped the service.</source> <translation type="unfinished"></translation> </message> @@ -3667,7 +3667,7 @@ <context> <name>CodeStyleChecker</name> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="577"/> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="578"/> <source>No message defined for code '{0}'.</source> <translation type="unfinished"></translation> </message> @@ -10162,7 +10162,7 @@ <translation>Filtro dei messaggi di errore</translation> </message> <message> - <location filename="../E5Gui/E5ErrorMessageFilterDialog.py" line="35"/> + <location filename="../E5Gui/E5ErrorMessageFilterDialog.py" line="32"/> <source><b>Error Message Filters</b><p>This list shows the configured message filters used to suppress error messages from within Qt.</p><p>A default list of message filters is added to this user list.</p></source> <translation type="unfinished"></translation> </message> @@ -12366,7 +12366,7 @@ <translation>Selezione l'analizzatore lessicale di Pygments da applicare.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7991"/> + <location filename="../QScintilla/Editor.py" line="7992"/> <source>Check spelling...</source> <translation>Controllo sillabazione...</translation> </message> @@ -12376,12 +12376,12 @@ <translation>Controllo sillabazione della selezione...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7994"/> + <location filename="../QScintilla/Editor.py" line="7995"/> <source>Add to dictionary</source> <translation>Aggiungi al dizionario</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7996"/> + <location filename="../QScintilla/Editor.py" line="7997"/> <source>Ignore All</source> <translation>Ignora tutto</translation> </message> @@ -12516,12 +12516,12 @@ <translation>Modifica precedente</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8412"/> + <location filename="../QScintilla/Editor.py" line="8413"/> <source>Sort Lines</source> <translation>Righe ordinate</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8412"/> + <location filename="../QScintilla/Editor.py" line="8413"/> <source>The selection contains illegal data for a numerical sort.</source> <translation>La selezione contiene dati non validi per un ordinamento numerico.</translation> </message> @@ -12596,12 +12596,12 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8501"/> + <location filename="../QScintilla/Editor.py" line="8502"/> <source>Register Mouse Click Handler</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8501"/> + <location filename="../QScintilla/Editor.py" line="8502"/> <source>A mouse click handler for "{0}" was already registered by "{1}". Aborting request by "{2}"...</source> <translation type="unfinished"></translation> </message> @@ -12631,12 +12631,12 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8622"/> + <location filename="../QScintilla/Editor.py" line="8623"/> <source>EditorConfig Properties</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8622"/> + <location filename="../QScintilla/Editor.py" line="8623"/> <source><p>The EditorConfig properties for file <b>{0}</b> could not be loaded.</p></source> <translation type="unfinished"></translation> </message> @@ -12681,7 +12681,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8816"/> + <location filename="../QScintilla/Editor.py" line="8817"/> <source>Generate Docstring</source> <translation type="unfinished"></translation> </message> @@ -18734,12 +18734,12 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/EspDevices.py" line="227"/> + <location filename="../MicroPython/EspDevices.py" line="231"/> <source>Flash MicroPython Firmware</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/EspDevices.py" line="258"/> + <location filename="../MicroPython/EspDevices.py" line="266"/> <source>Flash Additional Firmware</source> <translation type="unfinished"></translation> </message> @@ -18764,7 +18764,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/EspDevices.py" line="319"/> + <location filename="../MicroPython/EspDevices.py" line="327"/> <source>'esptool write_flash' Output</source> <translation type="unfinished"></translation> </message> @@ -18774,47 +18774,47 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/EspDevices.py" line="285"/> + <location filename="../MicroPython/EspDevices.py" line="293"/> <source>Backup Firmware</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/EspDevices.py" line="319"/> + <location filename="../MicroPython/EspDevices.py" line="327"/> <source>Restore Firmware</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/EspDevices.py" line="337"/> + <location filename="../MicroPython/EspDevices.py" line="345"/> <source>Show Chip ID</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/EspDevices.py" line="354"/> + <location filename="../MicroPython/EspDevices.py" line="362"/> <source>Show Flash ID</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/EspDevices.py" line="371"/> + <location filename="../MicroPython/EspDevices.py" line="379"/> <source>Show MAC Address</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/EspDevices.py" line="285"/> + <location filename="../MicroPython/EspDevices.py" line="293"/> <source>'esptool read_flash' Output</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/EspDevices.py" line="337"/> + <location filename="../MicroPython/EspDevices.py" line="345"/> <source>'esptool chip_id' Output</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/EspDevices.py" line="354"/> + <location filename="../MicroPython/EspDevices.py" line="362"/> <source>'esptool flash_id' Output</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/EspDevices.py" line="371"/> + <location filename="../MicroPython/EspDevices.py" line="379"/> <source>'esptool read_mac' Output</source> <translation type="unfinished"></translation> </message> @@ -18847,12 +18847,12 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="96"/> + <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="123"/> <source>Address:</source> <translation type="unfinished">Indirizzo:</translation> </message> <message> - <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="103"/> + <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="130"/> <source>Enter the flash addres in the hexadecimal form</source> <translation type="unfinished"></translation> </message> @@ -18862,20 +18862,30 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="75"/> + <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="102"/> <source>Flash Mode:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="82"/> + <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="109"/> <source>Select the flash mode</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="89"/> + <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="116"/> <source>Leave empty to use the default mode.</source> <translation type="unfinished"></translation> </message> + <message> + <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="72"/> + <source>Baud Rate:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="79"/> + <source>Select the baud rate to be used foor flashing (default: 115.200 bps)</source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>ExceptionLogger</name> @@ -50009,599 +50019,599 @@ <context> <name>MiniEditor</name> <message> - <location filename="../QScintilla/MiniEditor.py" line="561"/> + <location filename="../QScintilla/MiniEditor.py" line="562"/> <source>New</source> <translation>Nuovo</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="561"/> + <location filename="../QScintilla/MiniEditor.py" line="562"/> <source>&New</source> <translation>&Nuova</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="561"/> + <location filename="../QScintilla/MiniEditor.py" line="562"/> <source>Ctrl+N</source> <comment>File|New</comment> <translation>Ctrl+N</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="567"/> - <source>Open an empty editor window</source> - <translation>Apri una finestra vuota</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="568"/> + <source>Open an empty editor window</source> + <translation>Apri una finestra vuota</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="569"/> <source><b>New</b><p>An empty editor window will be created.</p></source> <translation><b>Nuova</b><p>Verrà creata una nuova finestra vuota.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="575"/> + <location filename="../QScintilla/MiniEditor.py" line="576"/> <source>Open</source> <translation>Apri</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="575"/> + <location filename="../QScintilla/MiniEditor.py" line="576"/> <source>&Open...</source> <translation>&Apri...</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="575"/> + <location filename="../QScintilla/MiniEditor.py" line="576"/> <source>Ctrl+O</source> <comment>File|Open</comment> <translation>Ctrl+O</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="581"/> - <source>Open a file</source> - <translation>Apri un file</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="582"/> + <source>Open a file</source> + <translation>Apri un file</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="583"/> <source><b>Open a file</b><p>You will be asked for the name of a file to be opened.</p></source> <translation><b>Apri un file</b><p>Ti verrà chiesto il nome del file da aprire.</b></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="589"/> + <location filename="../QScintilla/MiniEditor.py" line="590"/> <source>Save</source> <translation>Salva</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="589"/> + <location filename="../QScintilla/MiniEditor.py" line="590"/> <source>&Save</source> <translation>&Salva</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="589"/> + <location filename="../QScintilla/MiniEditor.py" line="590"/> <source>Ctrl+S</source> <comment>File|Save</comment> <translation>Ctrl+S</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="595"/> - <source>Save the current file</source> - <translation>Salva il file corrente</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="596"/> + <source>Save the current file</source> + <translation>Salva il file corrente</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="597"/> <source><b>Save File</b><p>Save the contents of current editor window.</p></source> <translation><b>Salva fle</b><p>Salva il contenuto della finestra attuale.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="603"/> + <location filename="../QScintilla/MiniEditor.py" line="604"/> <source>Save as</source> <translation>Salva come</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="603"/> + <location filename="../QScintilla/MiniEditor.py" line="604"/> <source>Save &as...</source> <translation>S&alva come...</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="603"/> + <location filename="../QScintilla/MiniEditor.py" line="604"/> <source>Shift+Ctrl+S</source> <comment>File|Save As</comment> <translation>Ctrl+Shift+S</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="609"/> + <location filename="../QScintilla/MiniEditor.py" line="610"/> <source>Save the current file to a new one</source> <translation>Salva il file attuale come uno nuovo</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="611"/> + <location filename="../QScintilla/MiniEditor.py" line="612"/> <source><b>Save File as</b><p>Save the contents of current editor window to a new file. The file can be entered in a file selection dialog.</p></source> <translation><b>Salva file come</b><p>Salva il contenuto della finestra attuale come un file nuovo. Il nome può essere inserito nel dialogo.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="634"/> + <location filename="../QScintilla/MiniEditor.py" line="635"/> <source>Close</source> <translation>Chiudi</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="634"/> + <location filename="../QScintilla/MiniEditor.py" line="635"/> <source>&Close</source> <translation>&Chiudi</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="634"/> + <location filename="../QScintilla/MiniEditor.py" line="635"/> <source>Ctrl+W</source> <comment>File|Close</comment> <translation>Ctrl+W</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="640"/> - <source>Close the editor window</source> - <translation>Chiudi la finestra dell'editor</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="641"/> + <source>Close the editor window</source> + <translation>Chiudi la finestra dell'editor</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="642"/> <source><b>Close Window</b><p>Close the current window.</p></source> <translation><b>Chiudi finestra</b><p>Chiudi la finestra attuale.</b></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="680"/> + <location filename="../QScintilla/MiniEditor.py" line="681"/> <source>Undo</source> <translation>Undo</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="680"/> + <location filename="../QScintilla/MiniEditor.py" line="681"/> <source>&Undo</source> <translation>&Undo</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="680"/> + <location filename="../QScintilla/MiniEditor.py" line="681"/> <source>Ctrl+Z</source> <comment>Edit|Undo</comment> <translation>Ctrl+Z</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="680"/> + <location filename="../QScintilla/MiniEditor.py" line="681"/> <source>Alt+Backspace</source> <comment>Edit|Undo</comment> <translation>Alt+Backspace</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="687"/> + <location filename="../QScintilla/MiniEditor.py" line="688"/> <source>Undo the last change</source> <translation>Annulla l'ultima modifica</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="688"/> + <location filename="../QScintilla/MiniEditor.py" line="689"/> <source><b>Undo</b><p>Undo the last change done in the current editor.</p></source> <translation><b>Annulla</b><p>Annula l'ultima modifica nell'editor corrente.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="695"/> + <location filename="../QScintilla/MiniEditor.py" line="696"/> <source>Redo</source> <translation>Rifai</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="695"/> + <location filename="../QScintilla/MiniEditor.py" line="696"/> <source>&Redo</source> <translation>&Rifai</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="695"/> + <location filename="../QScintilla/MiniEditor.py" line="696"/> <source>Ctrl+Shift+Z</source> <comment>Edit|Redo</comment> <translation>Ctrl+Shift+Z</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="701"/> - <source>Redo the last change</source> - <translation>Rifai ultima modifica</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="702"/> + <source>Redo the last change</source> + <translation>Rifai ultima modifica</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="703"/> <source><b>Redo</b><p>Redo the last change done in the current editor.</p></source> <translation><b>Rifai</b><p>Rifai l'ultima modifica nell'editor corrente.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="709"/> + <location filename="../QScintilla/MiniEditor.py" line="710"/> <source>Cut</source> <translation>Taglia</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="709"/> + <location filename="../QScintilla/MiniEditor.py" line="710"/> <source>Cu&t</source> <translation>&Taglia</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="709"/> + <location filename="../QScintilla/MiniEditor.py" line="710"/> <source>Ctrl+X</source> <comment>Edit|Cut</comment> <translation>Ctrl+X</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="709"/> + <location filename="../QScintilla/MiniEditor.py" line="710"/> <source>Shift+Del</source> <comment>Edit|Cut</comment> <translation>Shift+Del</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="716"/> - <source>Cut the selection</source> - <translation>Taglia la selezione</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="717"/> + <source>Cut the selection</source> + <translation>Taglia la selezione</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="718"/> <source><b>Cut</b><p>Cut the selected text of the current editor to the clipboard.</p></source> <translation><b>Taglia</b><p>Taglia il testo selezionato nell'editor corrente.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="725"/> + <location filename="../QScintilla/MiniEditor.py" line="726"/> <source>Copy</source> <translation>Copia</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="725"/> + <location filename="../QScintilla/MiniEditor.py" line="726"/> <source>&Copy</source> <translation>&Copia</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="725"/> + <location filename="../QScintilla/MiniEditor.py" line="726"/> <source>Ctrl+C</source> <comment>Edit|Copy</comment> <translation>Ctrl+C</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="725"/> + <location filename="../QScintilla/MiniEditor.py" line="726"/> <source>Ctrl+Ins</source> <comment>Edit|Copy</comment> <translation>Ctrl+Ins</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="732"/> + <location filename="../QScintilla/MiniEditor.py" line="733"/> <source>Copy the selection</source> <translation>Copia la selezione</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="733"/> + <location filename="../QScintilla/MiniEditor.py" line="734"/> <source><b>Copy</b><p>Copy the selected text of the current editor to the clipboard.</p></source> <translation><b>Copia</b><p>Copia il testo selezionato nell'editor corrente.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="741"/> + <location filename="../QScintilla/MiniEditor.py" line="742"/> <source>Paste</source> <translation>Incolla</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="741"/> + <location filename="../QScintilla/MiniEditor.py" line="742"/> <source>&Paste</source> <translation>&Incolla</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="741"/> + <location filename="../QScintilla/MiniEditor.py" line="742"/> <source>Ctrl+V</source> <comment>Edit|Paste</comment> <translation>Ctrl+V</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="741"/> + <location filename="../QScintilla/MiniEditor.py" line="742"/> <source>Shift+Ins</source> <comment>Edit|Paste</comment> <translation>Shift+Ins</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="748"/> + <location filename="../QScintilla/MiniEditor.py" line="749"/> <source>Paste the last cut/copied text</source> <translation>Incolla l'ultimo testo tagliato/copiato</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="750"/> + <location filename="../QScintilla/MiniEditor.py" line="751"/> <source><b>Paste</b><p>Paste the last cut/copied text from the clipboard to the current editor.</p></source> <translation><b>Incolla</b><p>Incolla l'ultimo testo tagliato/copiato nell'editor corrente.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="758"/> + <location filename="../QScintilla/MiniEditor.py" line="759"/> <source>Clear</source> <translation>Pulisci</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="758"/> + <location filename="../QScintilla/MiniEditor.py" line="759"/> <source>Cl&ear</source> <translation>Pu&lisci</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="758"/> + <location filename="../QScintilla/MiniEditor.py" line="759"/> <source>Alt+Shift+C</source> <comment>Edit|Clear</comment> <translation>Alt+Shift+C</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="765"/> - <source>Clear all text</source> - <translation>Pulisci tutto il testo</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="766"/> + <source>Clear all text</source> + <translation>Pulisci tutto il testo</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="767"/> <source><b>Clear</b><p>Delete all text of the current editor.</p></source> <translation><b>Pulisci</b><p>Cancellal tutto il testo dell'editor corrente.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2373"/> + <location filename="../QScintilla/MiniEditor.py" line="2374"/> <source>About</source> <translation>About</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2373"/> + <location filename="../QScintilla/MiniEditor.py" line="2374"/> <source>&About</source> <translation>&About</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2377"/> + <location filename="../QScintilla/MiniEditor.py" line="2378"/> <source>Display information about this software</source> <translation>Mostra informazioni su questo software</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2379"/> + <location filename="../QScintilla/MiniEditor.py" line="2380"/> <source><b>About</b><p>Display some information about this software.</p></source> <translation><b>About</b><p>Mostra alcune informazioni su questo software.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2385"/> + <location filename="../QScintilla/MiniEditor.py" line="2386"/> <source>About Qt</source> <translation>About Qt</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2385"/> + <location filename="../QScintilla/MiniEditor.py" line="2386"/> <source>About &Qt</source> <translation>About &Qt</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2389"/> + <location filename="../QScintilla/MiniEditor.py" line="2390"/> <source>Display information about the Qt toolkit</source> <translation>Mostra le informazioni sulle librerie Qt</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2391"/> + <location filename="../QScintilla/MiniEditor.py" line="2392"/> <source><b>About Qt</b><p>Display some information about the Qt toolkit.</p></source> <translation><b>About Qt</b><p>Mostra delle informazioni sulle librerie Qt.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2421"/> + <location filename="../QScintilla/MiniEditor.py" line="2422"/> <source>&File</source> <translation>&File</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2433"/> + <location filename="../QScintilla/MiniEditor.py" line="2434"/> <source>&Edit</source> <translation>&Edita</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2459"/> + <location filename="../QScintilla/MiniEditor.py" line="2460"/> <source>&Help</source> <translation>&Help</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2536"/> + <location filename="../QScintilla/MiniEditor.py" line="2537"/> <source><p>This part of the status bar displays the line number of the editor.</p></source> <translation><p>Questa parte della barra di stato mostra il numero di linea.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2543"/> + <location filename="../QScintilla/MiniEditor.py" line="2544"/> <source><p>This part of the status bar displays the cursor position of the editor.</p></source> <translation><p>Questa parte della barra di stato mostra la posizione del cursore.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2560"/> + <location filename="../QScintilla/MiniEditor.py" line="2561"/> <source>Ready</source> <translation>Pronto</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2642"/> + <location filename="../QScintilla/MiniEditor.py" line="2643"/> <source>File loaded</source> <translation>File caricato</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3089"/> + <location filename="../QScintilla/MiniEditor.py" line="3090"/> <source>Untitled</source> <translation>Senza titolo</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2757"/> + <location filename="../QScintilla/MiniEditor.py" line="2758"/> <source>Mini Editor</source> <translation>Mini Editor</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3130"/> - <source>Select all</source> - <translation>Seleziona tutti</translation> - </message> - <message> <location filename="../QScintilla/MiniEditor.py" line="3131"/> + <source>Select all</source> + <translation>Seleziona tutti</translation> + </message> + <message> + <location filename="../QScintilla/MiniEditor.py" line="3132"/> <source>Deselect all</source> <translation>Deseleziona tutti</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3145"/> + <location filename="../QScintilla/MiniEditor.py" line="3146"/> <source>Languages</source> <translation>Linguaggi</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3148"/> + <location filename="../QScintilla/MiniEditor.py" line="3149"/> <source>No Language</source> <translation>Nessun linguaggio</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2614"/> + <location filename="../QScintilla/MiniEditor.py" line="2615"/> <source>Open File</source> <translation>Apri File</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2728"/> + <location filename="../QScintilla/MiniEditor.py" line="2729"/> <source>File saved</source> <translation>File salvato</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2529"/> + <location filename="../QScintilla/MiniEditor.py" line="2530"/> <source><p>This part of the status bar displays an indication of the editors files writability.</p></source> <translation><p>Questa parte della barra di stato mostra se il file può essere scritto.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2398"/> + <location filename="../QScintilla/MiniEditor.py" line="2399"/> <source>What's This?</source> <translation>Cos'è questo ?</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2398"/> + <location filename="../QScintilla/MiniEditor.py" line="2399"/> <source>&What's This?</source> <translation>C&os'è Questo ?</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2398"/> + <location filename="../QScintilla/MiniEditor.py" line="2399"/> <source>Shift+F1</source> <comment>Help|What's This?'</comment> <translation>Shift+F1</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2404"/> + <location filename="../QScintilla/MiniEditor.py" line="2405"/> <source>Context sensitive help</source> <translation>Help sensibile al contesto</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2405"/> + <location filename="../QScintilla/MiniEditor.py" line="2406"/> <source><b>Display context sensitive help</b><p>In What's This? mode, the mouse cursor shows an arrow with a question mark, and you can click on the interface elements to get a short description of what they do and how to use them. In dialogs, this feature can be accessed using the context help button in the titlebar.</p></source> <translation><b>Mostra help sensibile al contesto</b><p>Nella modalità Cos'è qusto, il cursore del mouse mostra una finesta con un punto interrogativo, e puoi clickare sugli elementi dell'interfaccia per avere una breve descrizione di cosa fanno e come usarli. Nei dialoghi questa funzionalità può essere utilizzata usando il pulsante per l'help sensibile al contesto della barra del titolo.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2471"/> + <location filename="../QScintilla/MiniEditor.py" line="2472"/> <source>File</source> <translation>File</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2484"/> + <location filename="../QScintilla/MiniEditor.py" line="2485"/> <source>Edit</source> <translation>Modifica</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2494"/> + <location filename="../QScintilla/MiniEditor.py" line="2495"/> <source>Find</source> <translation>Trova</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2508"/> + <location filename="../QScintilla/MiniEditor.py" line="2509"/> <source>Help</source> <translation>Aiuto</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="648"/> + <location filename="../QScintilla/MiniEditor.py" line="649"/> <source>Print</source> <translation>Stampa</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="648"/> + <location filename="../QScintilla/MiniEditor.py" line="649"/> <source>&Print</source> <translation>Stam&pa</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="648"/> + <location filename="../QScintilla/MiniEditor.py" line="649"/> <source>Ctrl+P</source> <comment>File|Print</comment> <translation>Ctrl+P</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="654"/> + <location filename="../QScintilla/MiniEditor.py" line="655"/> <source>Print the current file</source> <translation>Stampa il file corrente</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3049"/> + <location filename="../QScintilla/MiniEditor.py" line="3050"/> <source>Printing...</source> <translation>In stampa...</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3070"/> + <location filename="../QScintilla/MiniEditor.py" line="3071"/> <source>Printing completed</source> <translation>Stampa completata</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3072"/> + <location filename="../QScintilla/MiniEditor.py" line="3073"/> <source>Error while printing</source> <translation>Errore durante la stampa</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3075"/> + <location filename="../QScintilla/MiniEditor.py" line="3076"/> <source>Printing aborted</source> <translation>Stampa interrota</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="655"/> + <location filename="../QScintilla/MiniEditor.py" line="656"/> <source><b>Print File</b><p>Print the contents of the current file.</p></source> <translation><b>Stampa file</b><p>Stampa il file corrente.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="662"/> + <location filename="../QScintilla/MiniEditor.py" line="663"/> <source>Print Preview</source> <translation>Anteprima Stampa</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="667"/> + <location filename="../QScintilla/MiniEditor.py" line="668"/> <source>Print preview of the current file</source> <translation>Antreprima del file corrente</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="669"/> + <location filename="../QScintilla/MiniEditor.py" line="670"/> <source><b>Print Preview</b><p>Print preview of the current file.</p></source> <translation><b>Anteprima di stampa</b><p>Anteprima di stampa del file corrente.</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3172"/> + <location filename="../QScintilla/MiniEditor.py" line="3173"/> <source>Guessed</source> <translation>Indovinato</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3194"/> + <location filename="../QScintilla/MiniEditor.py" line="3195"/> <source>Alternatives</source> <translation>Alternativo</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3218"/> + <location filename="../QScintilla/MiniEditor.py" line="3219"/> <source>Pygments Lexer</source> <translation>Analizzatore lessicale Pygments</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3218"/> + <location filename="../QScintilla/MiniEditor.py" line="3219"/> <source>Select the Pygments lexer to apply.</source> <translation>Selezione l'analizzatore lessicale di Pygments da applicare.</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="483"/> + <location filename="../QScintilla/MiniEditor.py" line="484"/> <source>Line: {0:5}</source> <translation>Linea: {0:5}</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="487"/> + <location filename="../QScintilla/MiniEditor.py" line="488"/> <source>Pos: {0:5}</source> <translation>Pos: {0:5}</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2614"/> + <location filename="../QScintilla/MiniEditor.py" line="2615"/> <source><p>The file <b>{0}</b> could not be opened.</p><p>Reason: {1}</p></source> <translation><p>Il file <b>{0}</b> non può essere aperto.<br />Motivo: {1}</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2721"/> + <location filename="../QScintilla/MiniEditor.py" line="2722"/> <source>Save File</source> <translation>Salva file</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2721"/> + <location filename="../QScintilla/MiniEditor.py" line="2722"/> <source><p>The file <b>{0}</b> could not be saved.<br/>Reason: {1}</p></source> <translation><p>Il file <b>{0}</b> non può essere salvato.<br />Motivo: {1}</p></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2757"/> + <location filename="../QScintilla/MiniEditor.py" line="2758"/> <source>{0}[*] - {1}</source> <translation>{0}[*] - {1}</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3190"/> + <location filename="../QScintilla/MiniEditor.py" line="3191"/> <source>Alternatives ({0})</source> <translation>Alternative ({0})</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2587"/> + <location filename="../QScintilla/MiniEditor.py" line="2588"/> <source>The document has unsaved changes.</source> <translation>Il documento ha delle modifiche non salvate.</translation> </message> @@ -50621,77 +50631,77 @@ <translation type="obsolete">Mini Editor di eric6</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="619"/> + <location filename="../QScintilla/MiniEditor.py" line="620"/> <source>Save Copy</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="619"/> + <location filename="../QScintilla/MiniEditor.py" line="620"/> <source>Save &Copy...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="624"/> + <location filename="../QScintilla/MiniEditor.py" line="625"/> <source>Save a copy of the current file</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="626"/> + <location filename="../QScintilla/MiniEditor.py" line="627"/> <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"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3735"/> + <location filename="../QScintilla/MiniEditor.py" line="3736"/> <source>EditorConfig Properties</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="3735"/> + <location filename="../QScintilla/MiniEditor.py" line="3736"/> <source><p>The EditorConfig properties for file <b>{0}</b> could not be loaded.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2740"/> + <location filename="../QScintilla/MiniEditor.py" line="2741"/> <source>[*] - {0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="502"/> + <location filename="../QScintilla/MiniEditor.py" line="503"/> <source>Language: {0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2451"/> + <location filename="../QScintilla/MiniEditor.py" line="2452"/> <source>&View</source> <translation type="unfinished">&Visualizza</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2501"/> + <location filename="../QScintilla/MiniEditor.py" line="2502"/> <source>View</source> <translation type="unfinished">Visualizza</translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2521"/> + <location filename="../QScintilla/MiniEditor.py" line="2522"/> <source><p>This part of the status bar displays the editor language.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2554"/> + <location filename="../QScintilla/MiniEditor.py" line="2555"/> <source><p>This part of the status bar allows zooming the editor.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="413"/> + <location filename="../QScintilla/MiniEditor.py" line="414"/> <source>About eric Mini Editor</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="413"/> + <location filename="../QScintilla/MiniEditor.py" line="414"/> <source>The eric Mini Editor is an editor component based on QScintilla. It may be used for simple editing tasks, that don't need the power of a full blown editor.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/MiniEditor.py" line="2587"/> + <location filename="../QScintilla/MiniEditor.py" line="2588"/> <source>eric Mini Editor</source> <translation type="unfinished"></translation> </message> @@ -80312,112 +80322,112 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/UF2FlashDialog.py" line="519"/> + <location filename="../MicroPython/UF2FlashDialog.py" line="522"/> <source>MicroPython/CircuitPython Files (*.uf2);;All Files (*)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/UF2FlashDialog.py" line="590"/> + <location filename="../MicroPython/UF2FlashDialog.py" line="593"/> <source>Manual Select</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/UF2FlashDialog.py" line="691"/> + <location filename="../MicroPython/UF2FlashDialog.py" line="698"/> <source>Reset Instructions:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/UF2FlashDialog.py" line="635"/> + <location filename="../MicroPython/UF2FlashDialog.py" line="638"/> <source><h4>No known devices detected.</h4><p>Follow the appropriate instructions below to set <b>one</b> board into 'bootloader' mode. Press <b>Refresh</b> when ready.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/UF2FlashDialog.py" line="658"/> + <location filename="../MicroPython/UF2FlashDialog.py" line="665"/> <source><h4>Flash {0} Firmware</h4><p>Follow the instructions below to set <b>one</b> board into 'bootloader' mode. Press <b>Refresh</b> when ready.</p><hr/>{1}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/UF2FlashDialog.py" line="668"/> + <location filename="../MicroPython/UF2FlashDialog.py" line="675"/> <source><h4>Potentially UF2 capable devices found</h4><p>Found these potentially UF2 capable devices:</p><ul><li>{0}</li></ul><p>Follow the instructions below to set <b>one</b> board into 'bootloader' mode. Press <b>Refresh</b> when ready.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/UF2FlashDialog.py" line="693"/> + <location filename="../MicroPython/UF2FlashDialog.py" line="700"/> <source><h4>No known devices detected.</h4><p>Follow the instructions below to set <b>one</b> board into 'bootloader' mode. Press <b>Refresh</b> when ready.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/UF2FlashDialog.py" line="705"/> + <location filename="../MicroPython/UF2FlashDialog.py" line="712"/> <source>Flash Instructions:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/UF2FlashDialog.py" line="732"/> + <location filename="../MicroPython/UF2FlashDialog.py" line="739"/> <source>Boot Volume not found:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/UF2FlashDialog.py" line="734"/> + <location filename="../MicroPython/UF2FlashDialog.py" line="741"/> <source><h4>No Boot Volume detected.</h4><p>Please ensure that the boot volume of the device to be flashed is available. </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/UF2FlashDialog.py" line="740"/> + <location filename="../MicroPython/UF2FlashDialog.py" line="747"/> <source>This volume should be named <b>{0}</b>. Press <b>Refresh</b> when ready.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/UF2FlashDialog.py" line="745"/> + <location filename="../MicroPython/UF2FlashDialog.py" line="752"/> <source>This volume should have one of these names.</p><ul><li>{0}</li></ul><p>Press <b>Refresh</b> when ready.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/UF2FlashDialog.py" line="771"/> + <location filename="../MicroPython/UF2FlashDialog.py" line="778"/> <source>Multiple Boot Volumes found:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/UF2FlashDialog.py" line="773"/> + <location filename="../MicroPython/UF2FlashDialog.py" line="780"/> <source><h4>Multiple Boot Volumes were found</h4><p>These volume paths were found.</p><ul><li>{0}</li></ul><p>Please ensure that only one device of a type is ready for flashing. Press <b>Refresh</b> when ready.</p></source> <translation type="unfinished"></translation> </message> <message> + <location filename="../MicroPython/UF2FlashDialog.py" line="806"/> + <source>Flashing {0}</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../MicroPython/UF2FlashDialog.py" line="714"/> + <source><h4>Flash method 'manual' selected.</h4><p>Follow the instructions below to flash a device by entering the data manually.</p><ol><li>Change the device to 'bootloader' mode.</li><li>Wait until the device has entered 'bootloader' mode.</li><li>Ensure the boot volume is available (this may require mounting it) and select its path.</li><li>Select the firmware file to be flashed and click the flash button.</li></ol></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../MicroPython/UF2FlashDialog.py" line="808"/> + <source><p>Flashing the {0} firmware to the device. Please wait until the device resets automatically.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../MicroPython/UF2FlashDialog.py" line="487"/> + <source>'{0}' Board</source> + <translation type="unfinished"></translation> + </message> + <message> <location filename="../MicroPython/UF2FlashDialog.py" line="799"/> - <source>Flashing {0}</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../MicroPython/UF2FlashDialog.py" line="707"/> - <source><h4>Flash method 'manual' selected.</h4><p>Follow the instructions below to flash a device by entering the data manually.</p><ol><li>Change the device to 'bootloader' mode.</li><li>Wait until the device has entered 'bootloader' mode.</li><li>Ensure the boot volume is available (this may require mounting it) and select its path.</li><li>Select the firmware file to be flashed and click the flash button.</li></ol></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../MicroPython/UF2FlashDialog.py" line="801"/> - <source><p>Flashing the {0} firmware to the device. Please wait until the device resets automatically.</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../MicroPython/UF2FlashDialog.py" line="484"/> - <source>'{0}' Board</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../MicroPython/UF2FlashDialog.py" line="792"/> <source>Flashing Firmware</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/UF2FlashDialog.py" line="793"/> + <location filename="../MicroPython/UF2FlashDialog.py" line="800"/> <source><p>Flashing the selected firmware to the device. Please wait until the device resets automatically.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/UF2FlashDialog.py" line="752"/> + <location filename="../MicroPython/UF2FlashDialog.py" line="759"/> <source><h4>Reset Instructions</h4><p>Follow the instructions below to set the board into 'bootloader' mode. Press <b>Refresh</b> when ready.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/UF2FlashDialog.py" line="414"/> + <location filename="../MicroPython/UF2FlashDialog.py" line="416"/> <source><h3>Pi Pico (RP2040) Board</h3><p>In order to prepare the board for flashing follow these steps:</p><ol><li>Enter 'bootloader' mode (board <b>without</b> RESET button):<ul><li>Plug in your board while holding the BOOTSEL button.</li></ul>Enter 'bootloader' mode (board <b>with</b> RESET button):<ul><li>hold down RESET</li><li>hold down BOOTSEL</li><li>release RESET</li><li>release BOOTSEL</li></ul></li><li>Wait until the device has entered 'bootloader' mode.</li><li>Ensure the boot volume is available (this may require mounting it).</li><li>Select the firmware file to be flashed and click the flash button.</li></ol></source> <translation type="unfinished"></translation> </message>
--- a/eric6/i18n/eric6_pt.ts Sun Mar 28 18:51:40 2021 +0200 +++ b/eric6/i18n/eric6_pt.ts Sun Mar 28 18:51:58 2021 +0200 @@ -1638,17 +1638,17 @@ <context> <name>BackgroundService</name> <message> - <location filename="../Utilities/BackgroundService.py" line="135"/> + <location filename="../Utilities/BackgroundService.py" line="138"/> <source>{0} not configured.</source> <translation>{0} sem configurar.</translation> </message> <message> - <location filename="../Utilities/BackgroundService.py" line="190"/> + <location filename="../Utilities/BackgroundService.py" line="193"/> <source>Restart background client?</source> <translation>Reiniciar cliente de fundo?</translation> </message> <message> - <location filename="../Utilities/BackgroundService.py" line="190"/> + <location filename="../Utilities/BackgroundService.py" line="193"/> <source><p>The background client for <b>{0}</b> has stopped due to an exception. It's used by various plug-ins like the different checkers.</p><p>Select<ul><li><b>'Yes'</b> to restart the client, but abort the last job</li><li><b>'Retry'</b> to restart the client and the last job</li><li><b>'No'</b> to leave the client off.</li></ul></p><p>Note: The client can be restarted by opening and accepting the preferences dialog or reloading/changing the project.</p></source> <translation><p>O cliente de fundo para <b>{0}</b> parou devido a uma exceção. Usa-se por varios complementos tais como os diferentes verificadores.</p><p>Selecionar<ul><li><b>'Sim'</b> para reiniciar o cliente mas abandona o último trabalho</li><li><b>'Reintentar'</b> para reiniciar o cliente e o último trabalho</li><li><b>'Não'</b> para deixar o cliente apagado.</li></ul></p><p>Nota: O cliente pode reiniciar-se abrindo e confirmando a caixa de diálogo de preferências ou recarregando/alterando o projeto.</p></translation> </message> @@ -1658,22 +1658,22 @@ <translation type="obsolete">Um erro no cliente de fundo de Eric parou o serviço.</translation> </message> <message> - <location filename="../Utilities/BackgroundService.py" line="445"/> + <location filename="../Utilities/BackgroundService.py" line="448"/> <source>Eric's background client disconnected because of an unknown reason.</source> <translation type="unfinished">Cliente de fundo de Eric desconectou-se por motivo desconhecido.</translation> </message> <message> - <location filename="../Utilities/BackgroundService.py" line="451"/> + <location filename="../Utilities/BackgroundService.py" line="454"/> <source>Background client disconnected.</source> <translation>Cliente de fundo desconectado.</translation> </message> <message> - <location filename="../Utilities/BackgroundService.py" line="451"/> + <location filename="../Utilities/BackgroundService.py" line="454"/> <source>The background client for <b>{0}</b> disconnected because of an unknown reason.<br>Should it be restarted?</source> <translation>Cliente de fundo para <b>{0}</b> desconetou-se por um motivo desconhecido. <br>Deveria reiniciar-se?</translation> </message> <message> - <location filename="../Utilities/BackgroundService.py" line="216"/> + <location filename="../Utilities/BackgroundService.py" line="219"/> <source>An error in Eric's background client stopped the service.</source> <translation type="unfinished"></translation> </message> @@ -3670,7 +3670,7 @@ <context> <name>CodeStyleChecker</name> <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="577"/> + <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="578"/> <source>No message defined for code '{0}'.</source> <translation type="unfinished"></translation> </message> @@ -10175,7 +10175,7 @@ <translation type="obsolete"><b>Filtro de Mensagens de Erro</b><p>Esta lista mostra os filtros de mensagens configurados usados para suprimir mensagens de erro de Qt.</p></translation> </message> <message> - <location filename="../E5Gui/E5ErrorMessageFilterDialog.py" line="35"/> + <location filename="../E5Gui/E5ErrorMessageFilterDialog.py" line="32"/> <source><b>Error Message Filters</b><p>This list shows the configured message filters used to suppress error messages from within Qt.</p><p>A default list of message filters is added to this user list.</p></source> <translation type="unfinished"></translation> </message> @@ -11854,7 +11854,7 @@ <translation>Desselecionar tudo</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7991"/> + <location filename="../QScintilla/Editor.py" line="7992"/> <source>Check spelling...</source> <translation>Verificação ortográfica...</translation> </message> @@ -12484,12 +12484,12 @@ <translation>Incluir nome dos módulos?</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7994"/> + <location filename="../QScintilla/Editor.py" line="7995"/> <source>Add to dictionary</source> <translation>Adicionar dicionário</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7996"/> + <location filename="../QScintilla/Editor.py" line="7997"/> <source>Ignore All</source> <translation>Ignorar Tudo</translation> </message> @@ -12534,12 +12534,12 @@ <translation>Alteração anterior</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8412"/> + <location filename="../QScintilla/Editor.py" line="8413"/> <source>Sort Lines</source> <translation>Ordenar Linhas</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8412"/> + <location filename="../QScintilla/Editor.py" line="8413"/> <source>The selection contains illegal data for a numerical sort.</source> <translation>A seleção contém dados ilegais para uma ordenação numérica.</translation> </message> @@ -12609,12 +12609,12 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8501"/> + <location filename="../QScintilla/Editor.py" line="8502"/> <source>Register Mouse Click Handler</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8501"/> + <location filename="../QScintilla/Editor.py" line="8502"/> <source>A mouse click handler for "{0}" was already registered by "{1}". Aborting request by "{2}"...</source> <translation type="unfinished"></translation> </message> @@ -12644,12 +12644,12 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8622"/> + <location filename="../QScintilla/Editor.py" line="8623"/> <source>EditorConfig Properties</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8622"/> + <location filename="../QScintilla/Editor.py" line="8623"/> <source><p>The EditorConfig properties for file <b>{0}</b> could not be loaded.</p></source> <translation type="unfinished"></translation> </message> @@ -12694,7 +12694,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8816"/> + <location filename="../QScintilla/Editor.py" line="8817"/> <source>Generate Docstring</source> <translation type="unfinished"></translation> </message> @@ -18675,12 +18675,12 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/EspDevices.py" line="227"/> + <location filename="../MicroPython/EspDevices.py" line="231"/> <source>Flash MicroPython Firmware</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/EspDevices.py" line="258"/> + <location filename="../MicroPython/EspDevices.py" line="266"/> <source>Flash Additional Firmware</source> <translation type="unfinished"></translation> </message> @@ -18705,7 +18705,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/EspDevices.py" line="319"/> + <location filename="../MicroPython/EspDevices.py" line="327"/> <source>'esptool write_flash' Output</source> <translation type="unfinished"></translation> </message> @@ -18715,47 +18715,47 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/EspDevices.py" line="285"/> + <location filename="../MicroPython/EspDevices.py" line="293"/> <source>Backup Firmware</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/EspDevices.py" line="319"/> + <location filename="../MicroPython/EspDevices.py" line="327"/> <source>Restore Firmware</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/EspDevices.py" line="337"/> + <location filename="../MicroPython/EspDevices.py" line="345"/> <source>Show Chip ID</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/EspDevices.py" line="354"/> + <location filename="../MicroPython/EspDevices.py" line="362"/> <source>Show Flash ID</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/EspDevices.py" line="371"/> + <location filename="../MicroPython/EspDevices.py" line="379"/> <source>Show MAC Address</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/EspDevices.py" line="285"/> + <location filename="../MicroPython/EspDevices.py" line="293"/> <source>'esptool read_flash' Output</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/EspDevices.py" line="337"/> + <location filename="../MicroPython/EspDevices.py" line="345"/> <source>'esptool chip_id' Output</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/EspDevices.py" line="354"/> + <location filename="../MicroPython/EspDevices.py" line="362"/> <source>'esptool flash_id' Output</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/EspDevices.py" line="371"/> + <location filename="../MicroPython/EspDevices.py" line="379"/> <source>'esptool read_mac' Output</source> <translation type="unfinished"></translation> </message> @@ -18788,12 +18788,12 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="96"/> + <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="123"/> <source>Address:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="103"/> + <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="130"/> <source>Enter the flash addres in the hexadecimal form</source> <translation type="unfinished"></translation> </message> @@ -18803,20 +18803,30 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="75"/> + <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="102"/> <source>Flash Mode:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="82"/> + <location filename="../MicroPython/EspFirmwareSelectionDialog.ui" line="109"/> <source&