Sat, 23 Jan 2016 16:21:23 +0100
Improved the display of addresses and sizes in the hex editor.
--- a/APIs/Python3/eric6.api Sun Jan 17 15:15:15 2016 +0100 +++ b/APIs/Python3/eric6.api Sat Jan 23 16:21:23 2016 +0100 @@ -1914,6 +1914,7 @@ eric6.Globals.settingsNameGlobal?7 eric6.Globals.settingsNameOrganization?7 eric6.Globals.settingsNameRecent?7 +eric6.Globals.strGroup?4(txt, sep, groupLen=4) eric6.Globals.toBool?4(value) eric6.Globals.toByteArray?4(value) eric6.Globals.toDict?4(value)
--- a/Documentation/Help/source.qhp Sun Jan 17 15:15:15 2016 +0100 +++ b/Documentation/Help/source.qhp Sat Jan 23 16:21:23 2016 +0100 @@ -14119,6 +14119,7 @@ <keyword name="startDebugger" id="startDebugger" ref="eric6.DebugClients.Python3.eric6dbgstub.html#startDebugger" /> <keyword name="startswithPath" id="startswithPath" ref="eric6.Utilities.__init__.html#startswithPath" /> <keyword name="stdin_get_value" id="stdin_get_value" ref="eric6.Plugins.CheckerPlugins.CodeStyleChecker.pep8.html#stdin_get_value" /> + <keyword name="strGroup" id="strGroup" ref="eric6.Globals.__init__.html#strGroup" /> <keyword name="strip_PKCS7_padding" id="strip_PKCS7_padding" ref="eric6.Utilities.crypto.py3AES.html#strip_PKCS7_padding" /> <keyword name="subversion (Module)" id="subversion (Module)" ref="eric6.Plugins.VcsPlugins.vcsPySvn.subversion.html" /> <keyword name="subversion (Module)" id="subversion (Module)" ref="eric6.Plugins.VcsPlugins.vcsSubversion.subversion.html" />
--- a/Documentation/Source/eric6.Globals.__init__.html Sun Jan 17 15:15:15 2016 +0100 +++ b/Documentation/Source/eric6.Globals.__init__.html Sat Jan 23 16:21:23 2016 +0100 @@ -64,6 +64,9 @@ <td><a href="#setConfigDir">setConfigDir</a></td> <td>Module function to set the name of the directory storing the config data.</td> </tr><tr> +<td><a href="#strGroup">strGroup</a></td> +<td>Module function to group a string into sub-strings separated by a separator.</td> +</tr><tr> <td><a href="#toBool">toBool</a></td> <td>Module function to convert a value to bool.</td> </tr><tr> @@ -213,6 +216,36 @@ </dl> <div align="right"><a href="#top">Up</a></div> <hr /><hr /> +<a NAME="strGroup" ID="strGroup"></a> +<h2>strGroup</h2> +<b>strGroup</b>(<i>txt, sep, groupLen=4</i>) +<p> + Module function to group a string into sub-strings separated by a + separator. +</p><dl> +<dt><i>txt</i> (str)</dt> +<dd> +text to be grouped +</dd><dt><i>sep</i> (str)</dt> +<dd> +separator string +</dd><dt><i>groupLen</i> (int)</dt> +<dd> +length of each group +</dd> +</dl><dl> +<dt>Returns:</dt> +<dd> +result string +</dd> +</dl><dl> +<dt>Return Type:</dt> +<dd> +str +</dd> +</dl> +<div align="right"><a href="#top">Up</a></div> +<hr /><hr /> <a NAME="toBool" ID="toBool"></a> <h2>toBool</h2> <b>toBool</b>(<i>value</i>)
--- a/Documentation/Source/eric6.HexEdit.HexEditWidget.html Sun Jan 17 15:15:15 2016 +0100 +++ b/Documentation/Source/eric6.HexEdit.HexEditWidget.html Sat Jan 23 16:21:23 2016 +0100 @@ -147,7 +147,7 @@ <td>Public method to get the address offset.</td> </tr><tr> <td><a href="#HexEditWidget.addressWidth">addressWidth</a></td> -<td>Public method to get the minimum width of the address area in characters.</td> +<td>Public method to get the width of the address area in characters.</td> </tr><tr> <td><a href="#HexEditWidget.asciiArea">asciiArea</a></td> <td>Public method to get the visibility of the ASCII area.</td> @@ -613,8 +613,10 @@ <h4>HexEditWidget.addressWidth</h4> <b>addressWidth</b>(<i></i>) <p> - Public method to get the minimum width of the address area in + Public method to get the width of the address area in characters. +</p><p> + Note: The address area width is always a multiple of four. </p><dl> <dt>Returns:</dt> <dd> @@ -1305,6 +1307,9 @@ <b>setAddressWidth</b>(<i>width</i>) <p> Public method to set the width of the address area. +</p><p> + Note: The address area width is always a multiple of four. + The given value will be adjusted as required. </p><dl> <dt><i>width</i> (int)</dt> <dd>
--- a/Globals/__init__.py Sun Jan 17 15:15:15 2016 +0100 +++ b/Globals/__init__.py Sat Jan 23 16:21:23 2016 +0100 @@ -248,6 +248,35 @@ ############################################################################### +## functions for extended string handling +############################################################################### + + +def strGroup(txt, sep, groupLen=4): + """ + Module function to group a string into sub-strings separated by a + separator. + + @param txt text to be grouped + @type str + @param sep separator string + @type str + @param groupLen length of each group + @type int + @return result string + @rtype str + """ + l=[] + + while len(txt) // groupLen != 0: + l.insert(0, txt[-groupLen:]) + txt = txt[:-groupLen] + if len(txt) > 0: + l.insert(0, txt) + return sep.join(l) + + +############################################################################### ## functions for converting QSetting return types to valid types ###############################################################################
--- a/HexEdit/HexEditMainWindow.py Sun Jan 17 15:15:15 2016 +0100 +++ b/HexEdit/HexEditMainWindow.py Sat Jan 23 16:21:23 2016 +0100 @@ -12,7 +12,7 @@ import os from PyQt5.QtCore import pyqtSignal, pyqtSlot, QFile, QFileInfo, QSize, \ - QCoreApplication + QCoreApplication, QLocale from PyQt5.QtGui import QKeySequence from PyQt5.QtWidgets import QWhatsThis, QLabel, QWidget, QVBoxLayout, \ QDialog, QAction, QFrame @@ -22,6 +22,8 @@ from E5Gui import E5FileDialog, E5MessageBox from E5Gui.E5ClickableLabel import E5ClickableLabel +from Globals import strGroup + from .HexEditWidget import HexEditWidget from .HexEditSearchReplaceWidget import HexEditSearchReplaceWidget from .HexEditGotoWidget import HexEditGotoWidget @@ -648,6 +650,7 @@ """ Private method to create the menus. """ + # TODO: add "Open recent menu" mb = self.menuBar() menu = mb.addMenu(self.tr('&File')) @@ -808,8 +811,9 @@ @param address address of the cursor @type int """ - self.__sbAddress.setText(self.tr("Address: 0x{0:0{1}x}").format( - address, self.__editor.addressWidth())) + txt = "{0:0{1}x}".format(address, self.__editor.addressWidth()) + txt = strGroup(txt, ":", 4) + self.__sbAddress.setText(self.tr("Address: {0}").format(txt)) @pyqtSlot(bool) def __showSelectionInfo(self, avail): @@ -820,14 +824,18 @@ @type bool """ if avail: - start = self.__editor.getSelectionBegin() - end = self.__editor.getSelectionEnd() + addrWidth = self.__editor.addressWidth() + start = "{0:0{1}x}".format(self.__editor.getSelectionBegin(), + addrWidth) + start = strGroup(start, ":", 4) + end = "{0:0{1}x}".format(self.__editor.getSelectionEnd(), + addrWidth) + end = strGroup(end, ":", 4) slen = self.__editor.getSelectionLength() self.__sbSelection.setText( - self.tr("Selection: 0x{0:0{2}x} - 0x{1:0{2}x} ({3:n} Bytes)", - "0: start, 1: end, 2: address width," - " 3: selection length") - .format(start, end, self.__editor.addressWidth(), slen) + self.tr("Selection: {0} - {1} ({2} Bytes)", + "0: start, 1: end, 2: selection length") + .format(start, end, QLocale().toString(slen)) ) else: self.__sbSelection.setText( @@ -878,7 +886,8 @@ @param size size of the binary data @type int """ - self.__sbSize.setText(self.tr("Size: {0:n}").format(size)) + self.__sbSize.setText( + self.tr("Size: {0}").format(QLocale().toString(size))) def closeEvent(self, evt): """
--- a/HexEdit/HexEditWidget.py Sun Jan 17 15:15:15 2016 +0100 +++ b/HexEdit/HexEditWidget.py Sat Jan 23 16:21:23 2016 +0100 @@ -7,12 +7,14 @@ Module implementing an editor for binary data. """ -from __future__ import unicode_literals +from __future__ import unicode_literals, division try: chr = unichr # __IGNORE_EXCEPTION__ except NameError: pass +import math + from PyQt5.QtCore import pyqtSignal, pyqtSlot, Qt, QByteArray, QTimer, QRect, \ QBuffer, QIODevice from PyQt5.QtGui import QBrush, QPen, QColor, QFont, QPalette, QKeySequence, \ @@ -98,6 +100,7 @@ # absolute position of cursor, 1 Byte == 2 tics self.__addrDigits = 0 + self.__addrSeparators = 0 self.__blink = True self.__bData = QBuffer() self.__cursorRect = QRect() @@ -263,9 +266,11 @@ def addressWidth(self): """ - Public method to get the minimum width of the address area in + Public method to get the width of the address area in characters. + Note: The address area width is always a multiple of four. + @return minimum width of the address area @rtype int """ @@ -283,6 +288,7 @@ if size > 0x10: n += 1 size //= 0x10 + n = int(math.ceil(n / 4)) * 4 if n > self.__addressWidth: return n @@ -293,10 +299,13 @@ """ Public method to set the width of the address area. + Note: The address area width is always a multiple of four. + The given value will be adjusted as required. + @param width width of the address area in characters @type int """ - self.__addressWidth = width + self.__addressWidth = int(math.ceil(width / 4)) * 4 self.__adjust() self.setCursorPosition(self.__cursorPosition) self.viewport().update() @@ -1352,6 +1361,7 @@ self.setCursorPosition(self.__cursorPosition + 1) self.__resetSelection(self.__cursorPosition) + # TODO: handle pressing keyboard modifier only by not calling __referesh self.__refresh() @@ -1428,6 +1438,7 @@ address = "{0:0{1}x}".format( self.__bPosFirst + row * self.BYTES_PER_LINE, self.__addrDigits) + address = Globals.strGroup(address, ":", 4) painter.drawText(self.__pxPosAdrX - pxOfsX, pxPosY, address) # increment loop variables @@ -1702,8 +1713,11 @@ # recalculate graphics if self.__addressArea: self.__addrDigits = self.addressWidth() - self.__pxPosHexX = self.__pxGapAdr + \ - self.__addrDigits * self.__pxCharWidth + self.__pxGapAdrHex + self.__addrSeparators = self.__addrDigits // 4 - 1 + self.__pxPosHexX = ( + self.__pxGapAdr + + (self.__addrDigits + self.__addrSeparators) * + self.__pxCharWidth + self.__pxGapAdrHex) else: self.__pxPosHexX = self.__pxGapAdrHex self.__pxPosAdrX = self.__pxGapAdr
--- a/i18n/eric6_cs.ts Sun Jan 17 15:15:15 2016 +0100 +++ b/i18n/eric6_cs.ts Sat Jan 23 16:21:23 2016 +0100 @@ -10854,7 +10854,7 @@ <translation>Výběr výplně konce řádku.</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="338"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="339"/> <source>Fill to end of line</source> <translation>Vyplnit do konce řádku</translation> </message> @@ -10899,7 +10899,7 @@ <translation>Vybrat font.</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="59"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="60"/> <source>Font</source> <translation></translation> </message> @@ -10924,17 +10924,17 @@ <translation>Vše Vyplnit do konce řádku</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="336"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="337"/> <source>Enabled</source> <translation>Zapnuto</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="337"/> - <source>Disabled</source> - <translation>Vypnuto</translation> - </message> - <message> <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="338"/> + <source>Disabled</source> + <translation>Vypnuto</translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="339"/> <source>Select fill to end of line for all styles</source> <translation>Vybrat pro doplnit do konce řádku pro všechny styly</translation> </message> @@ -10994,42 +10994,42 @@ <translation>Export všech stylů</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="446"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="447"/> <source>Export Highlighting Styles</source> <translation>Export stylů zvýraznění</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="478"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="479"/> <source>Import Highlighting Styles</source> <translation>Importovat styly zvýraznění</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="462"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="463"/> <source>Highlighting styles file (*.e4h)</source> <translation>Soubor se styly zvýrazňování (*.e4h)</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="446"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="447"/> <source><p>The highlighting styles could not be exported to file <b>{0}</b>.</p><p>Reason: {1}</p></source> <translation><p>Styly zvýraznění syntaxe se do souboru <b>{0}</b> nepodařilo exportovat.</p><p>Důvod: {1}</p></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="478"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="479"/> <source><p>The highlighting styles could not be read from file <b>{0}</b>.</p><p>Reason: {1}</p></source> <translation><p>Styly zvýraznění syntaxe se ze souboru <b>{0}</b> nepodařilo načít.</p><p>Důvod: {1}</p></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="62"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="63"/> <source>Family and Size only</source> <translation>Jen rodina a velikost</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="65"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="66"/> <source>Family only</source> <translation>Jen rodina</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="67"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="68"/> <source>Size only</source> <translation>Jen velikost</translation> </message> @@ -12340,7 +12340,7 @@ <translation>Mód:</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="53"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="58"/> <source>Disabled</source> <translation>Vypnuto</translation> </message> @@ -12660,32 +12660,32 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="55"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="60"/> <source>Word Boundary</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="57"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="62"/> <source>Character Boundary</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="59"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="64"/> <source>No Indicator</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="61"/> - <source>Indicator by Text</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="63"/> - <source>Indicator by Margin</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="66"/> + <source>Indicator by Text</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="68"/> + <source>Indicator by Margin</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="71"/> <source>Indicator in Line Number Margin</source> <translation type="unfinished"></translation> </message> @@ -16306,7 +16306,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/HelpAppearancePage.py" line="35"/> + <location filename="../Preferences/ConfigurationPages/HelpAppearancePage.py" line="41"/> <source>Cascading Style Sheets (*.css);;All files (*)</source> <translation type="unfinished"></translation> </message> @@ -19943,548 +19943,548 @@ <context> <name>HexEditMainWindow</name> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="152"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="154"/> <source>New Window</source> <translation type="unfinished">Nové okno</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="152"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="154"/> <source>New &Window</source> <translation type="unfinished">&Nové okno</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="157"/> - <source>Open a binary file for editing in a new hex editor window</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../HexEdit/HexEditMainWindow.py" line="159"/> + <source>Open a binary file for editing in a new hex editor window</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../HexEdit/HexEditMainWindow.py" line="161"/> <source><b>New Window</b><p>This opens a binary file for editing in a new hex editor window.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="168"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="170"/> <source>Open</source> <translation type="unfinished">Otevřít</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="168"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="170"/> <source>&Open...</source> <translation type="unfinished">&Otevřít...</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="168"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="170"/> <source>Ctrl+O</source> <comment>File|Open</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="184"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="186"/> <source>Save</source> <translation type="unfinished">Uložit</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="184"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="186"/> <source>&Save</source> <translation type="unfinished">&Uložit</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="184"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="186"/> <source>Ctrl+S</source> <comment>File|Save</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="190"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="192"/> <source>Save the current binary file</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="191"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="193"/> <source><b>Save File</b><p>Save the contents of the hex editor window.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="198"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="200"/> <source>Save As</source> <translation type="unfinished">Uložit jako</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="198"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="200"/> <source>Save &As...</source> <translation type="unfinished">Uložit j&ako...</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="198"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="200"/> <source>Shift+Ctrl+S</source> <comment>File|Save As</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="204"/> - <source>Save the current binary data to a new file</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../HexEdit/HexEditMainWindow.py" line="206"/> + <source>Save the current binary data to a new file</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../HexEdit/HexEditMainWindow.py" line="208"/> <source><b>Save As...</b><p>Saves the current binary data to a new file.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="213"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="215"/> <source>Save As Readable</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="213"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="215"/> <source>Save As &Readable...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="217"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="219"/> <source>Save the current binary data to a new file in a readable format</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="220"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="222"/> <source><b>Save As Readable...</b><p>Saves the current binary data to a new file in a readable format.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="228"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="230"/> <source>Close</source> <translation type="unfinished">Zavřít</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="228"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="230"/> <source>&Close</source> <translation type="unfinished">&Zavřít</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="228"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="230"/> <source>Ctrl+W</source> <comment>File|Close</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="234"/> - <source>Close the current hex editor window</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../HexEdit/HexEditMainWindow.py" line="236"/> + <source>Close the current hex editor window</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../HexEdit/HexEditMainWindow.py" line="238"/> <source><b>Close</b><p>Closes the current hex editor window.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="243"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="245"/> <source>Close All</source> <translation type="unfinished">Zavřít vše</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="243"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="245"/> <source>Close &All</source> <translation type="unfinished">Z&avřít vše</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="247"/> - <source>Close all hex editor windows</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../HexEdit/HexEditMainWindow.py" line="249"/> + <source>Close all hex editor windows</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../HexEdit/HexEditMainWindow.py" line="251"/> <source><b>Close All</b><p>Closes all hex editor windows.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="256"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="258"/> <source>Close Others</source> <translation type="unfinished">Zavřít ostatní</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="260"/> - <source>Close all hex other editor windows</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../HexEdit/HexEditMainWindow.py" line="262"/> + <source>Close all hex other editor windows</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../HexEdit/HexEditMainWindow.py" line="264"/> <source><b>Close Others</b><p>Closes all other hex editor windows.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="269"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="271"/> <source>Quit</source> <translation type="unfinished">Konec</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="269"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="271"/> <source>&Quit</source> <translation type="unfinished">&Konec</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="269"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="271"/> <source>Ctrl+Q</source> <comment>File|Quit</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="275"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="277"/> <source>Quit the hex editor</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="276"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="278"/> <source><b>Quit</b><p>Quit the hex editor.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="288"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="290"/> <source>Undo</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="288"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="290"/> <source>&Undo</source> <translation type="unfinished">&Vrátit</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="288"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="290"/> <source>Ctrl+Z</source> <comment>Edit|Undo</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="288"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="290"/> <source>Alt+Backspace</source> <comment>Edit|Undo</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="295"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="297"/> <source>Undo the last change</source> <translation type="unfinished">Vrátit poslední změnu</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="296"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="298"/> <source><b>Undo</b><p>Undo the last change done.</p></source> <translation type="unfinished"><b>Vrátit</b><p>Vrátit poslední změnu.</p></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="303"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="305"/> <source>Redo</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="303"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="305"/> <source>&Redo</source> <translation type="unfinished">&Znovu použít</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="303"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="305"/> <source>Ctrl+Shift+Z</source> <comment>Edit|Redo</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="309"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="311"/> <source>Redo the last change</source> <translation type="unfinished">Znovu použít poslední změnu</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="310"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="312"/> <source><b>Redo</b><p>Redo the last change done.</p></source> <translation type="unfinished"><b>Znovu použít</b><p>Znovu použít poslední změnu.</p></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="323"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="325"/> <source>Revert to last saved state</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="317"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="319"/> <source>Re&vert to last saved state</source> <translation type="unfinished">Vrátit se k &poslednímu uloženému stavu</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="317"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="319"/> <source>Ctrl+Y</source> <comment>Edit|Revert</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="324"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="326"/> <source><b>Revert to last saved state</b><p>Undo all changes up to the last saved state of the editor.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="332"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="334"/> <source>Cut</source> <translation type="unfinished">Vyjmout</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="332"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="334"/> <source>Cu&t</source> <translation type="unfinished">Vyjmou&t</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="332"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="334"/> <source>Ctrl+X</source> <comment>Edit|Cut</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="332"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="334"/> <source>Shift+Del</source> <comment>Edit|Cut</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="339"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="341"/> <source>Cut the selection</source> <translation type="unfinished">Vyjmout výběr</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="340"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="342"/> <source><b>Cut</b><p>Cut the selected binary area to the clipboard.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="347"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="349"/> <source>Copy</source> <translation type="unfinished">Kopírovat</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="347"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="349"/> <source>&Copy</source> <translation type="unfinished">&Kopírovat</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="347"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="349"/> <source>Ctrl+C</source> <comment>Edit|Copy</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="347"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="349"/> <source>Ctrl+Ins</source> <comment>Edit|Copy</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="354"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="356"/> <source>Copy the selection</source> <translation type="unfinished">Kopírovat výběr</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="355"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="357"/> <source><b>Copy</b><p>Copy the selected binary area to the clipboard.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="362"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="364"/> <source>Paste</source> <translation type="unfinished">Vložit</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="362"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="364"/> <source>&Paste</source> <translation type="unfinished">V&ložit</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="362"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="364"/> <source>Ctrl+V</source> <comment>Edit|Paste</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="362"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="364"/> <source>Shift+Ins</source> <comment>Edit|Paste</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="369"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="371"/> <source>Paste the clipboard contents</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="370"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="372"/> <source><b>Paste</b><p>Paste the clipboard contents.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="377"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="379"/> <source>Select All</source> <translation type="unfinished">Vybrat vše</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="377"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="379"/> <source>&Select All</source> <translation type="unfinished">Vybrat vš&e</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="377"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="379"/> <source>Ctrl+A</source> <comment>Edit|Select All</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="384"/> - <source>Select the complete binary data</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../HexEdit/HexEditMainWindow.py" line="386"/> + <source>Select the complete binary data</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../HexEdit/HexEditMainWindow.py" line="388"/> <source><b>Select All</b><p>Selects the complete binary data.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="393"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="395"/> <source>Deselect all</source> <translation type="unfinished">Zrušit celý výběr</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="393"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="395"/> <source>&Deselect all</source> <translation type="unfinished">Z&rušit celý výběr</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="393"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="395"/> <source>Alt+Ctrl+A</source> <comment>Edit|Deselect all</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="399"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="401"/> <source>Deselect all binary data</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="400"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="402"/> <source><b>Deselect All</b><p>Deselect all all binary data.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="407"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="409"/> <source>Save Selection Readable</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="407"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="409"/> <source>Save Selection Readable...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="411"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="413"/> <source>Save the binary data of the current selection to a file in a readable format</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="414"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="416"/> <source><b>Save Selection Readable...</b><p>Saves the binary data of the current selection to a file in a readable format.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="423"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="425"/> <source>Set Read Only</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="427"/> - <source>Change the edit mode to read only</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../HexEdit/HexEditMainWindow.py" line="429"/> + <source>Change the edit mode to read only</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../HexEdit/HexEditMainWindow.py" line="431"/> <source><b>Set Read Only</b><p>This changes the edit mode to read only (i.e. to view mode).</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="439"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="441"/> <source>Search</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="439"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="441"/> <source>&Search...</source> <translation type="unfinished">V&yhledat...</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="439"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="441"/> <source>Ctrl+F</source> <comment>Search|Search</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="446"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="448"/> <source>Search for data</source> <translation type="unfinished">Hledat text</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="447"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="449"/> <source><b>Search</b><p>Search for some data. A dialog is shown to enter the data to search for in various formats.</p></source> <translation type="unfinished"><b>Hledat</b> <p>Hledat text v aktuálním editoru. Zobrazí se dialogové okno, do kterého se zadá hledaný text a další nastavení.<p></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="455"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="457"/> <source>Search next</source> <translation type="unfinished">Hledat text</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="455"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="457"/> <source>Search &next</source> <translation type="unfinished">Hledat &další</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="455"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="457"/> <source>F3</source> <comment>Search|Search next</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="462"/> - <source>Search next occurrence</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../HexEdit/HexEditMainWindow.py" line="464"/> + <source>Search next occurrence</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../HexEdit/HexEditMainWindow.py" line="466"/> <source><b>Search next</b><p>Search the next occurrence of some data. The previously entered search data are reused.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="472"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="474"/> <source>Search previous</source> <translation type="unfinished">Hledat předchozí</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="472"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="474"/> <source>Search &previous</source> <translation type="unfinished">Hledat &předchozí</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="472"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="474"/> <source>Shift+F3</source> <comment>Search|Search previous</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="481"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="483"/> <source><b>Search previous</b><p>Search the previous occurrence of some data. The previously entered search data are reused.</p></source> <translation type="unfinished"><b>Hledat předchozí</b><p>Hledá se předchozí výskyt hledaného textu v aktuálním editoru. Stále platí nastavení, která byla nastavena při zadání hledaného textu.<p></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="490"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="492"/> <source>Replace</source> <translation type="unfinished">Nahradit</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="490"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="492"/> <source>&Replace...</source> <translation type="unfinished">Nah&radit...</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="490"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="492"/> <source>Ctrl+R</source> <comment>Search|Replace</comment> <translation type="unfinished"></translation> @@ -20501,381 +20501,381 @@ <p>Vyhledá va ktuálním editoru text a nahradí jej. Je zobrazeno dialogové okno, kde se zadá text, který se má nahradit, nový text a nastavení pro vyhledávání a nahrazení.<p></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="544"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="546"/> <source>About</source> <translation type="unfinished">O aplikaci</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="544"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="546"/> <source>&About</source> <translation type="unfinished">O &aplikaci</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="548"/> - <source>Display information about this software</source> - <translation type="unfinished">Zobrazit informace a tomto software</translation> - </message> - <message> <location filename="../HexEdit/HexEditMainWindow.py" line="550"/> + <source>Display information about this software</source> + <translation type="unfinished">Zobrazit informace a tomto software</translation> + </message> + <message> + <location filename="../HexEdit/HexEditMainWindow.py" line="552"/> <source><b>About</b><p>Display some information about this software.</p></source> <translation type="unfinished"><b>O aplikaci</b><p>Zobrazí se informace o tomto software.</p></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="556"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="558"/> <source>About Qt</source> <translation type="unfinished">O Qt</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="556"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="558"/> <source>About &Qt</source> <translation type="unfinished">O &Qt</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="560"/> - <source>Display information about the Qt toolkit</source> - <translation type="unfinished">Zobrazit informace o Qt toolkitu</translation> - </message> - <message> <location filename="../HexEdit/HexEditMainWindow.py" line="562"/> + <source>Display information about the Qt toolkit</source> + <translation type="unfinished">Zobrazit informace o Qt toolkitu</translation> + </message> + <message> + <location filename="../HexEdit/HexEditMainWindow.py" line="564"/> <source><b>About Qt</b><p>Display some information about the Qt toolkit.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="569"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="571"/> <source>What's This?</source> <translation type="unfinished">Co je to?</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="569"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="571"/> <source>&What's This?</source> <translation type="unfinished">&Co je to?</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="569"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="571"/> <source>Shift+F1</source> <comment>Help|What's This?'</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="575"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="577"/> <source>Context sensitive help</source> <translation type="unfinished">Kontextově senzitivní nápověda</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="576"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="578"/> <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"><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="../HexEdit/HexEditMainWindow.py" line="591"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="593"/> <source>Preferences</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="591"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="593"/> <source>&Preferences...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="596"/> - <source>Set the prefered configuration</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../HexEdit/HexEditMainWindow.py" line="598"/> + <source>Set the prefered configuration</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../HexEdit/HexEditMainWindow.py" line="600"/> <source><b>Preferences</b><p>Set the configuration items of the application with your prefered values.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="641"/> - <source>Open a binary file for viewing</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="615"/> - <source><b>Open File</b><p>This opens a binary file for viewing (i.e. in read only mode). It pops up a file selection dialog.</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="621"/> - <source>Open for Editing...</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="622"/> - <source>Open for Editing</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="631"/> - <source>Open a binary file for editing</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="625"/> - <source><b>Open for Editing</b><p>This opens a binary file for editing. It pops up a file selection dialog.</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="633"/> - <source><b>Open File</b><p>This opens a binary file for editing. It pops up a file selection dialog.</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="639"/> - <source>Open Read Only...</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="640"/> - <source>Open Read Only</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../HexEdit/HexEditMainWindow.py" line="643"/> + <source>Open a binary file for viewing</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../HexEdit/HexEditMainWindow.py" line="617"/> + <source><b>Open File</b><p>This opens a binary file for viewing (i.e. in read only mode). It pops up a file selection dialog.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../HexEdit/HexEditMainWindow.py" line="623"/> + <source>Open for Editing...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../HexEdit/HexEditMainWindow.py" line="624"/> + <source>Open for Editing</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../HexEdit/HexEditMainWindow.py" line="633"/> + <source>Open a binary file for editing</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../HexEdit/HexEditMainWindow.py" line="627"/> + <source><b>Open for Editing</b><p>This opens a binary file for editing. It pops up a file selection dialog.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../HexEdit/HexEditMainWindow.py" line="635"/> + <source><b>Open File</b><p>This opens a binary file for editing. It pops up a file selection dialog.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../HexEdit/HexEditMainWindow.py" line="641"/> + <source>Open Read Only...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../HexEdit/HexEditMainWindow.py" line="642"/> + <source>Open Read Only</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../HexEdit/HexEditMainWindow.py" line="645"/> <source><b>Open Read Only</b><p>This opens a binary file for viewing (i.e. in read only mode). It pops up a file selection dialog.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="655"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="658"/> <source>&File</source> <translation type="unfinished">S&oubor</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="673"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="676"/> <source>&Edit</source> <translation type="unfinished">&Edit</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="697"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="700"/> <source>Se&ttings</source> <translation type="unfinished">Nas&tavení</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="703"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="706"/> <source>&Help</source> <translation type="unfinished">&Nápověda</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="713"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="716"/> <source>File</source> <translation type="unfinished">Soubor</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="726"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="729"/> <source>Edit</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="736"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="739"/> <source>Find</source> <translation type="unfinished">Hledat</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="744"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="747"/> <source>Settings</source> <translation type="unfinished">Nastavení</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="749"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="752"/> <source>Help</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="787"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="790"/> <source><p>This part of the status bar displays the edit mode.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="795"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="798"/> <source><p>This part of the status bar displays the read only mode.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="763"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="766"/> <source><p>This part of the status bar displays the cursor address.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="779"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="782"/> <source><p>This part of the status bar displays the size of the binary data.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="846"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="854"/> <source>ro</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="846"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="854"/> <source>rw</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="864"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="872"/> <source>Overwrite</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="864"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="872"/> <source>Insert</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="883"/> - <source>Size: {0:n}</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="923"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="932"/> <source>Open binary file in new window</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="1040"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="1049"/> <source>All Files (*)</source> <translation type="unfinished">Všechny soubory (*)</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="1160"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="1169"/> <source>eric6 Hex Editor</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="944"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="953"/> <source>The loaded file has unsaved changes.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="962"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="971"/> <source>The file '{0}' does not exist.</source> <translation type="unfinished">Soubor '{0}' neexistuje.</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="969"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="978"/> <source>Cannot read file '{0}: {1}.</source> <translation type="unfinished">Nelze číst soubor '{0}:{1}.</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="993"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="1002"/> <source>Open binary file</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="1050"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="1059"/> <source>Save binary file</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="1135"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="1144"/> <source><p>The file <b>{0}</b> already exists. Overwrite it?</p></source> <translation type="unfinished"><p>Soubor <b>{0}</b> již existuje.</p><p>Má se přepsat?</p></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="1160"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="1169"/> <source>Cannot write file '{0}: {1}.</source> <translation type="unfinished">Nelze zapsat do souboru '{0}: {1}.</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="1166"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="1175"/> <source>File saved</source> <translation type="unfinished">Soubor uložen</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="1135"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="1144"/> <source>Save to readable file</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="1119"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="1128"/> <source>Text Files (*.txt);;All Files (*)</source> <translation type="unfinished">Textové soubory (*.txt);;Všechny soubory (*)</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="1119"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="1128"/> <source>Text Files (*.txt)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="1200"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="1209"/> <source>Untitled</source> <translation type="unfinished">Beze jména</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="1204"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="1213"/> <source>{0}[*] - {1}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="1204"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="1213"/> <source>Hex Editor</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="1261"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="1270"/> <source>About eric6 Hex Editor</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="1261"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="1270"/> <source>The eric6 Hex Editor is a simple editor component to edit binary files.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="479"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="481"/> <source>Search previous occurrence</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="496"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="498"/> <source>Replace data</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="497"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="499"/> <source><b>Replace</b><p>Search for some data and replace it. A dialog is shown to enter the data to search for and the replacement data in various formats.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="771"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="774"/> <source><p>This part of the status bar displays some selection information.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="813"/> - <source>Address: 0x{0:0{1}x}</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="835"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="843"/> <source>Selection: -</source> <comment>no selection available</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="828"/> - <source>Selection: 0x{0:0{2}x} - 0x{1:0{2}x} ({3:n} Bytes)</source> - <comment>0: start, 1: end, 2: address width, 3: selection length</comment> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="514"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="516"/> <source>Goto Offset</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="506"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="508"/> <source>&Goto Offset...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="515"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="517"/> <source><b>Goto Offset</b><p>Go to a specific address. A dialog is shown to enter the movement data.</p></source> <translation type="unfinished"></translation> </message> + <message> + <location filename="../HexEdit/HexEditMainWindow.py" line="818"/> + <source>Address: {0}</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../HexEdit/HexEditMainWindow.py" line="837"/> + <source>Selection: {0} - {1} ({2} Bytes)</source> + <comment>0: start, 1: end, 2: selection length</comment> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../HexEdit/HexEditMainWindow.py" line="891"/> + <source>Size: {0}</source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>HexEditReplaceWidget</name> @@ -65672,7 +65672,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="506"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="508"/> <source>Ctrl+G</source> <comment>Search|Goto Offset</comment> <translation type="unfinished"></translation>
--- a/i18n/eric6_de.ts Sun Jan 17 15:15:15 2016 +0100 +++ b/i18n/eric6_de.ts Sat Jan 23 16:21:23 2016 +0100 @@ -1,6 +1,5 @@ <?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE TS> -<TS version="2.1" language="de"> +<!DOCTYPE TS><TS version="2.0" language="de" sourcelanguage=""> <context> <name>AboutDialog</name> <message> @@ -1853,8 +1852,8 @@ </message> <message> <location filename="../Helpviewer/Bookmarks/BookmarksMenu.py" line="145"/> - <source>Open in New &Tab Ctrl+LMB</source> - <translation>In neuem &Register öffnen Strg+LMK</translation> + <source>Open in New &Tab<byte value="x9"/>Ctrl+LMB</source> + <translation>In neuem &Register öffnen<byte value="x9"/>Strg+LMK</translation> </message> </context> <context> @@ -1922,8 +1921,8 @@ </message> <message> <location filename="../Helpviewer/Bookmarks/BookmarksToolBar.py" line="93"/> - <source>Open in New &Tab Ctrl+LMB</source> - <translation>In neuem &Register öffnen Strg+LMK</translation> + <source>Open in New &Tab<byte value="x9"/>Ctrl+LMB</source> + <translation>In neuem &Register öffnen<byte value="x9"/>Strg+LMK</translation> </message> </context> <context> @@ -10640,7 +10639,7 @@ <translation>Wähle den Modus „Füllen bis zum Zeilenende“.</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="338"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="339"/> <source>Fill to end of line</source> <translation>Füllen bis zum Zeilenende</translation> </message> @@ -10685,7 +10684,7 @@ <translation>Wähle die Schriftart aus.</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="59"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="60"/> <source>Font</source> <translation>Schriftart</translation> </message> @@ -10715,17 +10714,17 @@ <translation>Alle Füllen bis Ende</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="336"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="337"/> <source>Enabled</source> <translation>Eingeschaltet</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="337"/> - <source>Disabled</source> - <translation>Ausgeschaltet</translation> - </message> - <message> <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="338"/> + <source>Disabled</source> + <translation>Ausgeschaltet</translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="339"/> <source>Select fill to end of line for all styles</source> <translation>Wähle Füllen bis Zeilenende für alle Stile</translation> </message> @@ -10785,42 +10784,42 @@ <translation>Alle Stile exportieren</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="446"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="447"/> <source>Export Highlighting Styles</source> <translation>Hervorhebungsstile exportieren</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="446"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="447"/> <source><p>The highlighting styles could not be exported to file <b>{0}</b>.</p><p>Reason: {1}</p></source> <translation><p>Die Hervorhebungsstile konnten nicht in die Datei <b>{0}</b> exportiert werden.</p><p>Ursache: {1}</p></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="478"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="479"/> <source>Import Highlighting Styles</source> <translation>Hervorhebungsstile importieren</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="478"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="479"/> <source><p>The highlighting styles could not be read from file <b>{0}</b>.</p><p>Reason: {1}</p></source> <translation><p>Die Hervorhebungsstile konnten nicht von der Datei <b>{0}</b> gelesen werden.</p><p>Ursache: {1}</p></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="462"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="463"/> <source>Highlighting styles file (*.e4h)</source> <translation>Dateien für Hervorhebungsstile (*.e4h)</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="62"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="63"/> <source>Family and Size only</source> <translation>nur Schriftart und Größe</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="65"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="66"/> <source>Family only</source> <translation>nur Schriftart</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="67"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="68"/> <source>Size only</source> <translation>nur Größe</translation> </message> @@ -12101,7 +12100,7 @@ <translation>Modus:</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="53"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="58"/> <source>Disabled</source> <translation>Ausgeschaltet</translation> </message> @@ -12421,32 +12420,32 @@ <translation>Wähle aus, wie umbrochene Zeilen angezeigt werden sollen</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="55"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="60"/> <source>Word Boundary</source> <translation>Wortgrenze</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="57"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="62"/> <source>Character Boundary</source> <translation>Buchstabengrenze</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="59"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="64"/> <source>No Indicator</source> <translation>keine Anzeige</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="61"/> - <source>Indicator by Text</source> - <translation>Anzeige neben dem Text</translation> - </message> - <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="63"/> - <source>Indicator by Margin</source> - <translation>Anzeige am Rand</translation> - </message> - <message> <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="66"/> + <source>Indicator by Text</source> + <translation>Anzeige neben dem Text</translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="68"/> + <source>Indicator by Margin</source> + <translation>Anzeige am Rand</translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="71"/> <source>Indicator in Line Number Margin</source> <translation>Anzeige in der Zeilennummernspalte</translation> </message> @@ -15997,7 +15996,7 @@ <translation>Auswählen, um eine Warnung auszugeben, wenn mehrere Tabs geschlossen werden</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/HelpAppearancePage.py" line="35"/> + <location filename="../Preferences/ConfigurationPages/HelpAppearancePage.py" line="41"/> <source>Cascading Style Sheets (*.css);;All files (*)</source> <translation>Cascading Style Sheets (*.css);;Alle Dateien (*)</translation> </message> @@ -16286,8 +16285,8 @@ </message> <message> <location filename="../Helpviewer/HelpBrowserWV.py" line="1183"/> - <source>Open Link in New Tab Ctrl+LMB</source> - <translation>Link in neuem Fenster öffnen Strg+LMK</translation> + <source>Open Link in New Tab<byte value="x9"/>Ctrl+LMB</source> + <translation>Link in neuem Fenster öffnen<byte value="x9"/>Strg+LMK</translation> </message> <message> <location filename="../Helpviewer/HelpBrowserWV.py" line="1256"/> @@ -19561,928 +19560,928 @@ <context> <name>HexEditMainWindow</name> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="152"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="154"/> <source>New Window</source> <translation>Neues Fenster</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="152"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="154"/> <source>New &Window</source> <translation>Neues &Fenster</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="157"/> - <source>Open a binary file for editing in a new hex editor window</source> - <translation>Öffnet eine Binärdatei zum Editieren in einem neuen Hex-Editor Fenster</translation> - </message> - <message> <location filename="../HexEdit/HexEditMainWindow.py" line="159"/> + <source>Open a binary file for editing in a new hex editor window</source> + <translation>Öffnet eine Binärdatei zum Editieren in einem neuen Hex-Editor Fenster</translation> + </message> + <message> + <location filename="../HexEdit/HexEditMainWindow.py" line="161"/> <source><b>New Window</b><p>This opens a binary file for editing in a new hex editor window.</p></source> <translation><b>Neues Fenster</b><p>Dies öffnet eine Binärdatei zum Editieren in einem neuen Hex-Editor Fenster.</p></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="168"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="170"/> <source>Open</source> <translation>Öffnen</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="168"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="170"/> <source>&Open...</source> <translation>&Öffnen...</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="168"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="170"/> <source>Ctrl+O</source> <comment>File|Open</comment> <translation>Ctrl+O</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="184"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="186"/> <source>Save</source> <translation>Speichern</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="184"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="186"/> <source>&Save</source> <translation>&Speichern</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="184"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="186"/> <source>Ctrl+S</source> <comment>File|Save</comment> <translation>Ctrl+S</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="190"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="192"/> <source>Save the current binary file</source> <translation>Speichert die aktuelle Binärdatei</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="191"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="193"/> <source><b>Save File</b><p>Save the contents of the hex editor window.</p></source> <translation><b>Datei speichern</b><p>Dies speichert den Inhalt des Hex-Editor Fensters.</p></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="198"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="200"/> <source>Save As</source> <translation>Speichern unter</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="198"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="200"/> <source>Save &As...</source> <translation>Speichern &unter...</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="198"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="200"/> <source>Shift+Ctrl+S</source> <comment>File|Save As</comment> <translation>Shift+Ctrl+S</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="204"/> - <source>Save the current binary data to a new file</source> - <translation>Speichere die aktuellen Binärdaten in eine neue Datei</translation> - </message> - <message> <location filename="../HexEdit/HexEditMainWindow.py" line="206"/> + <source>Save the current binary data to a new file</source> + <translation>Speichere die aktuellen Binärdaten in eine neue Datei</translation> + </message> + <message> + <location filename="../HexEdit/HexEditMainWindow.py" line="208"/> <source><b>Save As...</b><p>Saves the current binary data to a new file.</p></source> <translation><b>Speichern unter...</b><p>Dies speichert die aktuellen Binärdaten in eine neue Datei.</p></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="213"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="215"/> <source>Save As Readable</source> <translation>Lesbar speichern</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="213"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="215"/> <source>Save As &Readable...</source> <translation>&Lesbar speichern...</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="217"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="219"/> <source>Save the current binary data to a new file in a readable format</source> <translation>Speichere die aktuellen Binärdaten in einem lesbaren Format in eine neue Datei</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="220"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="222"/> <source><b>Save As Readable...</b><p>Saves the current binary data to a new file in a readable format.</p></source> <translation><b>Lesbar speichern...</b><p>Speichert die aktuellen Binärdaten in einem lesbaren Format in eine neue Datei.</p></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="228"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="230"/> <source>Close</source> <translation>Schließen</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="228"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="230"/> <source>&Close</source> <translation>Schl&ießen</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="228"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="230"/> <source>Ctrl+W</source> <comment>File|Close</comment> <translation>Ctrl+W</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="234"/> - <source>Close the current hex editor window</source> - <translation>Schließt das aktuelle Hex-Editor Fenster</translation> - </message> - <message> <location filename="../HexEdit/HexEditMainWindow.py" line="236"/> + <source>Close the current hex editor window</source> + <translation>Schließt das aktuelle Hex-Editor Fenster</translation> + </message> + <message> + <location filename="../HexEdit/HexEditMainWindow.py" line="238"/> <source><b>Close</b><p>Closes the current hex editor window.</p></source> <translation><b>Schließen</b><p>Schließt das aktuelle Hex-Editor Fenster.</p></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="243"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="245"/> <source>Close All</source> <translation>Alle schließen</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="243"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="245"/> <source>Close &All</source> <translation>Alle &schließen</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="247"/> - <source>Close all hex editor windows</source> - <translation>Schließt alle Hex-Editor Fenster</translation> - </message> - <message> <location filename="../HexEdit/HexEditMainWindow.py" line="249"/> + <source>Close all hex editor windows</source> + <translation>Schließt alle Hex-Editor Fenster</translation> + </message> + <message> + <location filename="../HexEdit/HexEditMainWindow.py" line="251"/> <source><b>Close All</b><p>Closes all hex editor windows.</p></source> <translation><b>Alle schließen</b><p>Dies schließt alle Hex-Editor Fenster.</p></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="256"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="258"/> <source>Close Others</source> <translation>Andere schließen</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="260"/> - <source>Close all hex other editor windows</source> - <translation>Schließt alle anderen Hex-Editor Fenster</translation> - </message> - <message> <location filename="../HexEdit/HexEditMainWindow.py" line="262"/> + <source>Close all hex other editor windows</source> + <translation>Schließt alle anderen Hex-Editor Fenster</translation> + </message> + <message> + <location filename="../HexEdit/HexEditMainWindow.py" line="264"/> <source><b>Close Others</b><p>Closes all other hex editor windows.</p></source> <translation><b>Andere schließen</b><p>Dies schließt alle anderen Hex-Editor Fenster.</p></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="269"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="271"/> <source>Quit</source> <translation>Beenden</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="269"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="271"/> <source>&Quit</source> <translation>B&eenden</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="269"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="271"/> <source>Ctrl+Q</source> <comment>File|Quit</comment> <translation>Ctrl+Q</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="275"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="277"/> <source>Quit the hex editor</source> <translation>Beendet den Hex-Editor</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="276"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="278"/> <source><b>Quit</b><p>Quit the hex editor.</p></source> <translation><b>Beenden</b><p>Beendet den Hex-Editor.</p></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="288"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="290"/> <source>Undo</source> <translation>Rückgängig</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="288"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="290"/> <source>&Undo</source> <translation>&Rückgängig</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="288"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="290"/> <source>Ctrl+Z</source> <comment>Edit|Undo</comment> <translation>Ctrl+Z</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="288"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="290"/> <source>Alt+Backspace</source> <comment>Edit|Undo</comment> <translation>Alt+Backspace</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="295"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="297"/> <source>Undo the last change</source> <translation>Die letzte Änderung rückgängig machen</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="296"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="298"/> <source><b>Undo</b><p>Undo the last change done.</p></source> <translation><b>Rückgängig</b><p>Dies macht die letzte Änderung rückgängig.</p></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="303"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="305"/> <source>Redo</source> <translation>Wiederherstellen</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="303"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="305"/> <source>&Redo</source> <translation>Wieder&herstellen</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="303"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="305"/> <source>Ctrl+Shift+Z</source> <comment>Edit|Redo</comment> <translation>Ctrl+Shift+Z</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="309"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="311"/> <source>Redo the last change</source> <translation>Die letzte Änderung wiederherstellen</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="310"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="312"/> <source><b>Redo</b><p>Redo the last change done.</p></source> <translation><b>Wiederherstellen</b><p>Dies stellt die letzte Änderung wieder her.</p></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="323"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="325"/> <source>Revert to last saved state</source> <translation>Zurück zum letzten gesichert Zustand</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="317"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="319"/> <source>Re&vert to last saved state</source> <translation>&Zurück zum letzten gesichert Zustand</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="317"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="319"/> <source>Ctrl+Y</source> <comment>Edit|Revert</comment> <translation>Ctrl+Y</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="324"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="326"/> <source><b>Revert to last saved state</b><p>Undo all changes up to the last saved state of the editor.</p></source> <translation><b>Zurück zum letzten gesichert Zustand</b><p>Dies nimmt alle Änderungen des Editors bis zum letzten gesicherten Zustand zurück.</p></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="332"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="334"/> <source>Cut</source> <translation>Ausschneiden</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="332"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="334"/> <source>Cu&t</source> <translation>&Ausschneiden</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="332"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="334"/> <source>Ctrl+X</source> <comment>Edit|Cut</comment> <translation>Ctrl+X</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="332"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="334"/> <source>Shift+Del</source> <comment>Edit|Cut</comment> <translation>Shift+Del</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="339"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="341"/> <source>Cut the selection</source> <translation>Schneidet die Auswahl aus</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="340"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="342"/> <source><b>Cut</b><p>Cut the selected binary area to the clipboard.</p></source> <translation><b>Ausschneiden</b><p>Dies schneidet den ausgewählten Binärdatenbereich aus und legt ihn in die Zwischenablage.</p></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="347"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="349"/> <source>Copy</source> <translation>Kopieren</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="347"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="349"/> <source>&Copy</source> <translation>&Kopieren</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="347"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="349"/> <source>Ctrl+C</source> <comment>Edit|Copy</comment> <translation>Ctrl+C</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="347"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="349"/> <source>Ctrl+Ins</source> <comment>Edit|Copy</comment> <translation>Ctrl+Einfg</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="354"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="356"/> <source>Copy the selection</source> <translation>Kopiert die Auswahl</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="355"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="357"/> <source><b>Copy</b><p>Copy the selected binary area to the clipboard.</p></source> <translation><b>Kopieren</b><p>Dies kopiert den ausgewählten Binärdatenbereich in die Zwischenablage.</p></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="362"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="364"/> <source>Paste</source> <translation>Einfügen</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="362"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="364"/> <source>&Paste</source> <translation>Ein&fügen</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="362"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="364"/> <source>Ctrl+V</source> <comment>Edit|Paste</comment> <translation>Ctrl+V</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="362"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="364"/> <source>Shift+Ins</source> <comment>Edit|Paste</comment> <translation>Shift+Ins</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="369"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="371"/> <source>Paste the clipboard contents</source> <translation>Fügt die Daten der Zwischenablage ein</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="370"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="372"/> <source><b>Paste</b><p>Paste the clipboard contents.</p></source> <translation><b>Einfügen</b><p>Fügt die Daten der Zwischenablage ein.</p></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="377"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="379"/> <source>Select All</source> <translation>Alles auswählen</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="377"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="379"/> <source>&Select All</source> <translation>&Alles auswählen</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="377"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="379"/> <source>Ctrl+A</source> <comment>Edit|Select All</comment> <translation>Ctrl+A</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="384"/> - <source>Select the complete binary data</source> - <translation>Wählt die kompletten Binärdaten aus</translation> - </message> - <message> <location filename="../HexEdit/HexEditMainWindow.py" line="386"/> + <source>Select the complete binary data</source> + <translation>Wählt die kompletten Binärdaten aus</translation> + </message> + <message> + <location filename="../HexEdit/HexEditMainWindow.py" line="388"/> <source><b>Select All</b><p>Selects the complete binary data.</p></source> <translation><b>Alles auswählen</b><p>Wählt die kompletten Binärdaten aus.</p></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="393"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="395"/> <source>Deselect all</source> <translation>Auswahl aufheben</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="393"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="395"/> <source>&Deselect all</source> <translation>Aus&wahl aufheben</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="393"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="395"/> <source>Alt+Ctrl+A</source> <comment>Edit|Deselect all</comment> <translation>Alt+Ctrl+A</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="399"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="401"/> <source>Deselect all binary data</source> <translation>Hebt die Auswahl der Binärdaten auf</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="400"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="402"/> <source><b>Deselect All</b><p>Deselect all all binary data.</p></source> <translation><b>Auswahl aufheben</b><p>Hebt die Auswahl der Binärdaten auf.</p></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="407"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="409"/> <source>Save Selection Readable</source> <translation>Auswahl lesbar speichern</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="407"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="409"/> <source>Save Selection Readable...</source> <translation>Auswahl lesbar speichern...</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="411"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="413"/> <source>Save the binary data of the current selection to a file in a readable format</source> <translation>Speichere die Binärdaten der Auswahl in einem lesbaren Format in eine Datei</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="414"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="416"/> <source><b>Save Selection Readable...</b><p>Saves the binary data of the current selection to a file in a readable format.</p></source> <translation><b>Auswahl lesbar speichern...</b><p>Dies speichert die Binärdaten der Auswahl in einem lesbaren Format in eine Datei.</p></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="423"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="425"/> <source>Set Read Only</source> <translation>Nur Lesen aktivieren</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="427"/> - <source>Change the edit mode to read only</source> - <translation>Setzt den Editiermodus auf Nur Lesen</translation> - </message> - <message> <location filename="../HexEdit/HexEditMainWindow.py" line="429"/> + <source>Change the edit mode to read only</source> + <translation>Setzt den Editiermodus auf Nur Lesen</translation> + </message> + <message> + <location filename="../HexEdit/HexEditMainWindow.py" line="431"/> <source><b>Set Read Only</b><p>This changes the edit mode to read only (i.e. to view mode).</p></source> <translation><b>Nur Lesen aktivieren</b><p>Dies setzt den Editiermodus auf Nur Lesen (d.h. Anzeigemodus).</p></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="439"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="441"/> <source>Search</source> <translation>Suchen</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="439"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="441"/> <source>&Search...</source> <translation>&Suchen...</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="439"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="441"/> <source>Ctrl+F</source> <comment>Search|Search</comment> <translation>Ctrl+F</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="446"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="448"/> <source>Search for data</source> <translation>Sucht nach Daten</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="447"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="449"/> <source><b>Search</b><p>Search for some data. A dialog is shown to enter the data to search for in various formats.</p></source> <translation><b>Suchen</b><p>Sucht nach Daten. Es wird ein Dialog eingeblendet, in dem die zu suchenden Daten in verschiedenen Formaten eingegeben werden können.</p></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="455"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="457"/> <source>Search next</source> <translation>Weitersuchen</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="455"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="457"/> <source>Search &next</source> <translation>&Weitersuchen</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="455"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="457"/> <source>F3</source> <comment>Search|Search next</comment> <translation>F3</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="462"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="464"/> <source>Search next occurrence</source> <translation>Nächstes Vorkommen suchen</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="464"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="466"/> <source><b>Search next</b><p>Search the next occurrence of some data. The previously entered search data are reused.</p></source> <translation><b>Weitersuchen</b><p>Dies sucht nach dem nächsten Vorkommen von Daten. Die zuvor eingegebenen Suchdaten werden wiederverwendet.</p></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="472"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="474"/> <source>Search previous</source> <translation>Rückwärtssuchen</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="472"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="474"/> <source>Search &previous</source> <translation>&Rückwärtssuchen</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="472"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="474"/> <source>Shift+F3</source> <comment>Search|Search previous</comment> <translation>Shift+F3</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="481"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="483"/> <source><b>Search previous</b><p>Search the previous occurrence of some data. The previously entered search data are reused.</p></source> <translation><b>Rückwärtssuchen</b><p>Nach dem vorherigen Vorkommen von Daten suchen. Die zuvor eingegebenen Suchdaten werden weiterverwendet.</p></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="490"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="492"/> <source>Replace</source> <translation>Ersetzen</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="490"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="492"/> <source>&Replace...</source> <translation>&Ersetzen...</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="490"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="492"/> <source>Ctrl+R</source> <comment>Search|Replace</comment> <translation>Ctrl+R</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="544"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="546"/> <source>About</source> <translation>Über</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="544"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="546"/> <source>&About</source> <translation>Ü&ber</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="548"/> - <source>Display information about this software</source> - <translation>Zeigt Informationen zu diesem Programm an</translation> - </message> - <message> <location filename="../HexEdit/HexEditMainWindow.py" line="550"/> + <source>Display information about this software</source> + <translation>Zeigt Informationen zu diesem Programm an</translation> + </message> + <message> + <location filename="../HexEdit/HexEditMainWindow.py" line="552"/> <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="../HexEdit/HexEditMainWindow.py" line="556"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="558"/> <source>About Qt</source> <translation>Über Qt</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="556"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="558"/> <source>About &Qt</source> <translation>Über &Qt</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="560"/> - <source>Display information about the Qt toolkit</source> - <translation>Zeige Informationen über das Qt-Toolkit an</translation> - </message> - <message> <location filename="../HexEdit/HexEditMainWindow.py" line="562"/> + <source>Display information about the Qt toolkit</source> + <translation>Zeige Informationen über das Qt-Toolkit an</translation> + </message> + <message> + <location filename="../HexEdit/HexEditMainWindow.py" line="564"/> <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="../HexEdit/HexEditMainWindow.py" line="569"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="571"/> <source>What's This?</source> <translation>Was ist das?</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="569"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="571"/> <source>&What's This?</source> <translation>&Was ist das?</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="569"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="571"/> <source>Shift+F1</source> <comment>Help|What's This?'</comment> <translation>Shift+F1</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="575"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="577"/> <source>Context sensitive help</source> <translation>Kontextsensitive Hilfe</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="576"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="578"/> <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="../HexEdit/HexEditMainWindow.py" line="591"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="593"/> <source>Preferences</source> <translation>Einstellungen</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="591"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="593"/> <source>&Preferences...</source> <translation>&Einstellungen...</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="596"/> - <source>Set the prefered configuration</source> - <translation>Konfiguriert die Einstellungen</translation> - </message> - <message> <location filename="../HexEdit/HexEditMainWindow.py" line="598"/> + <source>Set the prefered configuration</source> + <translation>Konfiguriert die Einstellungen</translation> + </message> + <message> + <location filename="../HexEdit/HexEditMainWindow.py" line="600"/> <source><b>Preferences</b><p>Set the configuration items of the application with your prefered values.</p></source> <translation><b>Einstellungen</b><p>Konfiguriert die einstellbaren Parameter der Applikation nach Ihren Wünschen.</p></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="641"/> - <source>Open a binary file for viewing</source> - <translation>Öffne eine Binärdatei im Anzeigemodus</translation> - </message> - <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="615"/> - <source><b>Open File</b><p>This opens a binary file for viewing (i.e. in read only mode). It pops up a file selection dialog.</p></source> - <translation><b>Datei öffnen</b><p>Dies öffnet eine Binärdatei zur Anzeige (d.h. im Nur Lesen Modus). Es wird ein Dateiauswahldialog angezeigt.</p></translation> - </message> - <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="621"/> - <source>Open for Editing...</source> - <translation>Zum Bearbeiten öffnen...</translation> - </message> - <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="622"/> - <source>Open for Editing</source> - <translation>Zum Bearbeiten öffnen</translation> - </message> - <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="631"/> - <source>Open a binary file for editing</source> - <translation>Öffne eine Binärdatei im Bearbeitenmodus</translation> - </message> - <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="625"/> - <source><b>Open for Editing</b><p>This opens a binary file for editing. It pops up a file selection dialog.</p></source> - <translation><b>Zum Bearbeiten öffnen</b><p>Dies öffnet eine Binärdatei zum Bearbeiten. Es wird ein Dateiauswahldialog angezeigt.</p></translation> - </message> - <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="633"/> - <source><b>Open File</b><p>This opens a binary file for editing. It pops up a file selection dialog.</p></source> - <translation><b>Datei öffnen</b><p>Dies öffnet eine Binärdatei zum Bearbeiten. Es wird ein Dateiauswahldialog angezeigt.</p></translation> - </message> - <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="639"/> - <source>Open Read Only...</source> - <translation>Zur Anzeige öffnen...</translation> - </message> - <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="640"/> - <source>Open Read Only</source> - <translation>Zur Anzeige öffnen</translation> - </message> - <message> <location filename="../HexEdit/HexEditMainWindow.py" line="643"/> + <source>Open a binary file for viewing</source> + <translation>Öffne eine Binärdatei im Anzeigemodus</translation> + </message> + <message> + <location filename="../HexEdit/HexEditMainWindow.py" line="617"/> + <source><b>Open File</b><p>This opens a binary file for viewing (i.e. in read only mode). It pops up a file selection dialog.</p></source> + <translation><b>Datei öffnen</b><p>Dies öffnet eine Binärdatei zur Anzeige (d.h. im Nur Lesen Modus). Es wird ein Dateiauswahldialog angezeigt.</p></translation> + </message> + <message> + <location filename="../HexEdit/HexEditMainWindow.py" line="623"/> + <source>Open for Editing...</source> + <translation>Zum Bearbeiten öffnen...</translation> + </message> + <message> + <location filename="../HexEdit/HexEditMainWindow.py" line="624"/> + <source>Open for Editing</source> + <translation>Zum Bearbeiten öffnen</translation> + </message> + <message> + <location filename="../HexEdit/HexEditMainWindow.py" line="633"/> + <source>Open a binary file for editing</source> + <translation>Öffne eine Binärdatei im Bearbeitenmodus</translation> + </message> + <message> + <location filename="../HexEdit/HexEditMainWindow.py" line="627"/> + <source><b>Open for Editing</b><p>This opens a binary file for editing. It pops up a file selection dialog.</p></source> + <translation><b>Zum Bearbeiten öffnen</b><p>Dies öffnet eine Binärdatei zum Bearbeiten. Es wird ein Dateiauswahldialog angezeigt.</p></translation> + </message> + <message> + <location filename="../HexEdit/HexEditMainWindow.py" line="635"/> + <source><b>Open File</b><p>This opens a binary file for editing. It pops up a file selection dialog.</p></source> + <translation><b>Datei öffnen</b><p>Dies öffnet eine Binärdatei zum Bearbeiten. Es wird ein Dateiauswahldialog angezeigt.</p></translation> + </message> + <message> + <location filename="../HexEdit/HexEditMainWindow.py" line="641"/> + <source>Open Read Only...</source> + <translation>Zur Anzeige öffnen...</translation> + </message> + <message> + <location filename="../HexEdit/HexEditMainWindow.py" line="642"/> + <source>Open Read Only</source> + <translation>Zur Anzeige öffnen</translation> + </message> + <message> + <location filename="../HexEdit/HexEditMainWindow.py" line="645"/> <source><b>Open Read Only</b><p>This opens a binary file for viewing (i.e. in read only mode). It pops up a file selection dialog.</p></source> <translation><b>Zur Anzeige öffnen</b><p>Dies öffnet eine Binärdatei zur Anzeige (d.h. im Nur Lesen Modus). Es wird ein Dateiauswahldialog angezeigt.</p></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="655"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="658"/> <source>&File</source> <translation>&Datei</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="673"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="676"/> <source>&Edit</source> <translation>&Bearbeiten</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="697"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="700"/> <source>Se&ttings</source> <translation>&Einstellungen</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="703"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="706"/> <source>&Help</source> <translation>&Hilfe</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="713"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="716"/> <source>File</source> <translation>Datei</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="726"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="729"/> <source>Edit</source> <translation>Bearbeiten</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="736"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="739"/> <source>Find</source> <translation>Suchen</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="744"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="747"/> <source>Settings</source> <translation>Einstellungen</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="749"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="752"/> <source>Help</source> <translation>Hilfe</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="787"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="790"/> <source><p>This part of the status bar displays the edit mode.</p></source> <translation><p>Dieser Teil der Statusleiste zeigt den Editiermodus an.</p></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="795"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="798"/> <source><p>This part of the status bar displays the read only mode.</p></source> <translation><p>Dieser Teil der Statusleiste zeigt den Ansichtsmodus an.</p></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="763"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="766"/> <source><p>This part of the status bar displays the cursor address.</p></source> <translation><p>Dieser Teil der Statusleiste zeigt die Adresse der Einfügemarke an.</p></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="779"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="782"/> <source><p>This part of the status bar displays the size of the binary data.</p></source> <translation><p>Dieser Teil der Statusleiste zeigt die Größe der Binärdaten an.</p></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="846"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="854"/> <source>ro</source> <translation>ro</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="846"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="854"/> <source>rw</source> <translation>rw</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="864"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="872"/> <source>Overwrite</source> <translation>Überschreiben</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="864"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="872"/> <source>Insert</source> <translation>Einfügen</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="883"/> - <source>Size: {0:n}</source> - <translation>Größe: {0:n}</translation> - </message> - <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="923"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="932"/> <source>Open binary file in new window</source> <translation>Öffne Binärdatei in neuem Fenster</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="1040"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="1049"/> <source>All Files (*)</source> <translation>Alle Dateien (*)</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="1160"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="1169"/> <source>eric6 Hex Editor</source> <translation>eric6 Hex-Editor</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="944"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="953"/> <source>The loaded file has unsaved changes.</source> <translation>Die geladene Datei hat ungesicherte Änderungen.</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="962"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="971"/> <source>The file '{0}' does not exist.</source> <translation>Die Datei „{0}“ existiert nicht.</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="969"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="978"/> <source>Cannot read file '{0}: {1}.</source> <translation>Datei {0} kann nicht gelesen werden: {1}.</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="993"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="1002"/> <source>Open binary file</source> <translation>Binärdatei öffnen</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="1050"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="1059"/> <source>Save binary file</source> <translation>Binärdatei speichern</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="1135"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="1144"/> <source><p>The file <b>{0}</b> already exists. Overwrite it?</p></source> <translation><p>Die Datei <b>{0}</b> existiert bereits. Überschreiben?</p></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="1160"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="1169"/> <source>Cannot write file '{0}: {1}.</source> <translation>Datei {0} kann nicht geschrieben werden: {1}.</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="1166"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="1175"/> <source>File saved</source> <translation>Datei gespeichert</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="1135"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="1144"/> <source>Save to readable file</source> <translation>In lesbare Datei speichern</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="1119"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="1128"/> <source>Text Files (*.txt);;All Files (*)</source> <translation>Textdateien (*.txt);;Alle Dateien (*)</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="1119"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="1128"/> <source>Text Files (*.txt)</source> <translation>Textdateien (*.txt)</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="1200"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="1209"/> <source>Untitled</source> <translation>Unbenannt</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="1204"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="1213"/> <source>{0}[*] - {1}</source> <translation>{0}[*] - {1}</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="1204"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="1213"/> <source>Hex Editor</source> <translation>Hex-Editor</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="1261"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="1270"/> <source>About eric6 Hex Editor</source> <translation>Über den eric6 Hex-Editor</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="1261"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="1270"/> <source>The eric6 Hex Editor is a simple editor component to edit binary files.</source> <translation>Der eric6 Hex-Editor ist eine einfache Komponente zur Anzeige oder Bearbeitung von Binärdateien.</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="479"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="481"/> <source>Search previous occurrence</source> <translation>Vorheriges Vorkommen suchen</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="496"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="498"/> <source>Replace data</source> <translation>Daten ersetzen</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="497"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="499"/> <source><b>Replace</b><p>Search for some data and replace it. A dialog is shown to enter the data to search for and the replacement data in various formats.</p></source> <translation><b>Ersetzen</b><p>Dies sucht nach Daten und ersetzt sie. Es wird ein Dialog zur Eingabe der Suchdaten und der Ersetzungsdaten in verschiedenen Formaten angezeigt.</p></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="771"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="774"/> <source><p>This part of the status bar displays some selection information.</p></source> <translation><p>Dieser Teil der Statusleiste zeigt Informationen zur Auswahl an.</p></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="813"/> - <source>Address: 0x{0:0{1}x}</source> - <translation>Addresse: 0x{0:0{1}x}</translation> - </message> - <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="835"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="843"/> <source>Selection: -</source> <comment>no selection available</comment> <translation>Auswahl: -</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="828"/> - <source>Selection: 0x{0:0{2}x} - 0x{1:0{2}x} ({3:n} Bytes)</source> - <comment>0: start, 1: end, 2: address width, 3: selection length</comment> - <translation>Auswahl: 0x{0:0{2}x} - 0x{1:0{2}x} ({3:n} Bytes)</translation> - </message> - <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="514"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="516"/> <source>Goto Offset</source> <translation>Gehe zu Offset</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="506"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="508"/> <source>&Goto Offset...</source> <translation>&Gehe zu Offset...</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="515"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="517"/> <source><b>Goto Offset</b><p>Go to a specific address. A dialog is shown to enter the movement data.</p></source> <translation><b>Gehe zu Offset</b><p>Springe zu eine bestimmten Adresse. Es wird dein Dialog zur Eingabe der Sprungparameter angezeigt.</p></translation> </message> + <message> + <location filename="../HexEdit/HexEditMainWindow.py" line="818"/> + <source>Address: {0}</source> + <translation>Adresse: {0}</translation> + </message> + <message> + <location filename="../HexEdit/HexEditMainWindow.py" line="837"/> + <source>Selection: {0} - {1} ({2} Bytes)</source> + <comment>0: start, 1: end, 2: selection length</comment> + <translation>Auswahl: {0} - {1} ({2} Bytes)</translation> + </message> + <message> + <location filename="../HexEdit/HexEditMainWindow.py" line="891"/> + <source>Size: {0}</source> + <translation>Größe: {0}</translation> + </message> </context> <context> <name>HexEditReplaceWidget</name> @@ -65018,7 +65017,7 @@ <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="../HexEdit/HexEditMainWindow.py" line="506"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="508"/> <source>Ctrl+G</source> <comment>Search|Goto Offset</comment> <translation>Ctrl+G</translation>
--- a/i18n/eric6_en.ts Sun Jan 17 15:15:15 2016 +0100 +++ b/i18n/eric6_en.ts Sat Jan 23 16:21:23 2016 +0100 @@ -10582,7 +10582,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="59"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="60"/> <source>Font</source> <translation type="unfinished"></translation> </message> @@ -10592,7 +10592,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="338"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="339"/> <source>Fill to end of line</source> <translation type="unfinished"></translation> </message> @@ -10687,57 +10687,57 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="62"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="63"/> <source>Family and Size only</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="65"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="66"/> <source>Family only</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="67"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="68"/> <source>Size only</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="336"/> - <source>Enabled</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="337"/> - <source>Disabled</source> + <source>Enabled</source> <translation type="unfinished"></translation> </message> <message> <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="338"/> + <source>Disabled</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="339"/> <source>Select fill to end of line for all styles</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="446"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="447"/> <source>Export Highlighting Styles</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="462"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="463"/> <source>Highlighting styles file (*.e4h)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="446"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="447"/> <source><p>The highlighting styles could not be exported to file <b>{0}</b>.</p><p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="478"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="479"/> <source>Import Highlighting Styles</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="478"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="479"/> <source><p>The highlighting styles could not be read from file <b>{0}</b>.</p><p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> @@ -12093,7 +12093,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="53"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="58"/> <source>Disabled</source> <translation type="unfinished"></translation> </message> @@ -12338,32 +12338,32 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="55"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="60"/> <source>Word Boundary</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="57"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="62"/> <source>Character Boundary</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="59"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="64"/> <source>No Indicator</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="61"/> - <source>Indicator by Text</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="63"/> - <source>Indicator by Margin</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="66"/> + <source>Indicator by Text</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="68"/> + <source>Indicator by Margin</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="71"/> <source>Indicator in Line Number Margin</source> <translation type="unfinished"></translation> </message> @@ -15899,7 +15899,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/HelpAppearancePage.py" line="35"/> + <location filename="../Preferences/ConfigurationPages/HelpAppearancePage.py" line="41"/> <source>Cascading Style Sheets (*.css);;All files (*)</source> <translation type="unfinished"></translation> </message> @@ -19457,926 +19457,926 @@ <context> <name>HexEditMainWindow</name> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="152"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="154"/> <source>New Window</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="152"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="154"/> <source>New &Window</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="157"/> - <source>Open a binary file for editing in a new hex editor window</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../HexEdit/HexEditMainWindow.py" line="159"/> + <source>Open a binary file for editing in a new hex editor window</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../HexEdit/HexEditMainWindow.py" line="161"/> <source><b>New Window</b><p>This opens a binary file for editing in a new hex editor window.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="168"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="170"/> <source>Open</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="168"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="170"/> <source>&Open...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="168"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="170"/> <source>Ctrl+O</source> <comment>File|Open</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="184"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="186"/> <source>Save</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="184"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="186"/> <source>&Save</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="184"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="186"/> <source>Ctrl+S</source> <comment>File|Save</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="190"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="192"/> <source>Save the current binary file</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="191"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="193"/> <source><b>Save File</b><p>Save the contents of the hex editor window.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="198"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="200"/> <source>Save As</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="198"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="200"/> <source>Save &As...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="198"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="200"/> <source>Shift+Ctrl+S</source> <comment>File|Save As</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="204"/> - <source>Save the current binary data to a new file</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../HexEdit/HexEditMainWindow.py" line="206"/> + <source>Save the current binary data to a new file</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../HexEdit/HexEditMainWindow.py" line="208"/> <source><b>Save As...</b><p>Saves the current binary data to a new file.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="213"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="215"/> <source>Save As Readable</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="213"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="215"/> <source>Save As &Readable...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="217"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="219"/> <source>Save the current binary data to a new file in a readable format</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="220"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="222"/> <source><b>Save As Readable...</b><p>Saves the current binary data to a new file in a readable format.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="228"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="230"/> <source>Close</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="228"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="230"/> <source>&Close</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="228"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="230"/> <source>Ctrl+W</source> <comment>File|Close</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="234"/> - <source>Close the current hex editor window</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../HexEdit/HexEditMainWindow.py" line="236"/> + <source>Close the current hex editor window</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../HexEdit/HexEditMainWindow.py" line="238"/> <source><b>Close</b><p>Closes the current hex editor window.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="243"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="245"/> <source>Close All</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="243"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="245"/> <source>Close &All</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="247"/> - <source>Close all hex editor windows</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../HexEdit/HexEditMainWindow.py" line="249"/> + <source>Close all hex editor windows</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../HexEdit/HexEditMainWindow.py" line="251"/> <source><b>Close All</b><p>Closes all hex editor windows.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="256"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="258"/> <source>Close Others</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="260"/> - <source>Close all hex other editor windows</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../HexEdit/HexEditMainWindow.py" line="262"/> + <source>Close all hex other editor windows</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../HexEdit/HexEditMainWindow.py" line="264"/> <source><b>Close Others</b><p>Closes all other hex editor windows.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="269"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="271"/> <source>Quit</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="269"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="271"/> <source>&Quit</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="269"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="271"/> <source>Ctrl+Q</source> <comment>File|Quit</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="275"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="277"/> <source>Quit the hex editor</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="276"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="278"/> <source><b>Quit</b><p>Quit the hex editor.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="288"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="290"/> <source>Undo</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="288"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="290"/> <source>&Undo</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="288"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="290"/> <source>Ctrl+Z</source> <comment>Edit|Undo</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="288"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="290"/> <source>Alt+Backspace</source> <comment>Edit|Undo</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="295"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="297"/> <source>Undo the last change</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="296"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="298"/> <source><b>Undo</b><p>Undo the last change done.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="303"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="305"/> <source>Redo</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="303"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="305"/> <source>&Redo</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="303"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="305"/> <source>Ctrl+Shift+Z</source> <comment>Edit|Redo</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="309"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="311"/> <source>Redo the last change</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="310"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="312"/> <source><b>Redo</b><p>Redo the last change done.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="323"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="325"/> <source>Revert to last saved state</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="317"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="319"/> <source>Re&vert to last saved state</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="317"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="319"/> <source>Ctrl+Y</source> <comment>Edit|Revert</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="324"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="326"/> <source><b>Revert to last saved state</b><p>Undo all changes up to the last saved state of the editor.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="332"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="334"/> <source>Cut</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="332"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="334"/> <source>Cu&t</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="332"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="334"/> <source>Ctrl+X</source> <comment>Edit|Cut</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="332"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="334"/> <source>Shift+Del</source> <comment>Edit|Cut</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="339"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="341"/> <source>Cut the selection</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="340"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="342"/> <source><b>Cut</b><p>Cut the selected binary area to the clipboard.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="347"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="349"/> <source>Copy</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="347"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="349"/> <source>&Copy</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="347"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="349"/> <source>Ctrl+C</source> <comment>Edit|Copy</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="347"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="349"/> <source>Ctrl+Ins</source> <comment>Edit|Copy</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="354"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="356"/> <source>Copy the selection</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="355"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="357"/> <source><b>Copy</b><p>Copy the selected binary area to the clipboard.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="362"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="364"/> <source>Paste</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="362"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="364"/> <source>&Paste</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="362"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="364"/> <source>Ctrl+V</source> <comment>Edit|Paste</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="362"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="364"/> <source>Shift+Ins</source> <comment>Edit|Paste</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="369"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="371"/> <source>Paste the clipboard contents</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="370"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="372"/> <source><b>Paste</b><p>Paste the clipboard contents.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="377"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="379"/> <source>Select All</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="377"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="379"/> <source>&Select All</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="377"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="379"/> <source>Ctrl+A</source> <comment>Edit|Select All</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="384"/> - <source>Select the complete binary data</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../HexEdit/HexEditMainWindow.py" line="386"/> + <source>Select the complete binary data</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../HexEdit/HexEditMainWindow.py" line="388"/> <source><b>Select All</b><p>Selects the complete binary data.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="393"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="395"/> <source>Deselect all</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="393"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="395"/> <source>&Deselect all</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="393"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="395"/> <source>Alt+Ctrl+A</source> <comment>Edit|Deselect all</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="399"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="401"/> <source>Deselect all binary data</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="400"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="402"/> <source><b>Deselect All</b><p>Deselect all all binary data.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="407"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="409"/> <source>Save Selection Readable</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="407"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="409"/> <source>Save Selection Readable...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="411"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="413"/> <source>Save the binary data of the current selection to a file in a readable format</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="414"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="416"/> <source><b>Save Selection Readable...</b><p>Saves the binary data of the current selection to a file in a readable format.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="423"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="425"/> <source>Set Read Only</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="427"/> - <source>Change the edit mode to read only</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../HexEdit/HexEditMainWindow.py" line="429"/> + <source>Change the edit mode to read only</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../HexEdit/HexEditMainWindow.py" line="431"/> <source><b>Set Read Only</b><p>This changes the edit mode to read only (i.e. to view mode).</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="439"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="441"/> <source>Search</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="439"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="441"/> <source>&Search...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="439"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="441"/> <source>Ctrl+F</source> <comment>Search|Search</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="446"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="448"/> <source>Search for data</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="447"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="449"/> <source><b>Search</b><p>Search for some data. A dialog is shown to enter the data to search for in various formats.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="455"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="457"/> <source>Search next</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="455"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="457"/> <source>Search &next</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="455"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="457"/> <source>F3</source> <comment>Search|Search next</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="472"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="474"/> <source>Search previous</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="472"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="474"/> <source>Search &previous</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="472"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="474"/> <source>Shift+F3</source> <comment>Search|Search previous</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="481"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="483"/> <source><b>Search previous</b><p>Search the previous occurrence of some data. The previously entered search data are reused.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="490"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="492"/> <source>Replace</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="490"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="492"/> <source>&Replace...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="490"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="492"/> <source>Ctrl+R</source> <comment>Search|Replace</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="544"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="546"/> <source>About</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="544"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="546"/> <source>&About</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="548"/> - <source>Display information about this software</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../HexEdit/HexEditMainWindow.py" line="550"/> + <source>Display information about this software</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../HexEdit/HexEditMainWindow.py" line="552"/> <source><b>About</b><p>Display some information about this software.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="556"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="558"/> <source>About Qt</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="556"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="558"/> <source>About &Qt</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="560"/> - <source>Display information about the Qt toolkit</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../HexEdit/HexEditMainWindow.py" line="562"/> + <source>Display information about the Qt toolkit</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../HexEdit/HexEditMainWindow.py" line="564"/> <source><b>About Qt</b><p>Display some information about the Qt toolkit.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="569"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="571"/> <source>What's This?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="569"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="571"/> <source>&What's This?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="569"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="571"/> <source>Shift+F1</source> <comment>Help|What's This?'</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="575"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="577"/> <source>Context sensitive help</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="576"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="578"/> <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="../HexEdit/HexEditMainWindow.py" line="591"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="593"/> <source>Preferences</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="591"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="593"/> <source>&Preferences...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="596"/> - <source>Set the prefered configuration</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../HexEdit/HexEditMainWindow.py" line="598"/> + <source>Set the prefered configuration</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../HexEdit/HexEditMainWindow.py" line="600"/> <source><b>Preferences</b><p>Set the configuration items of the application with your prefered values.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="641"/> - <source>Open a binary file for viewing</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="615"/> - <source><b>Open File</b><p>This opens a binary file for viewing (i.e. in read only mode). It pops up a file selection dialog.</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="621"/> - <source>Open for Editing...</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="622"/> - <source>Open for Editing</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="631"/> - <source>Open a binary file for editing</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="625"/> - <source><b>Open for Editing</b><p>This opens a binary file for editing. It pops up a file selection dialog.</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="633"/> - <source><b>Open File</b><p>This opens a binary file for editing. It pops up a file selection dialog.</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="639"/> - <source>Open Read Only...</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="640"/> - <source>Open Read Only</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../HexEdit/HexEditMainWindow.py" line="643"/> + <source>Open a binary file for viewing</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../HexEdit/HexEditMainWindow.py" line="617"/> + <source><b>Open File</b><p>This opens a binary file for viewing (i.e. in read only mode). It pops up a file selection dialog.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../HexEdit/HexEditMainWindow.py" line="623"/> + <source>Open for Editing...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../HexEdit/HexEditMainWindow.py" line="624"/> + <source>Open for Editing</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../HexEdit/HexEditMainWindow.py" line="633"/> + <source>Open a binary file for editing</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../HexEdit/HexEditMainWindow.py" line="627"/> + <source><b>Open for Editing</b><p>This opens a binary file for editing. It pops up a file selection dialog.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../HexEdit/HexEditMainWindow.py" line="635"/> + <source><b>Open File</b><p>This opens a binary file for editing. It pops up a file selection dialog.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../HexEdit/HexEditMainWindow.py" line="641"/> + <source>Open Read Only...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../HexEdit/HexEditMainWindow.py" line="642"/> + <source>Open Read Only</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../HexEdit/HexEditMainWindow.py" line="645"/> <source><b>Open Read Only</b><p>This opens a binary file for viewing (i.e. in read only mode). It pops up a file selection dialog.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="655"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="658"/> <source>&File</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="673"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="676"/> <source>&Edit</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="697"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="700"/> <source>Se&ttings</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="703"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="706"/> <source>&Help</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="713"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="716"/> <source>File</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="726"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="729"/> <source>Edit</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="736"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="739"/> <source>Find</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="744"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="747"/> <source>Settings</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="749"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="752"/> <source>Help</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="787"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="790"/> <source><p>This part of the status bar displays the edit mode.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="795"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="798"/> <source><p>This part of the status bar displays the read only mode.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="763"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="766"/> <source><p>This part of the status bar displays the cursor address.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="779"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="782"/> <source><p>This part of the status bar displays the size of the binary data.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="846"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="854"/> <source>ro</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="846"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="854"/> <source>rw</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="864"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="872"/> <source>Overwrite</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="864"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="872"/> <source>Insert</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="883"/> - <source>Size: {0:n}</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="923"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="932"/> <source>Open binary file in new window</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="1040"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="1049"/> <source>All Files (*)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="1160"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="1169"/> <source>eric6 Hex Editor</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="944"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="953"/> <source>The loaded file has unsaved changes.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="962"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="971"/> <source>The file '{0}' does not exist.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="969"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="978"/> <source>Cannot read file '{0}: {1}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="993"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="1002"/> <source>Open binary file</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="1050"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="1059"/> <source>Save binary file</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="1135"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="1144"/> <source><p>The file <b>{0}</b> already exists. Overwrite it?</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="1160"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="1169"/> <source>Cannot write file '{0}: {1}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="1166"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="1175"/> <source>File saved</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="1135"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="1144"/> <source>Save to readable file</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="1119"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="1128"/> <source>Text Files (*.txt);;All Files (*)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="1119"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="1128"/> <source>Text Files (*.txt)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="1200"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="1209"/> <source>Untitled</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="1204"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="1213"/> <source>{0}[*] - {1}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="1204"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="1213"/> <source>Hex Editor</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="1261"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="1270"/> <source>About eric6 Hex Editor</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="1261"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="1270"/> <source>The eric6 Hex Editor is a simple editor component to edit binary files.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="462"/> - <source>Search next occurrence</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../HexEdit/HexEditMainWindow.py" line="464"/> + <source>Search next occurrence</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../HexEdit/HexEditMainWindow.py" line="466"/> <source><b>Search next</b><p>Search the next occurrence of some data. The previously entered search data are reused.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="479"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="481"/> <source>Search previous occurrence</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="496"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="498"/> <source>Replace data</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="497"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="499"/> <source><b>Replace</b><p>Search for some data and replace it. A dialog is shown to enter the data to search for and the replacement data in various formats.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="771"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="774"/> <source><p>This part of the status bar displays some selection information.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="813"/> - <source>Address: 0x{0:0{1}x}</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="835"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="843"/> <source>Selection: -</source> <comment>no selection available</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="828"/> - <source>Selection: 0x{0:0{2}x} - 0x{1:0{2}x} ({3:n} Bytes)</source> - <comment>0: start, 1: end, 2: address width, 3: selection length</comment> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="514"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="516"/> <source>Goto Offset</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="506"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="508"/> <source>&Goto Offset...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="515"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="517"/> <source><b>Goto Offset</b><p>Go to a specific address. A dialog is shown to enter the movement data.</p></source> <translation type="unfinished"></translation> </message> + <message> + <location filename="../HexEdit/HexEditMainWindow.py" line="818"/> + <source>Address: {0}</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../HexEdit/HexEditMainWindow.py" line="837"/> + <source>Selection: {0} - {1} ({2} Bytes)</source> + <comment>0: start, 1: end, 2: selection length</comment> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../HexEdit/HexEditMainWindow.py" line="891"/> + <source>Size: {0}</source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>HexEditReplaceWidget</name> @@ -64473,7 +64473,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="506"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="508"/> <source>Ctrl+G</source> <comment>Search|Goto Offset</comment> <translation type="unfinished"></translation>
--- a/i18n/eric6_es.ts Sun Jan 17 15:15:15 2016 +0100 +++ b/i18n/eric6_es.ts Sat Jan 23 16:21:23 2016 +0100 @@ -10883,7 +10883,7 @@ <translation>Selecciona llenar hasta el fin de la línea.</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="338"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="339"/> <source>Fill to end of line</source> <translation>Llenar hasta el final de la línea</translation> </message> @@ -10928,7 +10928,7 @@ <translation>Selección de Fuente.</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="59"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="60"/> <source>Font</source> <translation>Fuente</translation> </message> @@ -10953,17 +10953,17 @@ <translation>Todo llena hasta el final de la línea</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="336"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="337"/> <source>Enabled</source> <translation>Habilitado</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="337"/> - <source>Disabled</source> - <translation>Deshabilitado</translation> - </message> - <message> <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="338"/> + <source>Disabled</source> + <translation>Deshabilitado</translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="339"/> <source>Select fill to end of line for all styles</source> <translation>Selecciona llenar hasta el final de línea para todos los estilos</translation> </message> @@ -11023,42 +11023,42 @@ <translation>Exportar todos los estilos</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="446"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="447"/> <source>Export Highlighting Styles</source> <translation>Exportar Estilos de Resaltado</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="478"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="479"/> <source>Import Highlighting Styles</source> <translation>Importar Estilos de Resaltado</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="462"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="463"/> <source>Highlighting styles file (*.e4h)</source> <translation>Archivos de estilos de resaltado (*.e4h)</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="446"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="447"/> <source><p>The highlighting styles could not be exported to file <b>{0}</b>.</p><p>Reason: {1}</p></source> <translation><p>Los estilos de resaltado no se han podido exportar al archivo <b>{0}</b>.</p><p>Razón: {1}</p></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="478"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="479"/> <source><p>The highlighting styles could not be read from file <b>{0}</b>.</p><p>Reason: {1}</p></source> <translation><p>Los estilos de resaltado no se han podido leer del archivo <b>{0}</b>.</p><p>Razón: {1}</p></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="62"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="63"/> <source>Family and Size only</source> <translation>Familia y Tamaño solamente</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="65"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="66"/> <source>Family only</source> <translation>Familia solamente</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="67"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="68"/> <source>Size only</source> <translation>Tamaño solamente</translation> </message> @@ -12379,7 +12379,7 @@ <translation>Modo:</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="53"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="58"/> <source>Disabled</source> <translation>Deshabilitado</translation> </message> @@ -12699,32 +12699,32 @@ <translation>Seleccionar como se señalan las líneas con ajuste de línea</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="55"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="60"/> <source>Word Boundary</source> <translation>Límite de Palabra</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="57"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="62"/> <source>Character Boundary</source> <translation>Límite de Carácter</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="59"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="64"/> <source>No Indicator</source> <translation>Sin Indicador</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="61"/> - <source>Indicator by Text</source> - <translation>Indicador por Texto</translation> - </message> - <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="63"/> - <source>Indicator by Margin</source> - <translation>Indicador por Margen</translation> - </message> - <message> <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="66"/> + <source>Indicator by Text</source> + <translation>Indicador por Texto</translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="68"/> + <source>Indicator by Margin</source> + <translation>Indicador por Margen</translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="71"/> <source>Indicator in Line Number Margin</source> <translation>Indicador en el Margen de Número de Línea</translation> </message> @@ -16348,7 +16348,7 @@ <translation>Seleccionar para generar un aviso cuando estén a punto de cerrarse múltiples pestañas</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/HelpAppearancePage.py" line="35"/> + <location filename="../Preferences/ConfigurationPages/HelpAppearancePage.py" line="41"/> <source>Cascading Style Sheets (*.css);;All files (*)</source> <translation>Hojas de estilos (*.css);; Todos los archivos (*)</translation> </message> @@ -20012,547 +20012,547 @@ <context> <name>HexEditMainWindow</name> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="152"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="154"/> <source>New Window</source> <translation type="unfinished">Nueva Ventana</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="152"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="154"/> <source>New &Window</source> <translation type="unfinished">Nueva &Ventana</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="157"/> - <source>Open a binary file for editing in a new hex editor window</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../HexEdit/HexEditMainWindow.py" line="159"/> + <source>Open a binary file for editing in a new hex editor window</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../HexEdit/HexEditMainWindow.py" line="161"/> <source><b>New Window</b><p>This opens a binary file for editing in a new hex editor window.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="168"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="170"/> <source>Open</source> <translation type="unfinished">Abrir</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="168"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="170"/> <source>&Open...</source> <translation type="unfinished">&Abrir...</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="168"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="170"/> <source>Ctrl+O</source> <comment>File|Open</comment> <translation type="unfinished">Ctrl+O</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="184"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="186"/> <source>Save</source> <translation type="unfinished">Guardar</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="184"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="186"/> <source>&Save</source> <translation type="unfinished">&Guardar</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="184"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="186"/> <source>Ctrl+S</source> <comment>File|Save</comment> <translation type="unfinished">Ctrl+S</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="190"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="192"/> <source>Save the current binary file</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="191"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="193"/> <source><b>Save File</b><p>Save the contents of the hex editor window.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="198"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="200"/> <source>Save As</source> <translation type="unfinished">Guardar como</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="198"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="200"/> <source>Save &As...</source> <translation type="unfinished">Guardar Co&mo...</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="198"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="200"/> <source>Shift+Ctrl+S</source> <comment>File|Save As</comment> <translation type="unfinished">Shift+Ctrl+S</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="204"/> - <source>Save the current binary data to a new file</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../HexEdit/HexEditMainWindow.py" line="206"/> + <source>Save the current binary data to a new file</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../HexEdit/HexEditMainWindow.py" line="208"/> <source><b>Save As...</b><p>Saves the current binary data to a new file.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="213"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="215"/> <source>Save As Readable</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="213"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="215"/> <source>Save As &Readable...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="217"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="219"/> <source>Save the current binary data to a new file in a readable format</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="220"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="222"/> <source><b>Save As Readable...</b><p>Saves the current binary data to a new file in a readable format.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="228"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="230"/> <source>Close</source> <translation type="unfinished">Cerrar</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="228"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="230"/> <source>&Close</source> <translation type="unfinished">&Cerrar</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="228"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="230"/> <source>Ctrl+W</source> <comment>File|Close</comment> <translation type="unfinished">Ctrl+W</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="234"/> - <source>Close the current hex editor window</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../HexEdit/HexEditMainWindow.py" line="236"/> + <source>Close the current hex editor window</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../HexEdit/HexEditMainWindow.py" line="238"/> <source><b>Close</b><p>Closes the current hex editor window.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="243"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="245"/> <source>Close All</source> <translation type="unfinished">Cerrar todo</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="243"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="245"/> <source>Close &All</source> <translation type="unfinished">Cerrar &Todo</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="247"/> - <source>Close all hex editor windows</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../HexEdit/HexEditMainWindow.py" line="249"/> + <source>Close all hex editor windows</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../HexEdit/HexEditMainWindow.py" line="251"/> <source><b>Close All</b><p>Closes all hex editor windows.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="256"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="258"/> <source>Close Others</source> <translation type="unfinished">Cerrar Otras</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="260"/> - <source>Close all hex other editor windows</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../HexEdit/HexEditMainWindow.py" line="262"/> + <source>Close all hex other editor windows</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../HexEdit/HexEditMainWindow.py" line="264"/> <source><b>Close Others</b><p>Closes all other hex editor windows.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="269"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="271"/> <source>Quit</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="269"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="271"/> <source>&Quit</source> <translation type="unfinished">&Salir</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="269"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="271"/> <source>Ctrl+Q</source> <comment>File|Quit</comment> <translation type="unfinished">Ctrl+Q</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="275"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="277"/> <source>Quit the hex editor</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="276"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="278"/> <source><b>Quit</b><p>Quit the hex editor.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="288"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="290"/> <source>Undo</source> <translation type="unfinished">Deshacer</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="288"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="290"/> <source>&Undo</source> <translation type="unfinished">&Deshacer</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="288"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="290"/> <source>Ctrl+Z</source> <comment>Edit|Undo</comment> <translation type="unfinished">Ctrl+Z</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="288"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="290"/> <source>Alt+Backspace</source> <comment>Edit|Undo</comment> <translation type="unfinished">Alt+Backspace</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="295"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="297"/> <source>Undo the last change</source> <translation type="unfinished">Revierte el último cambio</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="296"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="298"/> <source><b>Undo</b><p>Undo the last change done.</p></source> <translation type="unfinished"><b>Deshacer</b><p>Deshace el último cambio hecho en el editor.</p></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="303"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="305"/> <source>Redo</source> <translation type="unfinished">Rehacer</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="303"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="305"/> <source>&Redo</source> <translation type="unfinished">&Rehacer</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="303"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="305"/> <source>Ctrl+Shift+Z</source> <comment>Edit|Redo</comment> <translation type="unfinished">Ctrl+Shift+Z</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="309"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="311"/> <source>Redo the last change</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="310"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="312"/> <source><b>Redo</b><p>Redo the last change done.</p></source> <translation type="unfinished"><b>Rehacer</b><p>Rehace el último cambio hecho en el editor.</p></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="323"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="325"/> <source>Revert to last saved state</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="317"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="319"/> <source>Re&vert to last saved state</source> <translation type="unfinished">&Volver al último estado grabado</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="317"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="319"/> <source>Ctrl+Y</source> <comment>Edit|Revert</comment> <translation type="unfinished">Ctrl+Y</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="324"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="326"/> <source><b>Revert to last saved state</b><p>Undo all changes up to the last saved state of the editor.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="332"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="334"/> <source>Cut</source> <translation type="unfinished">Cortar</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="332"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="334"/> <source>Cu&t</source> <translation type="unfinished">Cor&tar</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="332"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="334"/> <source>Ctrl+X</source> <comment>Edit|Cut</comment> <translation type="unfinished">Ctrl+X</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="332"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="334"/> <source>Shift+Del</source> <comment>Edit|Cut</comment> <translation type="unfinished">Shift+Del</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="339"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="341"/> <source>Cut the selection</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="340"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="342"/> <source><b>Cut</b><p>Cut the selected binary area to the clipboard.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="347"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="349"/> <source>Copy</source> <translation type="unfinished">Copiar</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="347"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="349"/> <source>&Copy</source> <translation type="unfinished">&Copiar</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="347"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="349"/> <source>Ctrl+C</source> <comment>Edit|Copy</comment> <translation type="unfinished">Ctrl+C</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="347"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="349"/> <source>Ctrl+Ins</source> <comment>Edit|Copy</comment> <translation type="unfinished">Ctrl+Ins</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="354"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="356"/> <source>Copy the selection</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="355"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="357"/> <source><b>Copy</b><p>Copy the selected binary area to the clipboard.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="362"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="364"/> <source>Paste</source> <translation type="unfinished">Pegar</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="362"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="364"/> <source>&Paste</source> <translation type="unfinished">&Pegar</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="362"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="364"/> <source>Ctrl+V</source> <comment>Edit|Paste</comment> <translation type="unfinished">Ctrl+V</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="362"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="364"/> <source>Shift+Ins</source> <comment>Edit|Paste</comment> <translation type="unfinished">Shift+Ins</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="369"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="371"/> <source>Paste the clipboard contents</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="370"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="372"/> <source><b>Paste</b><p>Paste the clipboard contents.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="377"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="379"/> <source>Select All</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="377"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="379"/> <source>&Select All</source> <translation type="unfinished">Seleccionar &todo</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="377"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="379"/> <source>Ctrl+A</source> <comment>Edit|Select All</comment> <translation type="unfinished">Ctrl+A</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="384"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="386"/> <source>Select the complete binary data</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="386"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="388"/> <source><b>Select All</b><p>Selects the complete binary data.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="393"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="395"/> <source>Deselect all</source> <translation type="unfinished">Deseleccionar todo</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="393"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="395"/> <source>&Deselect all</source> <translation type="unfinished">&Deseleccionar todo</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="393"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="395"/> <source>Alt+Ctrl+A</source> <comment>Edit|Deselect all</comment> <translation type="unfinished">Alt+Ctrl+A</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="399"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="401"/> <source>Deselect all binary data</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="400"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="402"/> <source><b>Deselect All</b><p>Deselect all all binary data.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="407"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="409"/> <source>Save Selection Readable</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="407"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="409"/> <source>Save Selection Readable...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="411"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="413"/> <source>Save the binary data of the current selection to a file in a readable format</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="414"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="416"/> <source><b>Save Selection Readable...</b><p>Saves the binary data of the current selection to a file in a readable format.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="423"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="425"/> <source>Set Read Only</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="427"/> - <source>Change the edit mode to read only</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../HexEdit/HexEditMainWindow.py" line="429"/> + <source>Change the edit mode to read only</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../HexEdit/HexEditMainWindow.py" line="431"/> <source><b>Set Read Only</b><p>This changes the edit mode to read only (i.e. to view mode).</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="439"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="441"/> <source>Search</source> <translation type="unfinished">Buscar</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="439"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="441"/> <source>&Search...</source> <translation type="unfinished">&Buscar...</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="439"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="441"/> <source>Ctrl+F</source> <comment>Search|Search</comment> <translation type="unfinished">Ctrl+F</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="446"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="448"/> <source>Search for data</source> <translation type="unfinished">Buscar un texto</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="447"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="449"/> <source><b>Search</b><p>Search for some data. A dialog is shown to enter the data to search for in various formats.</p></source> <translation type="unfinished"><b>Buscar</b><p>Buscar texto en el editor. En el diálogo muestra opciones e indica el texto de búsqueda.</p></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="455"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="457"/> <source>Search next</source> <translation type="unfinished">Buscar siguiente</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="455"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="457"/> <source>Search &next</source> <translation type="unfinished">Buscar &Siguiente</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="455"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="457"/> <source>F3</source> <comment>Search|Search next</comment> <translation type="unfinished">F3</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="462"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="464"/> <source>Search next occurrence</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="464"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="466"/> <source><b>Search next</b><p>Search the next occurrence of some data. The previously entered search data are reused.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="472"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="474"/> <source>Search previous</source> <translation type="unfinished">Buscar anterior</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="472"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="474"/> <source>Search &previous</source> <translation type="unfinished">Buscar a&nterior</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="472"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="474"/> <source>Shift+F3</source> <comment>Search|Search previous</comment> <translation type="unfinished">Shift+F3</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="481"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="483"/> <source><b>Search previous</b><p>Search the previous occurrence of some data. The previously entered search data are reused.</p></source> <translation type="unfinished"><b>Buscar anterior</b><p>Buscar la anterior ocurrencia de un texto en el editor actual. Se reutilizan el texto de búsqueda introducido anteriormente y sus opciones.</p></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="490"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="492"/> <source>Replace</source> <translation type="unfinished">Reemplazar</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="490"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="492"/> <source>&Replace...</source> <translation type="unfinished">&Reemplazar...</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="490"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="492"/> <source>Ctrl+R</source> <comment>Search|Replace</comment> <translation type="unfinished">Ctrl+R</translation> @@ -20568,382 +20568,382 @@ <translation type="obsolete"><b>Reemplazar</b><p>Buscar un texto en el editor actual y reemplazarlo. Se muestra un diálogo para introducir el texto de búsqueda, el texto de reemplazo y las opciones para buscar y reemplazar.</p></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="544"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="546"/> <source>About</source> <translation type="unfinished">Acerca de</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="544"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="546"/> <source>&About</source> <translation type="unfinished">&Acerca de</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="548"/> - <source>Display information about this software</source> - <translation type="unfinished">Muestra información acerca de este software</translation> - </message> - <message> <location filename="../HexEdit/HexEditMainWindow.py" line="550"/> + <source>Display information about this software</source> + <translation type="unfinished">Muestra información acerca de este software</translation> + </message> + <message> + <location filename="../HexEdit/HexEditMainWindow.py" line="552"/> <source><b>About</b><p>Display some information about this software.</p></source> <translation type="unfinished"><b>Acerca de</b><p>Muestra información acerca de este software.</p></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="556"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="558"/> <source>About Qt</source> <translation type="unfinished">Acerca de Qt</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="556"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="558"/> <source>About &Qt</source> <translation type="unfinished">Acerca de &Qt</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="560"/> - <source>Display information about the Qt toolkit</source> - <translation type="unfinished">Muestra información sobre las herramientas Qt</translation> - </message> - <message> <location filename="../HexEdit/HexEditMainWindow.py" line="562"/> + <source>Display information about the Qt toolkit</source> + <translation type="unfinished">Muestra información sobre las herramientas Qt</translation> + </message> + <message> + <location filename="../HexEdit/HexEditMainWindow.py" line="564"/> <source><b>About Qt</b><p>Display some information about the Qt toolkit.</p></source> <translation type="unfinished"><b>Acerca de Qt</b><p>Muestra información sobre las herramientas Qt.</p></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="569"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="571"/> <source>What's This?</source> <translation type="unfinished">¿Qué es esto?</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="569"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="571"/> <source>&What's This?</source> <translation type="unfinished">¿&Qué es esto?</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="569"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="571"/> <source>Shift+F1</source> <comment>Help|What's This?'</comment> <translation type="unfinished">Shift+F1</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="575"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="577"/> <source>Context sensitive help</source> <translation type="unfinished">Ayuda sensible al contexto</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="576"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="578"/> <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"><b>Mostrar ayuda sensible al contexto</b><p>En modo ¿Qué es esto? el puntero del ratón muestra una flecha con un interrogante, y se puede hacer click en elementos de la interfaz gráfica para obtener una descripción corta de lo que hacen y de cómo se utilizan. En los diálogos, se puede acceder a esta característica utilizando el botón de ayuda de contexto en la barra de título.</p></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="591"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="593"/> <source>Preferences</source> <translation type="unfinished">Preferencias</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="591"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="593"/> <source>&Preferences...</source> <translation type="unfinished">&Preferencias...</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="596"/> - <source>Set the prefered configuration</source> - <translation type="unfinished">Establecer la configuración preferida</translation> - </message> - <message> <location filename="../HexEdit/HexEditMainWindow.py" line="598"/> + <source>Set the prefered configuration</source> + <translation type="unfinished">Establecer la configuración preferida</translation> + </message> + <message> + <location filename="../HexEdit/HexEditMainWindow.py" line="600"/> <source><b>Preferences</b><p>Set the configuration items of the application with your prefered values.</p></source> <translation type="unfinished"><b>Preferencias</b><p>Establecezca los elementos de configuración de la aplicación con sus valores preferidos.</p></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="641"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="643"/> <source>Open a binary file for viewing</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="615"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="617"/> <source><b>Open File</b><p>This opens a binary file for viewing (i.e. in read only mode). It pops up a file selection dialog.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="621"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="623"/> <source>Open for Editing...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="622"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="624"/> <source>Open for Editing</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="631"/> - <source>Open a binary file for editing</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="625"/> - <source><b>Open for Editing</b><p>This opens a binary file for editing. It pops up a file selection dialog.</p></source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../HexEdit/HexEditMainWindow.py" line="633"/> + <source>Open a binary file for editing</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../HexEdit/HexEditMainWindow.py" line="627"/> + <source><b>Open for Editing</b><p>This opens a binary file for editing. It pops up a file selection dialog.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../HexEdit/HexEditMainWindow.py" line="635"/> <source><b>Open File</b><p>This opens a binary file for editing. It pops up a file selection dialog.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="639"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="641"/> <source>Open Read Only...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="640"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="642"/> <source>Open Read Only</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="643"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="645"/> <source><b>Open Read Only</b><p>This opens a binary file for viewing (i.e. in read only mode). It pops up a file selection dialog.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="655"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="658"/> <source>&File</source> <translation type="unfinished">&Archivo</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="673"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="676"/> <source>&Edit</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="697"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="700"/> <source>Se&ttings</source> <translation type="unfinished">Con&figuración</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="703"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="706"/> <source>&Help</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="713"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="716"/> <source>File</source> <translation type="unfinished">Archivo</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="726"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="729"/> <source>Edit</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="736"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="739"/> <source>Find</source> <translation type="unfinished">Buscar</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="744"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="747"/> <source>Settings</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="749"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="752"/> <source>Help</source> <translation type="unfinished">Ayuda</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="787"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="790"/> <source><p>This part of the status bar displays the edit mode.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="795"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="798"/> <source><p>This part of the status bar displays the read only mode.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="763"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="766"/> <source><p>This part of the status bar displays the cursor address.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="779"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="782"/> <source><p>This part of the status bar displays the size of the binary data.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="846"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="854"/> <source>ro</source> <translation type="unfinished">ro</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="846"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="854"/> <source>rw</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="864"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="872"/> <source>Overwrite</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="864"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="872"/> <source>Insert</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="883"/> - <source>Size: {0:n}</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="923"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="932"/> <source>Open binary file in new window</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="1040"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="1049"/> <source>All Files (*)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="1160"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="1169"/> <source>eric6 Hex Editor</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="944"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="953"/> <source>The loaded file has unsaved changes.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="962"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="971"/> <source>The file '{0}' does not exist.</source> <translation type="unfinished">El archivo {0} no existe.</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="969"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="978"/> <source>Cannot read file '{0}: {1}.</source> <translation type="unfinished">No se puede leer el archivo {0}: {1}.</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="993"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="1002"/> <source>Open binary file</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="1050"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="1059"/> <source>Save binary file</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="1135"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="1144"/> <source><p>The file <b>{0}</b> already exists. Overwrite it?</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="1160"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="1169"/> <source>Cannot write file '{0}: {1}.</source> <translation type="unfinished">No se puede guardar el archivo {0}: {1}.</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="1166"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="1175"/> <source>File saved</source> <translation type="unfinished">Archivo guardado</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="1135"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="1144"/> <source>Save to readable file</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="1119"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="1128"/> <source>Text Files (*.txt);;All Files (*)</source> <translation type="unfinished">Archivos de Texto (*.txt);;Todos los Archivos (*)</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="1119"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="1128"/> <source>Text Files (*.txt)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="1200"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="1209"/> <source>Untitled</source> <translation type="unfinished">Sin título</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="1204"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="1213"/> <source>{0}[*] - {1}</source> <translation type="unfinished">{0}[*] - {1}</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="1204"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="1213"/> <source>Hex Editor</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="1261"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="1270"/> <source>About eric6 Hex Editor</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="1261"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="1270"/> <source>The eric6 Hex Editor is a simple editor component to edit binary files.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="479"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="481"/> <source>Search previous occurrence</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="496"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="498"/> <source>Replace data</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="497"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="499"/> <source><b>Replace</b><p>Search for some data and replace it. A dialog is shown to enter the data to search for and the replacement data in various formats.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="771"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="774"/> <source><p>This part of the status bar displays some selection information.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="813"/> - <source>Address: 0x{0:0{1}x}</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="835"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="843"/> <source>Selection: -</source> <comment>no selection available</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="828"/> - <source>Selection: 0x{0:0{2}x} - 0x{1:0{2}x} ({3:n} Bytes)</source> - <comment>0: start, 1: end, 2: address width, 3: selection length</comment> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="514"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="516"/> <source>Goto Offset</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="506"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="508"/> <source>&Goto Offset...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="515"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="517"/> <source><b>Goto Offset</b><p>Go to a specific address. A dialog is shown to enter the movement data.</p></source> <translation type="unfinished"></translation> </message> + <message> + <location filename="../HexEdit/HexEditMainWindow.py" line="818"/> + <source>Address: {0}</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../HexEdit/HexEditMainWindow.py" line="837"/> + <source>Selection: {0} - {1} ({2} Bytes)</source> + <comment>0: start, 1: end, 2: selection length</comment> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../HexEdit/HexEditMainWindow.py" line="891"/> + <source>Size: {0}</source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>HexEditReplaceWidget</name> @@ -65862,7 +65862,7 @@ <translation><b>Guardar Copia</b><p>Guardar una copia del contenido de la ventana de editor actual. El archivo puede ser introducido usando un diálogo de selección de archivo.</p></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="506"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="508"/> <source>Ctrl+G</source> <comment>Search|Goto Offset</comment> <translation type="unfinished">Ctrl+G</translation>
--- a/i18n/eric6_fr.ts Sun Jan 17 15:15:15 2016 +0100 +++ b/i18n/eric6_fr.ts Sat Jan 23 16:21:23 2016 +0100 @@ -10875,7 +10875,7 @@ <translation>Cocher pour appliquer le style jusqu'en fin de ligne.</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="338"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="339"/> <source>Fill to end of line</source> <translation>Appliquer jusqu'à la fin de ligne</translation> </message> @@ -10920,7 +10920,7 @@ <translation>Sélectionner la police.</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="59"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="60"/> <source>Font</source> <translation>Police</translation> </message> @@ -10950,17 +10950,17 @@ <translation>Tout appliquer jusqu'aux fins de lignes</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="336"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="337"/> <source>Enabled</source> <translation>Activé</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="337"/> - <source>Disabled</source> - <translation>Désactivé</translation> - </message> - <message> <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="338"/> + <source>Disabled</source> + <translation>Désactivé</translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="339"/> <source>Select fill to end of line for all styles</source> <translation>Sélectionner pour appliquer tous les styles jusqu'en fin de lignes</translation> </message> @@ -11020,42 +11020,42 @@ <translation>Exporter tous les styles</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="446"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="447"/> <source>Export Highlighting Styles</source> <translation>Exportation des styles</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="478"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="479"/> <source>Import Highlighting Styles</source> <translation>Importation des styles</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="462"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="463"/> <source>Highlighting styles file (*.e4h)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="446"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="447"/> <source><p>The highlighting styles could not be exported to file <b>{0}</b>.</p><p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="478"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="479"/> <source><p>The highlighting styles could not be read from file <b>{0}</b>.</p><p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="62"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="63"/> <source>Family and Size only</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="65"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="66"/> <source>Family only</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="67"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="68"/> <source>Size only</source> <translation type="unfinished"></translation> </message> @@ -12377,7 +12377,7 @@ <translation>Mode:</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="53"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="58"/> <source>Disabled</source> <translation>Désactivé</translation> </message> @@ -12697,32 +12697,32 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="55"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="60"/> <source>Word Boundary</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="57"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="62"/> <source>Character Boundary</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="59"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="64"/> <source>No Indicator</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="61"/> - <source>Indicator by Text</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="63"/> - <source>Indicator by Margin</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="66"/> + <source>Indicator by Text</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="68"/> + <source>Indicator by Margin</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="71"/> <source>Indicator in Line Number Margin</source> <translation type="unfinished"></translation> </message> @@ -16341,7 +16341,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/HelpAppearancePage.py" line="35"/> + <location filename="../Preferences/ConfigurationPages/HelpAppearancePage.py" line="41"/> <source>Cascading Style Sheets (*.css);;All files (*)</source> <translation type="unfinished"></translation> </message> @@ -19948,547 +19948,547 @@ <context> <name>HexEditMainWindow</name> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="152"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="154"/> <source>New Window</source> <translation type="unfinished">Nouvelle fenêtre</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="152"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="154"/> <source>New &Window</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="157"/> - <source>Open a binary file for editing in a new hex editor window</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../HexEdit/HexEditMainWindow.py" line="159"/> + <source>Open a binary file for editing in a new hex editor window</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../HexEdit/HexEditMainWindow.py" line="161"/> <source><b>New Window</b><p>This opens a binary file for editing in a new hex editor window.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="168"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="170"/> <source>Open</source> <translation type="unfinished">Ouvrir</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="168"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="170"/> <source>&Open...</source> <translation type="unfinished">&Ouvrir...</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="168"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="170"/> <source>Ctrl+O</source> <comment>File|Open</comment> <translation type="unfinished">Ctrl+O</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="184"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="186"/> <source>Save</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="184"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="186"/> <source>&Save</source> <translation type="unfinished">&Enregistrer</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="184"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="186"/> <source>Ctrl+S</source> <comment>File|Save</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="190"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="192"/> <source>Save the current binary file</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="191"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="193"/> <source><b>Save File</b><p>Save the contents of the hex editor window.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="198"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="200"/> <source>Save As</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="198"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="200"/> <source>Save &As...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="198"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="200"/> <source>Shift+Ctrl+S</source> <comment>File|Save As</comment> <translation type="unfinished">Shift+Ctrl+S</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="204"/> - <source>Save the current binary data to a new file</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../HexEdit/HexEditMainWindow.py" line="206"/> + <source>Save the current binary data to a new file</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../HexEdit/HexEditMainWindow.py" line="208"/> <source><b>Save As...</b><p>Saves the current binary data to a new file.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="213"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="215"/> <source>Save As Readable</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="213"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="215"/> <source>Save As &Readable...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="217"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="219"/> <source>Save the current binary data to a new file in a readable format</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="220"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="222"/> <source><b>Save As Readable...</b><p>Saves the current binary data to a new file in a readable format.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="228"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="230"/> <source>Close</source> <translation type="unfinished">Fermer</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="228"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="230"/> <source>&Close</source> <translation type="unfinished">&Fermer</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="228"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="230"/> <source>Ctrl+W</source> <comment>File|Close</comment> <translation type="unfinished">Ctrl+W</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="234"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="236"/> <source>Close the current hex editor window</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="236"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="238"/> <source><b>Close</b><p>Closes the current hex editor window.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="243"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="245"/> <source>Close All</source> <translation type="unfinished">Tout fermer</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="243"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="245"/> <source>Close &All</source> <translation type="unfinished">&Tout fermer</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="247"/> - <source>Close all hex editor windows</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../HexEdit/HexEditMainWindow.py" line="249"/> + <source>Close all hex editor windows</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../HexEdit/HexEditMainWindow.py" line="251"/> <source><b>Close All</b><p>Closes all hex editor windows.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="256"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="258"/> <source>Close Others</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="260"/> - <source>Close all hex other editor windows</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../HexEdit/HexEditMainWindow.py" line="262"/> + <source>Close all hex other editor windows</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../HexEdit/HexEditMainWindow.py" line="264"/> <source><b>Close Others</b><p>Closes all other hex editor windows.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="269"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="271"/> <source>Quit</source> <translation type="unfinished">Quitter</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="269"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="271"/> <source>&Quit</source> <translation type="unfinished">&Quitter</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="269"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="271"/> <source>Ctrl+Q</source> <comment>File|Quit</comment> <translation type="unfinished">Ctrl+Q</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="275"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="277"/> <source>Quit the hex editor</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="276"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="278"/> <source><b>Quit</b><p>Quit the hex editor.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="288"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="290"/> <source>Undo</source> <translation type="unfinished">Défaire</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="288"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="290"/> <source>&Undo</source> <translation type="unfinished">&Défaire</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="288"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="290"/> <source>Ctrl+Z</source> <comment>Edit|Undo</comment> <translation type="unfinished">Ctrl+Z</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="288"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="290"/> <source>Alt+Backspace</source> <comment>Edit|Undo</comment> <translation type="unfinished">Alt+Backspace</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="295"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="297"/> <source>Undo the last change</source> <translation type="unfinished">Annule la dernière modification</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="296"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="298"/> <source><b>Undo</b><p>Undo the last change done.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="303"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="305"/> <source>Redo</source> <translation type="unfinished">Refaire</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="303"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="305"/> <source>&Redo</source> <translation type="unfinished">&Refaire</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="303"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="305"/> <source>Ctrl+Shift+Z</source> <comment>Edit|Redo</comment> <translation type="unfinished">Ctrl+Shift+Z</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="309"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="311"/> <source>Redo the last change</source> <translation type="unfinished">Recharge la dernière modification</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="310"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="312"/> <source><b>Redo</b><p>Redo the last change done.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="323"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="325"/> <source>Revert to last saved state</source> <translation type="unfinished">Ecraser avec le dernier état enregistré</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="317"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="319"/> <source>Re&vert to last saved state</source> <translation type="unfinished">Ec&raser avec le dernier état enregistré</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="317"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="319"/> <source>Ctrl+Y</source> <comment>Edit|Revert</comment> <translation type="unfinished">Ctrl+Y</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="324"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="326"/> <source><b>Revert to last saved state</b><p>Undo all changes up to the last saved state of the editor.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="332"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="334"/> <source>Cut</source> <translation type="unfinished">Couper</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="332"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="334"/> <source>Cu&t</source> <translation type="unfinished">Cou&per</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="332"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="334"/> <source>Ctrl+X</source> <comment>Edit|Cut</comment> <translation type="unfinished">Ctrl+X</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="332"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="334"/> <source>Shift+Del</source> <comment>Edit|Cut</comment> <translation type="unfinished">Shift+Del</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="339"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="341"/> <source>Cut the selection</source> <translation type="unfinished">Coupe la sélection</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="340"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="342"/> <source><b>Cut</b><p>Cut the selected binary area to the clipboard.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="347"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="349"/> <source>Copy</source> <translation type="unfinished">Copier</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="347"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="349"/> <source>&Copy</source> <translation type="unfinished">&Copier</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="347"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="349"/> <source>Ctrl+C</source> <comment>Edit|Copy</comment> <translation type="unfinished">Ctrl+C</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="347"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="349"/> <source>Ctrl+Ins</source> <comment>Edit|Copy</comment> <translation type="unfinished">Ctrl+Ins</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="354"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="356"/> <source>Copy the selection</source> <translation type="unfinished">Copie la sélection</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="355"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="357"/> <source><b>Copy</b><p>Copy the selected binary area to the clipboard.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="362"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="364"/> <source>Paste</source> <translation type="unfinished">Coller</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="362"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="364"/> <source>&Paste</source> <translation type="unfinished">Col&ler</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="362"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="364"/> <source>Ctrl+V</source> <comment>Edit|Paste</comment> <translation type="unfinished">Ctrl+V</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="362"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="364"/> <source>Shift+Ins</source> <comment>Edit|Paste</comment> <translation type="unfinished">Shift+Ins</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="369"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="371"/> <source>Paste the clipboard contents</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="370"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="372"/> <source><b>Paste</b><p>Paste the clipboard contents.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="377"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="379"/> <source>Select All</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="377"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="379"/> <source>&Select All</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="377"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="379"/> <source>Ctrl+A</source> <comment>Edit|Select All</comment> <translation type="unfinished">Ctrl+A</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="384"/> - <source>Select the complete binary data</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../HexEdit/HexEditMainWindow.py" line="386"/> + <source>Select the complete binary data</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../HexEdit/HexEditMainWindow.py" line="388"/> <source><b>Select All</b><p>Selects the complete binary data.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="393"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="395"/> <source>Deselect all</source> <translation type="unfinished">Tout déselectionner</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="393"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="395"/> <source>&Deselect all</source> <translation type="unfinished">Tout &déselectionner</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="393"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="395"/> <source>Alt+Ctrl+A</source> <comment>Edit|Deselect all</comment> <translation type="unfinished">Alt+Ctrl+A</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="399"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="401"/> <source>Deselect all binary data</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="400"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="402"/> <source><b>Deselect All</b><p>Deselect all all binary data.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="407"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="409"/> <source>Save Selection Readable</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="407"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="409"/> <source>Save Selection Readable...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="411"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="413"/> <source>Save the binary data of the current selection to a file in a readable format</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="414"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="416"/> <source><b>Save Selection Readable...</b><p>Saves the binary data of the current selection to a file in a readable format.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="423"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="425"/> <source>Set Read Only</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="427"/> - <source>Change the edit mode to read only</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../HexEdit/HexEditMainWindow.py" line="429"/> + <source>Change the edit mode to read only</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../HexEdit/HexEditMainWindow.py" line="431"/> <source><b>Set Read Only</b><p>This changes the edit mode to read only (i.e. to view mode).</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="439"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="441"/> <source>Search</source> <translation type="unfinished">Rechercher</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="439"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="441"/> <source>&Search...</source> <translation type="unfinished">Re&chercher...</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="439"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="441"/> <source>Ctrl+F</source> <comment>Search|Search</comment> <translation type="unfinished">Ctrl+F</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="446"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="448"/> <source>Search for data</source> <translation type="unfinished">Recherche de texte</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="447"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="449"/> <source><b>Search</b><p>Search for some data. A dialog is shown to enter the data to search for in various formats.</p></source> <translation type="unfinished"><b>Rechercher</b><p>Recherche du texte dans l'éditeur courant. Un fenêtre est affichée pour saisir le texte recherché et le options de recherche.</p></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="455"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="457"/> <source>Search next</source> <translation type="unfinished">Chercher suivant</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="455"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="457"/> <source>Search &next</source> <translation type="unfinished">Chercher &suivant</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="455"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="457"/> <source>F3</source> <comment>Search|Search next</comment> <translation type="unfinished">F3</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="462"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="464"/> <source>Search next occurrence</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="464"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="466"/> <source><b>Search next</b><p>Search the next occurrence of some data. The previously entered search data are reused.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="472"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="474"/> <source>Search previous</source> <translation type="unfinished">Chercher précédent</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="472"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="474"/> <source>Search &previous</source> <translation type="unfinished">Chercher &précédent</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="472"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="474"/> <source>Shift+F3</source> <comment>Search|Search previous</comment> <translation type="unfinished">Shift+F3</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="481"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="483"/> <source><b>Search previous</b><p>Search the previous occurrence of some data. The previously entered search data are reused.</p></source> <translation type="unfinished"><b>Chercher précédent</b><p>Recherche en arrière le texte saisi dans l'éditeur courant. Les options de recherche précédentes sont réutilisées.</p></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="490"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="492"/> <source>Replace</source> <translation type="unfinished">Remplacer</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="490"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="492"/> <source>&Replace...</source> <translation type="unfinished">&Remplacer...</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="490"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="492"/> <source>Ctrl+R</source> <comment>Search|Replace</comment> <translation type="unfinished">Ctrl+R</translation> @@ -20504,380 +20504,380 @@ <translation type="obsolete"><b>Remplacer</b><p>Recherche du texte dans l'éditeur courant et le remplace par un autre. Un fenêtre est affichée pour saisir le texte initial, le texte de remplacement et les options de remplacement.</p></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="544"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="546"/> <source>About</source> <translation type="unfinished">À propos de</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="544"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="546"/> <source>&About</source> <translation type="unfinished">&À propos de </translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="548"/> - <source>Display information about this software</source> - <translation type="unfinished">Affiche les informations concernant le logiciel</translation> - </message> - <message> <location filename="../HexEdit/HexEditMainWindow.py" line="550"/> + <source>Display information about this software</source> + <translation type="unfinished">Affiche les informations concernant le logiciel</translation> + </message> + <message> + <location filename="../HexEdit/HexEditMainWindow.py" line="552"/> <source><b>About</b><p>Display some information about this software.</p></source> <translation type="unfinished"><b>À propos de</b><p>Affiche certaines informations concernant le logiciel.</p></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="556"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="558"/> <source>About Qt</source> <translation type="unfinished">À propos de Qt</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="556"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="558"/> <source>About &Qt</source> <translation type="unfinished">À propos de &Qt</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="560"/> - <source>Display information about the Qt toolkit</source> - <translation type="unfinished">Affiche les informations concernant Qt</translation> - </message> - <message> <location filename="../HexEdit/HexEditMainWindow.py" line="562"/> + <source>Display information about the Qt toolkit</source> + <translation type="unfinished">Affiche les informations concernant Qt</translation> + </message> + <message> + <location filename="../HexEdit/HexEditMainWindow.py" line="564"/> <source><b>About Qt</b><p>Display some information about the Qt toolkit.</p></source> <translation type="unfinished"><b>À propos de Qt</b><p>Affiche les informations concernant Qt</p></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="569"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="571"/> <source>What's This?</source> <translation type="unfinished">Qu'est-ce que c'est ?</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="569"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="571"/> <source>&What's This?</source> <translation type="unfinished">&Qu'est-ce que c'est?</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="569"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="571"/> <source>Shift+F1</source> <comment>Help|What's This?'</comment> <translation type="unfinished">Shift+F1</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="575"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="577"/> <source>Context sensitive help</source> <translation type="unfinished">Aide contextuelle</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="576"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="578"/> <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"><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="../HexEdit/HexEditMainWindow.py" line="591"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="593"/> <source>Preferences</source> <translation type="unfinished">Préférences</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="591"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="593"/> <source>&Preferences...</source> <translation type="unfinished">&Préférences...</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="596"/> - <source>Set the prefered configuration</source> - <translation type="unfinished">Édition des préférences</translation> - </message> - <message> <location filename="../HexEdit/HexEditMainWindow.py" line="598"/> + <source>Set the prefered configuration</source> + <translation type="unfinished">Édition des préférences</translation> + </message> + <message> + <location filename="../HexEdit/HexEditMainWindow.py" line="600"/> <source><b>Preferences</b><p>Set the configuration items of the application with your prefered values.</p></source> <translation type="unfinished"><b>Préférences</b><p>Edite les valeurs souhaitées pour la configuration du logiciel.</p></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="641"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="643"/> <source>Open a binary file for viewing</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="615"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="617"/> <source><b>Open File</b><p>This opens a binary file for viewing (i.e. in read only mode). It pops up a file selection dialog.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="621"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="623"/> <source>Open for Editing...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="622"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="624"/> <source>Open for Editing</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="631"/> - <source>Open a binary file for editing</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="625"/> - <source><b>Open for Editing</b><p>This opens a binary file for editing. It pops up a file selection dialog.</p></source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../HexEdit/HexEditMainWindow.py" line="633"/> + <source>Open a binary file for editing</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../HexEdit/HexEditMainWindow.py" line="627"/> + <source><b>Open for Editing</b><p>This opens a binary file for editing. It pops up a file selection dialog.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../HexEdit/HexEditMainWindow.py" line="635"/> <source><b>Open File</b><p>This opens a binary file for editing. It pops up a file selection dialog.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="639"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="641"/> <source>Open Read Only...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="640"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="642"/> <source>Open Read Only</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="643"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="645"/> <source><b>Open Read Only</b><p>This opens a binary file for viewing (i.e. in read only mode). It pops up a file selection dialog.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="655"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="658"/> <source>&File</source> <translation type="unfinished">&Fichier</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="673"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="676"/> <source>&Edit</source> <translation type="unfinished">&Edition</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="697"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="700"/> <source>Se&ttings</source> <translation type="unfinished">&Configuration</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="703"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="706"/> <source>&Help</source> <translation type="unfinished">A&ide</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="713"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="716"/> <source>File</source> <translation type="unfinished">Fichier</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="726"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="729"/> <source>Edit</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="736"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="739"/> <source>Find</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="744"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="747"/> <source>Settings</source> <translation type="unfinished">Configuration</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="749"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="752"/> <source>Help</source> <translation type="unfinished">Aide</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="787"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="790"/> <source><p>This part of the status bar displays the edit mode.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="795"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="798"/> <source><p>This part of the status bar displays the read only mode.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="763"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="766"/> <source><p>This part of the status bar displays the cursor address.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="779"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="782"/> <source><p>This part of the status bar displays the size of the binary data.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="846"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="854"/> <source>ro</source> <translation type="unfinished">ro</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="846"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="854"/> <source>rw</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="864"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="872"/> <source>Overwrite</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="864"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="872"/> <source>Insert</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="883"/> - <source>Size: {0:n}</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="923"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="932"/> <source>Open binary file in new window</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="1040"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="1049"/> <source>All Files (*)</source> <translation type="unfinished">Tous fichiers (*)</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="1160"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="1169"/> <source>eric6 Hex Editor</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="944"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="953"/> <source>The loaded file has unsaved changes.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="962"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="971"/> <source>The file '{0}' does not exist.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="969"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="978"/> <source>Cannot read file '{0}: {1}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="993"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="1002"/> <source>Open binary file</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="1050"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="1059"/> <source>Save binary file</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="1135"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="1144"/> <source><p>The file <b>{0}</b> already exists. Overwrite it?</p></source> <translation type="unfinished"><p>Le fichier <b>{0}</b>existe déjà. Écraser ?</p></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="1160"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="1169"/> <source>Cannot write file '{0}: {1}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="1166"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="1175"/> <source>File saved</source> <translation type="unfinished">Fichier enregistré</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="1135"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="1144"/> <source>Save to readable file</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="1119"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="1128"/> <source>Text Files (*.txt);;All Files (*)</source> <translation type="unfinished">Fichiers de texte (*.txt);;Tous les fichiers (*)</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="1119"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="1128"/> <source>Text Files (*.txt)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="1200"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="1209"/> <source>Untitled</source> <translation type="unfinished">SansTitre</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="1204"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="1213"/> <source>{0}[*] - {1}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="1204"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="1213"/> <source>Hex Editor</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="1261"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="1270"/> <source>About eric6 Hex Editor</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="1261"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="1270"/> <source>The eric6 Hex Editor is a simple editor component to edit binary files.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="479"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="481"/> <source>Search previous occurrence</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="496"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="498"/> <source>Replace data</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="497"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="499"/> <source><b>Replace</b><p>Search for some data and replace it. A dialog is shown to enter the data to search for and the replacement data in various formats.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="771"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="774"/> <source><p>This part of the status bar displays some selection information.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="813"/> - <source>Address: 0x{0:0{1}x}</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="835"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="843"/> <source>Selection: -</source> <comment>no selection available</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="828"/> - <source>Selection: 0x{0:0{2}x} - 0x{1:0{2}x} ({3:n} Bytes)</source> - <comment>0: start, 1: end, 2: address width, 3: selection length</comment> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="514"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="516"/> <source>Goto Offset</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="506"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="508"/> <source>&Goto Offset...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="515"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="517"/> <source><b>Goto Offset</b><p>Go to a specific address. A dialog is shown to enter the movement data.</p></source> <translation type="unfinished"></translation> </message> + <message> + <location filename="../HexEdit/HexEditMainWindow.py" line="818"/> + <source>Address: {0}</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../HexEdit/HexEditMainWindow.py" line="837"/> + <source>Selection: {0} - {1} ({2} Bytes)</source> + <comment>0: start, 1: end, 2: selection length</comment> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../HexEdit/HexEditMainWindow.py" line="891"/> + <source>Size: {0}</source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>HexEditReplaceWidget</name> @@ -65708,7 +65708,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="506"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="508"/> <source>Ctrl+G</source> <comment>Search|Goto Offset</comment> <translation type="unfinished">Ctrl+G</translation>
--- a/i18n/eric6_it.ts Sun Jan 17 15:15:15 2016 +0100 +++ b/i18n/eric6_it.ts Sat Jan 23 16:21:23 2016 +0100 @@ -10947,7 +10947,7 @@ <translation>Seleziona il riempimento di fine linea.</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="338"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="339"/> <source>Fill to end of line</source> <translation>Riempi fino a fine linea</translation> </message> @@ -10992,7 +10992,7 @@ <translation>Seleziona il font.</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="59"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="60"/> <source>Font</source> <translation>Font</translation> </message> @@ -11022,17 +11022,17 @@ <translation>Riempi tutto fino a fine linea</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="336"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="337"/> <source>Enabled</source> <translation>Abilitato</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="337"/> - <source>Disabled</source> - <translation>Disabilitato</translation> - </message> - <message> <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="338"/> + <source>Disabled</source> + <translation>Disabilitato</translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="339"/> <source>Select fill to end of line for all styles</source> <translation>Seleziona il riempimento fino a fine linea per tutti gli stili</translation> </message> @@ -11092,42 +11092,42 @@ <translation>Esporta tutti gli stili</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="446"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="447"/> <source>Export Highlighting Styles</source> <translation>Esporta stili di evidenziazione</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="478"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="479"/> <source>Import Highlighting Styles</source> <translation>Importa gli stili di evidenziazione</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="462"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="463"/> <source>Highlighting styles file (*.e4h)</source> <translation>Highlighting styles file (*.e4h)</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="446"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="447"/> <source><p>The highlighting styles could not be exported to file <b>{0}</b>.</p><p>Reason: {1}</p></source> <translation><p>Lo stile di evidenziazione non può essere esportato nel file <b>{0}</b>.</p><p>Motivo: {1}</p></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="478"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="479"/> <source><p>The highlighting styles could not be read from file <b>{0}</b>.</p><p>Reason: {1}</p></source> <translation><p>Gli stili di evidenziazione non possono essere letti dal file <b>{0}</b>.</p><p>Motivo: {1}</p></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="62"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="63"/> <source>Family and Size only</source> <translation>Solo famiglia e dimensione</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="65"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="66"/> <source>Family only</source> <translation>Solo famiglia</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="67"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="68"/> <source>Size only</source> <translation>Solo dimensione</translation> </message> @@ -12448,7 +12448,7 @@ <translation>Modo:</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="53"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="58"/> <source>Disabled</source> <translation>Disabilitato</translation> </message> @@ -12768,32 +12768,32 @@ <translation>Seleziona come evidenziare le righe a capo automatico</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="55"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="60"/> <source>Word Boundary</source> <translation>Limite della parola</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="57"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="62"/> <source>Character Boundary</source> <translation>limite del carattere</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="59"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="64"/> <source>No Indicator</source> <translation>Nessun Indocatore</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="61"/> - <source>Indicator by Text</source> - <translation>Indicatore accanto al Testo</translation> - </message> - <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="63"/> - <source>Indicator by Margin</source> - <translation>Indicatore accanto al Margine</translation> - </message> - <message> <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="66"/> + <source>Indicator by Text</source> + <translation>Indicatore accanto al Testo</translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="68"/> + <source>Indicator by Margin</source> + <translation>Indicatore accanto al Margine</translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="71"/> <source>Indicator in Line Number Margin</source> <translation>Indicatore nel Margine del numero di riga</translation> </message> @@ -16424,7 +16424,7 @@ <translation>Seleziona per emettere un'attenzione, se schede multiple stanno per essere chiuse</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/HelpAppearancePage.py" line="35"/> + <location filename="../Preferences/ConfigurationPages/HelpAppearancePage.py" line="41"/> <source>Cascading Style Sheets (*.css);;All files (*)</source> <translation type="unfinished"></translation> </message> @@ -20083,547 +20083,547 @@ <context> <name>HexEditMainWindow</name> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="152"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="154"/> <source>New Window</source> <translation type="unfinished">Nuova finestra</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="152"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="154"/> <source>New &Window</source> <translation type="unfinished">Nuova &Finestra</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="157"/> - <source>Open a binary file for editing in a new hex editor window</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../HexEdit/HexEditMainWindow.py" line="159"/> + <source>Open a binary file for editing in a new hex editor window</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../HexEdit/HexEditMainWindow.py" line="161"/> <source><b>New Window</b><p>This opens a binary file for editing in a new hex editor window.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="168"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="170"/> <source>Open</source> <translation type="unfinished">Apri</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="168"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="170"/> <source>&Open...</source> <translation type="unfinished">&Apri...</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="168"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="170"/> <source>Ctrl+O</source> <comment>File|Open</comment> <translation type="unfinished">Ctrl+O</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="184"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="186"/> <source>Save</source> <translation type="unfinished">Salva</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="184"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="186"/> <source>&Save</source> <translation type="unfinished">&Salva</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="184"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="186"/> <source>Ctrl+S</source> <comment>File|Save</comment> <translation type="unfinished">Ctrl+S</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="190"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="192"/> <source>Save the current binary file</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="191"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="193"/> <source><b>Save File</b><p>Save the contents of the hex editor window.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="198"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="200"/> <source>Save As</source> <translation type="unfinished">Salva come</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="198"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="200"/> <source>Save &As...</source> <translation type="unfinished">S&alva come...</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="198"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="200"/> <source>Shift+Ctrl+S</source> <comment>File|Save As</comment> <translation type="unfinished">Ctrl+Shift+S</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="204"/> - <source>Save the current binary data to a new file</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../HexEdit/HexEditMainWindow.py" line="206"/> + <source>Save the current binary data to a new file</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../HexEdit/HexEditMainWindow.py" line="208"/> <source><b>Save As...</b><p>Saves the current binary data to a new file.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="213"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="215"/> <source>Save As Readable</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="213"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="215"/> <source>Save As &Readable...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="217"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="219"/> <source>Save the current binary data to a new file in a readable format</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="220"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="222"/> <source><b>Save As Readable...</b><p>Saves the current binary data to a new file in a readable format.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="228"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="230"/> <source>Close</source> <translation type="unfinished">Chiudi</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="228"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="230"/> <source>&Close</source> <translation type="unfinished">&Chiudi</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="228"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="230"/> <source>Ctrl+W</source> <comment>File|Close</comment> <translation type="unfinished">Ctrl+W</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="234"/> - <source>Close the current hex editor window</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../HexEdit/HexEditMainWindow.py" line="236"/> + <source>Close the current hex editor window</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../HexEdit/HexEditMainWindow.py" line="238"/> <source><b>Close</b><p>Closes the current hex editor window.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="243"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="245"/> <source>Close All</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="243"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="245"/> <source>Close &All</source> <translation type="unfinished">Chiudi &tutti</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="247"/> - <source>Close all hex editor windows</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../HexEdit/HexEditMainWindow.py" line="249"/> + <source>Close all hex editor windows</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../HexEdit/HexEditMainWindow.py" line="251"/> <source><b>Close All</b><p>Closes all hex editor windows.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="256"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="258"/> <source>Close Others</source> <translation type="unfinished">Chiudi altri</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="260"/> - <source>Close all hex other editor windows</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../HexEdit/HexEditMainWindow.py" line="262"/> + <source>Close all hex other editor windows</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../HexEdit/HexEditMainWindow.py" line="264"/> <source><b>Close Others</b><p>Closes all other hex editor windows.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="269"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="271"/> <source>Quit</source> <translation type="unfinished">Esci</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="269"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="271"/> <source>&Quit</source> <translation type="unfinished">&Esci</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="269"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="271"/> <source>Ctrl+Q</source> <comment>File|Quit</comment> <translation type="unfinished">Ctrl+Q</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="275"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="277"/> <source>Quit the hex editor</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="276"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="278"/> <source><b>Quit</b><p>Quit the hex editor.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="288"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="290"/> <source>Undo</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="288"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="290"/> <source>&Undo</source> <translation type="unfinished">&Undo</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="288"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="290"/> <source>Ctrl+Z</source> <comment>Edit|Undo</comment> <translation type="unfinished">Ctrl+Z</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="288"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="290"/> <source>Alt+Backspace</source> <comment>Edit|Undo</comment> <translation type="unfinished">Alt+Backspace</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="295"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="297"/> <source>Undo the last change</source> <translation type="unfinished">Annulla l'ultima modifica</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="296"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="298"/> <source><b>Undo</b><p>Undo the last change done.</p></source> <translation type="unfinished"><b>Annulla</b><p>Annulla l'ultima modifica fatta.</p></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="303"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="305"/> <source>Redo</source> <translation type="unfinished">Rifai</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="303"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="305"/> <source>&Redo</source> <translation type="unfinished">&Rifai</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="303"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="305"/> <source>Ctrl+Shift+Z</source> <comment>Edit|Redo</comment> <translation type="unfinished">Ctrl+Shift+Z</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="309"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="311"/> <source>Redo the last change</source> <translation type="unfinished">Rifai ultima modifica</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="310"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="312"/> <source><b>Redo</b><p>Redo the last change done.</p></source> <translation type="unfinished"><b>Rifai</b><p>Rifai l'ultima modifica fatta.</p></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="323"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="325"/> <source>Revert to last saved state</source> <translation type="unfinished">Ritorna all'ultimo stato salvato</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="317"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="319"/> <source>Re&vert to last saved state</source> <translation type="unfinished">Ritorna all'ultimo stato sal&vato</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="317"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="319"/> <source>Ctrl+Y</source> <comment>Edit|Revert</comment> <translation type="unfinished">Ctrl+Y</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="324"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="326"/> <source><b>Revert to last saved state</b><p>Undo all changes up to the last saved state of the editor.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="332"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="334"/> <source>Cut</source> <translation type="unfinished">Taglia</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="332"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="334"/> <source>Cu&t</source> <translation type="unfinished">&Taglia</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="332"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="334"/> <source>Ctrl+X</source> <comment>Edit|Cut</comment> <translation type="unfinished">Ctrl+X</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="332"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="334"/> <source>Shift+Del</source> <comment>Edit|Cut</comment> <translation type="unfinished">Shift+Del</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="339"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="341"/> <source>Cut the selection</source> <translation type="unfinished">Taglia la selezione</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="340"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="342"/> <source><b>Cut</b><p>Cut the selected binary area to the clipboard.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="347"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="349"/> <source>Copy</source> <translation type="unfinished">Copia</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="347"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="349"/> <source>&Copy</source> <translation type="unfinished">&Copia</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="347"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="349"/> <source>Ctrl+C</source> <comment>Edit|Copy</comment> <translation type="unfinished">Ctrl+C</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="347"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="349"/> <source>Ctrl+Ins</source> <comment>Edit|Copy</comment> <translation type="unfinished">Ctrl+Ins</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="354"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="356"/> <source>Copy the selection</source> <translation type="unfinished">Copia la selezione</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="355"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="357"/> <source><b>Copy</b><p>Copy the selected binary area to the clipboard.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="362"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="364"/> <source>Paste</source> <translation type="unfinished">Incolla</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="362"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="364"/> <source>&Paste</source> <translation type="unfinished">&Incolla</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="362"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="364"/> <source>Ctrl+V</source> <comment>Edit|Paste</comment> <translation type="unfinished">Ctrl+V</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="362"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="364"/> <source>Shift+Ins</source> <comment>Edit|Paste</comment> <translation type="unfinished">Shift+Ins</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="369"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="371"/> <source>Paste the clipboard contents</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="370"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="372"/> <source><b>Paste</b><p>Paste the clipboard contents.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="377"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="379"/> <source>Select All</source> <translation type="unfinished">Seleziona tutti</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="377"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="379"/> <source>&Select All</source> <translation type="unfinished">&Seleziona tutto</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="377"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="379"/> <source>Ctrl+A</source> <comment>Edit|Select All</comment> <translation type="unfinished">Ctrl+A</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="384"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="386"/> <source>Select the complete binary data</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="386"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="388"/> <source><b>Select All</b><p>Selects the complete binary data.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="393"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="395"/> <source>Deselect all</source> <translation type="unfinished">Deseleziona tutti</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="393"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="395"/> <source>&Deselect all</source> <translation type="unfinished">&Deseleziona tutti</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="393"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="395"/> <source>Alt+Ctrl+A</source> <comment>Edit|Deselect all</comment> <translation type="unfinished">Alt+Ctrl+A</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="399"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="401"/> <source>Deselect all binary data</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="400"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="402"/> <source><b>Deselect All</b><p>Deselect all all binary data.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="407"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="409"/> <source>Save Selection Readable</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="407"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="409"/> <source>Save Selection Readable...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="411"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="413"/> <source>Save the binary data of the current selection to a file in a readable format</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="414"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="416"/> <source><b>Save Selection Readable...</b><p>Saves the binary data of the current selection to a file in a readable format.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="423"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="425"/> <source>Set Read Only</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="427"/> - <source>Change the edit mode to read only</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../HexEdit/HexEditMainWindow.py" line="429"/> + <source>Change the edit mode to read only</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../HexEdit/HexEditMainWindow.py" line="431"/> <source><b>Set Read Only</b><p>This changes the edit mode to read only (i.e. to view mode).</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="439"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="441"/> <source>Search</source> <translation type="unfinished">Ricerca</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="439"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="441"/> <source>&Search...</source> <translation type="unfinished">&Ricerca...</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="439"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="441"/> <source>Ctrl+F</source> <comment>Search|Search</comment> <translation type="unfinished">Ctrl+F</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="446"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="448"/> <source>Search for data</source> <translation type="unfinished">Cerca per un testo</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="447"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="449"/> <source><b>Search</b><p>Search for some data. A dialog is shown to enter the data to search for in various formats.</p></source> <translation type="unfinished"><b>Cerca</b><p>Cerca per del testo nell'editor corrente. Viene mostrato in dialogo per inserire il testo cercato e le opzioni per la ricerca.</p></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="455"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="457"/> <source>Search next</source> <translation type="unfinished">Cerca seguente</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="455"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="457"/> <source>Search &next</source> <translation type="unfinished">Cerca segue&nte</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="455"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="457"/> <source>F3</source> <comment>Search|Search next</comment> <translation type="unfinished">F3</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="462"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="464"/> <source>Search next occurrence</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="464"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="466"/> <source><b>Search next</b><p>Search the next occurrence of some data. The previously entered search data are reused.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="472"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="474"/> <source>Search previous</source> <translation type="unfinished">Cerca precedente</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="472"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="474"/> <source>Search &previous</source> <translation type="unfinished">Cerca &precedente</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="472"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="474"/> <source>Shift+F3</source> <comment>Search|Search previous</comment> <translation type="unfinished">Shift+F3</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="481"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="483"/> <source><b>Search previous</b><p>Search the previous occurrence of some data. The previously entered search data are reused.</p></source> <translation type="unfinished"><b>Trova precedente</b><p>Trova la precedente occorrenza di testo nell'editor corrente. Il testo inserito precedentemente e opzioni verranno riutilizzate.</p></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="490"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="492"/> <source>Replace</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="490"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="492"/> <source>&Replace...</source> <translation type="unfinished">&Rimpiazza...</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="490"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="492"/> <source>Ctrl+R</source> <comment>Search|Replace</comment> <translation type="unfinished">Ctrl+R</translation> @@ -20639,382 +20639,382 @@ <translation type="obsolete"><b>Sostituisci</b><p>Cerca per del testo nell'editor corrente e lo sostituisce. Viene mostrato in dialogo per inserire il testo cercato, il testo sostituto e le opzioni per la ricerca e la sostituzione.</p></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="544"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="546"/> <source>About</source> <translation type="unfinished">About</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="544"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="546"/> <source>&About</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="548"/> - <source>Display information about this software</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../HexEdit/HexEditMainWindow.py" line="550"/> + <source>Display information about this software</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../HexEdit/HexEditMainWindow.py" line="552"/> <source><b>About</b><p>Display some information about this software.</p></source> <translation type="unfinished"><b>About</b><p>Mostra alcune informazioni su questo software.</p></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="556"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="558"/> <source>About Qt</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="556"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="558"/> <source>About &Qt</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="560"/> - <source>Display information about the Qt toolkit</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../HexEdit/HexEditMainWindow.py" line="562"/> + <source>Display information about the Qt toolkit</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../HexEdit/HexEditMainWindow.py" line="564"/> <source><b>About Qt</b><p>Display some information about the Qt toolkit.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="569"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="571"/> <source>What's This?</source> <translation type="unfinished">Cos'è questo ?</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="569"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="571"/> <source>&What's This?</source> <translation type="unfinished">C&os'è Questo ?</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="569"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="571"/> <source>Shift+F1</source> <comment>Help|What's This?'</comment> <translation type="unfinished">Shift+F1</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="575"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="577"/> <source>Context sensitive help</source> <translation type="unfinished">Help sensibile al contesto</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="576"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="578"/> <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="../HexEdit/HexEditMainWindow.py" line="591"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="593"/> <source>Preferences</source> <translation type="unfinished">Preferenze</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="591"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="593"/> <source>&Preferences...</source> <translation type="unfinished">&Preferenze...</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="596"/> - <source>Set the prefered configuration</source> - <translation type="unfinished">Imposta la configurazione preferita</translation> - </message> - <message> <location filename="../HexEdit/HexEditMainWindow.py" line="598"/> + <source>Set the prefered configuration</source> + <translation type="unfinished">Imposta la configurazione preferita</translation> + </message> + <message> + <location filename="../HexEdit/HexEditMainWindow.py" line="600"/> <source><b>Preferences</b><p>Set the configuration items of the application with your prefered values.</p></source> <translation type="unfinished"><b>Preferenze</b><p>Imposta i valori di configurazione dell'applicazione ai valori preferiti</p></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="641"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="643"/> <source>Open a binary file for viewing</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="615"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="617"/> <source><b>Open File</b><p>This opens a binary file for viewing (i.e. in read only mode). It pops up a file selection dialog.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="621"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="623"/> <source>Open for Editing...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="622"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="624"/> <source>Open for Editing</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="631"/> - <source>Open a binary file for editing</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="625"/> - <source><b>Open for Editing</b><p>This opens a binary file for editing. It pops up a file selection dialog.</p></source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../HexEdit/HexEditMainWindow.py" line="633"/> + <source>Open a binary file for editing</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../HexEdit/HexEditMainWindow.py" line="627"/> + <source><b>Open for Editing</b><p>This opens a binary file for editing. It pops up a file selection dialog.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../HexEdit/HexEditMainWindow.py" line="635"/> <source><b>Open File</b><p>This opens a binary file for editing. It pops up a file selection dialog.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="639"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="641"/> <source>Open Read Only...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="640"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="642"/> <source>Open Read Only</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="643"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="645"/> <source><b>Open Read Only</b><p>This opens a binary file for viewing (i.e. in read only mode). It pops up a file selection dialog.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="655"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="658"/> <source>&File</source> <translation type="unfinished">&File</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="673"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="676"/> <source>&Edit</source> <translation type="unfinished">&Edita</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="697"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="700"/> <source>Se&ttings</source> <translation type="unfinished">Impos&tazioni</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="703"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="706"/> <source>&Help</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="713"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="716"/> <source>File</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="726"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="729"/> <source>Edit</source> <translation type="unfinished">Modifica</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="736"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="739"/> <source>Find</source> <translation type="unfinished">Trova</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="744"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="747"/> <source>Settings</source> <translation type="unfinished">Impostazioni</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="749"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="752"/> <source>Help</source> <translation type="unfinished">Aiuto</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="787"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="790"/> <source><p>This part of the status bar displays the edit mode.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="795"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="798"/> <source><p>This part of the status bar displays the read only mode.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="763"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="766"/> <source><p>This part of the status bar displays the cursor address.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="779"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="782"/> <source><p>This part of the status bar displays the size of the binary data.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="846"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="854"/> <source>ro</source> <translation type="unfinished">ro</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="846"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="854"/> <source>rw</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="864"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="872"/> <source>Overwrite</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="864"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="872"/> <source>Insert</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="883"/> - <source>Size: {0:n}</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="923"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="932"/> <source>Open binary file in new window</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="1040"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="1049"/> <source>All Files (*)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="1160"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="1169"/> <source>eric6 Hex Editor</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="944"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="953"/> <source>The loaded file has unsaved changes.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="962"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="971"/> <source>The file '{0}' does not exist.</source> <translation type="unfinished">Il file {0} non esiste.</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="969"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="978"/> <source>Cannot read file '{0}: {1}.</source> <translation type="unfinished">Impossibile leggere il file {0}: {1}.</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="993"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="1002"/> <source>Open binary file</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="1050"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="1059"/> <source>Save binary file</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="1135"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="1144"/> <source><p>The file <b>{0}</b> already exists. Overwrite it?</p></source> <translation type="unfinished"><p>Il file <b>{0}</b> esiste già. Sovrascriverlo ?</p></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="1160"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="1169"/> <source>Cannot write file '{0}: {1}.</source> <translation type="unfinished">Impossibile scrivere il file {0}: {1}.</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="1166"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="1175"/> <source>File saved</source> <translation type="unfinished">File salvato</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="1135"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="1144"/> <source>Save to readable file</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="1119"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="1128"/> <source>Text Files (*.txt);;All Files (*)</source> <translation type="unfinished">File Testo(*.txt);;Tutti i file (*)</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="1119"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="1128"/> <source>Text Files (*.txt)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="1200"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="1209"/> <source>Untitled</source> <translation type="unfinished">Senza titolo</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="1204"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="1213"/> <source>{0}[*] - {1}</source> <translation type="unfinished">{0}[*] - {1}</translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="1204"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="1213"/> <source>Hex Editor</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="1261"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="1270"/> <source>About eric6 Hex Editor</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="1261"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="1270"/> <source>The eric6 Hex Editor is a simple editor component to edit binary files.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="479"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="481"/> <source>Search previous occurrence</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../HexEdit/HexEditMainWindow.py" line="496"/> + <location filename="../HexEdit/HexEditMainWindow.py" line="498"/>