Fri, 14 Oct 2022 17:02:09 +0200
Editor
- added a configuration option to reject the loading of a file that exceeds the configured size
- opening a file that is not a text file will be rejected
--- a/docs/changelog Fri Oct 14 14:46:40 2022 +0200 +++ b/docs/changelog Fri Oct 14 17:02:09 2022 +0200 @@ -7,6 +7,10 @@ to see its effect -- added the capability to add a positive ('Show Only') or negative ('Don't Show') variables filter to the global and local variables viewers +- Editor + -- added a configuration option to reject the loading of a file that exceeds the + configured size + -- opening a file that is not a text file will be rejected - Project -- refined the embedded environment handling - Scripts
--- a/src/eric7/Preferences/ConfigurationPages/EditorFilePage.py Fri Oct 14 14:46:40 2022 +0200 +++ b/src/eric7/Preferences/ConfigurationPages/EditorFilePage.py Fri Oct 14 17:02:09 2022 +0200 @@ -63,6 +63,7 @@ Preferences.getEditor("AdvancedEncodingDetection") ) self.warnFilesizeSpinBox.setValue(Preferences.getEditor("WarnFilesize")) + self.rejectFilesizeSpinBox.setValue(Preferences.getEditor("RejectFilesize")) self.clearBreakpointsCheckBox.setChecked( Preferences.getEditor("ClearBreaksOnClose") ) @@ -154,6 +155,7 @@ "AdvancedEncodingDetection", self.advEncodingCheckBox.isChecked() ) Preferences.setEditor("WarnFilesize", self.warnFilesizeSpinBox.value()) + Preferences.setEditor("RejectFilesize", self.rejectFilesizeSpinBox.value()) Preferences.setEditor( "ClearBreaksOnClose", self.clearBreakpointsCheckBox.isChecked() )
--- a/src/eric7/Preferences/ConfigurationPages/EditorFilePage.ui Fri Oct 14 14:46:40 2022 +0200 +++ b/src/eric7/Preferences/ConfigurationPages/EditorFilePage.ui Fri Oct 14 17:02:09 2022 +0200 @@ -7,10 +7,10 @@ <x>0</x> <y>0</y> <width>600</width> - <height>1621</height> + <height>1696</height> </rect> </property> - <layout class="QVBoxLayout" name="verticalLayout_5"> + <layout class="QVBoxLayout" name="verticalLayout_6"> <item> <widget class="QLabel" name="headerLabel"> <property name="text"> @@ -36,7 +36,7 @@ <property name="title"> <string>Open && Close</string> </property> - <layout class="QVBoxLayout"> + <layout class="QVBoxLayout" name="verticalLayout_5"> <item> <layout class="QHBoxLayout"> <item> @@ -62,15 +62,15 @@ </layout> </item> <item> - <layout class="QHBoxLayout"> - <item> + <layout class="QGridLayout" name="gridLayout_6"> + <item row="0" column="0"> <widget class="QLabel" name="label"> <property name="text"> <string>Warn, if file is greater than</string> </property> </widget> </item> - <item> + <item row="0" column="1"> <widget class="QSpinBox" name="warnFilesizeSpinBox"> <property name="toolTip"> <string>Enter the filesize, a warning dialog should be shown.</string> @@ -92,19 +92,48 @@ </property> </widget> </item> - <item> - <spacer> + <item row="0" column="2"> + <spacer name="horizontalSpacer_3"> <property name="orientation"> <enum>Qt::Horizontal</enum> </property> <property name="sizeHint" stdset="0"> <size> - <width>40</width> - <height>20</height> + <width>32</width> + <height>17</height> </size> </property> </spacer> </item> + <item row="1" column="0"> + <widget class="QLabel" name="label_13"> + <property name="text"> + <string>Reject, if file is greater than</string> + </property> + </widget> + </item> + <item row="1" column="1"> + <widget class="QSpinBox" name="rejectFilesizeSpinBox"> + <property name="toolTip"> + <string>Enter the filesize, opening a file should be rejected.</string> + </property> + <property name="suffix"> + <string> KB</string> + </property> + <property name="minimum"> + <number>1</number> + </property> + <property name="maximum"> + <number>16384</number> + </property> + <property name="singleStep"> + <number>16</number> + </property> + <property name="value"> + <number>4096</number> + </property> + </widget> + </item> </layout> </item> </layout> @@ -747,6 +776,7 @@ <tabstop>clearBreakpointsCheckBox</tabstop> <tabstop>automaticReopenCheckBox</tabstop> <tabstop>warnFilesizeSpinBox</tabstop> + <tabstop>rejectFilesizeSpinBox</tabstop> <tabstop>lfRadioButton</tabstop> <tabstop>crRadioButton</tabstop> <tabstop>crlfRadioButton</tabstop> @@ -770,10 +800,10 @@ <tabstop>previewMarkdownExtensionsEdit</tabstop> <tabstop>previewMarkdownHTMLFormatComboBox</tabstop> <tabstop>previewMarkdownNLtoBreakCheckBox</tabstop> + <tabstop>previewMarkdownPyMdownCheckBox</tabstop> + <tabstop>previewMarkdownPyMdownInstallPushButton</tabstop> <tabstop>previewMarkdownMathJaxCheckBox</tabstop> <tabstop>previewMarkdownMermaidCheckBox</tabstop> - <tabstop>previewMarkdownPyMdownCheckBox</tabstop> - <tabstop>previewMarkdownPyMdownInstallPushButton</tabstop> <tabstop>previewRestExtensionsEdit</tabstop> <tabstop>previewRestSphinxCheckBox</tabstop> <tabstop>previewRestDocutilsHTMLFormatComboBox</tabstop>
--- a/src/eric7/Preferences/__init__.py Fri Oct 14 14:46:40 2022 +0200 +++ b/src/eric7/Preferences/__init__.py Fri Oct 14 17:02:09 2022 +0200 @@ -393,7 +393,8 @@ "WrapVisualFlag": QsciScintilla.WrapVisualFlag.WrapFlagNone, "WrapIndentMode": QsciScintilla.WrapIndentMode.WrapIndentFixed, "WrapStartIndent": 0, - "WarnFilesize": 512, + "WarnFilesize": 1024, + "RejectFilesize": 4096, "ClearBreaksOnClose": True, "StripTrailingWhitespace": False, "InsertFinalNewline": True, @@ -2197,6 +2198,7 @@ "TabWidth", "IndentWidth", "WarnFilesize", + "RejectFilesize", "EdgeColumn", "CaretWidth", "CaretLineFrameWidth",
--- a/src/eric7/QScintilla/Editor.py Fri Oct 14 14:46:40 2022 +0200 +++ b/src/eric7/QScintilla/Editor.py Fri Oct 14 17:02:09 2022 +0200 @@ -398,24 +398,47 @@ self.isResourcesFile = False if editor is None: if self.fileName: - if ( - pathlib.Path(self.fileName).stat().st_size // 1024 - ) > Preferences.getEditor("WarnFilesize"): + if not Utilities.MimeTypes.isTextFile(self.fileName): + EricMessageBox.warning( + None, + self.tr("Open File"), + self.tr( + "<p>The file <b>{0}</b> is not a text file. It will not be" + " opened!</p>" + ).format(self.fileName) + ) + raise OSError() + + fileSizeKB = pathlib.Path(self.fileName).stat().st_size // 1024 + if fileSizeKB > Preferences.getEditor("RejectFilesize"): + EricMessageBox.warning( + None, + self.tr("Open File"), + self.tr( + "<p>The size of the file <b>{0}</b> is <b>{1} KB</b> and" + " exceeds the configured limit of <b>{2} KB</b>. It will" + " not be opened!</p>" + ).format( + self.fileName, + fileSizeKB, + Preferences.getEditor("RejectFilesize"), + ) + ) + raise OSError() + elif fileSizeKB > Preferences.getEditor("WarnFilesize"): res = EricMessageBox.yesNo( - self, + None, self.tr("Open File"), self.tr( """<p>The size of the file <b>{0}</b>""" """ is <b>{1} KB</b>.""" """ Do you really want to load it?</p>""" - ).format( - self.fileName, - pathlib.Path(self.fileName).stat().st_size // 1024, - ), + ).format(self.fileName, fileSizeKB), icon=EricMessageBox.Warning, ) if not res: raise OSError() + self.readFile(self.fileName, True) self.__bindLexer(self.fileName) self.__bindCompleter(self.fileName)
--- a/src/eric7/i18n/eric7_cs.ts Fri Oct 14 14:46:40 2022 +0200 +++ b/src/eric7/i18n/eric7_cs.ts Fri Oct 14 17:02:09 2022 +0200 @@ -1810,17 +1810,17 @@ <translation type="unfinished" /> </message> <message> - <location filename="../Utilities/BackgroundService.py" line="488" /> + <location filename="../Utilities/BackgroundService.py" line="487" /> <source>Eric's background client disconnected because of an unknown reason.</source> <translation type="unfinished" /> </message> <message> + <location filename="../Utilities/BackgroundService.py" line="496" /> + <source>Background client disconnected.</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../Utilities/BackgroundService.py" line="497" /> - <source>Background client disconnected.</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Utilities/BackgroundService.py" line="498" /> <source>The background client for <b>{0}</b> disconnected because of an unknown reason.<br>Should it be restarted?</source> <translation type="unfinished" /> </message> @@ -8870,13 +8870,13 @@ <translation type="unfinished" /> </message> <message> - <location filename="../Debugger/DebugViewer.py" line="754" /> + <location filename="../Debugger/DebugViewer.py" line="756" /> <source><p>Debugger with ID <b>{0}</b> has been connected.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Debugger/DebugViewer.py" line="997" /> - <location filename="../Debugger/DebugViewer.py" line="869" /> + <location filename="../Debugger/DebugViewer.py" line="999" /> + <location filename="../Debugger/DebugViewer.py" line="871" /> <source>unknown state ({0})</source> <translation type="unfinished" /> </message> @@ -9558,7 +9558,7 @@ <translation>Nenastavovat kódování debug klienta</translation> </message> <message> - <location filename="../Project/DebuggerPropertiesDialog.py" line="127" /> + <location filename="../Project/DebuggerPropertiesDialog.py" line="133" /> <source>All Files (*)</source> <translation>Všechny soubory (*)</translation> </message> @@ -11133,960 +11133,972 @@ <context> <name>Editor</name> <message> - <location filename="../QScintilla/Editor.py" line="3245" /> - <location filename="../QScintilla/Editor.py" line="406" /> + <location filename="../QScintilla/Editor.py" line="3268" /> + <location filename="../QScintilla/Editor.py" line="431" /> + <location filename="../QScintilla/Editor.py" line="416" /> + <location filename="../QScintilla/Editor.py" line="404" /> <source>Open File</source> <translation>Otevřít soubor</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="407" /> + <location filename="../QScintilla/Editor.py" line="405" /> + <source><p>The file <b>{0}</b> is not a text file. It will not be opened!</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="417" /> + <source><p>The size of the file <b>{0}</b> is <b>{1} KB</b> and exceeds the configured limit of <b>{2} KB</b>. It will not be opened!</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="432" /> <source><p>The size of the file <b>{0}</b> is <b>{1} KB</b>. Do you really want to load it?</p></source> <translation><p>Velikost souboru <b>{0}</b> je <b>{1} KB</b>. Opravdu jej chcete načíst?</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="505" /> + <location filename="../QScintilla/Editor.py" line="528" /> <source><b>A Source Editor Window</b><p>This window is used to display and edit a source file. You can open as many of these as you like. The name of the file is displayed in the window's titlebar.</p><p>In order to set breakpoints just click in the space between the line numbers and the fold markers. Via the context menu of the margins they may be edited.</p><p>In order to set bookmarks just Shift click in the space between the line numbers and the fold markers.</p><p>These actions can be reversed via the context menu.</p><p>Ctrl clicking on a syntax error marker shows some info about this error.</p></source> <translation><b>Okno editoru zdrojového kódu</b><p>V tomto okně se zobrazuje a edituje soubor se zdrojovým kódem. Můžete otevřít oken podle libosti. Jméno souboru se zobrazuje v titlebaru okna.</p><p>Kliknutím do prostoru mezi čísly řádku a značkami skládání nastavíte breakpoint. Přes kontextové menu je pak lze editovat.</p><p>Záložka se vkládá kliknutím na stejné místo se stisknutou klávesou Shift.</p><p>Tyto akce mohou být navráceny zpět i opětovným kliknutím nebo přes kontextové menu.</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="833" /> + <location filename="../QScintilla/Editor.py" line="856" /> <source>Undo</source> <translation>Vrátit</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="836" /> + <location filename="../QScintilla/Editor.py" line="859" /> <source>Redo</source> <translation>Znovu použít</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="839" /> + <location filename="../QScintilla/Editor.py" line="862" /> <source>Revert to last saved state</source> <translation>Vrátit k poslednímu uloženému stavu</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="843" /> + <location filename="../QScintilla/Editor.py" line="866" /> <source>Cut</source> <translation>Vyjmout</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="846" /> + <location filename="../QScintilla/Editor.py" line="869" /> <source>Copy</source> <translation>Kopírovat</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="849" /> + <location filename="../QScintilla/Editor.py" line="872" /> <source>Paste</source> <translation>Vložit</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="855" /> - <source>Indent</source> - <translation>Odsadit</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="860" /> - <source>Unindent</source> - <translation>Zrušit odsazení</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="865" /> - <source>Comment</source> - <translation>Vytvořit komentář</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="870" /> - <source>Uncomment</source> - <translation>Zrušit komentář</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="8934" /> - <location filename="../QScintilla/Editor.py" line="875" /> - <source>Generate Docstring</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/Editor.py" line="878" /> + <source>Indent</source> + <translation>Odsadit</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="883" /> + <source>Unindent</source> + <translation>Zrušit odsazení</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="888" /> + <source>Comment</source> + <translation>Vytvořit komentář</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="893" /> + <source>Uncomment</source> + <translation>Zrušit komentář</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="8957" /> + <location filename="../QScintilla/Editor.py" line="898" /> + <source>Generate Docstring</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="901" /> <source>Select to brace</source> <translation>Vybrat až po závorku</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="879" /> + <location filename="../QScintilla/Editor.py" line="902" /> <source>Select all</source> <translation>Vybrat vše</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="880" /> + <location filename="../QScintilla/Editor.py" line="903" /> <source>Deselect all</source> <translation>Zrušit celý výběr</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="882" /> + <location filename="../QScintilla/Editor.py" line="905" /> <source>Execute Selection In Console</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="894" /> + <location filename="../QScintilla/Editor.py" line="917" /> <source>Use Monospaced Font</source> <translation>Použít neporoporcionální font</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="899" /> + <location filename="../QScintilla/Editor.py" line="922" /> <source>Autosave enabled</source> <translation>Zapnout autosave</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="904" /> + <location filename="../QScintilla/Editor.py" line="927" /> <source>Typing aids enabled</source> <translation>Pomůcky při psaní zapnuty</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="912" /> + <location filename="../QScintilla/Editor.py" line="935" /> <source>Automatic Completion enabled</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="921" /> - <source>Calltip</source> - <translation>Rychlé tipy</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="924" /> - <source>Code Info</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="939" /> - <source>New Document View</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/Editor.py" line="944" /> + <source>Calltip</source> + <translation>Rychlé tipy</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="947" /> + <source>Code Info</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="962" /> + <source>New Document View</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="967" /> <source>New Document View (with new split)</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="952" /> + <location filename="../QScintilla/Editor.py" line="975" /> <source>Save</source> <translation>Uložit</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="956" /> + <location filename="../QScintilla/Editor.py" line="979" /> <source>Save As...</source> <translation>Uložit jako...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="961" /> + <location filename="../QScintilla/Editor.py" line="984" /> <source>Save Copy...</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="983" /> - <location filename="../QScintilla/Editor.py" line="980" /> + <location filename="../QScintilla/Editor.py" line="1006" /> + <location filename="../QScintilla/Editor.py" line="1003" /> <source>Complete</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="987" /> + <location filename="../QScintilla/Editor.py" line="1010" /> <source>Clear Completions Cache</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="990" /> + <location filename="../QScintilla/Editor.py" line="1013" /> <source>Complete from Document</source> <translation type="unfinished">z dokumentu</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="992" /> + <location filename="../QScintilla/Editor.py" line="1015" /> <source>Complete from APIs</source> <translation type="unfinished">z API</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="995" /> + <location filename="../QScintilla/Editor.py" line="1018" /> <source>Complete from Document and APIs</source> <translation type="unfinished">z dokumentu a API</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1009" /> + <location filename="../QScintilla/Editor.py" line="1032" /> <source>Check</source> <translation>Zkontrolovat</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1020" /> + <location filename="../QScintilla/Editor.py" line="1043" /> <source>Code Formatting</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1023" /> - <source>Format Code</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1027" /> - <source>Check Formatting</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1031" /> - <source>Formatting Diff</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/Editor.py" line="1046" /> + <source>Format Code</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1050" /> + <source>Check Formatting</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1054" /> + <source>Formatting Diff</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1069" /> <source>Tools</source> <translation type="unfinished">Nástroje</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1057" /> + <location filename="../QScintilla/Editor.py" line="1080" /> <source>Show</source> <translation>Zobrazit</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1059" /> + <location filename="../QScintilla/Editor.py" line="1082" /> <source>Code metrics...</source> <translation>Metrika kódu...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1061" /> + <location filename="../QScintilla/Editor.py" line="1084" /> <source>Code coverage...</source> <translation>Pokrytí kódu...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1064" /> - <source>Show code coverage annotations</source> - <translation>Zobrazit poznámky pokrytí kódu</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1067" /> - <source>Hide code coverage annotations</source> - <translation>Skrýt poznámky pokrytí kódu</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1071" /> - <source>Profile data...</source> - <translation>Profilovat data...</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1085" /> - <source>Diagrams</source> - <translation>Diagramy</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="1087" /> + <source>Show code coverage annotations</source> + <translation>Zobrazit poznámky pokrytí kódu</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1090" /> + <source>Hide code coverage annotations</source> + <translation>Skrýt poznámky pokrytí kódu</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1094" /> + <source>Profile data...</source> + <translation>Profilovat data...</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1108" /> + <source>Diagrams</source> + <translation>Diagramy</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1110" /> <source>Class Diagram...</source> <translation>Diagram třídy...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1088" /> - <source>Package Diagram...</source> - <translation>Diagram balíčku...</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1089" /> - <source>Imports Diagram...</source> - <translation>Diagram importů...</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1091" /> - <source>Application Diagram...</source> - <translation>Diagram aplikace...</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1096" /> - <source>Load Diagram...</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/Editor.py" line="1111" /> + <source>Package Diagram...</source> + <translation>Diagram balíčku...</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1112" /> + <source>Imports Diagram...</source> + <translation>Diagram importů...</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1114" /> + <source>Application Diagram...</source> + <translation>Diagram aplikace...</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1119" /> + <source>Load Diagram...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1134" /> <source>Languages</source> <translation>Jazyky</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1115" /> + <location filename="../QScintilla/Editor.py" line="1138" /> <source>Text</source> <translation type="unfinished">Text</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1140" /> + <location filename="../QScintilla/Editor.py" line="1163" /> <source>Guessed</source> <translation>Odhadem</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1471" /> - <location filename="../QScintilla/Editor.py" line="1144" /> + <location filename="../QScintilla/Editor.py" line="1494" /> + <location filename="../QScintilla/Editor.py" line="1167" /> <source>Alternatives</source> <translation>Alternativy</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1161" /> - <source>Encodings</source> - <translation>Kódování</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="1184" /> + <source>Encodings</source> + <translation>Kódování</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1207" /> <source>Re-Open With Encoding</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1204" /> + <location filename="../QScintilla/Editor.py" line="1227" /> <source>End-of-Line Type</source> <translation>Typ Konec-řádku</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1208" /> + <location filename="../QScintilla/Editor.py" line="1231" /> <source>Unix</source> <translation>Unix</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1214" /> + <location filename="../QScintilla/Editor.py" line="1237" /> <source>Windows</source> <translation /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1220" /> + <location filename="../QScintilla/Editor.py" line="1243" /> <source>Macintosh</source> <translation>Macintosh</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1238" /> + <location filename="../QScintilla/Editor.py" line="1261" /> <source>Spelling</source> <translation type="unfinished">Pravopis</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8052" /> - <location filename="../QScintilla/Editor.py" line="1246" /> + <location filename="../QScintilla/Editor.py" line="8075" /> + <location filename="../QScintilla/Editor.py" line="1269" /> <source>Check spelling...</source> <translation>Zatrhnout kontrolu...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1251" /> + <location filename="../QScintilla/Editor.py" line="1274" /> <source>Check spelling of selection...</source> <translation>Zatrhnout výběr kontroly...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1255" /> + <location filename="../QScintilla/Editor.py" line="1278" /> <source>Remove from dictionary</source> <translation>Odebrat ze slovníku</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1272" /> + <location filename="../QScintilla/Editor.py" line="1295" /> <source>Spell Check Languages</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1276" /> + <location filename="../QScintilla/Editor.py" line="1299" /> <source>No Language</source> <translation>Žádný jazyk</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1303" /> + <location filename="../QScintilla/Editor.py" line="1326" /> <source>Toggle bookmark</source> <translation>Přepnout záložku</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1305" /> - <source>Next bookmark</source> - <translation>Následující záložka</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1308" /> - <source>Previous bookmark</source> - <translation>Předchozí záložka</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1311" /> - <source>Clear all bookmarks</source> - <translation>Zrušit všechny záložky</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1322" /> - <source>Toggle breakpoint</source> - <translation>Přepnout breakpoint</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1325" /> - <source>Toggle temporary breakpoint</source> - <translation>Přepnout dočasný breakpoint</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="1328" /> - <source>Edit breakpoint...</source> - <translation>Editovat breakpoint...</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="5754" /> + <source>Next bookmark</source> + <translation>Následující záložka</translation> + </message> + <message> <location filename="../QScintilla/Editor.py" line="1331" /> - <source>Enable breakpoint</source> - <translation>Aktivovat breakpoint</translation> + <source>Previous bookmark</source> + <translation>Předchozí záložka</translation> </message> <message> <location filename="../QScintilla/Editor.py" line="1334" /> - <source>Next breakpoint</source> - <translation>Následující breakpoint</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1337" /> - <source>Previous breakpoint</source> - <translation>Předchozí breakpoint</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1340" /> - <source>Clear all breakpoints</source> - <translation>Zrušit všechny breakpointy</translation> + <source>Clear all bookmarks</source> + <translation>Zrušit všechny záložky</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1345" /> + <source>Toggle breakpoint</source> + <translation>Přepnout breakpoint</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1348" /> + <source>Toggle temporary breakpoint</source> + <translation>Přepnout dočasný breakpoint</translation> </message> <message> <location filename="../QScintilla/Editor.py" line="1351" /> - <source>Toggle all folds</source> - <translation type="unfinished">Složit/rozložit všechna skládání</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1356" /> - <source>Toggle all folds (including children)</source> - <translation type="unfinished">Složit/rozložit všechna skládání (i s podsložkami)</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1359" /> - <source>Toggle current fold</source> - <translation type="unfinished">Složit/rozložit aktuální složený blok</translation> + <source>Edit breakpoint...</source> + <translation>Editovat breakpoint...</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="5777" /> + <location filename="../QScintilla/Editor.py" line="1354" /> + <source>Enable breakpoint</source> + <translation>Aktivovat breakpoint</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1357" /> + <source>Next breakpoint</source> + <translation>Následující breakpoint</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1360" /> + <source>Previous breakpoint</source> + <translation>Předchozí breakpoint</translation> </message> <message> <location filename="../QScintilla/Editor.py" line="1363" /> - <source>Expand (including children)</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1367" /> - <source>Collapse (including children)</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1372" /> - <source>Clear all folds</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1383" /> - <source>Goto syntax error</source> - <translation>Jít na chybu syntaxe</translation> + <source>Clear all breakpoints</source> + <translation>Zrušit všechny breakpointy</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1374" /> + <source>Toggle all folds</source> + <translation type="unfinished">Složit/rozložit všechna skládání</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1379" /> + <source>Toggle all folds (including children)</source> + <translation type="unfinished">Složit/rozložit všechna skládání (i s podsložkami)</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1382" /> + <source>Toggle current fold</source> + <translation type="unfinished">Složit/rozložit aktuální složený blok</translation> </message> <message> <location filename="../QScintilla/Editor.py" line="1386" /> - <source>Show syntax error message</source> - <translation>Zobrazit hlášení syntaktické chyby</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1389" /> - <source>Clear syntax error</source> - <translation>Zrušit chybu syntaxe</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1393" /> - <source>Next warning</source> - <translation>Následující varování</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1396" /> - <source>Previous warning</source> - <translation>Předchozí varování</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1399" /> - <source>Show warning message</source> - <translation>Zobrazit varování</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1402" /> - <source>Clear warnings</source> - <translation>Vyčistit varování</translation> + <source>Expand (including children)</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1390" /> + <source>Collapse (including children)</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1395" /> + <source>Clear all folds</source> + <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/Editor.py" line="1406" /> - <source>Next uncovered line</source> - <translation>Následující odkrytá řádka</translation> + <source>Goto syntax error</source> + <translation>Jít na chybu syntaxe</translation> </message> <message> <location filename="../QScintilla/Editor.py" line="1409" /> - <source>Previous uncovered line</source> - <translation>Předchozí odkrytá řádka</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1413" /> - <source>Next task</source> - <translation>Následující úloha</translation> + <source>Show syntax error message</source> + <translation>Zobrazit hlášení syntaktické chyby</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1412" /> + <source>Clear syntax error</source> + <translation>Zrušit chybu syntaxe</translation> </message> <message> <location filename="../QScintilla/Editor.py" line="1416" /> + <source>Next warning</source> + <translation>Následující varování</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1419" /> + <source>Previous warning</source> + <translation>Předchozí varování</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1422" /> + <source>Show warning message</source> + <translation>Zobrazit varování</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1425" /> + <source>Clear warnings</source> + <translation>Vyčistit varování</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1429" /> + <source>Next uncovered line</source> + <translation>Následující odkrytá řádka</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1432" /> + <source>Previous uncovered line</source> + <translation>Předchozí odkrytá řádka</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1436" /> + <source>Next task</source> + <translation>Následující úloha</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1439" /> <source>Previous task</source> <translation>Předchozí úloha</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1420" /> + <location filename="../QScintilla/Editor.py" line="1443" /> <source>Next change</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1423" /> + <location filename="../QScintilla/Editor.py" line="1446" /> <source>Previous change</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1426" /> - <source>Clear changes</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1457" /> - <location filename="../QScintilla/Editor.py" line="1448" /> - <source>Export source</source> - <translation>Export zdroj</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="1449" /> + <source>Clear changes</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1480" /> + <location filename="../QScintilla/Editor.py" line="1471" /> + <source>Export source</source> + <translation>Export zdroj</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1472" /> <source><p>No exporter available for the export format <b>{0}</b>. Aborting...</p></source> <translation><p>Pro formát exportu <b>{0}</b> není exportér dostupný. Zrušeno.</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1458" /> + <location filename="../QScintilla/Editor.py" line="1481" /> <source>No export format given. Aborting...</source> <translation>Nebyl zadán forám exportu. Zrušeno....</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1468" /> - <source>Alternatives ({0})</source> - <translation>Alternativy ({0})</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="1491" /> + <source>Alternatives ({0})</source> + <translation>Alternativy ({0})</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1514" /> <source>Pygments Lexer</source> <translation /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1492" /> + <location filename="../QScintilla/Editor.py" line="1515" /> <source>Select the Pygments lexer to apply.</source> <translation>Použít Pygments lexer.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2051" /> + <location filename="../QScintilla/Editor.py" line="2074" /> <source>Modification of Read Only file</source> <translation>Modifikace souboru otevřeného jen pro čtení</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2052" /> + <location filename="../QScintilla/Editor.py" line="2075" /> <source>You are attempting to change a read only file. Please save to a different file first.</source> <translation>Pokoušíte se změnit soubor, který je otevřen jen pro čtení. Prosím, uložte jej nejdříve do jiného souboru.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2473" /> + <location filename="../QScintilla/Editor.py" line="2496" /> <source>Add Breakpoint</source> <translation type="unfinished">Přidat breakpoint</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2474" /> + <location filename="../QScintilla/Editor.py" line="2497" /> <source>No Python byte code will be created for the selected line. No break point will be set!</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="2807" /> + <location filename="../QScintilla/Editor.py" line="2830" /> <source>Printing...</source> <translation>Tisk...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2824" /> + <location filename="../QScintilla/Editor.py" line="2847" /> <source>Printing completed</source> <translation>Tisk je hotov</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2826" /> + <location filename="../QScintilla/Editor.py" line="2849" /> <source>Error while printing</source> <translation>Chyba během tisku</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2829" /> + <location filename="../QScintilla/Editor.py" line="2852" /> <source>Printing aborted</source> <translation>Tisk byl zrušen</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="3187" /> + <location filename="../QScintilla/Editor.py" line="3210" /> <source>File Modified</source> <translation>Soubor je modifikován</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="3188" /> + <location filename="../QScintilla/Editor.py" line="3211" /> <source><p>The file <b>{0}</b> has unsaved changes.</p></source> <translation><p>Soubor <b>{0}</b> obsahuje neuložené změny.</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="3246" /> + <location filename="../QScintilla/Editor.py" line="3269" /> <source><p>The file <b>{0}</b> could not be opened.</p><p>Reason: {1}</p></source> <translation><p>Soubor <b>{0}</b> nemůže být přejmenován.<br />Důvod: {1}</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="3424" /> - <location filename="../QScintilla/Editor.py" line="3405" /> - <location filename="../QScintilla/Editor.py" line="3365" /> + <location filename="../QScintilla/Editor.py" line="3447" /> + <location filename="../QScintilla/Editor.py" line="3428" /> + <location filename="../QScintilla/Editor.py" line="3388" /> <source>Save File</source> <translation>Uložit soubor</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="3366" /> + <location filename="../QScintilla/Editor.py" line="3389" /> <source><p>The file <b>{0}</b> could not be saved.<br/>Reason: {1}</p></source> <translation><p>Soubor <b>{0}</b> nemůže být přejmenován.<br />Důvod: {1}</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="3425" /> + <location filename="../QScintilla/Editor.py" line="3448" /> <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="../QScintilla/Editor.py" line="4935" /> + <location filename="../QScintilla/Editor.py" line="4958" /> <source>Autocompletion</source> <translation>Autodoplňování</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="4936" /> + <location filename="../QScintilla/Editor.py" line="4959" /> <source>Autocompletion is not available because there is no autocompletion source set.</source> <translation>Autodoplňování není dostupné protože zdrojová část autodoplňování nebyla nalezena.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5064" /> + <location filename="../QScintilla/Editor.py" line="5087" /> <source>Auto-Completion Provider</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="5065" /> + <location filename="../QScintilla/Editor.py" line="5088" /> <source>The completion list provider '{0}' was already registered. Ignoring duplicate request.</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="5357" /> + <location filename="../QScintilla/Editor.py" line="5380" /> <source>Call-Tips Provider</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="5358" /> + <location filename="../QScintilla/Editor.py" line="5381" /> <source>The call-tips provider '{0}' was already registered. Ignoring duplicate request.</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="5758" /> + <location filename="../QScintilla/Editor.py" line="5781" /> <source>Disable breakpoint</source> <translation>Deaktivovat breakpoint</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6113" /> + <location filename="../QScintilla/Editor.py" line="6136" /> <source>Code Coverage</source> <translation>Pokrytí kódu</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6114" /> + <location filename="../QScintilla/Editor.py" line="6137" /> <source>Please select a coverage file</source> <translation>Prosím, vyberte soubor s pokrytím kódu</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6189" /> - <location filename="../QScintilla/Editor.py" line="6181" /> + <location filename="../QScintilla/Editor.py" line="6212" /> + <location filename="../QScintilla/Editor.py" line="6204" /> <source>Show Code Coverage Annotations</source> <translation>Zobrazit poznámky pokrytí kódu</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6182" /> + <location filename="../QScintilla/Editor.py" line="6205" /> <source>All lines have been covered.</source> <translation>Všechny řádky byly pokryty.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6190" /> + <location filename="../QScintilla/Editor.py" line="6213" /> <source>There is no coverage file available.</source> <translation>Soubor s pokrytím není dostupný.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6286" /> + <location filename="../QScintilla/Editor.py" line="6309" /> <source>Profile Data</source> <translation>Profilovat data</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6287" /> + <location filename="../QScintilla/Editor.py" line="6310" /> <source>Please select a profile file</source> <translation>Prosím, vyberte soubor s profilem</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6450" /> - <location filename="../QScintilla/Editor.py" line="6444" /> + <location filename="../QScintilla/Editor.py" line="6473" /> + <location filename="../QScintilla/Editor.py" line="6467" /> <source>Syntax Error</source> <translation>Chyba syntaxe</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6451" /> + <location filename="../QScintilla/Editor.py" line="6474" /> <source>No syntax error message available.</source> <translation>Hlášení syntaktické chyby není dostupné.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6662" /> - <location filename="../QScintilla/Editor.py" line="6656" /> + <location filename="../QScintilla/Editor.py" line="6685" /> + <location filename="../QScintilla/Editor.py" line="6679" /> <source>Warning</source> <translation type="unfinished">Varování</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6662" /> + <location filename="../QScintilla/Editor.py" line="6685" /> <source>No warning messages available.</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="6726" /> + <location filename="../QScintilla/Editor.py" line="6749" /> <source>Style: {0}</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="6729" /> + <location filename="../QScintilla/Editor.py" line="6752" /> <source>Warning: {0}</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="6736" /> + <location filename="../QScintilla/Editor.py" line="6759" /> <source>Error: {0}</source> <translation type="unfinished">Chyby: {0}</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6843" /> + <location filename="../QScintilla/Editor.py" line="6866" /> <source>Macro Name</source> <translation>Název makra</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6843" /> + <location filename="../QScintilla/Editor.py" line="6866" /> <source>Select a macro name:</source> <translation>Vyberte název makra:</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6869" /> + <location filename="../QScintilla/Editor.py" line="6892" /> <source>Load macro file</source> <translation>Načíst soubor makra</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6915" /> - <location filename="../QScintilla/Editor.py" line="6871" /> + <location filename="../QScintilla/Editor.py" line="6938" /> + <location filename="../QScintilla/Editor.py" line="6894" /> <source>Macro files (*.macro)</source> <translation>Macro soubory (*.macro)</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6893" /> - <location filename="../QScintilla/Editor.py" line="6883" /> + <location filename="../QScintilla/Editor.py" line="6916" /> + <location filename="../QScintilla/Editor.py" line="6906" /> <source>Error loading macro</source> <translation>Chyba při načítání makra</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6884" /> + <location filename="../QScintilla/Editor.py" line="6907" /> <source><p>The macro file <b>{0}</b> could not be read.</p></source> <translation><p>Soubor s makrem <b>{0}</b> nelze načíst.</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6894" /> + <location filename="../QScintilla/Editor.py" line="6917" /> <source><p>The macro file <b>{0}</b> is corrupt.</p></source> <translation><p>Soubor s makrem <b>{0}</b> je poškozen.</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6913" /> + <location filename="../QScintilla/Editor.py" line="6936" /> <source>Save macro file</source> <translation>Uložit soubor s makrem</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6931" /> + <location filename="../QScintilla/Editor.py" line="6954" /> <source>Save macro</source> <translation>Uložit makro</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6932" /> + <location filename="../QScintilla/Editor.py" line="6955" /> <source><p>The macro file <b>{0}</b> already exists. Overwrite it?</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="6947" /> + <location filename="../QScintilla/Editor.py" line="6970" /> <source>Error saving macro</source> <translation>Chyba při ukládání makra</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6948" /> + <location filename="../QScintilla/Editor.py" line="6971" /> <source><p>The macro file <b>{0}</b> could not be written.</p></source> <translation><p>So souboru s makrem <b>{0}</b> nelze zapisovat.</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6961" /> + <location filename="../QScintilla/Editor.py" line="6984" /> <source>Start Macro Recording</source> <translation>Spustit záznam makra</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6962" /> + <location filename="../QScintilla/Editor.py" line="6985" /> <source>Macro recording is already active. Start new?</source> <translation>Nahrávání makra již probíhá. Spustit nové?</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6988" /> + <location filename="../QScintilla/Editor.py" line="7011" /> <source>Macro Recording</source> <translation>Záznam makra</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6989" /> + <location filename="../QScintilla/Editor.py" line="7012" /> <source>Enter name of the macro:</source> <translation>Vložte název makra:</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7140" /> + <location filename="../QScintilla/Editor.py" line="7163" /> <source><p>The file <b>{0}</b> has been changed while it was opened in eric. Reread it?</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="7146" /> + <location filename="../QScintilla/Editor.py" line="7169" /> <source><br><b>Warning:</b> You will lose your changes upon reopening it.</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="7153" /> + <location filename="../QScintilla/Editor.py" line="7176" /> <source>File changed</source> <translation>Soubor změněn</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7203" /> + <location filename="../QScintilla/Editor.py" line="7226" /> <source>{0} (ro)</source> <translation>{0} (ro)</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7494" /> - <source>Drop Error</source> - <translation>Zahodit chybu</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="7495" /> - <source><p><b>{0}</b> is not a file.</p></source> - <translation><p><b>{0}</b> není soubor.</p></translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="7515" /> - <source>Resources</source> - <translation>Zdroje</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="7517" /> - <source>Add file...</source> - <translation>Přidat soubor...</translation> + <source>Drop Error</source> + <translation>Zahodit chybu</translation> </message> <message> <location filename="../QScintilla/Editor.py" line="7518" /> + <source><p><b>{0}</b> is not a file.</p></source> + <translation><p><b>{0}</b> není soubor.</p></translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="7538" /> + <source>Resources</source> + <translation>Zdroje</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="7540" /> + <source>Add file...</source> + <translation>Přidat soubor...</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="7541" /> <source>Add files...</source> <translation>Přidat soubory...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7519" /> + <location filename="../QScintilla/Editor.py" line="7542" /> <source>Add aliased file...</source> <translation>Přidat zástupce souboru...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7521" /> + <location filename="../QScintilla/Editor.py" line="7544" /> <source>Add localized resource...</source> <translation>Přidat lokalizované resource...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7524" /> + <location filename="../QScintilla/Editor.py" line="7547" /> <source>Add resource frame</source> <translation>Přidat resource frame</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7543" /> + <location filename="../QScintilla/Editor.py" line="7566" /> <source>Add file resource</source> <translation>Přidat soubor resource</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7557" /> + <location filename="../QScintilla/Editor.py" line="7580" /> <source>Add file resources</source> <translation>Přidat soubory resource</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7581" /> - <location filename="../QScintilla/Editor.py" line="7575" /> + <location filename="../QScintilla/Editor.py" line="7604" /> + <location filename="../QScintilla/Editor.py" line="7598" /> <source>Add aliased file resource</source> <translation>Přidat zástupce souboru resource</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7582" /> + <location filename="../QScintilla/Editor.py" line="7605" /> <source>Alias for file <b>{0}</b>:</source> <translation>Zástupce pro soubor <b>{0}</b>:</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7657" /> + <location filename="../QScintilla/Editor.py" line="7680" /> <source>Package Diagram</source> <translation>Diagram balíčku</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7658" /> + <location filename="../QScintilla/Editor.py" line="7681" /> <source>Include class attributes?</source> <translation>Včetně atributů třídy?</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7678" /> + <location filename="../QScintilla/Editor.py" line="7701" /> <source>Imports Diagram</source> <translation>Importovat diagram</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7679" /> + <location filename="../QScintilla/Editor.py" line="7702" /> <source>Include imports from external modules?</source> <translation>Zahrnout importy z externích modulů?</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7698" /> + <location filename="../QScintilla/Editor.py" line="7721" /> <source>Application Diagram</source> <translation>Diagram aplikace</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7699" /> + <location filename="../QScintilla/Editor.py" line="7722" /> <source>Include module names?</source> <translation>Včetně jmen modulů?</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8056" /> + <location filename="../QScintilla/Editor.py" line="8079" /> <source>Add to dictionary</source> <translation>Přidat do slovníku</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8058" /> + <location filename="../QScintilla/Editor.py" line="8081" /> <source>Ignore All</source> <translation>Ignorovat vše</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8476" /> + <location filename="../QScintilla/Editor.py" line="8499" /> <source>Sort Lines</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="8477" /> + <location filename="../QScintilla/Editor.py" line="8500" /> <source>The selection contains illegal data for a numerical sort.</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="8570" /> + <location filename="../QScintilla/Editor.py" line="8593" /> <source>Register Mouse Click Handler</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="8571" /> + <location filename="../QScintilla/Editor.py" line="8594" /> <source>A mouse click handler for "{0}" was already registered by "{1}". Aborting request by "{2}"...</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="8667" /> + <location filename="../QScintilla/Editor.py" line="8690" /> <source>{0:4d} {1}</source> <comment>line number, source code</comment> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="8673" /> + <location filename="../QScintilla/Editor.py" line="8696" /> <source>{0:4d} {1} => {2}</source> <comment>line number, source code, file name</comment> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="8741" /> + <location filename="../QScintilla/Editor.py" line="8764" /> <source>EditorConfig Properties</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="8742" /> + <location filename="../QScintilla/Editor.py" line="8765" /> <source><p>The EditorConfig properties for file <b>{0}</b> could not be loaded.</p></source> <translation type="unfinished" /> </message> @@ -12989,26 +13001,26 @@ <context> <name>EditorFilePage</name> <message> - <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="339" /> - <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="322" /> - <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="305" /> - <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="294" /> + <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="341" /> + <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="324" /> + <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="307" /> + <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="296" /> <source>Add File Filter</source> <translation type="unfinished" /> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="295" /> + <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="297" /> <source>A Save File Filter must contain exactly one wildcard pattern. Yours contains {0}.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="306" /> + <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="308" /> <source>A File Filter must contain at least one wildcard pattern.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="340" /> - <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="323" /> + <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="342" /> + <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="325" /> <source>Enter the file filter entry:</source> <translation type="unfinished" /> </message> @@ -13054,11 +13066,22 @@ </message> <message> <location filename="../Preferences/ConfigurationPages/EditorFilePage.ui" line="0" /> + <location filename="../Preferences/ConfigurationPages/EditorFilePage.ui" line="0" /> <source> KB</source> <translation> KB</translation> </message> <message> <location filename="../Preferences/ConfigurationPages/EditorFilePage.ui" line="0" /> + <source>Reject, if file is greater than</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/EditorFilePage.ui" line="0" /> + <source>Enter the filesize, opening a file should be rejected.</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/EditorFilePage.ui" line="0" /> <source>End of Line</source> <translation>Konec řádku</translation> </message> @@ -17073,12 +17096,12 @@ <context> <name>EricApplication</name> <message> - <location filename="../EricWidgets/EricApplication.py" line="220" /> + <location filename="../EricWidgets/EricApplication.py" line="221" /> <source>Loading Style Sheet</source> <translation type="unfinished">Načtení kaskádového stylu</translation> </message> <message> - <location filename="../EricWidgets/EricApplication.py" line="223" /> + <location filename="../EricWidgets/EricApplication.py" line="224" /> <source><p>The Qt Style Sheet file <b>{0}</b> could not be read.<br>Reason: {1}</p></source> <translation type="unfinished"><p>Soubor Qt Style Sheet <b>{0}</b> nelze vytvořit.</p><p>Důvod: {1}</p></translation> </message> @@ -45964,7 +45987,7 @@ <translation>Pygments</translation> </message> <message> - <location filename="../Preferences/__init__.py" line="468" /> + <location filename="../Preferences/__init__.py" line="469" /> <location filename="../QScintilla/Lexers/__init__.py" line="482" /> <source>Python Files (*.py *.py3)</source> <translation type="unfinished">Python soubory (*.py *.py3)</translation> @@ -46217,7 +46240,7 @@ <translation>Všechny soubory (*)</translation> </message> <message> - <location filename="../Preferences/__init__.py" line="471" /> + <location filename="../Preferences/__init__.py" line="472" /> <location filename="../QScintilla/Lexers/__init__.py" line="575" /> <source>Python3 Files (*.py)</source> <translation>Python3 soubory (*.py)</translation> @@ -54771,18 +54794,18 @@ <context> <name>Preferences</name> <message> - <location filename="../Preferences/__init__.py" line="1651" /> + <location filename="../Preferences/__init__.py" line="1652" /> <source>Export Preferences</source> <translation>Předvolby exportu</translation> </message> <message> - <location filename="../Preferences/__init__.py" line="1680" /> - <location filename="../Preferences/__init__.py" line="1653" /> + <location filename="../Preferences/__init__.py" line="1681" /> + <location filename="../Preferences/__init__.py" line="1654" /> <source>Properties File (*.ini);;All Files (*)</source> <translation type="unfinished" /> </message> <message> - <location filename="../Preferences/__init__.py" line="1678" /> + <location filename="../Preferences/__init__.py" line="1679" /> <source>Import Preferences</source> <translation>Předvolby importu</translation> </message> @@ -56270,8 +56293,8 @@ <translation><b>Pokrytí kódu...</b><p>Zobrazí informace o pokrytí kódu ve všech python souborech projektu.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5856" /> - <location filename="../Project/Project.py" line="5843" /> + <location filename="../Project/Project.py" line="5857" /> + <location filename="../Project/Project.py" line="5844" /> <location filename="../Project/Project.py" line="4649" /> <source>Profile Data</source> <translation>Profilovat data</translation> @@ -56292,7 +56315,7 @@ <translation><b>Profilovat data</b><p>Zobrazí se profilování dat projektu.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5908" /> + <location filename="../Project/Project.py" line="5909" /> <location filename="../Project/Project.py" line="4675" /> <source>Application Diagram</source> <translation>Diagram aplikace</translation> @@ -56333,8 +56356,8 @@ <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6103" /> - <location filename="../Project/Project.py" line="6044" /> + <location filename="../Project/Project.py" line="6104" /> + <location filename="../Project/Project.py" line="6045" /> <location filename="../Project/Project.py" line="4719" /> <source>Create Package List</source> <translation>Vytvořit seznam balíčků</translation> @@ -56355,7 +56378,7 @@ <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6172" /> + <location filename="../Project/Project.py" line="6173" /> <location filename="../Project/Project.py" line="4742" /> <source>Create Plugin Archives</source> <translation type="unfinished" /> @@ -56396,9 +56419,9 @@ <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6589" /> - <location filename="../Project/Project.py" line="6560" /> - <location filename="../Project/Project.py" line="6511" /> + <location filename="../Project/Project.py" line="6590" /> + <location filename="../Project/Project.py" line="6561" /> + <location filename="../Project/Project.py" line="6512" /> <location filename="../Project/Project.py" line="4795" /> <source>Execute Make</source> <translation type="unfinished" /> @@ -56419,7 +56442,7 @@ <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6566" /> + <location filename="../Project/Project.py" line="6567" /> <location filename="../Project/Project.py" line="4814" /> <source>Test for Changes</source> <translation type="unfinished" /> @@ -56460,7 +56483,7 @@ <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6744" /> + <location filename="../Project/Project.py" line="6745" /> <location filename="../Project/Project.py" line="4871" /> <source>About Black</source> <translation type="unfinished" /> @@ -56708,195 +56731,195 @@ <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5275" /> - <location filename="../Project/Project.py" line="5272" /> + <location filename="../Project/Project.py" line="5276" /> + <location filename="../Project/Project.py" line="5273" /> <source>Project</source> <translation>Projekt</translation> </message> <message> - <location filename="../Project/Project.py" line="5338" /> + <location filename="../Project/Project.py" line="5339" /> <source>&Clear</source> <translation>&Vyčistit</translation> </message> <message> - <location filename="../Project/Project.py" line="5497" /> - <source>Search New Files</source> - <translation>Hledat nové soubory</translation> - </message> - <message> <location filename="../Project/Project.py" line="5498" /> + <source>Search New Files</source> + <translation>Hledat nové soubory</translation> + </message> + <message> + <location filename="../Project/Project.py" line="5499" /> <source>There were no new files found to be added.</source> <translation>Nebyly nalezeny žádné soubory, které je možné přidat.</translation> </message> <message> - <location filename="../Project/Project.py" line="5649" /> - <location filename="../Project/Project.py" line="5636" /> - <source>Version Control System</source> - <translation>Version Control System</translation> - </message> - <message> - <location filename="../Project/Project.py" line="5637" /> - <source><p>The selected VCS <b>{0}</b> could not be found. <br/>Reverting override.</p><p>{1}</p></source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Project/Project.py" line="5650" /> + <location filename="../Project/Project.py" line="5637" /> + <source>Version Control System</source> + <translation>Version Control System</translation> + </message> + <message> + <location filename="../Project/Project.py" line="5638" /> + <source><p>The selected VCS <b>{0}</b> could not be found. <br/>Reverting override.</p><p>{1}</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Project/Project.py" line="5651" /> <source><p>The selected VCS <b>{0}</b> could not be found.<br/>Disabling version control.</p><p>{1}</p></source> <translation><p>Vybrané VCS <b>{0}</b> nebylo nalezeno.<br/>Kontrola verzí vypnuta.</p><p>{1}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5798" /> + <location filename="../Project/Project.py" line="5799" /> <source>Coverage Data</source> <translation>Datové pokrytí</translation> </message> <message> - <location filename="../Project/Project.py" line="5844" /> - <location filename="../Project/Project.py" line="5799" /> + <location filename="../Project/Project.py" line="5845" /> + <location filename="../Project/Project.py" line="5800" /> <source>There is no main script defined for the current project. Aborting</source> <translation>V aktuálním projektu nebyl určen hlavní skript. Zrušeno</translation> </message> <message> - <location filename="../Project/Project.py" line="5811" /> - <source>Code Coverage</source> - <translation>Pokrytí kódu</translation> - </message> - <message> <location filename="../Project/Project.py" line="5812" /> + <source>Code Coverage</source> + <translation>Pokrytí kódu</translation> + </message> + <message> + <location filename="../Project/Project.py" line="5813" /> <source>Please select a coverage file</source> <translation>Prosím, vyberte soubor pokrytí</translation> </message> <message> - <location filename="../Project/Project.py" line="5857" /> + <location filename="../Project/Project.py" line="5858" /> <source>Please select a profile file</source> <translation>Prosím, vyberte soubor s profilem</translation> </message> <message> - <location filename="../Project/Project.py" line="5909" /> + <location filename="../Project/Project.py" line="5910" /> <source>Include module names?</source> <translation>Včetně jmen modulů?</translation> </message> <message> - <location filename="../Project/Project.py" line="6045" /> + <location filename="../Project/Project.py" line="6046" /> <source><p>The file <b>PKGLIST</b> already exists.</p><p>Overwrite it?</p></source> <translation><p>Soubor <b>PKGLIST</b> již existuje.</p><p>Přepsat jej?</p></translation> </message> <message> - <location filename="../Project/Project.py" line="6104" /> + <location filename="../Project/Project.py" line="6105" /> <source><p>The file <b>PKGLIST</b> could not be created.</p><p>Reason: {0}</p></source> <translation><p>Soubor <b>PKGLIST</b> nelze vytvořit.</p><p>Důvod: {0}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="6393" /> - <location filename="../Project/Project.py" line="6351" /> - <location filename="../Project/Project.py" line="6305" /> - <location filename="../Project/Project.py" line="6294" /> - <location filename="../Project/Project.py" line="6276" /> - <location filename="../Project/Project.py" line="6243" /> - <location filename="../Project/Project.py" line="6213" /> - <location filename="../Project/Project.py" line="6185" /> - <location filename="../Project/Project.py" line="6155" /> - <location filename="../Project/Project.py" line="6141" /> - <location filename="../Project/Project.py" line="6124" /> + <location filename="../Project/Project.py" line="6394" /> + <location filename="../Project/Project.py" line="6352" /> + <location filename="../Project/Project.py" line="6306" /> + <location filename="../Project/Project.py" line="6295" /> + <location filename="../Project/Project.py" line="6277" /> + <location filename="../Project/Project.py" line="6244" /> + <location filename="../Project/Project.py" line="6214" /> + <location filename="../Project/Project.py" line="6186" /> + <location filename="../Project/Project.py" line="6156" /> + <location filename="../Project/Project.py" line="6142" /> + <location filename="../Project/Project.py" line="6125" /> <source>Create Plugin Archive</source> <translation>Vytvořit Plugin archiv</translation> </message> <message> - <location filename="../Project/Project.py" line="6125" /> + <location filename="../Project/Project.py" line="6126" /> <source>The project does not have a main script defined. Aborting...</source> <translation>Projekt nemá definován hlavní skript. Zrušeno...</translation> </message> <message> - <location filename="../Project/Project.py" line="6142" /> + <location filename="../Project/Project.py" line="6143" /> <source>Select package lists:</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6156" /> + <location filename="../Project/Project.py" line="6157" /> <source><p>No package list files (PKGLIST*) available or selected. Aborting...</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6164" /> - <source>Creating plugin archives...</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Project/Project.py" line="6165" /> + <source>Creating plugin archives...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Project/Project.py" line="6166" /> <source>Abort</source> <translation type="unfinished">Přerušit</translation> </message> <message> - <location filename="../Project/Project.py" line="6168" /> + <location filename="../Project/Project.py" line="6169" /> <source>%v/%m Archives</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6186" /> + <location filename="../Project/Project.py" line="6187" /> <source><p>The file <b>{0}</b> could not be read.</p><p>Reason: {1}</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6214" /> + <location filename="../Project/Project.py" line="6215" /> <source><p>The file <b>{0}</b> is not ready yet.</p><p>Please rework it and delete the'; initial_list' line of the header.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6244" /> + <location filename="../Project/Project.py" line="6245" /> <source><p>The eric plugin archive file <b>{0}</b> could not be created.</p><p>Reason: {1}</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6277" /> + <location filename="../Project/Project.py" line="6278" /> <source><p>The file <b>{0}</b> could not be stored in the archive. Ignoring it.</p><p>Reason: {1}</p></source> <translation><p>Soubor <b>{0}</b> nelze uložit do archivu. Ingorováno.</p><p>Důvod: {1}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="6295" /> + <location filename="../Project/Project.py" line="6296" /> <source><p>The eric plugin archive files were created with some errors.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6306" /> + <location filename="../Project/Project.py" line="6307" /> <source><p>The eric plugin archive files were created successfully.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6352" /> + <location filename="../Project/Project.py" line="6353" /> <source><p>The plugin file <b>{0}</b> could not be read.</p><p>Reason: {1}</p></source> <translation><p>Plugin soubor <b>{0}</b> nelze přečíst.</p><p>Důvod: {1}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="6394" /> + <location filename="../Project/Project.py" line="6395" /> <source><p>The plugin file <b>{0}</b> could not be read.</p> <p>Reason: {1}</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6512" /> + <location filename="../Project/Project.py" line="6513" /> <source>The make process did not start.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6561" /> + <location filename="../Project/Project.py" line="6562" /> <source>The make process crashed.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6569" /> + <location filename="../Project/Project.py" line="6570" /> <source><p>There are changes that require the configured make target <b>{0}</b> to be rebuilt.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6574" /> + <location filename="../Project/Project.py" line="6575" /> <source><p>There are changes that require the default make target to be rebuilt.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6590" /> + <location filename="../Project/Project.py" line="6591" /> <source>The makefile contains errors.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6745" /> + <location filename="../Project/Project.py" line="6746" /> <source><p><b>Black Version {0}</b></p><p><i>Black</i> is the uncompromising Python code formatter.</p></source> <translation type="unfinished" /> </message> @@ -57756,10 +57779,10 @@ <translation type="unfinished">Otevřít v editoru</translation> </message> <message> - <location filename="../Project/ProjectOthersBrowser.py" line="353" /> - <location filename="../Project/ProjectOthersBrowser.py" line="345" /> - <location filename="../Project/ProjectOthersBrowser.py" line="335" /> - <location filename="../Project/ProjectOthersBrowser.py" line="327" /> + <location filename="../Project/ProjectOthersBrowser.py" line="357" /> + <location filename="../Project/ProjectOthersBrowser.py" line="349" /> + <location filename="../Project/ProjectOthersBrowser.py" line="339" /> + <location filename="../Project/ProjectOthersBrowser.py" line="331" /> <location filename="../Project/ProjectOthersBrowser.py" line="85" /> <source>Show Mime-Type</source> <translation type="unfinished" /> @@ -57833,28 +57856,28 @@ <translation>Konfigurovat...</translation> </message> <message> - <location filename="../Project/ProjectOthersBrowser.py" line="328" /> + <location filename="../Project/ProjectOthersBrowser.py" line="332" /> <source>The mime type of the file could not be determined.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/ProjectOthersBrowser.py" line="346" /> - <location filename="../Project/ProjectOthersBrowser.py" line="336" /> + <location filename="../Project/ProjectOthersBrowser.py" line="350" /> + <location filename="../Project/ProjectOthersBrowser.py" line="340" /> <source>The file has the mime type <b>{0}</b>.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/ProjectOthersBrowser.py" line="354" /> + <location filename="../Project/ProjectOthersBrowser.py" line="358" /> <source>The file has the mime type <b>{0}</b>.<br/> Shall it be added to the list of text mime types?</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/ProjectOthersBrowser.py" line="447" /> + <location filename="../Project/ProjectOthersBrowser.py" line="451" /> <source>Delete files/directories</source> <translation>Smazat soubory/adresáře</translation> </message> <message> - <location filename="../Project/ProjectOthersBrowser.py" line="448" /> + <location filename="../Project/ProjectOthersBrowser.py" line="452" /> <source>Do you really want to delete these entries from the project?</source> <translation>Opravdu chcete odebrat tyto položky z projektu?</translation> </message> @@ -85117,60 +85140,60 @@ <translation type="unfinished" /> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="901" /> + <location filename="../Debugger/VariablesViewer.py" line="904" /> <source>Global Variables</source> <translation>Globální proměnné</translation> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="903" /> + <location filename="../Debugger/VariablesViewer.py" line="906" /> <source><b>The Global Variables Viewer Window</b><p>This window displays the global variables of the debugged program.</p></source> <translation><b>Prohlížeč globálních proměnných</b><p>Toto okno zobrazuje globální proměnné debugovénho programu.</p></translation> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="910" /> + <location filename="../Debugger/VariablesViewer.py" line="913" /> <source>Local Variables</source> <translation>Lokální proměnné</translation> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="912" /> + <location filename="../Debugger/VariablesViewer.py" line="915" /> <source><b>The Local Variables Viewer Window</b><p>This window displays the local variables of the debugged program.</p></source> <translation><b>Prohlížeč lokálních proměnných</b><p>Toto okno zobrazuje lokální proměnné debugovénho programu.</p></translation> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="1030" /> + <location filename="../Debugger/VariablesViewer.py" line="1039" /> <source>Show Details...</source> <translation>Zobrazit detaily...</translation> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="1032" /> + <location filename="../Debugger/VariablesViewer.py" line="1041" /> <source>Expand</source> <translation type="unfinished" /> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="1033" /> - <source>Collapse</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Debugger/VariablesViewer.py" line="1034" /> - <source>Collapse All</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Debugger/VariablesViewer.py" line="1042" /> - <location filename="../Debugger/VariablesViewer.py" line="1036" /> + <source>Collapse</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Debugger/VariablesViewer.py" line="1043" /> + <source>Collapse All</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Debugger/VariablesViewer.py" line="1051" /> + <location filename="../Debugger/VariablesViewer.py" line="1045" /> <source>Refresh</source> <translation type="unfinished">Obnovit</translation> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="1044" /> - <location filename="../Debugger/VariablesViewer.py" line="1038" /> + <location filename="../Debugger/VariablesViewer.py" line="1053" /> + <location filename="../Debugger/VariablesViewer.py" line="1047" /> <source>Configure...</source> <translation>Konfigurovat...</translation> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="1046" /> - <location filename="../Debugger/VariablesViewer.py" line="1039" /> + <location filename="../Debugger/VariablesViewer.py" line="1055" /> + <location filename="../Debugger/VariablesViewer.py" line="1048" /> <source>Variables Type Filter...</source> <translation type="unfinished" /> </message> @@ -95711,12 +95734,12 @@ <context> <name>eric7_ide</name> <message> - <location filename="../eric7_ide.py" line="394" /> + <location filename="../eric7_ide.py" line="395" /> <source>Starting...</source> <translation type="unfinished" /> </message> <message> - <location filename="../eric7_ide.py" line="400" /> + <location filename="../eric7_ide.py" line="401" /> <source>Generating Main Window...</source> <translation type="unfinished">Generování hlavního okna...</translation> </message>
--- a/src/eric7/i18n/eric7_de.ts Fri Oct 14 14:46:40 2022 +0200 +++ b/src/eric7/i18n/eric7_de.ts Fri Oct 14 17:02:09 2022 +0200 @@ -1821,17 +1821,17 @@ <translation>Ein Fehler im Eric Hintergrunddienst hat den Dienst beendet.</translation> </message> <message> - <location filename="../Utilities/BackgroundService.py" line="488" /> + <location filename="../Utilities/BackgroundService.py" line="487" /> <source>Eric's background client disconnected because of an unknown reason.</source> <translation>Die Verbindung zu Erics Hintergund Client wurde aus unbekanntem Grund getrennt.</translation> </message> <message> + <location filename="../Utilities/BackgroundService.py" line="496" /> + <source>Background client disconnected.</source> + <translation>Hintergrund Client wurde getrennt.</translation> + </message> + <message> <location filename="../Utilities/BackgroundService.py" line="497" /> - <source>Background client disconnected.</source> - <translation>Hintergrund Client wurde getrennt.</translation> - </message> - <message> - <location filename="../Utilities/BackgroundService.py" line="498" /> <source>The background client for <b>{0}</b> disconnected because of an unknown reason.<br>Should it be restarted?</source> <translation>Die Verbindung zum Hintergund Client für <b>{0}</b> wurde aus unbekanntem Grund getrennt.<br>Soll er neu gestartet werden?</translation> </message> @@ -8897,13 +8897,13 @@ <translation>Zeigt ein Disassembly des Codes im Falle einer Ausnahme.</translation> </message> <message> - <location filename="../Debugger/DebugViewer.py" line="754" /> + <location filename="../Debugger/DebugViewer.py" line="756" /> <source><p>Debugger with ID <b>{0}</b> has been connected.</p></source> <translation><p>Debugger mit der ID <b>{0}</b> wurde verbunden.</p></translation> </message> <message> - <location filename="../Debugger/DebugViewer.py" line="997" /> - <location filename="../Debugger/DebugViewer.py" line="869" /> + <location filename="../Debugger/DebugViewer.py" line="999" /> + <location filename="../Debugger/DebugViewer.py" line="871" /> <source>unknown state ({0})</source> <translation>unbekannter Status ({0})</translation> </message> @@ -9595,7 +9595,7 @@ <translation>Encoding des Debuggers nicht setzen</translation> </message> <message> - <location filename="../Project/DebuggerPropertiesDialog.py" line="127" /> + <location filename="../Project/DebuggerPropertiesDialog.py" line="133" /> <source>All Files (*)</source> <translation>Alle Dateien (*)</translation> </message> @@ -11170,948 +11170,960 @@ <context> <name>Editor</name> <message> - <location filename="../QScintilla/Editor.py" line="3245" /> - <location filename="../QScintilla/Editor.py" line="406" /> + <location filename="../QScintilla/Editor.py" line="3268" /> + <location filename="../QScintilla/Editor.py" line="431" /> + <location filename="../QScintilla/Editor.py" line="416" /> + <location filename="../QScintilla/Editor.py" line="404" /> <source>Open File</source> <translation>Datei öffnen</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="407" /> + <location filename="../QScintilla/Editor.py" line="405" /> + <source><p>The file <b>{0}</b> is not a text file. It will not be opened!</p></source> + <translation><p>Die Datei <b>{0}</b> ist keine Textdatei. Sie wird nicht geöffnet!</p></translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="417" /> + <source><p>The size of the file <b>{0}</b> is <b>{1} KB</b> and exceeds the configured limit of <b>{2} KB</b>. It will not be opened!</p></source> + <translation><p>Die Größe der Datei <b>{0}</b> ist <b>{1} KB</b> und überschreitet die konfigurierte Grenze von <b>{2} KB</b>. Sie wird nicht geöffnet!</p></translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="432" /> <source><p>The size of the file <b>{0}</b> is <b>{1} KB</b>. Do you really want to load it?</p></source> - <translation><p>Die Größe der Datei <b>{0}</b> ist <b>{1} KB<7B>. Soll sie wirklich geladen werden?</p></translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="505" /> + <translation><p>Die Größe der Datei <b>{0}</b> ist <b>{1} KB</b>. Soll sie wirklich geladen werden?</p></translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="528" /> <source><b>A Source Editor Window</b><p>This window is used to display and edit a source file. You can open as many of these as you like. The name of the file is displayed in the window's titlebar.</p><p>In order to set breakpoints just click in the space between the line numbers and the fold markers. Via the context menu of the margins they may be edited.</p><p>In order to set bookmarks just Shift click in the space between the line numbers and the fold markers.</p><p>These actions can be reversed via the context menu.</p><p>Ctrl clicking on a syntax error marker shows some info about this error.</p></source> <translation><b>Quelltexteditorfenster</b><p>Dieses Fenster wird zum Bearbeiten von Quelltexten benutzt. Sie können beliebig viele dieser Fenster öffnen. Der Name der Datei wird im Titel des Fensters dargestellt.</p><p>Um Haltepunkte zu setzen, klicken sie in den Raum zwischen den Zeilennummern und der Faltungsspalte. Über das Kontextmenü des Bereiches links des Editors können Haltepunkte bearbeitet werden.</p><p>Um Lesezeichen zu setzen, drücken Sie die Shift-Taste und klicken in den Raum zwischen den Zeilennummern und der Faltungsspalte.</p><p>Diese Aktionen können über das Kontextmenü umgedreht werden.</p><p>Ein Klick auf einen Syntaxfehler-Marker mit gedrückter Strg-Taste zeigt die zugehörige Fehlermeldung an.</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="833" /> + <location filename="../QScintilla/Editor.py" line="856" /> <source>Undo</source> <translation>Rückgängig</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="836" /> + <location filename="../QScintilla/Editor.py" line="859" /> <source>Redo</source> <translation>Wiederherstellen</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="839" /> + <location filename="../QScintilla/Editor.py" line="862" /> <source>Revert to last saved state</source> <translation>Zurück zum letzten gesichert Zustand</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="843" /> + <location filename="../QScintilla/Editor.py" line="866" /> <source>Cut</source> <translation>Ausschneiden</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="846" /> + <location filename="../QScintilla/Editor.py" line="869" /> <source>Copy</source> <translation>Kopieren</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="849" /> + <location filename="../QScintilla/Editor.py" line="872" /> <source>Paste</source> <translation>Einfügen</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="855" /> - <source>Indent</source> - <translation>Einrücken</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="860" /> - <source>Unindent</source> - <translation>Einrücken rückgängig</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="865" /> - <source>Comment</source> - <translation>Kommentar</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="870" /> - <source>Uncomment</source> - <translation>Kommentar entfernen</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="8934" /> - <location filename="../QScintilla/Editor.py" line="875" /> - <source>Generate Docstring</source> - <translation>Docstring erzeugen</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="878" /> + <source>Indent</source> + <translation>Einrücken</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="883" /> + <source>Unindent</source> + <translation>Einrücken rückgängig</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="888" /> + <source>Comment</source> + <translation>Kommentar</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="893" /> + <source>Uncomment</source> + <translation>Kommentar entfernen</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="8957" /> + <location filename="../QScintilla/Editor.py" line="898" /> + <source>Generate Docstring</source> + <translation>Docstring erzeugen</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="901" /> <source>Select to brace</source> <translation>Zur Klammer auswählen</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="879" /> + <location filename="../QScintilla/Editor.py" line="902" /> <source>Select all</source> <translation>Alles auswählen</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="880" /> + <location filename="../QScintilla/Editor.py" line="903" /> <source>Deselect all</source> <translation>Auswahl aufheben</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="882" /> + <location filename="../QScintilla/Editor.py" line="905" /> <source>Execute Selection In Console</source> <translation>Auswahl in Konsole ausführen</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="894" /> + <location filename="../QScintilla/Editor.py" line="917" /> <source>Use Monospaced Font</source> <translation>Benutze Monospace Font</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="899" /> + <location filename="../QScintilla/Editor.py" line="922" /> <source>Autosave enabled</source> <translation>Autom. Speicherung aktiv</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="904" /> + <location filename="../QScintilla/Editor.py" line="927" /> <source>Typing aids enabled</source> <translation>Eingabehilfen aktiv</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="912" /> + <location filename="../QScintilla/Editor.py" line="935" /> <source>Automatic Completion enabled</source> <translation>Automatische Vervollständigung aktiv</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="921" /> - <source>Calltip</source> - <translation>Calltip</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="924" /> - <source>Code Info</source> - <translation>Code Info</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="939" /> - <source>New Document View</source> - <translation>Neue Dokumentenansicht</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="944" /> + <source>Calltip</source> + <translation>Calltip</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="947" /> + <source>Code Info</source> + <translation>Code Info</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="962" /> + <source>New Document View</source> + <translation>Neue Dokumentenansicht</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="967" /> <source>New Document View (with new split)</source> <translation>Neue Dokumentenansicht (in neuem Abschnitt)</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="952" /> + <location filename="../QScintilla/Editor.py" line="975" /> <source>Save</source> <translation>Speichern</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="956" /> + <location filename="../QScintilla/Editor.py" line="979" /> <source>Save As...</source> <translation>Speichern unter...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="961" /> + <location filename="../QScintilla/Editor.py" line="984" /> <source>Save Copy...</source> <translation>Kopie speichern...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="983" /> - <location filename="../QScintilla/Editor.py" line="980" /> + <location filename="../QScintilla/Editor.py" line="1006" /> + <location filename="../QScintilla/Editor.py" line="1003" /> <source>Complete</source> <translation>Vervollständigen</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="987" /> + <location filename="../QScintilla/Editor.py" line="1010" /> <source>Clear Completions Cache</source> <translation>Vervollständigungsspeicher löschen</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="990" /> + <location filename="../QScintilla/Editor.py" line="1013" /> <source>Complete from Document</source> <translation>Vervollständigung vom Dokument</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="992" /> + <location filename="../QScintilla/Editor.py" line="1015" /> <source>Complete from APIs</source> <translation>Vervollständigung von APIs</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="995" /> + <location filename="../QScintilla/Editor.py" line="1018" /> <source>Complete from Document and APIs</source> <translation>Vervollständigung vom Dokument und von APIs</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1009" /> + <location filename="../QScintilla/Editor.py" line="1032" /> <source>Check</source> <translation>Prüfen</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1020" /> + <location filename="../QScintilla/Editor.py" line="1043" /> <source>Code Formatting</source> <translation>Code Formatierung</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1023" /> - <source>Format Code</source> - <translation>Code formatieren</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1027" /> - <source>Check Formatting</source> - <translation>Umformatierung prüfen</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1031" /> - <source>Formatting Diff</source> - <translation>Diff der Umformatierung</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="1046" /> + <source>Format Code</source> + <translation>Code formatieren</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1050" /> + <source>Check Formatting</source> + <translation>Umformatierung prüfen</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1054" /> + <source>Formatting Diff</source> + <translation>Diff der Umformatierung</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1069" /> <source>Tools</source> <translation>Werkzeuge</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1057" /> + <location filename="../QScintilla/Editor.py" line="1080" /> <source>Show</source> <translation>Zeige</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1059" /> + <location filename="../QScintilla/Editor.py" line="1082" /> <source>Code metrics...</source> <translation>Quelltextmetriken...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1061" /> + <location filename="../QScintilla/Editor.py" line="1084" /> <source>Code coverage...</source> <translation>Quelltext Abdeckung...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1064" /> - <source>Show code coverage annotations</source> - <translation>Markiere Zeilen ohne Abdeckung</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1067" /> - <source>Hide code coverage annotations</source> - <translation>Lösche Abdeckungsmarkierungen</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1071" /> - <source>Profile data...</source> - <translation>Profildaten...</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1085" /> - <source>Diagrams</source> - <translation>Diagramme</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="1087" /> + <source>Show code coverage annotations</source> + <translation>Markiere Zeilen ohne Abdeckung</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1090" /> + <source>Hide code coverage annotations</source> + <translation>Lösche Abdeckungsmarkierungen</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1094" /> + <source>Profile data...</source> + <translation>Profildaten...</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1108" /> + <source>Diagrams</source> + <translation>Diagramme</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1110" /> <source>Class Diagram...</source> <translation>Klassendiagramm...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1088" /> - <source>Package Diagram...</source> - <translation>Package Diagramm...</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1089" /> - <source>Imports Diagram...</source> - <translation>Imports-Diagramm...</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1091" /> - <source>Application Diagram...</source> - <translation>Applikations-Diagramm...</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1096" /> - <source>Load Diagram...</source> - <translation>Diagramm laden...</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="1111" /> + <source>Package Diagram...</source> + <translation>Package Diagramm...</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1112" /> + <source>Imports Diagram...</source> + <translation>Imports-Diagramm...</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1114" /> + <source>Application Diagram...</source> + <translation>Applikations-Diagramm...</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1119" /> + <source>Load Diagram...</source> + <translation>Diagramm laden...</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1134" /> <source>Languages</source> <translation>Sprachen</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1115" /> + <location filename="../QScintilla/Editor.py" line="1138" /> <source>Text</source> <translation>Text</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1140" /> + <location filename="../QScintilla/Editor.py" line="1163" /> <source>Guessed</source> <translation>Ermittelt</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1471" /> - <location filename="../QScintilla/Editor.py" line="1144" /> + <location filename="../QScintilla/Editor.py" line="1494" /> + <location filename="../QScintilla/Editor.py" line="1167" /> <source>Alternatives</source> <translation>Alternativen</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1161" /> - <source>Encodings</source> - <translation>Kodierungen</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="1184" /> + <source>Encodings</source> + <translation>Kodierungen</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1207" /> <source>Re-Open With Encoding</source> <translation>Öffnen mit Kodierung</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1204" /> + <location filename="../QScintilla/Editor.py" line="1227" /> <source>End-of-Line Type</source> <translation>Zeilenendemarkierung</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1208" /> + <location filename="../QScintilla/Editor.py" line="1231" /> <source>Unix</source> <translation>Unix</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1214" /> + <location filename="../QScintilla/Editor.py" line="1237" /> <source>Windows</source> <translation>Windows</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1220" /> + <location filename="../QScintilla/Editor.py" line="1243" /> <source>Macintosh</source> <translation>Macintosh</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1238" /> + <location filename="../QScintilla/Editor.py" line="1261" /> <source>Spelling</source> <translation>Rechtschreibung</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8052" /> - <location filename="../QScintilla/Editor.py" line="1246" /> + <location filename="../QScintilla/Editor.py" line="8075" /> + <location filename="../QScintilla/Editor.py" line="1269" /> <source>Check spelling...</source> <translation>Rechtschreibprüfung...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1251" /> + <location filename="../QScintilla/Editor.py" line="1274" /> <source>Check spelling of selection...</source> <translation>Rechtschreibprüfung für Auswahl...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1255" /> + <location filename="../QScintilla/Editor.py" line="1278" /> <source>Remove from dictionary</source> <translation>Aus dem Wörterbuch entfernen</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1272" /> + <location filename="../QScintilla/Editor.py" line="1295" /> <source>Spell Check Languages</source> <translation>Sprachen für Rechtschreibprüfung</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1276" /> + <location filename="../QScintilla/Editor.py" line="1299" /> <source>No Language</source> <translation>Keine Sprache</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1303" /> + <location filename="../QScintilla/Editor.py" line="1326" /> <source>Toggle bookmark</source> <translation>Lesezeichen setzen/löschen</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1305" /> - <source>Next bookmark</source> - <translation>Nächstes Lesezeichen</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1308" /> - <source>Previous bookmark</source> - <translation>Vorheriges Lesezeichen</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1311" /> - <source>Clear all bookmarks</source> - <translation>Alle Lesezeichen löschen</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1322" /> - <source>Toggle breakpoint</source> - <translation>Haltepunkt setzen/löschen</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1325" /> - <source>Toggle temporary breakpoint</source> - <translation>Temporären Haltepunkt setzen/löschen</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="1328" /> - <source>Edit breakpoint...</source> - <translation>Haltepunkt bearbeiten...</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="5754" /> + <source>Next bookmark</source> + <translation>Nächstes Lesezeichen</translation> + </message> + <message> <location filename="../QScintilla/Editor.py" line="1331" /> - <source>Enable breakpoint</source> - <translation>Haltepunkt aktivieren</translation> + <source>Previous bookmark</source> + <translation>Vorheriges Lesezeichen</translation> </message> <message> <location filename="../QScintilla/Editor.py" line="1334" /> - <source>Next breakpoint</source> - <translation>Nächster Haltepunkt</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1337" /> - <source>Previous breakpoint</source> - <translation>Vorheriger Haltepunkt</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1340" /> - <source>Clear all breakpoints</source> - <translation>Alle Haltepunkte löschen</translation> + <source>Clear all bookmarks</source> + <translation>Alle Lesezeichen löschen</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1345" /> + <source>Toggle breakpoint</source> + <translation>Haltepunkt setzen/löschen</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1348" /> + <source>Toggle temporary breakpoint</source> + <translation>Temporären Haltepunkt setzen/löschen</translation> </message> <message> <location filename="../QScintilla/Editor.py" line="1351" /> - <source>Toggle all folds</source> - <translation>Alle Faltungen umschalten</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1356" /> - <source>Toggle all folds (including children)</source> - <translation>Alle Faltungen umschalten (inkl. Unterfaltungen)</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1359" /> - <source>Toggle current fold</source> - <translation>Aktuelle Faltung umschalten</translation> + <source>Edit breakpoint...</source> + <translation>Haltepunkt bearbeiten...</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="5777" /> + <location filename="../QScintilla/Editor.py" line="1354" /> + <source>Enable breakpoint</source> + <translation>Haltepunkt aktivieren</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1357" /> + <source>Next breakpoint</source> + <translation>Nächster Haltepunkt</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1360" /> + <source>Previous breakpoint</source> + <translation>Vorheriger Haltepunkt</translation> </message> <message> <location filename="../QScintilla/Editor.py" line="1363" /> - <source>Expand (including children)</source> - <translation>Ausklappen (inkl. Unterfaltungen)</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1367" /> - <source>Collapse (including children)</source> - <translation>Einklappen (inkl. Unterfaltungen)</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1372" /> - <source>Clear all folds</source> - <translation>Alle Faltungen aufklappen</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1383" /> - <source>Goto syntax error</source> - <translation>Zu Syntaxfehler gehen</translation> + <source>Clear all breakpoints</source> + <translation>Alle Haltepunkte löschen</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1374" /> + <source>Toggle all folds</source> + <translation>Alle Faltungen umschalten</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1379" /> + <source>Toggle all folds (including children)</source> + <translation>Alle Faltungen umschalten (inkl. Unterfaltungen)</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1382" /> + <source>Toggle current fold</source> + <translation>Aktuelle Faltung umschalten</translation> </message> <message> <location filename="../QScintilla/Editor.py" line="1386" /> - <source>Show syntax error message</source> - <translation>Zeige Syntaxfehlermeldung</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1389" /> - <source>Clear syntax error</source> - <translation>Syntaxfehler löschen</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1393" /> - <source>Next warning</source> - <translation>Nächste Warnung</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1396" /> - <source>Previous warning</source> - <translation>Vorherige Warnung</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1399" /> - <source>Show warning message</source> - <translation>Zeige Warnung</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1402" /> - <source>Clear warnings</source> - <translation>Warnungen löschen</translation> + <source>Expand (including children)</source> + <translation>Ausklappen (inkl. Unterfaltungen)</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1390" /> + <source>Collapse (including children)</source> + <translation>Einklappen (inkl. Unterfaltungen)</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1395" /> + <source>Clear all folds</source> + <translation>Alle Faltungen aufklappen</translation> </message> <message> <location filename="../QScintilla/Editor.py" line="1406" /> - <source>Next uncovered line</source> - <translation>Nächste nichtabgedeckte Zeile</translation> + <source>Goto syntax error</source> + <translation>Zu Syntaxfehler gehen</translation> </message> <message> <location filename="../QScintilla/Editor.py" line="1409" /> - <source>Previous uncovered line</source> - <translation>Vorige nichtabgedeckte Zeile</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1413" /> - <source>Next task</source> - <translation>Nächste Aufgabe</translation> + <source>Show syntax error message</source> + <translation>Zeige Syntaxfehlermeldung</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1412" /> + <source>Clear syntax error</source> + <translation>Syntaxfehler löschen</translation> </message> <message> <location filename="../QScintilla/Editor.py" line="1416" /> + <source>Next warning</source> + <translation>Nächste Warnung</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1419" /> + <source>Previous warning</source> + <translation>Vorherige Warnung</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1422" /> + <source>Show warning message</source> + <translation>Zeige Warnung</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1425" /> + <source>Clear warnings</source> + <translation>Warnungen löschen</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1429" /> + <source>Next uncovered line</source> + <translation>Nächste nichtabgedeckte Zeile</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1432" /> + <source>Previous uncovered line</source> + <translation>Vorige nichtabgedeckte Zeile</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1436" /> + <source>Next task</source> + <translation>Nächste Aufgabe</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1439" /> <source>Previous task</source> <translation>Vorherige Aufgabe</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1420" /> + <location filename="../QScintilla/Editor.py" line="1443" /> <source>Next change</source> <translation>Nächste Änderung</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1423" /> + <location filename="../QScintilla/Editor.py" line="1446" /> <source>Previous change</source> <translation>Vorherige Änderung</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1426" /> - <source>Clear changes</source> - <translation>Änderungsmarker löschen</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1457" /> - <location filename="../QScintilla/Editor.py" line="1448" /> - <source>Export source</source> - <translation>Quelltext exportieren</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="1449" /> + <source>Clear changes</source> + <translation>Änderungsmarker löschen</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1480" /> + <location filename="../QScintilla/Editor.py" line="1471" /> + <source>Export source</source> + <translation>Quelltext exportieren</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1472" /> <source><p>No exporter available for the export format <b>{0}</b>. Aborting...</p></source> <translation><p>Für das Exportformat <b>{0}</b> steht kein Exporter zur Verfügung. Abbruch...</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1458" /> + <location filename="../QScintilla/Editor.py" line="1481" /> <source>No export format given. Aborting...</source> <translation>Kein Exportformat angegeben. Abbruch...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1468" /> - <source>Alternatives ({0})</source> - <translation>Alternativen ({0})</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="1491" /> + <source>Alternatives ({0})</source> + <translation>Alternativen ({0})</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1514" /> <source>Pygments Lexer</source> <translation>Pygments Lexer</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1492" /> + <location filename="../QScintilla/Editor.py" line="1515" /> <source>Select the Pygments lexer to apply.</source> <translation>Wähle den anzuwendenden Pygments Lexer.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2051" /> + <location filename="../QScintilla/Editor.py" line="2074" /> <source>Modification of Read Only file</source> <translation>Änderungsversuch für eine schreibgeschützte Datei</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2052" /> + <location filename="../QScintilla/Editor.py" line="2075" /> <source>You are attempting to change a read only file. Please save to a different file first.</source> <translation>Sie versuchen, eine schreibgeschützte Datei zu ändern. Bitte speichern Sie sie zuerst in eine andere Datei.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2473" /> + <location filename="../QScintilla/Editor.py" line="2496" /> <source>Add Breakpoint</source> <translation>Haltepunkt hinzufügen</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2474" /> + <location filename="../QScintilla/Editor.py" line="2497" /> <source>No Python byte code will be created for the selected line. No break point will be set!</source> <translation>Für die angewählte Zeile wird kein Bytecode erzeugt. Es wird kein Haltepunkt gesetzt!</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2807" /> + <location filename="../QScintilla/Editor.py" line="2830" /> <source>Printing...</source> <translation>Drucke...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2824" /> + <location filename="../QScintilla/Editor.py" line="2847" /> <source>Printing completed</source> <translation>Drucken beendet</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2826" /> + <location filename="../QScintilla/Editor.py" line="2849" /> <source>Error while printing</source> <translation>Fehler beim Drucken</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2829" /> + <location filename="../QScintilla/Editor.py" line="2852" /> <source>Printing aborted</source> <translation>Drucken abgebrochen</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="3187" /> + <location filename="../QScintilla/Editor.py" line="3210" /> <source>File Modified</source> <translation>Datei geändert</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="3188" /> + <location filename="../QScintilla/Editor.py" line="3211" /> <source><p>The file <b>{0}</b> has unsaved changes.</p></source> <translation><p>Die Datei <b>{0}</b> enthält ungesicherte Änderungen.</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="3246" /> + <location filename="../QScintilla/Editor.py" line="3269" /> <source><p>The file <b>{0}</b> could not be opened.</p><p>Reason: {1}</p></source> <translation><p>Die Datei <b>{0}</b> konnte nicht geöffnet werden.<br />Ursache: {1}</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="3424" /> - <location filename="../QScintilla/Editor.py" line="3405" /> - <location filename="../QScintilla/Editor.py" line="3365" /> + <location filename="../QScintilla/Editor.py" line="3447" /> + <location filename="../QScintilla/Editor.py" line="3428" /> + <location filename="../QScintilla/Editor.py" line="3388" /> <source>Save File</source> <translation>Datei sichern</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="3366" /> + <location filename="../QScintilla/Editor.py" line="3389" /> <source><p>The file <b>{0}</b> could not be saved.<br/>Reason: {1}</p></source> <translation><p>Die Datei <b>{0}</b> konnte nicht gesichert werden.<br/>Grund: {1}</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="3425" /> + <location filename="../QScintilla/Editor.py" line="3448" /> <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="../QScintilla/Editor.py" line="4935" /> + <location filename="../QScintilla/Editor.py" line="4958" /> <source>Autocompletion</source> <translation>Automatische Vervollständigung</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="4936" /> + <location filename="../QScintilla/Editor.py" line="4959" /> <source>Autocompletion is not available because there is no autocompletion source set.</source> <translation>Die automatische Vervollständigung ist nicht verfügbar, da keine Quelle gesetzt ist.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5064" /> + <location filename="../QScintilla/Editor.py" line="5087" /> <source>Auto-Completion Provider</source> <translation>Provider für automatische Vervollständigungen</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5065" /> + <location filename="../QScintilla/Editor.py" line="5088" /> <source>The completion list provider '{0}' was already registered. Ignoring duplicate request.</source> <translation>Der Provider für automatische Vervollständigungen namens '{0}' ist bereits registriert. Die Wiederholung wird ignoriert.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5357" /> + <location filename="../QScintilla/Editor.py" line="5380" /> <source>Call-Tips Provider</source> <translation>Calltipps-Provider</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5358" /> + <location filename="../QScintilla/Editor.py" line="5381" /> <source>The call-tips provider '{0}' was already registered. Ignoring duplicate request.</source> <translation>Der Calltipps-Provider namens '{0}' ist bereits registriert. Die Wiederholung wird ignoriert.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5758" /> + <location filename="../QScintilla/Editor.py" line="5781" /> <source>Disable breakpoint</source> <translation>Haltepunkt deaktivieren</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6113" /> + <location filename="../QScintilla/Editor.py" line="6136" /> <source>Code Coverage</source> <translation>Quelltext Abdeckung</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6114" /> + <location filename="../QScintilla/Editor.py" line="6137" /> <source>Please select a coverage file</source> <translation>Bitte wählen Sie eine Datei mit Abdeckungsdaten</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6189" /> - <location filename="../QScintilla/Editor.py" line="6181" /> + <location filename="../QScintilla/Editor.py" line="6212" /> + <location filename="../QScintilla/Editor.py" line="6204" /> <source>Show Code Coverage Annotations</source> <translation>Zeilen ohne Abdeckung Markieren</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6182" /> + <location filename="../QScintilla/Editor.py" line="6205" /> <source>All lines have been covered.</source> <translation>Alle Zeilen sind abgedeckt.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6190" /> + <location filename="../QScintilla/Editor.py" line="6213" /> <source>There is no coverage file available.</source> <translation>Es gibt keine Datei mit Abdeckungsinformationen.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6286" /> + <location filename="../QScintilla/Editor.py" line="6309" /> <source>Profile Data</source> <translation>Profildaten</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6287" /> + <location filename="../QScintilla/Editor.py" line="6310" /> <source>Please select a profile file</source> <translation>Bitte wählen Sie eine Datei mit Profildaten</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6450" /> - <location filename="../QScintilla/Editor.py" line="6444" /> + <location filename="../QScintilla/Editor.py" line="6473" /> + <location filename="../QScintilla/Editor.py" line="6467" /> <source>Syntax Error</source> <translation>Syntaxfehler</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6451" /> + <location filename="../QScintilla/Editor.py" line="6474" /> <source>No syntax error message available.</source> <translation>Keine Syntaxfehlermeldung verfügbar.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6662" /> - <location filename="../QScintilla/Editor.py" line="6656" /> + <location filename="../QScintilla/Editor.py" line="6685" /> + <location filename="../QScintilla/Editor.py" line="6679" /> <source>Warning</source> <translation>Warnung</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6662" /> + <location filename="../QScintilla/Editor.py" line="6685" /> <source>No warning messages available.</source> <translation>Keine Warnmeldungen verfügbar.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6726" /> + <location filename="../QScintilla/Editor.py" line="6749" /> <source>Style: {0}</source> <translation>Stil: {0}</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6729" /> + <location filename="../QScintilla/Editor.py" line="6752" /> <source>Warning: {0}</source> <translation>Warnung: {0}</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6736" /> + <location filename="../QScintilla/Editor.py" line="6759" /> <source>Error: {0}</source> <translation>Fehler: {0}</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6843" /> + <location filename="../QScintilla/Editor.py" line="6866" /> <source>Macro Name</source> <translation>Makro Name</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6843" /> + <location filename="../QScintilla/Editor.py" line="6866" /> <source>Select a macro name:</source> <translation>Wähle einen Makro Namen:</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6869" /> + <location filename="../QScintilla/Editor.py" line="6892" /> <source>Load macro file</source> <translation>Lade Makrodatei</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6915" /> - <location filename="../QScintilla/Editor.py" line="6871" /> + <location filename="../QScintilla/Editor.py" line="6938" /> + <location filename="../QScintilla/Editor.py" line="6894" /> <source>Macro files (*.macro)</source> <translation>Makrodateien (*.macro)</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6893" /> - <location filename="../QScintilla/Editor.py" line="6883" /> + <location filename="../QScintilla/Editor.py" line="6916" /> + <location filename="../QScintilla/Editor.py" line="6906" /> <source>Error loading macro</source> <translation>Fehler beim Makro Laden</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6884" /> + <location filename="../QScintilla/Editor.py" line="6907" /> <source><p>The macro file <b>{0}</b> could not be read.</p></source> <translation><p>Die Makrodatei <b>{0}</b> kann nicht gelesen werden.</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6894" /> + <location filename="../QScintilla/Editor.py" line="6917" /> <source><p>The macro file <b>{0}</b> is corrupt.</p></source> <translation><p>Die Makrodatei <b>{0}</b> ist zerstört.</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6913" /> + <location filename="../QScintilla/Editor.py" line="6936" /> <source>Save macro file</source> <translation>Makrodatei schreiben</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6931" /> + <location filename="../QScintilla/Editor.py" line="6954" /> <source>Save macro</source> <translation>Makro speichern</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6932" /> + <location filename="../QScintilla/Editor.py" line="6955" /> <source><p>The macro file <b>{0}</b> already exists. Overwrite it?</p></source> <translation><p>Die Makrodatei <b>{0}</b> existiert bereits. Überschreiben?</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6947" /> + <location filename="../QScintilla/Editor.py" line="6970" /> <source>Error saving macro</source> <translation>Fehler beim Makro speichern</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6948" /> + <location filename="../QScintilla/Editor.py" line="6971" /> <source><p>The macro file <b>{0}</b> could not be written.</p></source> <translation><p>Die Makrodatei <b>{0}</b> kann nicht geschrieben werden.</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6961" /> + <location filename="../QScintilla/Editor.py" line="6984" /> <source>Start Macro Recording</source> <translation>Makroaufzeichnung starten</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6962" /> + <location filename="../QScintilla/Editor.py" line="6985" /> <source>Macro recording is already active. Start new?</source> <translation>Eine Makroaufzeichnung ist bereits aktiv. Neu starten?</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6988" /> + <location filename="../QScintilla/Editor.py" line="7011" /> <source>Macro Recording</source> <translation>Makroaufzeichnung</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6989" /> + <location filename="../QScintilla/Editor.py" line="7012" /> <source>Enter name of the macro:</source> <translation>Gib einen Namen für das Makro ein:</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7140" /> + <location filename="../QScintilla/Editor.py" line="7163" /> <source><p>The file <b>{0}</b> has been changed while it was opened in eric. Reread it?</p></source> <translation><p>Die Datei <b>{0}</b> wurde geändert, während sie in eric geöffnet war. Neu einlesen?</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7146" /> + <location filename="../QScintilla/Editor.py" line="7169" /> <source><br><b>Warning:</b> You will lose your changes upon reopening it.</source> <translation><br><b>Warnung:</b> Vorgenommenen Änderungen gehen beim neu einlesen verloren.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7153" /> + <location filename="../QScintilla/Editor.py" line="7176" /> <source>File changed</source> <translation>Datei geändert</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7203" /> + <location filename="../QScintilla/Editor.py" line="7226" /> <source>{0} (ro)</source> <translation>{0} (ro)</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7494" /> - <source>Drop Error</source> - <translation>Drop Fehler</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="7495" /> - <source><p><b>{0}</b> is not a file.</p></source> - <translation><p><b>{0}</b> ist keine Datei.</p></translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="7515" /> - <source>Resources</source> - <translation>Ressourcen</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="7517" /> - <source>Add file...</source> - <translation>Datei hinzufügen...</translation> + <source>Drop Error</source> + <translation>Drop Fehler</translation> </message> <message> <location filename="../QScintilla/Editor.py" line="7518" /> + <source><p><b>{0}</b> is not a file.</p></source> + <translation><p><b>{0}</b> ist keine Datei.</p></translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="7538" /> + <source>Resources</source> + <translation>Ressourcen</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="7540" /> + <source>Add file...</source> + <translation>Datei hinzufügen...</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="7541" /> <source>Add files...</source> <translation>Dateien hinzufügen...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7519" /> + <location filename="../QScintilla/Editor.py" line="7542" /> <source>Add aliased file...</source> <translation>Aliased-Datei hinzufügen...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7521" /> + <location filename="../QScintilla/Editor.py" line="7544" /> <source>Add localized resource...</source> <translation>Lokalisierte Ressource hinzufügen...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7524" /> + <location filename="../QScintilla/Editor.py" line="7547" /> <source>Add resource frame</source> <translation>Ressourcenrahmen hinzufügen</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7543" /> + <location filename="../QScintilla/Editor.py" line="7566" /> <source>Add file resource</source> <translation>Dateiressource hinzufügen</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7557" /> + <location filename="../QScintilla/Editor.py" line="7580" /> <source>Add file resources</source> <translation>Dateiressourcen hinzufügen</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7581" /> - <location filename="../QScintilla/Editor.py" line="7575" /> + <location filename="../QScintilla/Editor.py" line="7604" /> + <location filename="../QScintilla/Editor.py" line="7598" /> <source>Add aliased file resource</source> <translation>Aliased-Dateiressourcen hinzufügen</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7582" /> + <location filename="../QScintilla/Editor.py" line="7605" /> <source>Alias for file <b>{0}</b>:</source> <translation>Alias für Datei <b>{0}</b>:</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7657" /> + <location filename="../QScintilla/Editor.py" line="7680" /> <source>Package Diagram</source> <translation>Package-Diagramm</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7658" /> + <location filename="../QScintilla/Editor.py" line="7681" /> <source>Include class attributes?</source> <translation>Klassenattribute anzeigen?</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7678" /> + <location filename="../QScintilla/Editor.py" line="7701" /> <source>Imports Diagram</source> <translation>Imports Diagramm</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7679" /> + <location filename="../QScintilla/Editor.py" line="7702" /> <source>Include imports from external modules?</source> <translation>Imports externer Module anzeigen?</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7698" /> + <location filename="../QScintilla/Editor.py" line="7721" /> <source>Application Diagram</source> <translation>Applikations-Diagramm</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7699" /> + <location filename="../QScintilla/Editor.py" line="7722" /> <source>Include module names?</source> <translation>Modulnamen anzeigen?</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8056" /> + <location filename="../QScintilla/Editor.py" line="8079" /> <source>Add to dictionary</source> <translation>Zum Wörterbuch hinzufügen</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8058" /> + <location filename="../QScintilla/Editor.py" line="8081" /> <source>Ignore All</source> <translation>Alle ignorieren</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8476" /> + <location filename="../QScintilla/Editor.py" line="8499" /> <source>Sort Lines</source> <translation>Zeilen sortieren</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8477" /> + <location filename="../QScintilla/Editor.py" line="8500" /> <source>The selection contains illegal data for a numerical sort.</source> <translation>Die Auswahl enthält für eine numerische Sortierung ungültige Daten.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8570" /> + <location filename="../QScintilla/Editor.py" line="8593" /> <source>Register Mouse Click Handler</source> <translation>Maus Klick Handler registrieren</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8571" /> + <location filename="../QScintilla/Editor.py" line="8594" /> <source>A mouse click handler for "{0}" was already registered by "{1}". Aborting request by "{2}"...</source> <translation>Ein Maus Klick Handler für "{0}" wurde bereits durch "{1}" registriert. Die Anfrage durch "{2}" wird abgebrochen...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8667" /> + <location filename="../QScintilla/Editor.py" line="8690" /> <source>{0:4d} {1}</source> <comment>line number, source code</comment> <translation>{0:4d} {1}</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8673" /> + <location filename="../QScintilla/Editor.py" line="8696" /> <source>{0:4d} {1} => {2}</source> <comment>line number, source code, file name</comment> @@ -12119,12 +12131,12 @@ => {2}</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8741" /> + <location filename="../QScintilla/Editor.py" line="8764" /> <source>EditorConfig Properties</source> <translation>EditorConfig Eigenschaften</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8742" /> + <location filename="../QScintilla/Editor.py" line="8765" /> <source><p>The EditorConfig properties for file <b>{0}</b> could not be loaded.</p></source> <translation><p>Die EditorConfig Eigenschaften für die Datei <b>{0}</b> konnten nicht geladen werden.</p></translation> </message> @@ -13027,26 +13039,26 @@ <context> <name>EditorFilePage</name> <message> - <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="339" /> - <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="322" /> - <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="305" /> - <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="294" /> + <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="341" /> + <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="324" /> + <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="307" /> + <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="296" /> <source>Add File Filter</source> <translation>Dateifilter hinzufügen</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="295" /> + <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="297" /> <source>A Save File Filter must contain exactly one wildcard pattern. Yours contains {0}.</source> <translation>Ein Dateifilter zum Speichern darf genau ein Wildcard-Muster enthalten. Ihrer enthält {0}.</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="306" /> + <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="308" /> <source>A File Filter must contain at least one wildcard pattern.</source> <translation>Ein Dateifilter muss mindestens ein Wildcard-Muster enthalten.</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="340" /> - <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="323" /> + <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="342" /> + <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="325" /> <source>Enter the file filter entry:</source> <translation>Gib den Dateifiltereintrag ein:</translation> </message> @@ -13092,11 +13104,22 @@ </message> <message> <location filename="../Preferences/ConfigurationPages/EditorFilePage.ui" line="0" /> + <location filename="../Preferences/ConfigurationPages/EditorFilePage.ui" line="0" /> <source> KB</source> <translation> KB</translation> </message> <message> <location filename="../Preferences/ConfigurationPages/EditorFilePage.ui" line="0" /> + <source>Reject, if file is greater than</source> + <translation>Zurückweisen, wenn Datei größer ist als</translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/EditorFilePage.ui" line="0" /> + <source>Enter the filesize, opening a file should be rejected.</source> + <translation>Gib die Dateigröße ein, ab der das Öffnen einer Datei blockiert wird.</translation> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/EditorFilePage.ui" line="0" /> <source>End of Line</source> <translation>Zeilenende</translation> </message> @@ -17114,12 +17137,12 @@ <context> <name>EricApplication</name> <message> - <location filename="../EricWidgets/EricApplication.py" line="220" /> + <location filename="../EricWidgets/EricApplication.py" line="221" /> <source>Loading Style Sheet</source> <translation>Lade Stylesheet</translation> </message> <message> - <location filename="../EricWidgets/EricApplication.py" line="223" /> + <location filename="../EricWidgets/EricApplication.py" line="224" /> <source><p>The Qt Style Sheet file <b>{0}</b> could not be read.<br>Reason: {1}</p></source> <translation><p>Das Qt-Stylesheet <b>{0}</b> konnte nicht geladen werden.<br>Ursache: {1}</p></translation> </message> @@ -46057,7 +46080,7 @@ <translation>Pygments</translation> </message> <message> - <location filename="../Preferences/__init__.py" line="468" /> + <location filename="../Preferences/__init__.py" line="469" /> <location filename="../QScintilla/Lexers/__init__.py" line="482" /> <source>Python Files (*.py *.py3)</source> <translation>Python-Dateien (*.py *.py3)</translation> @@ -46310,7 +46333,7 @@ <translation>Alle Dateien (*)</translation> </message> <message> - <location filename="../Preferences/__init__.py" line="471" /> + <location filename="../Preferences/__init__.py" line="472" /> <location filename="../QScintilla/Lexers/__init__.py" line="575" /> <source>Python3 Files (*.py)</source> <translation>Python 3-Dateien (*.py)</translation> @@ -54876,18 +54899,18 @@ <context> <name>Preferences</name> <message> - <location filename="../Preferences/__init__.py" line="1651" /> + <location filename="../Preferences/__init__.py" line="1652" /> <source>Export Preferences</source> <translation>Einstellungen exportieren</translation> </message> <message> - <location filename="../Preferences/__init__.py" line="1680" /> - <location filename="../Preferences/__init__.py" line="1653" /> + <location filename="../Preferences/__init__.py" line="1681" /> + <location filename="../Preferences/__init__.py" line="1654" /> <source>Properties File (*.ini);;All Files (*)</source> <translation>Properties-Dateien (*.ini);;Alle Dateien (*)</translation> </message> <message> - <location filename="../Preferences/__init__.py" line="1678" /> + <location filename="../Preferences/__init__.py" line="1679" /> <source>Import Preferences</source> <translation>Einstellungen importieren</translation> </message> @@ -57860,10 +57883,10 @@ <translation>Mit Editor öffnen</translation> </message> <message> - <location filename="../Project/ProjectOthersBrowser.py" line="353" /> - <location filename="../Project/ProjectOthersBrowser.py" line="345" /> - <location filename="../Project/ProjectOthersBrowser.py" line="335" /> - <location filename="../Project/ProjectOthersBrowser.py" line="327" /> + <location filename="../Project/ProjectOthersBrowser.py" line="357" /> + <location filename="../Project/ProjectOthersBrowser.py" line="349" /> + <location filename="../Project/ProjectOthersBrowser.py" line="339" /> + <location filename="../Project/ProjectOthersBrowser.py" line="331" /> <location filename="../Project/ProjectOthersBrowser.py" line="85" /> <source>Show Mime-Type</source> <translation>MIME-Typ anzeigen</translation> @@ -57937,28 +57960,28 @@ <translation>Einstellungen...</translation> </message> <message> - <location filename="../Project/ProjectOthersBrowser.py" line="328" /> + <location filename="../Project/ProjectOthersBrowser.py" line="332" /> <source>The mime type of the file could not be determined.</source> <translation>Der MIME-Typ der Datei konnte nicht ermittelt werden.</translation> </message> <message> - <location filename="../Project/ProjectOthersBrowser.py" line="346" /> - <location filename="../Project/ProjectOthersBrowser.py" line="336" /> + <location filename="../Project/ProjectOthersBrowser.py" line="350" /> + <location filename="../Project/ProjectOthersBrowser.py" line="340" /> <source>The file has the mime type <b>{0}</b>.</source> <translation>Die Datei hat den MIME-Typ <b>{0}</b>.</translation> </message> <message> - <location filename="../Project/ProjectOthersBrowser.py" line="354" /> + <location filename="../Project/ProjectOthersBrowser.py" line="358" /> <source>The file has the mime type <b>{0}</b>.<br/> Shall it be added to the list of text mime types?</source> <translation>Die Datei hat den MIME-Typ <b>{0}</b>.<br/>Soll sie zur Liste der Text MIME-Typen hinzugefügt werden?</translation> </message> <message> - <location filename="../Project/ProjectOthersBrowser.py" line="447" /> + <location filename="../Project/ProjectOthersBrowser.py" line="451" /> <source>Delete files/directories</source> <translation>Dateien/Verzeichnisse löschen</translation> </message> <message> - <location filename="../Project/ProjectOthersBrowser.py" line="448" /> + <location filename="../Project/ProjectOthersBrowser.py" line="452" /> <source>Do you really want to delete these entries from the project?</source> <translation>Wollen Sie wirklich diese Einträge aus dem Projekt löschen?</translation> </message> @@ -85381,60 +85404,60 @@ <translation>ohne Länge</translation> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="901" /> + <location filename="../Debugger/VariablesViewer.py" line="904" /> <source>Global Variables</source> <translation>Globale Variablen</translation> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="903" /> + <location filename="../Debugger/VariablesViewer.py" line="906" /> <source><b>The Global Variables Viewer Window</b><p>This window displays the global variables of the debugged program.</p></source> <translation><b>Das Globale Variablen Fenster</b><p>Dieses Fenster zeigt die globalen Variablen des untersuchten Programmes an.</p></translation> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="910" /> + <location filename="../Debugger/VariablesViewer.py" line="913" /> <source>Local Variables</source> <translation>Lokale Variablen</translation> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="912" /> + <location filename="../Debugger/VariablesViewer.py" line="915" /> <source><b>The Local Variables Viewer Window</b><p>This window displays the local variables of the debugged program.</p></source> <translation><b>Das Lokale Variablen Fenster</b><p>Dieses Fenster zeigt die lokalen Variablen des untersuchten Programmes an.</p></translation> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="1030" /> + <location filename="../Debugger/VariablesViewer.py" line="1039" /> <source>Show Details...</source> <translation>Zeige Details...</translation> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="1032" /> + <location filename="../Debugger/VariablesViewer.py" line="1041" /> <source>Expand</source> <translation>Ausklappen</translation> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="1033" /> - <source>Collapse</source> - <translation>Einklappen</translation> - </message> - <message> - <location filename="../Debugger/VariablesViewer.py" line="1034" /> - <source>Collapse All</source> - <translation>Alle einklappen</translation> - </message> - <message> <location filename="../Debugger/VariablesViewer.py" line="1042" /> - <location filename="../Debugger/VariablesViewer.py" line="1036" /> + <source>Collapse</source> + <translation>Einklappen</translation> + </message> + <message> + <location filename="../Debugger/VariablesViewer.py" line="1043" /> + <source>Collapse All</source> + <translation>Alle einklappen</translation> + </message> + <message> + <location filename="../Debugger/VariablesViewer.py" line="1051" /> + <location filename="../Debugger/VariablesViewer.py" line="1045" /> <source>Refresh</source> <translation>Aktualisieren</translation> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="1044" /> - <location filename="../Debugger/VariablesViewer.py" line="1038" /> + <location filename="../Debugger/VariablesViewer.py" line="1053" /> + <location filename="../Debugger/VariablesViewer.py" line="1047" /> <source>Configure...</source> <translation>Einstellungen...</translation> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="1046" /> - <location filename="../Debugger/VariablesViewer.py" line="1039" /> + <location filename="../Debugger/VariablesViewer.py" line="1055" /> + <location filename="../Debugger/VariablesViewer.py" line="1048" /> <source>Variables Type Filter...</source> <translation>Variablentypenfilter …</translation> </message> @@ -96008,12 +96031,12 @@ <context> <name>eric7_ide</name> <message> - <location filename="../eric7_ide.py" line="394" /> + <location filename="../eric7_ide.py" line="395" /> <source>Starting...</source> <translation>Starte...</translation> </message> <message> - <location filename="../eric7_ide.py" line="400" /> + <location filename="../eric7_ide.py" line="401" /> <source>Generating Main Window...</source> <translation>Erzeuge das Hauptfenster...</translation> </message>
--- a/src/eric7/i18n/eric7_empty.ts Fri Oct 14 14:46:40 2022 +0200 +++ b/src/eric7/i18n/eric7_empty.ts Fri Oct 14 17:02:09 2022 +0200 @@ -1804,17 +1804,17 @@ <translation type="unfinished" /> </message> <message> - <location filename="../Utilities/BackgroundService.py" line="488" /> + <location filename="../Utilities/BackgroundService.py" line="487" /> <source>Eric's background client disconnected because of an unknown reason.</source> <translation type="unfinished" /> </message> <message> + <location filename="../Utilities/BackgroundService.py" line="496" /> + <source>Background client disconnected.</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../Utilities/BackgroundService.py" line="497" /> - <source>Background client disconnected.</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Utilities/BackgroundService.py" line="498" /> <source>The background client for <b>{0}</b> disconnected because of an unknown reason.<br>Should it be restarted?</source> <translation type="unfinished" /> </message> @@ -8831,13 +8831,13 @@ <translation type="unfinished" /> </message> <message> - <location filename="../Debugger/DebugViewer.py" line="754" /> + <location filename="../Debugger/DebugViewer.py" line="756" /> <source><p>Debugger with ID <b>{0}</b> has been connected.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Debugger/DebugViewer.py" line="997" /> - <location filename="../Debugger/DebugViewer.py" line="869" /> + <location filename="../Debugger/DebugViewer.py" line="999" /> + <location filename="../Debugger/DebugViewer.py" line="871" /> <source>unknown state ({0})</source> <translation type="unfinished" /> </message> @@ -9517,7 +9517,7 @@ <translation type="unfinished" /> </message> <message> - <location filename="../Project/DebuggerPropertiesDialog.py" line="127" /> + <location filename="../Project/DebuggerPropertiesDialog.py" line="133" /> <source>All Files (*)</source> <translation type="unfinished" /> </message> @@ -11082,960 +11082,972 @@ <context> <name>Editor</name> <message> - <location filename="../QScintilla/Editor.py" line="3245" /> - <location filename="../QScintilla/Editor.py" line="406" /> + <location filename="../QScintilla/Editor.py" line="3268" /> + <location filename="../QScintilla/Editor.py" line="431" /> + <location filename="../QScintilla/Editor.py" line="416" /> + <location filename="../QScintilla/Editor.py" line="404" /> <source>Open File</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="407" /> + <location filename="../QScintilla/Editor.py" line="405" /> + <source><p>The file <b>{0}</b> is not a text file. It will not be opened!</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="417" /> + <source><p>The size of the file <b>{0}</b> is <b>{1} KB</b> and exceeds the configured limit of <b>{2} KB</b>. It will not be opened!</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="432" /> <source><p>The size of the file <b>{0}</b> is <b>{1} KB</b>. Do you really want to load it?</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="505" /> + <location filename="../QScintilla/Editor.py" line="528" /> <source><b>A Source Editor Window</b><p>This window is used to display and edit a source file. You can open as many of these as you like. The name of the file is displayed in the window's titlebar.</p><p>In order to set breakpoints just click in the space between the line numbers and the fold markers. Via the context menu of the margins they may be edited.</p><p>In order to set bookmarks just Shift click in the space between the line numbers and the fold markers.</p><p>These actions can be reversed via the context menu.</p><p>Ctrl clicking on a syntax error marker shows some info about this error.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="833" /> + <location filename="../QScintilla/Editor.py" line="856" /> <source>Undo</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="836" /> + <location filename="../QScintilla/Editor.py" line="859" /> <source>Redo</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="839" /> + <location filename="../QScintilla/Editor.py" line="862" /> <source>Revert to last saved state</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="843" /> + <location filename="../QScintilla/Editor.py" line="866" /> <source>Cut</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="846" /> + <location filename="../QScintilla/Editor.py" line="869" /> <source>Copy</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="849" /> + <location filename="../QScintilla/Editor.py" line="872" /> <source>Paste</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="855" /> - <source>Indent</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="860" /> - <source>Unindent</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="865" /> - <source>Comment</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="870" /> - <source>Uncomment</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="8934" /> - <location filename="../QScintilla/Editor.py" line="875" /> - <source>Generate Docstring</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/Editor.py" line="878" /> + <source>Indent</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="883" /> + <source>Unindent</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="888" /> + <source>Comment</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="893" /> + <source>Uncomment</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="8957" /> + <location filename="../QScintilla/Editor.py" line="898" /> + <source>Generate Docstring</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="901" /> <source>Select to brace</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="879" /> + <location filename="../QScintilla/Editor.py" line="902" /> <source>Select all</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="880" /> + <location filename="../QScintilla/Editor.py" line="903" /> <source>Deselect all</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="882" /> + <location filename="../QScintilla/Editor.py" line="905" /> <source>Execute Selection In Console</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="894" /> + <location filename="../QScintilla/Editor.py" line="917" /> <source>Use Monospaced Font</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="899" /> + <location filename="../QScintilla/Editor.py" line="922" /> <source>Autosave enabled</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="904" /> + <location filename="../QScintilla/Editor.py" line="927" /> <source>Typing aids enabled</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="912" /> + <location filename="../QScintilla/Editor.py" line="935" /> <source>Automatic Completion enabled</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="921" /> - <source>Calltip</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="924" /> - <source>Code Info</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="939" /> - <source>New Document View</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/Editor.py" line="944" /> + <source>Calltip</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="947" /> + <source>Code Info</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="962" /> + <source>New Document View</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="967" /> <source>New Document View (with new split)</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="952" /> + <location filename="../QScintilla/Editor.py" line="975" /> <source>Save</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="956" /> + <location filename="../QScintilla/Editor.py" line="979" /> <source>Save As...</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="961" /> + <location filename="../QScintilla/Editor.py" line="984" /> <source>Save Copy...</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="983" /> - <location filename="../QScintilla/Editor.py" line="980" /> + <location filename="../QScintilla/Editor.py" line="1006" /> + <location filename="../QScintilla/Editor.py" line="1003" /> <source>Complete</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="987" /> + <location filename="../QScintilla/Editor.py" line="1010" /> <source>Clear Completions Cache</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="990" /> + <location filename="../QScintilla/Editor.py" line="1013" /> <source>Complete from Document</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="992" /> + <location filename="../QScintilla/Editor.py" line="1015" /> <source>Complete from APIs</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="995" /> + <location filename="../QScintilla/Editor.py" line="1018" /> <source>Complete from Document and APIs</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1009" /> + <location filename="../QScintilla/Editor.py" line="1032" /> <source>Check</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1020" /> + <location filename="../QScintilla/Editor.py" line="1043" /> <source>Code Formatting</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1023" /> - <source>Format Code</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1027" /> - <source>Check Formatting</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1031" /> - <source>Formatting Diff</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/Editor.py" line="1046" /> + <source>Format Code</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1050" /> + <source>Check Formatting</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1054" /> + <source>Formatting Diff</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1069" /> <source>Tools</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1057" /> + <location filename="../QScintilla/Editor.py" line="1080" /> <source>Show</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1059" /> + <location filename="../QScintilla/Editor.py" line="1082" /> <source>Code metrics...</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1061" /> + <location filename="../QScintilla/Editor.py" line="1084" /> <source>Code coverage...</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1064" /> - <source>Show code coverage annotations</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1067" /> - <source>Hide code coverage annotations</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1071" /> - <source>Profile data...</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1085" /> - <source>Diagrams</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/Editor.py" line="1087" /> + <source>Show code coverage annotations</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1090" /> + <source>Hide code coverage annotations</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1094" /> + <source>Profile data...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1108" /> + <source>Diagrams</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1110" /> <source>Class Diagram...</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1088" /> - <source>Package Diagram...</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1089" /> - <source>Imports Diagram...</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1091" /> - <source>Application Diagram...</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1096" /> - <source>Load Diagram...</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/Editor.py" line="1111" /> + <source>Package Diagram...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1112" /> + <source>Imports Diagram...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1114" /> + <source>Application Diagram...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1119" /> + <source>Load Diagram...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1134" /> <source>Languages</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1115" /> + <location filename="../QScintilla/Editor.py" line="1138" /> <source>Text</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1140" /> + <location filename="../QScintilla/Editor.py" line="1163" /> <source>Guessed</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1471" /> - <location filename="../QScintilla/Editor.py" line="1144" /> + <location filename="../QScintilla/Editor.py" line="1494" /> + <location filename="../QScintilla/Editor.py" line="1167" /> <source>Alternatives</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1161" /> - <source>Encodings</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/Editor.py" line="1184" /> + <source>Encodings</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1207" /> <source>Re-Open With Encoding</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1204" /> + <location filename="../QScintilla/Editor.py" line="1227" /> <source>End-of-Line Type</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1208" /> + <location filename="../QScintilla/Editor.py" line="1231" /> <source>Unix</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1214" /> + <location filename="../QScintilla/Editor.py" line="1237" /> <source>Windows</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1220" /> + <location filename="../QScintilla/Editor.py" line="1243" /> <source>Macintosh</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1238" /> + <location filename="../QScintilla/Editor.py" line="1261" /> <source>Spelling</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="8052" /> - <location filename="../QScintilla/Editor.py" line="1246" /> + <location filename="../QScintilla/Editor.py" line="8075" /> + <location filename="../QScintilla/Editor.py" line="1269" /> <source>Check spelling...</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1251" /> + <location filename="../QScintilla/Editor.py" line="1274" /> <source>Check spelling of selection...</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1255" /> + <location filename="../QScintilla/Editor.py" line="1278" /> <source>Remove from dictionary</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1272" /> + <location filename="../QScintilla/Editor.py" line="1295" /> <source>Spell Check Languages</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1276" /> + <location filename="../QScintilla/Editor.py" line="1299" /> <source>No Language</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1303" /> + <location filename="../QScintilla/Editor.py" line="1326" /> <source>Toggle bookmark</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1305" /> - <source>Next bookmark</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1308" /> - <source>Previous bookmark</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1311" /> - <source>Clear all bookmarks</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1322" /> - <source>Toggle breakpoint</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1325" /> - <source>Toggle temporary breakpoint</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/Editor.py" line="1328" /> - <source>Edit breakpoint...</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="5754" /> + <source>Next bookmark</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../QScintilla/Editor.py" line="1331" /> - <source>Enable breakpoint</source> + <source>Previous bookmark</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/Editor.py" line="1334" /> - <source>Next breakpoint</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1337" /> - <source>Previous breakpoint</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1340" /> - <source>Clear all breakpoints</source> + <source>Clear all bookmarks</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1345" /> + <source>Toggle breakpoint</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1348" /> + <source>Toggle temporary breakpoint</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/Editor.py" line="1351" /> - <source>Toggle all folds</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1356" /> - <source>Toggle all folds (including children)</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1359" /> - <source>Toggle current fold</source> + <source>Edit breakpoint...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="5777" /> + <location filename="../QScintilla/Editor.py" line="1354" /> + <source>Enable breakpoint</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1357" /> + <source>Next breakpoint</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1360" /> + <source>Previous breakpoint</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/Editor.py" line="1363" /> - <source>Expand (including children)</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1367" /> - <source>Collapse (including children)</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1372" /> - <source>Clear all folds</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1383" /> - <source>Goto syntax error</source> + <source>Clear all breakpoints</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1374" /> + <source>Toggle all folds</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1379" /> + <source>Toggle all folds (including children)</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1382" /> + <source>Toggle current fold</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/Editor.py" line="1386" /> - <source>Show syntax error message</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1389" /> - <source>Clear syntax error</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1393" /> - <source>Next warning</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1396" /> - <source>Previous warning</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1399" /> - <source>Show warning message</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1402" /> - <source>Clear warnings</source> + <source>Expand (including children)</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1390" /> + <source>Collapse (including children)</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1395" /> + <source>Clear all folds</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/Editor.py" line="1406" /> - <source>Next uncovered line</source> + <source>Goto syntax error</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/Editor.py" line="1409" /> - <source>Previous uncovered line</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1413" /> - <source>Next task</source> + <source>Show syntax error message</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1412" /> + <source>Clear syntax error</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/Editor.py" line="1416" /> + <source>Next warning</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1419" /> + <source>Previous warning</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1422" /> + <source>Show warning message</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1425" /> + <source>Clear warnings</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1429" /> + <source>Next uncovered line</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1432" /> + <source>Previous uncovered line</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1436" /> + <source>Next task</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1439" /> <source>Previous task</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1420" /> + <location filename="../QScintilla/Editor.py" line="1443" /> <source>Next change</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1423" /> + <location filename="../QScintilla/Editor.py" line="1446" /> <source>Previous change</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1426" /> - <source>Clear changes</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1457" /> - <location filename="../QScintilla/Editor.py" line="1448" /> - <source>Export source</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/Editor.py" line="1449" /> + <source>Clear changes</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1480" /> + <location filename="../QScintilla/Editor.py" line="1471" /> + <source>Export source</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1472" /> <source><p>No exporter available for the export format <b>{0}</b>. Aborting...</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1458" /> + <location filename="../QScintilla/Editor.py" line="1481" /> <source>No export format given. Aborting...</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1468" /> - <source>Alternatives ({0})</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/Editor.py" line="1491" /> + <source>Alternatives ({0})</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1514" /> <source>Pygments Lexer</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1492" /> + <location filename="../QScintilla/Editor.py" line="1515" /> <source>Select the Pygments lexer to apply.</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="2051" /> + <location filename="../QScintilla/Editor.py" line="2074" /> <source>Modification of Read Only file</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="2052" /> + <location filename="../QScintilla/Editor.py" line="2075" /> <source>You are attempting to change a read only file. Please save to a different file first.</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="2473" /> + <location filename="../QScintilla/Editor.py" line="2496" /> <source>Add Breakpoint</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="2474" /> + <location filename="../QScintilla/Editor.py" line="2497" /> <source>No Python byte code will be created for the selected line. No break point will be set!</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="2807" /> + <location filename="../QScintilla/Editor.py" line="2830" /> <source>Printing...</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="2824" /> + <location filename="../QScintilla/Editor.py" line="2847" /> <source>Printing completed</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="2826" /> + <location filename="../QScintilla/Editor.py" line="2849" /> <source>Error while printing</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="2829" /> + <location filename="../QScintilla/Editor.py" line="2852" /> <source>Printing aborted</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="3187" /> + <location filename="../QScintilla/Editor.py" line="3210" /> <source>File Modified</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="3188" /> + <location filename="../QScintilla/Editor.py" line="3211" /> <source><p>The file <b>{0}</b> has unsaved changes.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="3246" /> + <location filename="../QScintilla/Editor.py" line="3269" /> <source><p>The file <b>{0}</b> could not be opened.</p><p>Reason: {1}</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="3424" /> - <location filename="../QScintilla/Editor.py" line="3405" /> - <location filename="../QScintilla/Editor.py" line="3365" /> + <location filename="../QScintilla/Editor.py" line="3447" /> + <location filename="../QScintilla/Editor.py" line="3428" /> + <location filename="../QScintilla/Editor.py" line="3388" /> <source>Save File</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="3366" /> + <location filename="../QScintilla/Editor.py" line="3389" /> <source><p>The file <b>{0}</b> could not be saved.<br/>Reason: {1}</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="3425" /> + <location filename="../QScintilla/Editor.py" line="3448" /> <source><p>The file <b>{0}</b> already exists. Overwrite it?</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="4935" /> + <location filename="../QScintilla/Editor.py" line="4958" /> <source>Autocompletion</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="4936" /> + <location filename="../QScintilla/Editor.py" line="4959" /> <source>Autocompletion is not available because there is no autocompletion source set.</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="5064" /> + <location filename="../QScintilla/Editor.py" line="5087" /> <source>Auto-Completion Provider</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="5065" /> + <location filename="../QScintilla/Editor.py" line="5088" /> <source>The completion list provider '{0}' was already registered. Ignoring duplicate request.</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="5357" /> + <location filename="../QScintilla/Editor.py" line="5380" /> <source>Call-Tips Provider</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="5358" /> + <location filename="../QScintilla/Editor.py" line="5381" /> <source>The call-tips provider '{0}' was already registered. Ignoring duplicate request.</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="5758" /> + <location filename="../QScintilla/Editor.py" line="5781" /> <source>Disable breakpoint</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="6113" /> + <location filename="../QScintilla/Editor.py" line="6136" /> <source>Code Coverage</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="6114" /> + <location filename="../QScintilla/Editor.py" line="6137" /> <source>Please select a coverage file</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="6189" /> - <location filename="../QScintilla/Editor.py" line="6181" /> + <location filename="../QScintilla/Editor.py" line="6212" /> + <location filename="../QScintilla/Editor.py" line="6204" /> <source>Show Code Coverage Annotations</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="6182" /> + <location filename="../QScintilla/Editor.py" line="6205" /> <source>All lines have been covered.</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="6190" /> + <location filename="../QScintilla/Editor.py" line="6213" /> <source>There is no coverage file available.</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="6286" /> + <location filename="../QScintilla/Editor.py" line="6309" /> <source>Profile Data</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="6287" /> + <location filename="../QScintilla/Editor.py" line="6310" /> <source>Please select a profile file</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="6450" /> - <location filename="../QScintilla/Editor.py" line="6444" /> + <location filename="../QScintilla/Editor.py" line="6473" /> + <location filename="../QScintilla/Editor.py" line="6467" /> <source>Syntax Error</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="6451" /> + <location filename="../QScintilla/Editor.py" line="6474" /> <source>No syntax error message available.</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="6662" /> - <location filename="../QScintilla/Editor.py" line="6656" /> + <location filename="../QScintilla/Editor.py" line="6685" /> + <location filename="../QScintilla/Editor.py" line="6679" /> <source>Warning</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="6662" /> + <location filename="../QScintilla/Editor.py" line="6685" /> <source>No warning messages available.</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="6726" /> + <location filename="../QScintilla/Editor.py" line="6749" /> <source>Style: {0}</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="6729" /> + <location filename="../QScintilla/Editor.py" line="6752" /> <source>Warning: {0}</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="6736" /> + <location filename="../QScintilla/Editor.py" line="6759" /> <source>Error: {0}</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="6843" /> + <location filename="../QScintilla/Editor.py" line="6866" /> <source>Macro Name</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="6843" /> + <location filename="../QScintilla/Editor.py" line="6866" /> <source>Select a macro name:</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="6869" /> + <location filename="../QScintilla/Editor.py" line="6892" /> <source>Load macro file</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="6915" /> - <location filename="../QScintilla/Editor.py" line="6871" /> + <location filename="../QScintilla/Editor.py" line="6938" /> + <location filename="../QScintilla/Editor.py" line="6894" /> <source>Macro files (*.macro)</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="6893" /> - <location filename="../QScintilla/Editor.py" line="6883" /> + <location filename="../QScintilla/Editor.py" line="6916" /> + <location filename="../QScintilla/Editor.py" line="6906" /> <source>Error loading macro</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="6884" /> + <location filename="../QScintilla/Editor.py" line="6907" /> <source><p>The macro file <b>{0}</b> could not be read.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="6894" /> + <location filename="../QScintilla/Editor.py" line="6917" /> <source><p>The macro file <b>{0}</b> is corrupt.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="6913" /> + <location filename="../QScintilla/Editor.py" line="6936" /> <source>Save macro file</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="6931" /> + <location filename="../QScintilla/Editor.py" line="6954" /> <source>Save macro</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="6932" /> + <location filename="../QScintilla/Editor.py" line="6955" /> <source><p>The macro file <b>{0}</b> already exists. Overwrite it?</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="6947" /> + <location filename="../QScintilla/Editor.py" line="6970" /> <source>Error saving macro</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="6948" /> + <location filename="../QScintilla/Editor.py" line="6971" /> <source><p>The macro file <b>{0}</b> could not be written.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="6961" /> + <location filename="../QScintilla/Editor.py" line="6984" /> <source>Start Macro Recording</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="6962" /> + <location filename="../QScintilla/Editor.py" line="6985" /> <source>Macro recording is already active. Start new?</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="6988" /> + <location filename="../QScintilla/Editor.py" line="7011" /> <source>Macro Recording</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="6989" /> + <location filename="../QScintilla/Editor.py" line="7012" /> <source>Enter name of the macro:</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="7140" /> + <location filename="../QScintilla/Editor.py" line="7163" /> <source><p>The file <b>{0}</b> has been changed while it was opened in eric. Reread it?</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="7146" /> + <location filename="../QScintilla/Editor.py" line="7169" /> <source><br><b>Warning:</b> You will lose your changes upon reopening it.</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="7153" /> + <location filename="../QScintilla/Editor.py" line="7176" /> <source>File changed</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="7203" /> + <location filename="../QScintilla/Editor.py" line="7226" /> <source>{0} (ro)</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="7494" /> - <source>Drop Error</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="7495" /> - <source><p><b>{0}</b> is not a file.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="7515" /> - <source>Resources</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/Editor.py" line="7517" /> - <source>Add file...</source> + <source>Drop Error</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/Editor.py" line="7518" /> + <source><p><b>{0}</b> is not a file.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="7538" /> + <source>Resources</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="7540" /> + <source>Add file...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="7541" /> <source>Add files...</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="7519" /> + <location filename="../QScintilla/Editor.py" line="7542" /> <source>Add aliased file...</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="7521" /> + <location filename="../QScintilla/Editor.py" line="7544" /> <source>Add localized resource...</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="7524" /> + <location filename="../QScintilla/Editor.py" line="7547" /> <source>Add resource frame</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="7543" /> + <location filename="../QScintilla/Editor.py" line="7566" /> <source>Add file resource</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="7557" /> + <location filename="../QScintilla/Editor.py" line="7580" /> <source>Add file resources</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="7581" /> - <location filename="../QScintilla/Editor.py" line="7575" /> + <location filename="../QScintilla/Editor.py" line="7604" /> + <location filename="../QScintilla/Editor.py" line="7598" /> <source>Add aliased file resource</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="7582" /> + <location filename="../QScintilla/Editor.py" line="7605" /> <source>Alias for file <b>{0}</b>:</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="7657" /> + <location filename="../QScintilla/Editor.py" line="7680" /> <source>Package Diagram</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="7658" /> + <location filename="../QScintilla/Editor.py" line="7681" /> <source>Include class attributes?</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="7678" /> + <location filename="../QScintilla/Editor.py" line="7701" /> <source>Imports Diagram</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="7679" /> + <location filename="../QScintilla/Editor.py" line="7702" /> <source>Include imports from external modules?</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="7698" /> + <location filename="../QScintilla/Editor.py" line="7721" /> <source>Application Diagram</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="7699" /> + <location filename="../QScintilla/Editor.py" line="7722" /> <source>Include module names?</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="8056" /> + <location filename="../QScintilla/Editor.py" line="8079" /> <source>Add to dictionary</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="8058" /> + <location filename="../QScintilla/Editor.py" line="8081" /> <source>Ignore All</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="8476" /> + <location filename="../QScintilla/Editor.py" line="8499" /> <source>Sort Lines</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="8477" /> + <location filename="../QScintilla/Editor.py" line="8500" /> <source>The selection contains illegal data for a numerical sort.</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="8570" /> + <location filename="../QScintilla/Editor.py" line="8593" /> <source>Register Mouse Click Handler</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="8571" /> + <location filename="../QScintilla/Editor.py" line="8594" /> <source>A mouse click handler for "{0}" was already registered by "{1}". Aborting request by "{2}"...</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="8667" /> + <location filename="../QScintilla/Editor.py" line="8690" /> <source>{0:4d} {1}</source> <comment>line number, source code</comment> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="8673" /> + <location filename="../QScintilla/Editor.py" line="8696" /> <source>{0:4d} {1} => {2}</source> <comment>line number, source code, file name</comment> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="8741" /> + <location filename="../QScintilla/Editor.py" line="8764" /> <source>EditorConfig Properties</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="8742" /> + <location filename="../QScintilla/Editor.py" line="8765" /> <source><p>The EditorConfig properties for file <b>{0}</b> could not be loaded.</p></source> <translation type="unfinished" /> </message> @@ -12938,26 +12950,26 @@ <context> <name>EditorFilePage</name> <message> - <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="339" /> - <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="322" /> - <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="305" /> - <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="294" /> + <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="341" /> + <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="324" /> + <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="307" /> + <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="296" /> <source>Add File Filter</source> <translation type="unfinished" /> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="295" /> + <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="297" /> <source>A Save File Filter must contain exactly one wildcard pattern. Yours contains {0}.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="306" /> + <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="308" /> <source>A File Filter must contain at least one wildcard pattern.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="340" /> - <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="323" /> + <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="342" /> + <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="325" /> <source>Enter the file filter entry:</source> <translation type="unfinished" /> </message> @@ -13003,11 +13015,22 @@ </message> <message> <location filename="../Preferences/ConfigurationPages/EditorFilePage.ui" line="0" /> + <location filename="../Preferences/ConfigurationPages/EditorFilePage.ui" line="0" /> <source> KB</source> <translation type="unfinished" /> </message> <message> <location filename="../Preferences/ConfigurationPages/EditorFilePage.ui" line="0" /> + <source>Reject, if file is greater than</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/EditorFilePage.ui" line="0" /> + <source>Enter the filesize, opening a file should be rejected.</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/EditorFilePage.ui" line="0" /> <source>End of Line</source> <translation type="unfinished" /> </message> @@ -17021,12 +17044,12 @@ <context> <name>EricApplication</name> <message> - <location filename="../EricWidgets/EricApplication.py" line="220" /> + <location filename="../EricWidgets/EricApplication.py" line="221" /> <source>Loading Style Sheet</source> <translation type="unfinished" /> </message> <message> - <location filename="../EricWidgets/EricApplication.py" line="223" /> + <location filename="../EricWidgets/EricApplication.py" line="224" /> <source><p>The Qt Style Sheet file <b>{0}</b> could not be read.<br>Reason: {1}</p></source> <translation type="unfinished" /> </message> @@ -45822,7 +45845,7 @@ <translation type="unfinished" /> </message> <message> - <location filename="../Preferences/__init__.py" line="468" /> + <location filename="../Preferences/__init__.py" line="469" /> <location filename="../QScintilla/Lexers/__init__.py" line="482" /> <source>Python Files (*.py *.py3)</source> <translation type="unfinished" /> @@ -46075,7 +46098,7 @@ <translation type="unfinished" /> </message> <message> - <location filename="../Preferences/__init__.py" line="471" /> + <location filename="../Preferences/__init__.py" line="472" /> <location filename="../QScintilla/Lexers/__init__.py" line="575" /> <source>Python3 Files (*.py)</source> <translation type="unfinished" /> @@ -54616,18 +54639,18 @@ <context> <name>Preferences</name> <message> - <location filename="../Preferences/__init__.py" line="1651" /> + <location filename="../Preferences/__init__.py" line="1652" /> <source>Export Preferences</source> <translation type="unfinished" /> </message> <message> - <location filename="../Preferences/__init__.py" line="1680" /> - <location filename="../Preferences/__init__.py" line="1653" /> + <location filename="../Preferences/__init__.py" line="1681" /> + <location filename="../Preferences/__init__.py" line="1654" /> <source>Properties File (*.ini);;All Files (*)</source> <translation type="unfinished" /> </message> <message> - <location filename="../Preferences/__init__.py" line="1678" /> + <location filename="../Preferences/__init__.py" line="1679" /> <source>Import Preferences</source> <translation type="unfinished" /> </message> @@ -57599,10 +57622,10 @@ <translation type="unfinished" /> </message> <message> - <location filename="../Project/ProjectOthersBrowser.py" line="353" /> - <location filename="../Project/ProjectOthersBrowser.py" line="345" /> - <location filename="../Project/ProjectOthersBrowser.py" line="335" /> - <location filename="../Project/ProjectOthersBrowser.py" line="327" /> + <location filename="../Project/ProjectOthersBrowser.py" line="357" /> + <location filename="../Project/ProjectOthersBrowser.py" line="349" /> + <location filename="../Project/ProjectOthersBrowser.py" line="339" /> + <location filename="../Project/ProjectOthersBrowser.py" line="331" /> <location filename="../Project/ProjectOthersBrowser.py" line="85" /> <source>Show Mime-Type</source> <translation type="unfinished" /> @@ -57676,28 +57699,28 @@ <translation type="unfinished" /> </message> <message> - <location filename="../Project/ProjectOthersBrowser.py" line="328" /> + <location filename="../Project/ProjectOthersBrowser.py" line="332" /> <source>The mime type of the file could not be determined.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/ProjectOthersBrowser.py" line="346" /> - <location filename="../Project/ProjectOthersBrowser.py" line="336" /> + <location filename="../Project/ProjectOthersBrowser.py" line="350" /> + <location filename="../Project/ProjectOthersBrowser.py" line="340" /> <source>The file has the mime type <b>{0}</b>.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/ProjectOthersBrowser.py" line="354" /> + <location filename="../Project/ProjectOthersBrowser.py" line="358" /> <source>The file has the mime type <b>{0}</b>.<br/> Shall it be added to the list of text mime types?</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/ProjectOthersBrowser.py" line="447" /> + <location filename="../Project/ProjectOthersBrowser.py" line="451" /> <source>Delete files/directories</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/ProjectOthersBrowser.py" line="448" /> + <location filename="../Project/ProjectOthersBrowser.py" line="452" /> <source>Do you really want to delete these entries from the project?</source> <translation type="unfinished" /> </message> @@ -84788,60 +84811,60 @@ <translation type="unfinished" /> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="901" /> + <location filename="../Debugger/VariablesViewer.py" line="904" /> <source>Global Variables</source> <translation type="unfinished" /> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="903" /> + <location filename="../Debugger/VariablesViewer.py" line="906" /> <source><b>The Global Variables Viewer Window</b><p>This window displays the global variables of the debugged program.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="910" /> + <location filename="../Debugger/VariablesViewer.py" line="913" /> <source>Local Variables</source> <translation type="unfinished" /> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="912" /> + <location filename="../Debugger/VariablesViewer.py" line="915" /> <source><b>The Local Variables Viewer Window</b><p>This window displays the local variables of the debugged program.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="1030" /> + <location filename="../Debugger/VariablesViewer.py" line="1039" /> <source>Show Details...</source> <translation type="unfinished" /> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="1032" /> + <location filename="../Debugger/VariablesViewer.py" line="1041" /> <source>Expand</source> <translation type="unfinished" /> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="1033" /> - <source>Collapse</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Debugger/VariablesViewer.py" line="1034" /> - <source>Collapse All</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Debugger/VariablesViewer.py" line="1042" /> - <location filename="../Debugger/VariablesViewer.py" line="1036" /> + <source>Collapse</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Debugger/VariablesViewer.py" line="1043" /> + <source>Collapse All</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Debugger/VariablesViewer.py" line="1051" /> + <location filename="../Debugger/VariablesViewer.py" line="1045" /> <source>Refresh</source> <translation type="unfinished" /> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="1044" /> - <location filename="../Debugger/VariablesViewer.py" line="1038" /> + <location filename="../Debugger/VariablesViewer.py" line="1053" /> + <location filename="../Debugger/VariablesViewer.py" line="1047" /> <source>Configure...</source> <translation type="unfinished" /> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="1046" /> - <location filename="../Debugger/VariablesViewer.py" line="1039" /> + <location filename="../Debugger/VariablesViewer.py" line="1055" /> + <location filename="../Debugger/VariablesViewer.py" line="1048" /> <source>Variables Type Filter...</source> <translation type="unfinished" /> </message> @@ -95338,12 +95361,12 @@ <context> <name>eric7_ide</name> <message> - <location filename="../eric7_ide.py" line="394" /> + <location filename="../eric7_ide.py" line="395" /> <source>Starting...</source> <translation type="unfinished" /> </message> <message> - <location filename="../eric7_ide.py" line="400" /> + <location filename="../eric7_ide.py" line="401" /> <source>Generating Main Window...</source> <translation type="unfinished" /> </message>
--- a/src/eric7/i18n/eric7_en.ts Fri Oct 14 14:46:40 2022 +0200 +++ b/src/eric7/i18n/eric7_en.ts Fri Oct 14 17:02:09 2022 +0200 @@ -1804,17 +1804,17 @@ <translation type="unfinished" /> </message> <message> - <location filename="../Utilities/BackgroundService.py" line="488" /> + <location filename="../Utilities/BackgroundService.py" line="487" /> <source>Eric's background client disconnected because of an unknown reason.</source> <translation type="unfinished" /> </message> <message> + <location filename="../Utilities/BackgroundService.py" line="496" /> + <source>Background client disconnected.</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../Utilities/BackgroundService.py" line="497" /> - <source>Background client disconnected.</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Utilities/BackgroundService.py" line="498" /> <source>The background client for <b>{0}</b> disconnected because of an unknown reason.<br>Should it be restarted?</source> <translation type="unfinished" /> </message> @@ -8839,13 +8839,13 @@ <translation type="unfinished" /> </message> <message> - <location filename="../Debugger/DebugViewer.py" line="754" /> + <location filename="../Debugger/DebugViewer.py" line="756" /> <source><p>Debugger with ID <b>{0}</b> has been connected.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Debugger/DebugViewer.py" line="997" /> - <location filename="../Debugger/DebugViewer.py" line="869" /> + <location filename="../Debugger/DebugViewer.py" line="999" /> + <location filename="../Debugger/DebugViewer.py" line="871" /> <source>unknown state ({0})</source> <translation type="unfinished" /> </message> @@ -9525,7 +9525,7 @@ <translation type="unfinished" /> </message> <message> - <location filename="../Project/DebuggerPropertiesDialog.py" line="127" /> + <location filename="../Project/DebuggerPropertiesDialog.py" line="133" /> <source>All Files (*)</source> <translation type="unfinished" /> </message> @@ -11097,960 +11097,972 @@ <context> <name>Editor</name> <message> - <location filename="../QScintilla/Editor.py" line="3245" /> - <location filename="../QScintilla/Editor.py" line="406" /> + <location filename="../QScintilla/Editor.py" line="3268" /> + <location filename="../QScintilla/Editor.py" line="431" /> + <location filename="../QScintilla/Editor.py" line="416" /> + <location filename="../QScintilla/Editor.py" line="404" /> <source>Open File</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="407" /> + <location filename="../QScintilla/Editor.py" line="405" /> + <source><p>The file <b>{0}</b> is not a text file. It will not be opened!</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="417" /> + <source><p>The size of the file <b>{0}</b> is <b>{1} KB</b> and exceeds the configured limit of <b>{2} KB</b>. It will not be opened!</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="432" /> <source><p>The size of the file <b>{0}</b> is <b>{1} KB</b>. Do you really want to load it?</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="505" /> + <location filename="../QScintilla/Editor.py" line="528" /> <source><b>A Source Editor Window</b><p>This window is used to display and edit a source file. You can open as many of these as you like. The name of the file is displayed in the window's titlebar.</p><p>In order to set breakpoints just click in the space between the line numbers and the fold markers. Via the context menu of the margins they may be edited.</p><p>In order to set bookmarks just Shift click in the space between the line numbers and the fold markers.</p><p>These actions can be reversed via the context menu.</p><p>Ctrl clicking on a syntax error marker shows some info about this error.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="833" /> + <location filename="../QScintilla/Editor.py" line="856" /> <source>Undo</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="836" /> + <location filename="../QScintilla/Editor.py" line="859" /> <source>Redo</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="839" /> + <location filename="../QScintilla/Editor.py" line="862" /> <source>Revert to last saved state</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="843" /> + <location filename="../QScintilla/Editor.py" line="866" /> <source>Cut</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="846" /> + <location filename="../QScintilla/Editor.py" line="869" /> <source>Copy</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="849" /> + <location filename="../QScintilla/Editor.py" line="872" /> <source>Paste</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="855" /> - <source>Indent</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="860" /> - <source>Unindent</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="865" /> - <source>Comment</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="870" /> - <source>Uncomment</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="8934" /> - <location filename="../QScintilla/Editor.py" line="875" /> - <source>Generate Docstring</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/Editor.py" line="878" /> + <source>Indent</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="883" /> + <source>Unindent</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="888" /> + <source>Comment</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="893" /> + <source>Uncomment</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="8957" /> + <location filename="../QScintilla/Editor.py" line="898" /> + <source>Generate Docstring</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="901" /> <source>Select to brace</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="879" /> + <location filename="../QScintilla/Editor.py" line="902" /> <source>Select all</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="880" /> + <location filename="../QScintilla/Editor.py" line="903" /> <source>Deselect all</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="882" /> + <location filename="../QScintilla/Editor.py" line="905" /> <source>Execute Selection In Console</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="894" /> + <location filename="../QScintilla/Editor.py" line="917" /> <source>Use Monospaced Font</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="899" /> + <location filename="../QScintilla/Editor.py" line="922" /> <source>Autosave enabled</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="904" /> + <location filename="../QScintilla/Editor.py" line="927" /> <source>Typing aids enabled</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="912" /> + <location filename="../QScintilla/Editor.py" line="935" /> <source>Automatic Completion enabled</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="921" /> - <source>Calltip</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="924" /> - <source>Code Info</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="939" /> - <source>New Document View</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/Editor.py" line="944" /> + <source>Calltip</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="947" /> + <source>Code Info</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="962" /> + <source>New Document View</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="967" /> <source>New Document View (with new split)</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="952" /> + <location filename="../QScintilla/Editor.py" line="975" /> <source>Save</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="956" /> + <location filename="../QScintilla/Editor.py" line="979" /> <source>Save As...</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="961" /> + <location filename="../QScintilla/Editor.py" line="984" /> <source>Save Copy...</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="983" /> - <location filename="../QScintilla/Editor.py" line="980" /> + <location filename="../QScintilla/Editor.py" line="1006" /> + <location filename="../QScintilla/Editor.py" line="1003" /> <source>Complete</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="987" /> + <location filename="../QScintilla/Editor.py" line="1010" /> <source>Clear Completions Cache</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="990" /> + <location filename="../QScintilla/Editor.py" line="1013" /> <source>Complete from Document</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="992" /> + <location filename="../QScintilla/Editor.py" line="1015" /> <source>Complete from APIs</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="995" /> + <location filename="../QScintilla/Editor.py" line="1018" /> <source>Complete from Document and APIs</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1009" /> + <location filename="../QScintilla/Editor.py" line="1032" /> <source>Check</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1020" /> + <location filename="../QScintilla/Editor.py" line="1043" /> <source>Code Formatting</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1023" /> - <source>Format Code</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1027" /> - <source>Check Formatting</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1031" /> - <source>Formatting Diff</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/Editor.py" line="1046" /> + <source>Format Code</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1050" /> + <source>Check Formatting</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1054" /> + <source>Formatting Diff</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1069" /> <source>Tools</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1057" /> + <location filename="../QScintilla/Editor.py" line="1080" /> <source>Show</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1059" /> + <location filename="../QScintilla/Editor.py" line="1082" /> <source>Code metrics...</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1061" /> + <location filename="../QScintilla/Editor.py" line="1084" /> <source>Code coverage...</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1064" /> - <source>Show code coverage annotations</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1067" /> - <source>Hide code coverage annotations</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1071" /> - <source>Profile data...</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1085" /> - <source>Diagrams</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/Editor.py" line="1087" /> + <source>Show code coverage annotations</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1090" /> + <source>Hide code coverage annotations</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1094" /> + <source>Profile data...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1108" /> + <source>Diagrams</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1110" /> <source>Class Diagram...</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1088" /> - <source>Package Diagram...</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1089" /> - <source>Imports Diagram...</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1091" /> - <source>Application Diagram...</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1096" /> - <source>Load Diagram...</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/Editor.py" line="1111" /> + <source>Package Diagram...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1112" /> + <source>Imports Diagram...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1114" /> + <source>Application Diagram...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1119" /> + <source>Load Diagram...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1134" /> <source>Languages</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1115" /> + <location filename="../QScintilla/Editor.py" line="1138" /> <source>Text</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1140" /> + <location filename="../QScintilla/Editor.py" line="1163" /> <source>Guessed</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1471" /> - <location filename="../QScintilla/Editor.py" line="1144" /> + <location filename="../QScintilla/Editor.py" line="1494" /> + <location filename="../QScintilla/Editor.py" line="1167" /> <source>Alternatives</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1161" /> - <source>Encodings</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/Editor.py" line="1184" /> + <source>Encodings</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1207" /> <source>Re-Open With Encoding</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1204" /> + <location filename="../QScintilla/Editor.py" line="1227" /> <source>End-of-Line Type</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1208" /> + <location filename="../QScintilla/Editor.py" line="1231" /> <source>Unix</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1214" /> + <location filename="../QScintilla/Editor.py" line="1237" /> <source>Windows</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1220" /> + <location filename="../QScintilla/Editor.py" line="1243" /> <source>Macintosh</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1238" /> + <location filename="../QScintilla/Editor.py" line="1261" /> <source>Spelling</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="8052" /> - <location filename="../QScintilla/Editor.py" line="1246" /> + <location filename="../QScintilla/Editor.py" line="8075" /> + <location filename="../QScintilla/Editor.py" line="1269" /> <source>Check spelling...</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1251" /> + <location filename="../QScintilla/Editor.py" line="1274" /> <source>Check spelling of selection...</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1255" /> + <location filename="../QScintilla/Editor.py" line="1278" /> <source>Remove from dictionary</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1272" /> + <location filename="../QScintilla/Editor.py" line="1295" /> <source>Spell Check Languages</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1276" /> + <location filename="../QScintilla/Editor.py" line="1299" /> <source>No Language</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1303" /> + <location filename="../QScintilla/Editor.py" line="1326" /> <source>Toggle bookmark</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1305" /> - <source>Next bookmark</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1308" /> - <source>Previous bookmark</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1311" /> - <source>Clear all bookmarks</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1322" /> - <source>Toggle breakpoint</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1325" /> - <source>Toggle temporary breakpoint</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/Editor.py" line="1328" /> - <source>Edit breakpoint...</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="5754" /> + <source>Next bookmark</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../QScintilla/Editor.py" line="1331" /> - <source>Enable breakpoint</source> + <source>Previous bookmark</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/Editor.py" line="1334" /> - <source>Next breakpoint</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1337" /> - <source>Previous breakpoint</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1340" /> - <source>Clear all breakpoints</source> + <source>Clear all bookmarks</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1345" /> + <source>Toggle breakpoint</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1348" /> + <source>Toggle temporary breakpoint</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/Editor.py" line="1351" /> - <source>Toggle all folds</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1356" /> - <source>Toggle all folds (including children)</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1359" /> - <source>Toggle current fold</source> + <source>Edit breakpoint...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="5777" /> + <location filename="../QScintilla/Editor.py" line="1354" /> + <source>Enable breakpoint</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1357" /> + <source>Next breakpoint</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1360" /> + <source>Previous breakpoint</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/Editor.py" line="1363" /> - <source>Expand (including children)</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1367" /> - <source>Collapse (including children)</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1372" /> - <source>Clear all folds</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1383" /> - <source>Goto syntax error</source> + <source>Clear all breakpoints</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1374" /> + <source>Toggle all folds</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1379" /> + <source>Toggle all folds (including children)</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1382" /> + <source>Toggle current fold</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/Editor.py" line="1386" /> - <source>Show syntax error message</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1389" /> - <source>Clear syntax error</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1393" /> - <source>Next warning</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1396" /> - <source>Previous warning</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1399" /> - <source>Show warning message</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1402" /> - <source>Clear warnings</source> + <source>Expand (including children)</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1390" /> + <source>Collapse (including children)</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1395" /> + <source>Clear all folds</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/Editor.py" line="1406" /> - <source>Next uncovered line</source> + <source>Goto syntax error</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/Editor.py" line="1409" /> - <source>Previous uncovered line</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1413" /> - <source>Next task</source> + <source>Show syntax error message</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1412" /> + <source>Clear syntax error</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/Editor.py" line="1416" /> + <source>Next warning</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1419" /> + <source>Previous warning</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1422" /> + <source>Show warning message</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1425" /> + <source>Clear warnings</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1429" /> + <source>Next uncovered line</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1432" /> + <source>Previous uncovered line</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1436" /> + <source>Next task</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1439" /> <source>Previous task</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1420" /> + <location filename="../QScintilla/Editor.py" line="1443" /> <source>Next change</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1423" /> + <location filename="../QScintilla/Editor.py" line="1446" /> <source>Previous change</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1426" /> - <source>Clear changes</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1457" /> - <location filename="../QScintilla/Editor.py" line="1448" /> - <source>Export source</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/Editor.py" line="1449" /> + <source>Clear changes</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1480" /> + <location filename="../QScintilla/Editor.py" line="1471" /> + <source>Export source</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1472" /> <source><p>No exporter available for the export format <b>{0}</b>. Aborting...</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1458" /> + <location filename="../QScintilla/Editor.py" line="1481" /> <source>No export format given. Aborting...</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1468" /> - <source>Alternatives ({0})</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/Editor.py" line="1491" /> + <source>Alternatives ({0})</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1514" /> <source>Pygments Lexer</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1492" /> + <location filename="../QScintilla/Editor.py" line="1515" /> <source>Select the Pygments lexer to apply.</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="2051" /> + <location filename="../QScintilla/Editor.py" line="2074" /> <source>Modification of Read Only file</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="2052" /> + <location filename="../QScintilla/Editor.py" line="2075" /> <source>You are attempting to change a read only file. Please save to a different file first.</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="2473" /> + <location filename="../QScintilla/Editor.py" line="2496" /> <source>Add Breakpoint</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="2474" /> + <location filename="../QScintilla/Editor.py" line="2497" /> <source>No Python byte code will be created for the selected line. No break point will be set!</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="2807" /> + <location filename="../QScintilla/Editor.py" line="2830" /> <source>Printing...</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="2824" /> + <location filename="../QScintilla/Editor.py" line="2847" /> <source>Printing completed</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="2826" /> + <location filename="../QScintilla/Editor.py" line="2849" /> <source>Error while printing</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="2829" /> + <location filename="../QScintilla/Editor.py" line="2852" /> <source>Printing aborted</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="3187" /> + <location filename="../QScintilla/Editor.py" line="3210" /> <source>File Modified</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="3188" /> + <location filename="../QScintilla/Editor.py" line="3211" /> <source><p>The file <b>{0}</b> has unsaved changes.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="3246" /> + <location filename="../QScintilla/Editor.py" line="3269" /> <source><p>The file <b>{0}</b> could not be opened.</p><p>Reason: {1}</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="3424" /> - <location filename="../QScintilla/Editor.py" line="3405" /> - <location filename="../QScintilla/Editor.py" line="3365" /> + <location filename="../QScintilla/Editor.py" line="3447" /> + <location filename="../QScintilla/Editor.py" line="3428" /> + <location filename="../QScintilla/Editor.py" line="3388" /> <source>Save File</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="3366" /> + <location filename="../QScintilla/Editor.py" line="3389" /> <source><p>The file <b>{0}</b> could not be saved.<br/>Reason: {1}</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="3425" /> + <location filename="../QScintilla/Editor.py" line="3448" /> <source><p>The file <b>{0}</b> already exists. Overwrite it?</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="4935" /> + <location filename="../QScintilla/Editor.py" line="4958" /> <source>Autocompletion</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="4936" /> + <location filename="../QScintilla/Editor.py" line="4959" /> <source>Autocompletion is not available because there is no autocompletion source set.</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="5064" /> + <location filename="../QScintilla/Editor.py" line="5087" /> <source>Auto-Completion Provider</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="5065" /> + <location filename="../QScintilla/Editor.py" line="5088" /> <source>The completion list provider '{0}' was already registered. Ignoring duplicate request.</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="5357" /> + <location filename="../QScintilla/Editor.py" line="5380" /> <source>Call-Tips Provider</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="5358" /> + <location filename="../QScintilla/Editor.py" line="5381" /> <source>The call-tips provider '{0}' was already registered. Ignoring duplicate request.</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="5758" /> + <location filename="../QScintilla/Editor.py" line="5781" /> <source>Disable breakpoint</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="6113" /> + <location filename="../QScintilla/Editor.py" line="6136" /> <source>Code Coverage</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="6114" /> + <location filename="../QScintilla/Editor.py" line="6137" /> <source>Please select a coverage file</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="6189" /> - <location filename="../QScintilla/Editor.py" line="6181" /> + <location filename="../QScintilla/Editor.py" line="6212" /> + <location filename="../QScintilla/Editor.py" line="6204" /> <source>Show Code Coverage Annotations</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="6182" /> + <location filename="../QScintilla/Editor.py" line="6205" /> <source>All lines have been covered.</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="6190" /> + <location filename="../QScintilla/Editor.py" line="6213" /> <source>There is no coverage file available.</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="6286" /> + <location filename="../QScintilla/Editor.py" line="6309" /> <source>Profile Data</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="6287" /> + <location filename="../QScintilla/Editor.py" line="6310" /> <source>Please select a profile file</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="6450" /> - <location filename="../QScintilla/Editor.py" line="6444" /> + <location filename="../QScintilla/Editor.py" line="6473" /> + <location filename="../QScintilla/Editor.py" line="6467" /> <source>Syntax Error</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="6451" /> + <location filename="../QScintilla/Editor.py" line="6474" /> <source>No syntax error message available.</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="6662" /> - <location filename="../QScintilla/Editor.py" line="6656" /> + <location filename="../QScintilla/Editor.py" line="6685" /> + <location filename="../QScintilla/Editor.py" line="6679" /> <source>Warning</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="6662" /> + <location filename="../QScintilla/Editor.py" line="6685" /> <source>No warning messages available.</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="6726" /> + <location filename="../QScintilla/Editor.py" line="6749" /> <source>Style: {0}</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="6729" /> + <location filename="../QScintilla/Editor.py" line="6752" /> <source>Warning: {0}</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="6736" /> + <location filename="../QScintilla/Editor.py" line="6759" /> <source>Error: {0}</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="6843" /> + <location filename="../QScintilla/Editor.py" line="6866" /> <source>Macro Name</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="6843" /> + <location filename="../QScintilla/Editor.py" line="6866" /> <source>Select a macro name:</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="6869" /> + <location filename="../QScintilla/Editor.py" line="6892" /> <source>Load macro file</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="6915" /> - <location filename="../QScintilla/Editor.py" line="6871" /> + <location filename="../QScintilla/Editor.py" line="6938" /> + <location filename="../QScintilla/Editor.py" line="6894" /> <source>Macro files (*.macro)</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="6893" /> - <location filename="../QScintilla/Editor.py" line="6883" /> + <location filename="../QScintilla/Editor.py" line="6916" /> + <location filename="../QScintilla/Editor.py" line="6906" /> <source>Error loading macro</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="6884" /> + <location filename="../QScintilla/Editor.py" line="6907" /> <source><p>The macro file <b>{0}</b> could not be read.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="6894" /> + <location filename="../QScintilla/Editor.py" line="6917" /> <source><p>The macro file <b>{0}</b> is corrupt.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="6913" /> + <location filename="../QScintilla/Editor.py" line="6936" /> <source>Save macro file</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="6931" /> + <location filename="../QScintilla/Editor.py" line="6954" /> <source>Save macro</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="6932" /> + <location filename="../QScintilla/Editor.py" line="6955" /> <source><p>The macro file <b>{0}</b> already exists. Overwrite it?</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="6947" /> + <location filename="../QScintilla/Editor.py" line="6970" /> <source>Error saving macro</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="6948" /> + <location filename="../QScintilla/Editor.py" line="6971" /> <source><p>The macro file <b>{0}</b> could not be written.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="6961" /> + <location filename="../QScintilla/Editor.py" line="6984" /> <source>Start Macro Recording</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="6962" /> + <location filename="../QScintilla/Editor.py" line="6985" /> <source>Macro recording is already active. Start new?</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="6988" /> + <location filename="../QScintilla/Editor.py" line="7011" /> <source>Macro Recording</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="6989" /> + <location filename="../QScintilla/Editor.py" line="7012" /> <source>Enter name of the macro:</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="7140" /> + <location filename="../QScintilla/Editor.py" line="7163" /> <source><p>The file <b>{0}</b> has been changed while it was opened in eric. Reread it?</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="7146" /> + <location filename="../QScintilla/Editor.py" line="7169" /> <source><br><b>Warning:</b> You will lose your changes upon reopening it.</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="7153" /> + <location filename="../QScintilla/Editor.py" line="7176" /> <source>File changed</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="7203" /> + <location filename="../QScintilla/Editor.py" line="7226" /> <source>{0} (ro)</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="7494" /> - <source>Drop Error</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="7495" /> - <source><p><b>{0}</b> is not a file.</p></source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="7515" /> - <source>Resources</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/Editor.py" line="7517" /> - <source>Add file...</source> + <source>Drop Error</source> <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/Editor.py" line="7518" /> + <source><p><b>{0}</b> is not a file.</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="7538" /> + <source>Resources</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="7540" /> + <source>Add file...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="7541" /> <source>Add files...</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="7519" /> + <location filename="../QScintilla/Editor.py" line="7542" /> <source>Add aliased file...</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="7521" /> + <location filename="../QScintilla/Editor.py" line="7544" /> <source>Add localized resource...</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="7524" /> + <location filename="../QScintilla/Editor.py" line="7547" /> <source>Add resource frame</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="7543" /> + <location filename="../QScintilla/Editor.py" line="7566" /> <source>Add file resource</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="7557" /> + <location filename="../QScintilla/Editor.py" line="7580" /> <source>Add file resources</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="7581" /> - <location filename="../QScintilla/Editor.py" line="7575" /> + <location filename="../QScintilla/Editor.py" line="7604" /> + <location filename="../QScintilla/Editor.py" line="7598" /> <source>Add aliased file resource</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="7582" /> + <location filename="../QScintilla/Editor.py" line="7605" /> <source>Alias for file <b>{0}</b>:</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="7657" /> + <location filename="../QScintilla/Editor.py" line="7680" /> <source>Package Diagram</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="7658" /> + <location filename="../QScintilla/Editor.py" line="7681" /> <source>Include class attributes?</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="7678" /> + <location filename="../QScintilla/Editor.py" line="7701" /> <source>Imports Diagram</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="7679" /> + <location filename="../QScintilla/Editor.py" line="7702" /> <source>Include imports from external modules?</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="7698" /> + <location filename="../QScintilla/Editor.py" line="7721" /> <source>Application Diagram</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="7699" /> + <location filename="../QScintilla/Editor.py" line="7722" /> <source>Include module names?</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="8056" /> + <location filename="../QScintilla/Editor.py" line="8079" /> <source>Add to dictionary</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="8058" /> + <location filename="../QScintilla/Editor.py" line="8081" /> <source>Ignore All</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="8476" /> + <location filename="../QScintilla/Editor.py" line="8499" /> <source>Sort Lines</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="8477" /> + <location filename="../QScintilla/Editor.py" line="8500" /> <source>The selection contains illegal data for a numerical sort.</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="8570" /> + <location filename="../QScintilla/Editor.py" line="8593" /> <source>Register Mouse Click Handler</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="8571" /> + <location filename="../QScintilla/Editor.py" line="8594" /> <source>A mouse click handler for "{0}" was already registered by "{1}". Aborting request by "{2}"...</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="8667" /> + <location filename="../QScintilla/Editor.py" line="8690" /> <source>{0:4d} {1}</source> <comment>line number, source code</comment> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="8673" /> + <location filename="../QScintilla/Editor.py" line="8696" /> <source>{0:4d} {1} => {2}</source> <comment>line number, source code, file name</comment> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="8741" /> + <location filename="../QScintilla/Editor.py" line="8764" /> <source>EditorConfig Properties</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="8742" /> + <location filename="../QScintilla/Editor.py" line="8765" /> <source><p>The EditorConfig properties for file <b>{0}</b> could not be loaded.</p></source> <translation type="unfinished" /> </message> @@ -12953,26 +12965,26 @@ <context> <name>EditorFilePage</name> <message> - <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="339" /> - <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="322" /> - <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="305" /> - <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="294" /> + <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="341" /> + <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="324" /> + <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="307" /> + <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="296" /> <source>Add File Filter</source> <translation type="unfinished" /> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="295" /> + <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="297" /> <source>A Save File Filter must contain exactly one wildcard pattern. Yours contains {0}.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="306" /> + <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="308" /> <source>A File Filter must contain at least one wildcard pattern.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="340" /> - <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="323" /> + <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="342" /> + <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="325" /> <source>Enter the file filter entry:</source> <translation type="unfinished" /> </message> @@ -13018,11 +13030,22 @@ </message> <message> <location filename="../Preferences/ConfigurationPages/EditorFilePage.ui" line="0" /> + <location filename="../Preferences/ConfigurationPages/EditorFilePage.ui" line="0" /> <source> KB</source> <translation type="unfinished" /> </message> <message> <location filename="../Preferences/ConfigurationPages/EditorFilePage.ui" line="0" /> + <source>Reject, if file is greater than</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/EditorFilePage.ui" line="0" /> + <source>Enter the filesize, opening a file should be rejected.</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/EditorFilePage.ui" line="0" /> <source>End of Line</source> <translation type="unfinished" /> </message> @@ -17036,12 +17059,12 @@ <context> <name>EricApplication</name> <message> - <location filename="../EricWidgets/EricApplication.py" line="220" /> + <location filename="../EricWidgets/EricApplication.py" line="221" /> <source>Loading Style Sheet</source> <translation type="unfinished" /> </message> <message> - <location filename="../EricWidgets/EricApplication.py" line="223" /> + <location filename="../EricWidgets/EricApplication.py" line="224" /> <source><p>The Qt Style Sheet file <b>{0}</b> could not be read.<br>Reason: {1}</p></source> <translation type="unfinished" /> </message> @@ -45863,7 +45886,7 @@ <translation type="unfinished" /> </message> <message> - <location filename="../Preferences/__init__.py" line="468" /> + <location filename="../Preferences/__init__.py" line="469" /> <location filename="../QScintilla/Lexers/__init__.py" line="482" /> <source>Python Files (*.py *.py3)</source> <translation type="unfinished" /> @@ -46116,7 +46139,7 @@ <translation type="unfinished" /> </message> <message> - <location filename="../Preferences/__init__.py" line="471" /> + <location filename="../Preferences/__init__.py" line="472" /> <location filename="../QScintilla/Lexers/__init__.py" line="575" /> <source>Python3 Files (*.py)</source> <translation type="unfinished" /> @@ -54662,18 +54685,18 @@ <context> <name>Preferences</name> <message> - <location filename="../Preferences/__init__.py" line="1651" /> + <location filename="../Preferences/__init__.py" line="1652" /> <source>Export Preferences</source> <translation type="unfinished" /> </message> <message> - <location filename="../Preferences/__init__.py" line="1680" /> - <location filename="../Preferences/__init__.py" line="1653" /> + <location filename="../Preferences/__init__.py" line="1681" /> + <location filename="../Preferences/__init__.py" line="1654" /> <source>Properties File (*.ini);;All Files (*)</source> <translation type="unfinished" /> </message> <message> - <location filename="../Preferences/__init__.py" line="1678" /> + <location filename="../Preferences/__init__.py" line="1679" /> <source>Import Preferences</source> <translation type="unfinished" /> </message> @@ -57646,10 +57669,10 @@ <translation type="unfinished" /> </message> <message> - <location filename="../Project/ProjectOthersBrowser.py" line="353" /> - <location filename="../Project/ProjectOthersBrowser.py" line="345" /> - <location filename="../Project/ProjectOthersBrowser.py" line="335" /> - <location filename="../Project/ProjectOthersBrowser.py" line="327" /> + <location filename="../Project/ProjectOthersBrowser.py" line="357" /> + <location filename="../Project/ProjectOthersBrowser.py" line="349" /> + <location filename="../Project/ProjectOthersBrowser.py" line="339" /> + <location filename="../Project/ProjectOthersBrowser.py" line="331" /> <location filename="../Project/ProjectOthersBrowser.py" line="85" /> <source>Show Mime-Type</source> <translation type="unfinished" /> @@ -57723,28 +57746,28 @@ <translation type="unfinished" /> </message> <message> - <location filename="../Project/ProjectOthersBrowser.py" line="328" /> + <location filename="../Project/ProjectOthersBrowser.py" line="332" /> <source>The mime type of the file could not be determined.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/ProjectOthersBrowser.py" line="346" /> - <location filename="../Project/ProjectOthersBrowser.py" line="336" /> + <location filename="../Project/ProjectOthersBrowser.py" line="350" /> + <location filename="../Project/ProjectOthersBrowser.py" line="340" /> <source>The file has the mime type <b>{0}</b>.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/ProjectOthersBrowser.py" line="354" /> + <location filename="../Project/ProjectOthersBrowser.py" line="358" /> <source>The file has the mime type <b>{0}</b>.<br/> Shall it be added to the list of text mime types?</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/ProjectOthersBrowser.py" line="447" /> + <location filename="../Project/ProjectOthersBrowser.py" line="451" /> <source>Delete files/directories</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/ProjectOthersBrowser.py" line="448" /> + <location filename="../Project/ProjectOthersBrowser.py" line="452" /> <source>Do you really want to delete these entries from the project?</source> <translation type="unfinished" /> </message> @@ -84841,60 +84864,60 @@ <translation type="unfinished" /> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="901" /> + <location filename="../Debugger/VariablesViewer.py" line="904" /> <source>Global Variables</source> <translation type="unfinished" /> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="903" /> + <location filename="../Debugger/VariablesViewer.py" line="906" /> <source><b>The Global Variables Viewer Window</b><p>This window displays the global variables of the debugged program.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="910" /> + <location filename="../Debugger/VariablesViewer.py" line="913" /> <source>Local Variables</source> <translation type="unfinished" /> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="912" /> + <location filename="../Debugger/VariablesViewer.py" line="915" /> <source><b>The Local Variables Viewer Window</b><p>This window displays the local variables of the debugged program.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="1030" /> + <location filename="../Debugger/VariablesViewer.py" line="1039" /> <source>Show Details...</source> <translation type="unfinished" /> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="1032" /> + <location filename="../Debugger/VariablesViewer.py" line="1041" /> <source>Expand</source> <translation type="unfinished" /> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="1033" /> - <source>Collapse</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Debugger/VariablesViewer.py" line="1034" /> - <source>Collapse All</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Debugger/VariablesViewer.py" line="1042" /> - <location filename="../Debugger/VariablesViewer.py" line="1036" /> + <source>Collapse</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Debugger/VariablesViewer.py" line="1043" /> + <source>Collapse All</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Debugger/VariablesViewer.py" line="1051" /> + <location filename="../Debugger/VariablesViewer.py" line="1045" /> <source>Refresh</source> <translation type="unfinished" /> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="1044" /> - <location filename="../Debugger/VariablesViewer.py" line="1038" /> + <location filename="../Debugger/VariablesViewer.py" line="1053" /> + <location filename="../Debugger/VariablesViewer.py" line="1047" /> <source>Configure...</source> <translation type="unfinished" /> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="1046" /> - <location filename="../Debugger/VariablesViewer.py" line="1039" /> + <location filename="../Debugger/VariablesViewer.py" line="1055" /> + <location filename="../Debugger/VariablesViewer.py" line="1048" /> <source>Variables Type Filter...</source> <translation type="unfinished" /> </message> @@ -95394,12 +95417,12 @@ <context> <name>eric7_ide</name> <message> - <location filename="../eric7_ide.py" line="394" /> + <location filename="../eric7_ide.py" line="395" /> <source>Starting...</source> <translation type="unfinished" /> </message> <message> - <location filename="../eric7_ide.py" line="400" /> + <location filename="../eric7_ide.py" line="401" /> <source>Generating Main Window...</source> <translation type="unfinished" /> </message>
--- a/src/eric7/i18n/eric7_es.ts Fri Oct 14 14:46:40 2022 +0200 +++ b/src/eric7/i18n/eric7_es.ts Fri Oct 14 17:02:09 2022 +0200 @@ -1818,17 +1818,17 @@ <translation>Un error en el cliente en background de Eric ha detenido el servicio.</translation> </message> <message> - <location filename="../Utilities/BackgroundService.py" line="488" /> + <location filename="../Utilities/BackgroundService.py" line="487" /> <source>Eric's background client disconnected because of an unknown reason.</source> <translation>El cliente en background de Eric ha desconectado debido a una razón desconocida.</translation> </message> <message> + <location filename="../Utilities/BackgroundService.py" line="496" /> + <source>Background client disconnected.</source> + <translation>Cliente en background desconectado.</translation> + </message> + <message> <location filename="../Utilities/BackgroundService.py" line="497" /> - <source>Background client disconnected.</source> - <translation>Cliente en background desconectado.</translation> - </message> - <message> - <location filename="../Utilities/BackgroundService.py" line="498" /> <source>The background client for <b>{0}</b> disconnected because of an unknown reason.<br>Should it be restarted?</source> <translation>El cliente en background para <b>{0}</b> ha desconectado por razón desconocida.<br>¿Reiniciarlo?</translation> </message> @@ -8892,13 +8892,13 @@ <translation>Muestra un desensamblado de código en caso de una excepción.</translation> </message> <message> - <location filename="../Debugger/DebugViewer.py" line="754" /> + <location filename="../Debugger/DebugViewer.py" line="756" /> <source><p>Debugger with ID <b>{0}</b> has been connected.</p></source> <translation><p>Depurador con ID <b>{0}</b> se ha conectado.</p></translation> </message> <message> - <location filename="../Debugger/DebugViewer.py" line="997" /> - <location filename="../Debugger/DebugViewer.py" line="869" /> + <location filename="../Debugger/DebugViewer.py" line="999" /> + <location filename="../Debugger/DebugViewer.py" line="871" /> <source>unknown state ({0})</source> <translation>estado desconocido ({0})</translation> </message> @@ -9591,7 +9591,7 @@ <translation>No establecer la codificación del cliente de depuración</translation> </message> <message> - <location filename="../Project/DebuggerPropertiesDialog.py" line="127" /> + <location filename="../Project/DebuggerPropertiesDialog.py" line="133" /> <source>All Files (*)</source> <translation>Todos los archivos (*)</translation> </message> @@ -11166,948 +11166,960 @@ <context> <name>Editor</name> <message> - <location filename="../QScintilla/Editor.py" line="3245" /> - <location filename="../QScintilla/Editor.py" line="406" /> + <location filename="../QScintilla/Editor.py" line="3268" /> + <location filename="../QScintilla/Editor.py" line="431" /> + <location filename="../QScintilla/Editor.py" line="416" /> + <location filename="../QScintilla/Editor.py" line="404" /> <source>Open File</source> <translation>Abrir archivo</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="407" /> + <location filename="../QScintilla/Editor.py" line="405" /> + <source><p>The file <b>{0}</b> is not a text file. It will not be opened!</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="417" /> + <source><p>The size of the file <b>{0}</b> is <b>{1} KB</b> and exceeds the configured limit of <b>{2} KB</b>. It will not be opened!</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="432" /> <source><p>The size of the file <b>{0}</b> is <b>{1} KB</b>. Do you really want to load it?</p></source> <translation><p>El tamaño del archivo <b>{0}</b> es <b>{1} KB</b>. ¿Desea cargarlo de todos modos?</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="505" /> + <location filename="../QScintilla/Editor.py" line="528" /> <source><b>A Source Editor Window</b><p>This window is used to display and edit a source file. You can open as many of these as you like. The name of the file is displayed in the window's titlebar.</p><p>In order to set breakpoints just click in the space between the line numbers and the fold markers. Via the context menu of the margins they may be edited.</p><p>In order to set bookmarks just Shift click in the space between the line numbers and the fold markers.</p><p>These actions can be reversed via the context menu.</p><p>Ctrl clicking on a syntax error marker shows some info about this error.</p></source> <translation><b>Una Ventana de Edición de Códigos Fuente</b><p>Esta ventana se utiliza para mostrar y editar un archivo de código fuente. Puede abrir tantas como desee. El nombre del archivo se muestra en la barra de título de la ventana.</p><p>Para insertar puntos de interrupción basta con hacer un click en el espacio entre los números de línea y los marcadores de plegado. Pueden editarse con el menú de contexto de los márgenes.</p><p>Para insertar marcadores solo hay que hacer Shift-click en el espacio entre los números de línea y los marcadores de plegado.</p><p>Estas acciones se pueden revertir utilizando el menú de contexto.</p><p>Haciendo Ctrl-click en un marcador de error sintáctico se muestra información sobre el dicho error.</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="833" /> + <location filename="../QScintilla/Editor.py" line="856" /> <source>Undo</source> <translation>Deshacer</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="836" /> + <location filename="../QScintilla/Editor.py" line="859" /> <source>Redo</source> <translation>Rehacer</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="839" /> + <location filename="../QScintilla/Editor.py" line="862" /> <source>Revert to last saved state</source> <translation>Volver al último estado guardado</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="843" /> + <location filename="../QScintilla/Editor.py" line="866" /> <source>Cut</source> <translation>Cortar</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="846" /> + <location filename="../QScintilla/Editor.py" line="869" /> <source>Copy</source> <translation>Copiar</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="849" /> + <location filename="../QScintilla/Editor.py" line="872" /> <source>Paste</source> <translation>Pegar</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="855" /> - <source>Indent</source> - <translation>Indentar</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="860" /> - <source>Unindent</source> - <translation>Desindentar</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="865" /> - <source>Comment</source> - <translation>Pasar a comentario</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="870" /> - <source>Uncomment</source> - <translation>Sacar de comentario</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="8934" /> - <location filename="../QScintilla/Editor.py" line="875" /> - <source>Generate Docstring</source> - <translation>Generar Docstring</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="878" /> + <source>Indent</source> + <translation>Indentar</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="883" /> + <source>Unindent</source> + <translation>Desindentar</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="888" /> + <source>Comment</source> + <translation>Pasar a comentario</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="893" /> + <source>Uncomment</source> + <translation>Sacar de comentario</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="8957" /> + <location filename="../QScintilla/Editor.py" line="898" /> + <source>Generate Docstring</source> + <translation>Generar Docstring</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="901" /> <source>Select to brace</source> <translation>Seleccionar hasta la llave ( '{' o '}' )</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="879" /> + <location filename="../QScintilla/Editor.py" line="902" /> <source>Select all</source> <translation>Seleccionar todo</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="880" /> + <location filename="../QScintilla/Editor.py" line="903" /> <source>Deselect all</source> <translation>Deseleccionar todo</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="882" /> + <location filename="../QScintilla/Editor.py" line="905" /> <source>Execute Selection In Console</source> <translation>Ejecutar Selección en Consola</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="894" /> + <location filename="../QScintilla/Editor.py" line="917" /> <source>Use Monospaced Font</source> <translation>Usar fuente monoespaciada</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="899" /> + <location filename="../QScintilla/Editor.py" line="922" /> <source>Autosave enabled</source> <translation>Autoguardar habilitado</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="904" /> + <location filename="../QScintilla/Editor.py" line="927" /> <source>Typing aids enabled</source> <translation>Ayudas al tecleo habilitadas</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="912" /> + <location filename="../QScintilla/Editor.py" line="935" /> <source>Automatic Completion enabled</source> <translation>Autocompletar habilitado</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="921" /> - <source>Calltip</source> - <translation>Consejo de llamada</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="924" /> - <source>Code Info</source> - <translation>Info del Código</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="939" /> - <source>New Document View</source> - <translation>Nueva Vista de Documento</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="944" /> + <source>Calltip</source> + <translation>Consejo de llamada</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="947" /> + <source>Code Info</source> + <translation>Info del Código</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="962" /> + <source>New Document View</source> + <translation>Nueva Vista de Documento</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="967" /> <source>New Document View (with new split)</source> <translation>Nueva Vista de Documento (con nueva división)</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="952" /> + <location filename="../QScintilla/Editor.py" line="975" /> <source>Save</source> <translation>Guardar</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="956" /> + <location filename="../QScintilla/Editor.py" line="979" /> <source>Save As...</source> <translation>Guardar como...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="961" /> + <location filename="../QScintilla/Editor.py" line="984" /> <source>Save Copy...</source> <translation>Guardar Copia...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="983" /> - <location filename="../QScintilla/Editor.py" line="980" /> + <location filename="../QScintilla/Editor.py" line="1006" /> + <location filename="../QScintilla/Editor.py" line="1003" /> <source>Complete</source> <translation>Completo</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="987" /> + <location filename="../QScintilla/Editor.py" line="1010" /> <source>Clear Completions Cache</source> <translation>Limpiar Caché de Completado</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="990" /> + <location filename="../QScintilla/Editor.py" line="1013" /> <source>Complete from Document</source> <translation>Completar desde documento</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="992" /> + <location filename="../QScintilla/Editor.py" line="1015" /> <source>Complete from APIs</source> <translation>Completar desde APIs</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="995" /> + <location filename="../QScintilla/Editor.py" line="1018" /> <source>Complete from Document and APIs</source> <translation>Completar desde Documento y APIs</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1009" /> + <location filename="../QScintilla/Editor.py" line="1032" /> <source>Check</source> <translation>Verificar</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1020" /> + <location filename="../QScintilla/Editor.py" line="1043" /> <source>Code Formatting</source> <translation>Formato de Código</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1023" /> - <source>Format Code</source> - <translation>Formatear Código</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1027" /> - <source>Check Formatting</source> - <translation>Comprobar Formato</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1031" /> - <source>Formatting Diff</source> - <translation>Diff de Formato</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="1046" /> + <source>Format Code</source> + <translation>Formatear Código</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1050" /> + <source>Check Formatting</source> + <translation>Comprobar Formato</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1054" /> + <source>Formatting Diff</source> + <translation>Diff de Formato</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1069" /> <source>Tools</source> <translation>Herramientas</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1057" /> + <location filename="../QScintilla/Editor.py" line="1080" /> <source>Show</source> <translation>Mostrar</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1059" /> + <location filename="../QScintilla/Editor.py" line="1082" /> <source>Code metrics...</source> <translation>Métricas de código...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1061" /> + <location filename="../QScintilla/Editor.py" line="1084" /> <source>Code coverage...</source> <translation>Cobertura de código...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1064" /> - <source>Show code coverage annotations</source> - <translation>Mostrar anotaciones de cobertura de codigo</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1067" /> - <source>Hide code coverage annotations</source> - <translation>Ocultar anotaciones de cobertura de codigo</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1071" /> - <source>Profile data...</source> - <translation>Datos de profiling...</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1085" /> - <source>Diagrams</source> - <translation>Diagramas</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="1087" /> + <source>Show code coverage annotations</source> + <translation>Mostrar anotaciones de cobertura de codigo</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1090" /> + <source>Hide code coverage annotations</source> + <translation>Ocultar anotaciones de cobertura de codigo</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1094" /> + <source>Profile data...</source> + <translation>Datos de profiling...</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1108" /> + <source>Diagrams</source> + <translation>Diagramas</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1110" /> <source>Class Diagram...</source> <translation>Diagrama de clases...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1088" /> - <source>Package Diagram...</source> - <translation>Diagrama de paquetes...</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1089" /> - <source>Imports Diagram...</source> - <translation>Diagrama de imports...</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1091" /> - <source>Application Diagram...</source> - <translation>Diagrama de aplicación...</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1096" /> - <source>Load Diagram...</source> - <translation>Cargar Diagrama...</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="1111" /> + <source>Package Diagram...</source> + <translation>Diagrama de paquetes...</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1112" /> + <source>Imports Diagram...</source> + <translation>Diagrama de imports...</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1114" /> + <source>Application Diagram...</source> + <translation>Diagrama de aplicación...</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1119" /> + <source>Load Diagram...</source> + <translation>Cargar Diagrama...</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1134" /> <source>Languages</source> <translation>Lenguajes</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1115" /> + <location filename="../QScintilla/Editor.py" line="1138" /> <source>Text</source> <translation>Texto</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1140" /> + <location filename="../QScintilla/Editor.py" line="1163" /> <source>Guessed</source> <translation>Suposición</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1471" /> - <location filename="../QScintilla/Editor.py" line="1144" /> + <location filename="../QScintilla/Editor.py" line="1494" /> + <location filename="../QScintilla/Editor.py" line="1167" /> <source>Alternatives</source> <translation>Alternativas</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1161" /> - <source>Encodings</source> - <translation>Codificaciones</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="1184" /> + <source>Encodings</source> + <translation>Codificaciones</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1207" /> <source>Re-Open With Encoding</source> <translation>Reabrir Con Codificación</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1204" /> + <location filename="../QScintilla/Editor.py" line="1227" /> <source>End-of-Line Type</source> <translation>Tipo de fin-de-línea</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1208" /> + <location filename="../QScintilla/Editor.py" line="1231" /> <source>Unix</source> <translation>Unix</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1214" /> + <location filename="../QScintilla/Editor.py" line="1237" /> <source>Windows</source> <translation>Windows</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1220" /> + <location filename="../QScintilla/Editor.py" line="1243" /> <source>Macintosh</source> <translation>Macintosh</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1238" /> + <location filename="../QScintilla/Editor.py" line="1261" /> <source>Spelling</source> <translation>Corrección ortográfica</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8052" /> - <location filename="../QScintilla/Editor.py" line="1246" /> + <location filename="../QScintilla/Editor.py" line="8075" /> + <location filename="../QScintilla/Editor.py" line="1269" /> <source>Check spelling...</source> <translation>Corrección ortográfica...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1251" /> + <location filename="../QScintilla/Editor.py" line="1274" /> <source>Check spelling of selection...</source> <translation>Corrección ortográfica de la selección...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1255" /> + <location filename="../QScintilla/Editor.py" line="1278" /> <source>Remove from dictionary</source> <translation>Eliminar del diccionario</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1272" /> + <location filename="../QScintilla/Editor.py" line="1295" /> <source>Spell Check Languages</source> <translation>Corrección Ortográfica Idiomas</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1276" /> + <location filename="../QScintilla/Editor.py" line="1299" /> <source>No Language</source> <translation>Ningún Lenguaje</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1303" /> + <location filename="../QScintilla/Editor.py" line="1326" /> <source>Toggle bookmark</source> <translation>Alternar marcador</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1305" /> - <source>Next bookmark</source> - <translation>Nuevo marcador</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1308" /> - <source>Previous bookmark</source> - <translation>Marcador anterior</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1311" /> - <source>Clear all bookmarks</source> - <translation>Borrar todos los marcadores</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1322" /> - <source>Toggle breakpoint</source> - <translation>Alternar punto de interrupción</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1325" /> - <source>Toggle temporary breakpoint</source> - <translation>Alternar punto de interrupción temporal</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="1328" /> - <source>Edit breakpoint...</source> - <translation>Editar punto de interrupción...</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="5754" /> + <source>Next bookmark</source> + <translation>Nuevo marcador</translation> + </message> + <message> <location filename="../QScintilla/Editor.py" line="1331" /> - <source>Enable breakpoint</source> - <translation>Activar punto de interrupción</translation> + <source>Previous bookmark</source> + <translation>Marcador anterior</translation> </message> <message> <location filename="../QScintilla/Editor.py" line="1334" /> - <source>Next breakpoint</source> - <translation>Siguiente punto de interrupción</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1337" /> - <source>Previous breakpoint</source> - <translation>Punto de interrupción anterior</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1340" /> - <source>Clear all breakpoints</source> - <translation>Borrar todos los puntos de interrupción</translation> + <source>Clear all bookmarks</source> + <translation>Borrar todos los marcadores</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1345" /> + <source>Toggle breakpoint</source> + <translation>Alternar punto de interrupción</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1348" /> + <source>Toggle temporary breakpoint</source> + <translation>Alternar punto de interrupción temporal</translation> </message> <message> <location filename="../QScintilla/Editor.py" line="1351" /> - <source>Toggle all folds</source> - <translation>Recoger/Desplegar los anidamientos</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1356" /> - <source>Toggle all folds (including children)</source> - <translation>Recoger/Desplegar todos los anidamientos (inc. hijos)</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1359" /> - <source>Toggle current fold</source> - <translation>Recoger/Desplegar el anidamiento actual</translation> + <source>Edit breakpoint...</source> + <translation>Editar punto de interrupción...</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="5777" /> + <location filename="../QScintilla/Editor.py" line="1354" /> + <source>Enable breakpoint</source> + <translation>Activar punto de interrupción</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1357" /> + <source>Next breakpoint</source> + <translation>Siguiente punto de interrupción</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1360" /> + <source>Previous breakpoint</source> + <translation>Punto de interrupción anterior</translation> </message> <message> <location filename="../QScintilla/Editor.py" line="1363" /> - <source>Expand (including children)</source> - <translation>Expandir (incluídos hijos)</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1367" /> - <source>Collapse (including children)</source> - <translation>Contraer (incluídos hijos)</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1372" /> - <source>Clear all folds</source> - <translation>Limpiar todos los anidamientos</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1383" /> - <source>Goto syntax error</source> - <translation>Ir al error de sintaxis</translation> + <source>Clear all breakpoints</source> + <translation>Borrar todos los puntos de interrupción</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1374" /> + <source>Toggle all folds</source> + <translation>Recoger/Desplegar los anidamientos</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1379" /> + <source>Toggle all folds (including children)</source> + <translation>Recoger/Desplegar todos los anidamientos (inc. hijos)</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1382" /> + <source>Toggle current fold</source> + <translation>Recoger/Desplegar el anidamiento actual</translation> </message> <message> <location filename="../QScintilla/Editor.py" line="1386" /> - <source>Show syntax error message</source> - <translation>Ver el mensaje de error de sintaxis</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1389" /> - <source>Clear syntax error</source> - <translation>Borrar error de sintaxis</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1393" /> - <source>Next warning</source> - <translation>Siguiente advertencia</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1396" /> - <source>Previous warning</source> - <translation>Anterior advertencia</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1399" /> - <source>Show warning message</source> - <translation>Mostrar mensaje de advertencia</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1402" /> - <source>Clear warnings</source> - <translation>Limpiar advertencias</translation> + <source>Expand (including children)</source> + <translation>Expandir (incluídos hijos)</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1390" /> + <source>Collapse (including children)</source> + <translation>Contraer (incluídos hijos)</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1395" /> + <source>Clear all folds</source> + <translation>Limpiar todos los anidamientos</translation> </message> <message> <location filename="../QScintilla/Editor.py" line="1406" /> - <source>Next uncovered line</source> - <translation>Siguiente línea sin cobertura</translation> + <source>Goto syntax error</source> + <translation>Ir al error de sintaxis</translation> </message> <message> <location filename="../QScintilla/Editor.py" line="1409" /> - <source>Previous uncovered line</source> - <translation>Anterior línea sin cobertura</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1413" /> - <source>Next task</source> - <translation>Nueva tarea</translation> + <source>Show syntax error message</source> + <translation>Ver el mensaje de error de sintaxis</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1412" /> + <source>Clear syntax error</source> + <translation>Borrar error de sintaxis</translation> </message> <message> <location filename="../QScintilla/Editor.py" line="1416" /> + <source>Next warning</source> + <translation>Siguiente advertencia</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1419" /> + <source>Previous warning</source> + <translation>Anterior advertencia</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1422" /> + <source>Show warning message</source> + <translation>Mostrar mensaje de advertencia</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1425" /> + <source>Clear warnings</source> + <translation>Limpiar advertencias</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1429" /> + <source>Next uncovered line</source> + <translation>Siguiente línea sin cobertura</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1432" /> + <source>Previous uncovered line</source> + <translation>Anterior línea sin cobertura</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1436" /> + <source>Next task</source> + <translation>Nueva tarea</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1439" /> <source>Previous task</source> <translation>Tarea anterior</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1420" /> + <location filename="../QScintilla/Editor.py" line="1443" /> <source>Next change</source> <translation>Siguiente cambio</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1423" /> + <location filename="../QScintilla/Editor.py" line="1446" /> <source>Previous change</source> <translation>Cambio anterior</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1426" /> - <source>Clear changes</source> - <translation>Limpiar cambios</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1457" /> - <location filename="../QScintilla/Editor.py" line="1448" /> - <source>Export source</source> - <translation>Exportar fuente</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="1449" /> + <source>Clear changes</source> + <translation>Limpiar cambios</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1480" /> + <location filename="../QScintilla/Editor.py" line="1471" /> + <source>Export source</source> + <translation>Exportar fuente</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1472" /> <source><p>No exporter available for the export format <b>{0}</b>. Aborting...</p></source> <translation><p>No hay un exportador disponible para el formato de exportación <b>{0}</b>. Abortando...</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1458" /> + <location filename="../QScintilla/Editor.py" line="1481" /> <source>No export format given. Aborting...</source> <translation>No se ha proporcionado un formato de exportación. Abortando...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1468" /> - <source>Alternatives ({0})</source> - <translation>Alternativas ({0})</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="1491" /> + <source>Alternatives ({0})</source> + <translation>Alternativas ({0})</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1514" /> <source>Pygments Lexer</source> <translation>Analizador Léxico de Pygments</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1492" /> + <location filename="../QScintilla/Editor.py" line="1515" /> <source>Select the Pygments lexer to apply.</source> <translation>Seleccionar el Analizador Léxico de Pygments.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2051" /> + <location filename="../QScintilla/Editor.py" line="2074" /> <source>Modification of Read Only file</source> <translation>Modificación de un archivo de solo lectura</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2052" /> + <location filename="../QScintilla/Editor.py" line="2075" /> <source>You are attempting to change a read only file. Please save to a different file first.</source> <translation>Usted está intentando modificar un archivo solo lectura. Por favor guarde en otro archivo primero.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2473" /> + <location filename="../QScintilla/Editor.py" line="2496" /> <source>Add Breakpoint</source> <translation>Añadir Punto de Interrupción</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2474" /> + <location filename="../QScintilla/Editor.py" line="2497" /> <source>No Python byte code will be created for the selected line. No break point will be set!</source> <translation>No se va a crear Python bytecode para la línea seleccionada. ¡No se va a establecer ningún punto de ruptura!</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2807" /> + <location filename="../QScintilla/Editor.py" line="2830" /> <source>Printing...</source> <translation>Imprimiendo...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2824" /> + <location filename="../QScintilla/Editor.py" line="2847" /> <source>Printing completed</source> <translation>Impresión completa</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2826" /> + <location filename="../QScintilla/Editor.py" line="2849" /> <source>Error while printing</source> <translation>Error al imprimir</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2829" /> + <location filename="../QScintilla/Editor.py" line="2852" /> <source>Printing aborted</source> <translation>Impresión cancelada</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="3187" /> + <location filename="../QScintilla/Editor.py" line="3210" /> <source>File Modified</source> <translation>Archivo modificado</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="3188" /> + <location filename="../QScintilla/Editor.py" line="3211" /> <source><p>The file <b>{0}</b> has unsaved changes.</p></source> <translation><p>El archivo <b>{0}</b> tiene cambios sin guardar.</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="3246" /> + <location filename="../QScintilla/Editor.py" line="3269" /> <source><p>The file <b>{0}</b> could not be opened.</p><p>Reason: {1}</p></source> <translation><p>El archivo<b>{0}</b> no puede ser abierto.<br />Causa: {1}</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="3424" /> - <location filename="../QScintilla/Editor.py" line="3405" /> - <location filename="../QScintilla/Editor.py" line="3365" /> + <location filename="../QScintilla/Editor.py" line="3447" /> + <location filename="../QScintilla/Editor.py" line="3428" /> + <location filename="../QScintilla/Editor.py" line="3388" /> <source>Save File</source> <translation>Guardar archivo</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="3366" /> + <location filename="../QScintilla/Editor.py" line="3389" /> <source><p>The file <b>{0}</b> could not be saved.<br/>Reason: {1}</p></source> <translation><p>El archivo <b>{0}</b> no puede ser guardado.<br>Causa: {1}</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="3425" /> + <location filename="../QScintilla/Editor.py" line="3448" /> <source><p>The file <b>{0}</b> already exists. Overwrite it?</p></source> <translation><p>El archivo <b>{0}</b> ya existe. ¿Desea sobreescribirlo?</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="4935" /> + <location filename="../QScintilla/Editor.py" line="4958" /> <source>Autocompletion</source> <translation>Autocompletar</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="4936" /> + <location filename="../QScintilla/Editor.py" line="4959" /> <source>Autocompletion is not available because there is no autocompletion source set.</source> <translation>Autocompletar no está disponible porque no hay origen de datos para autocompletar.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5064" /> + <location filename="../QScintilla/Editor.py" line="5087" /> <source>Auto-Completion Provider</source> <translation>Proveedor de Autocompletado</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5065" /> + <location filename="../QScintilla/Editor.py" line="5088" /> <source>The completion list provider '{0}' was already registered. Ignoring duplicate request.</source> <translation>El proveedor de lista de completado'{0}' ya está registrado. Se ignora la solicitud duplicada.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5357" /> + <location filename="../QScintilla/Editor.py" line="5380" /> <source>Call-Tips Provider</source> <translation>Proveedor de Call-Tips</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5358" /> + <location filename="../QScintilla/Editor.py" line="5381" /> <source>The call-tips provider '{0}' was already registered. Ignoring duplicate request.</source> <translation>El proveedor de call-tips'{0}' ya está registrado. Se ignora la solicitud duplicada.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5758" /> + <location filename="../QScintilla/Editor.py" line="5781" /> <source>Disable breakpoint</source> <translation>Deshabilitar punto de interrupción</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6113" /> + <location filename="../QScintilla/Editor.py" line="6136" /> <source>Code Coverage</source> <translation>Cobertura de codigo</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6114" /> + <location filename="../QScintilla/Editor.py" line="6137" /> <source>Please select a coverage file</source> <translation>Por favor seleccione un archivo de cobertura</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6189" /> - <location filename="../QScintilla/Editor.py" line="6181" /> + <location filename="../QScintilla/Editor.py" line="6212" /> + <location filename="../QScintilla/Editor.py" line="6204" /> <source>Show Code Coverage Annotations</source> <translation>Mostrar Anotaciones de Cobertura de Código</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6182" /> + <location filename="../QScintilla/Editor.py" line="6205" /> <source>All lines have been covered.</source> <translation>Todas las líneas han sido cubiertas.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6190" /> + <location filename="../QScintilla/Editor.py" line="6213" /> <source>There is no coverage file available.</source> <translation>No hay archivo de cobertura disponible.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6286" /> + <location filename="../QScintilla/Editor.py" line="6309" /> <source>Profile Data</source> <translation>Datos de profiling</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6287" /> + <location filename="../QScintilla/Editor.py" line="6310" /> <source>Please select a profile file</source> <translation>Por favor seleccione un archivo de profiling</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6450" /> - <location filename="../QScintilla/Editor.py" line="6444" /> + <location filename="../QScintilla/Editor.py" line="6473" /> + <location filename="../QScintilla/Editor.py" line="6467" /> <source>Syntax Error</source> <translation>Error de sintaxis</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6451" /> + <location filename="../QScintilla/Editor.py" line="6474" /> <source>No syntax error message available.</source> <translation>No hay mensajes de error de sintaxis disponibles.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6662" /> - <location filename="../QScintilla/Editor.py" line="6656" /> + <location filename="../QScintilla/Editor.py" line="6685" /> + <location filename="../QScintilla/Editor.py" line="6679" /> <source>Warning</source> <translation>Advertencia</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6662" /> + <location filename="../QScintilla/Editor.py" line="6685" /> <source>No warning messages available.</source> <translation>No hay mensajes de advertencia disponibles.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6726" /> + <location filename="../QScintilla/Editor.py" line="6749" /> <source>Style: {0}</source> <translation>Estilo: {0}</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6729" /> + <location filename="../QScintilla/Editor.py" line="6752" /> <source>Warning: {0}</source> <translation>Advertencia: {0}</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6736" /> + <location filename="../QScintilla/Editor.py" line="6759" /> <source>Error: {0}</source> <translation>Error: {0}</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6843" /> + <location filename="../QScintilla/Editor.py" line="6866" /> <source>Macro Name</source> <translation>Nombre de macro</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6843" /> + <location filename="../QScintilla/Editor.py" line="6866" /> <source>Select a macro name:</source> <translation>Seleccione un nombre de macro:</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6869" /> + <location filename="../QScintilla/Editor.py" line="6892" /> <source>Load macro file</source> <translation>Cargar archivo de macro</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6915" /> - <location filename="../QScintilla/Editor.py" line="6871" /> + <location filename="../QScintilla/Editor.py" line="6938" /> + <location filename="../QScintilla/Editor.py" line="6894" /> <source>Macro files (*.macro)</source> <translation>Archivos de Macro (*.macro)</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6893" /> - <location filename="../QScintilla/Editor.py" line="6883" /> + <location filename="../QScintilla/Editor.py" line="6916" /> + <location filename="../QScintilla/Editor.py" line="6906" /> <source>Error loading macro</source> <translation>Error al cargar macro</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6884" /> + <location filename="../QScintilla/Editor.py" line="6907" /> <source><p>The macro file <b>{0}</b> could not be read.</p></source> <translation><p>El archivo de macro <b>{0}</b> no se puede leer.</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6894" /> + <location filename="../QScintilla/Editor.py" line="6917" /> <source><p>The macro file <b>{0}</b> is corrupt.</p></source> <translation><p>El archivo de macro <b>{0}</b> está dañado</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6913" /> + <location filename="../QScintilla/Editor.py" line="6936" /> <source>Save macro file</source> <translation>Guardar archivo de macro</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6931" /> + <location filename="../QScintilla/Editor.py" line="6954" /> <source>Save macro</source> <translation>Guardar macro</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6932" /> + <location filename="../QScintilla/Editor.py" line="6955" /> <source><p>The macro file <b>{0}</b> already exists. Overwrite it?</p></source> <translation><p>El archivo de macro <b>{0}</b> ya existe. ¿Desea sobreescribirlo?</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6947" /> + <location filename="../QScintilla/Editor.py" line="6970" /> <source>Error saving macro</source> <translation>Error al guardar macro</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6948" /> + <location filename="../QScintilla/Editor.py" line="6971" /> <source><p>The macro file <b>{0}</b> could not be written.</p></source> <translation><p>El archivo de macro <b>{0}</b> no se puede escribir.</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6961" /> + <location filename="../QScintilla/Editor.py" line="6984" /> <source>Start Macro Recording</source> <translation>Comenzar grabación de macro</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6962" /> + <location filename="../QScintilla/Editor.py" line="6985" /> <source>Macro recording is already active. Start new?</source> <translation>Grabación de macro ya está activada. ¿Comenzar una nueva?</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6988" /> + <location filename="../QScintilla/Editor.py" line="7011" /> <source>Macro Recording</source> <translation>Grabando macro</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6989" /> + <location filename="../QScintilla/Editor.py" line="7012" /> <source>Enter name of the macro:</source> <translation>Introduzca el nombre de la macro:</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7140" /> + <location filename="../QScintilla/Editor.py" line="7163" /> <source><p>The file <b>{0}</b> has been changed while it was opened in eric. Reread it?</p></source> <translation><p>El archivo <b>{0}</b> ha cambiado mientras estaba abierto en eric. ¿Desea volver a cargarlo?</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7146" /> + <location filename="../QScintilla/Editor.py" line="7169" /> <source><br><b>Warning:</b> You will lose your changes upon reopening it.</source> <translation><br><b>Advertencia:</b> Perderá los cambios si lo reabre.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7153" /> + <location filename="../QScintilla/Editor.py" line="7176" /> <source>File changed</source> <translation>Archivo modificado</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7203" /> + <location filename="../QScintilla/Editor.py" line="7226" /> <source>{0} (ro)</source> <translation>{0} (ro)</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7494" /> - <source>Drop Error</source> - <translation>Error al soltar</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="7495" /> - <source><p><b>{0}</b> is not a file.</p></source> - <translation><p><b>{0}</b> no es un archivo.</p></translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="7515" /> - <source>Resources</source> - <translation>Recursos</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="7517" /> - <source>Add file...</source> - <translation>Añadir archivo...</translation> + <source>Drop Error</source> + <translation>Error al soltar</translation> </message> <message> <location filename="../QScintilla/Editor.py" line="7518" /> + <source><p><b>{0}</b> is not a file.</p></source> + <translation><p><b>{0}</b> no es un archivo.</p></translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="7538" /> + <source>Resources</source> + <translation>Recursos</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="7540" /> + <source>Add file...</source> + <translation>Añadir archivo...</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="7541" /> <source>Add files...</source> <translation>Añadir archivos...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7519" /> + <location filename="../QScintilla/Editor.py" line="7542" /> <source>Add aliased file...</source> <translation>Añadir archivo con un alias...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7521" /> + <location filename="../QScintilla/Editor.py" line="7544" /> <source>Add localized resource...</source> <translation>Añadir recursos localizados...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7524" /> + <location filename="../QScintilla/Editor.py" line="7547" /> <source>Add resource frame</source> <translation>Añadir ventana de recursos</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7543" /> + <location filename="../QScintilla/Editor.py" line="7566" /> <source>Add file resource</source> <translation>Añadir archivo de recursos</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7557" /> + <location filename="../QScintilla/Editor.py" line="7580" /> <source>Add file resources</source> <translation>Añadir archivo de recursos</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7581" /> - <location filename="../QScintilla/Editor.py" line="7575" /> + <location filename="../QScintilla/Editor.py" line="7604" /> + <location filename="../QScintilla/Editor.py" line="7598" /> <source>Add aliased file resource</source> <translation>Añadir archivo de recursos con un alias</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7582" /> + <location filename="../QScintilla/Editor.py" line="7605" /> <source>Alias for file <b>{0}</b>:</source> <translation>Alias para el archivo <b>{0}</b>:</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7657" /> + <location filename="../QScintilla/Editor.py" line="7680" /> <source>Package Diagram</source> <translation>Digrama de paquetes</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7658" /> + <location filename="../QScintilla/Editor.py" line="7681" /> <source>Include class attributes?</source> <translation>¿Incluir atributos de clase?</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7678" /> + <location filename="../QScintilla/Editor.py" line="7701" /> <source>Imports Diagram</source> <translation>Diagrama de imports</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7679" /> + <location filename="../QScintilla/Editor.py" line="7702" /> <source>Include imports from external modules?</source> <translation>¿Incluir los imports de módulos externos?</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7698" /> + <location filename="../QScintilla/Editor.py" line="7721" /> <source>Application Diagram</source> <translation>Diagrama de aplicación</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7699" /> + <location filename="../QScintilla/Editor.py" line="7722" /> <source>Include module names?</source> <translation>¿Incluir nombres de módulos?</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8056" /> + <location filename="../QScintilla/Editor.py" line="8079" /> <source>Add to dictionary</source> <translation>Añadir al diccionario</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8058" /> + <location filename="../QScintilla/Editor.py" line="8081" /> <source>Ignore All</source> <translation>Ignorar Todo</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8476" /> + <location filename="../QScintilla/Editor.py" line="8499" /> <source>Sort Lines</source> <translation>Ordenar Líneas</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8477" /> + <location filename="../QScintilla/Editor.py" line="8500" /> <source>The selection contains illegal data for a numerical sort.</source> <translation>La selección contiene datos ilegales para una ordenación numérica.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8570" /> + <location filename="../QScintilla/Editor.py" line="8593" /> <source>Register Mouse Click Handler</source> <translation>Registrar Manejador de Clicks de Ratón</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8571" /> + <location filename="../QScintilla/Editor.py" line="8594" /> <source>A mouse click handler for "{0}" was already registered by "{1}". Aborting request by "{2}"...</source> <translation>Un manejador de clicks de ratón para "{0}" ya está registrado por "{1}". Abortando solicitud por "{2}"...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8667" /> + <location filename="../QScintilla/Editor.py" line="8690" /> <source>{0:4d} {1}</source> <comment>line number, source code</comment> <translation>{0:4d} {1}</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8673" /> + <location filename="../QScintilla/Editor.py" line="8696" /> <source>{0:4d} {1} => {2}</source> <comment>line number, source code, file name</comment> @@ -12115,12 +12127,12 @@ => {2}</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8741" /> + <location filename="../QScintilla/Editor.py" line="8764" /> <source>EditorConfig Properties</source> <translation>Propiedades de EditorConfig</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8742" /> + <location filename="../QScintilla/Editor.py" line="8765" /> <source><p>The EditorConfig properties for file <b>{0}</b> could not be loaded.</p></source> <translation><p>Las propiedades de EditorConfig para el archivo <b>{0}</b> no se ha podido cargar.</p></translation> </message> @@ -13023,26 +13035,26 @@ <context> <name>EditorFilePage</name> <message> - <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="339" /> - <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="322" /> - <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="305" /> - <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="294" /> + <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="341" /> + <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="324" /> + <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="307" /> + <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="296" /> <source>Add File Filter</source> <translation>Añadir Filtro de Archivo</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="295" /> + <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="297" /> <source>A Save File Filter must contain exactly one wildcard pattern. Yours contains {0}.</source> <translation>Un Filtro para Guardar Archivo debe tener exactamente un carácter de comodín. El suyo contiene {0}.</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="306" /> + <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="308" /> <source>A File Filter must contain at least one wildcard pattern.</source> <translation>Un Filtro de Archivo debe contener al menos un carácter de comodín.</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="340" /> - <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="323" /> + <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="342" /> + <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="325" /> <source>Enter the file filter entry:</source> <translation>Introducir la entrada para filtro de archivo:</translation> </message> @@ -13088,11 +13100,22 @@ </message> <message> <location filename="../Preferences/ConfigurationPages/EditorFilePage.ui" line="0" /> + <location filename="../Preferences/ConfigurationPages/EditorFilePage.ui" line="0" /> <source> KB</source> <translation> KB</translation> </message> <message> <location filename="../Preferences/ConfigurationPages/EditorFilePage.ui" line="0" /> + <source>Reject, if file is greater than</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/EditorFilePage.ui" line="0" /> + <source>Enter the filesize, opening a file should be rejected.</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/EditorFilePage.ui" line="0" /> <source>End of Line</source> <translation>Final de Línea</translation> </message> @@ -17120,12 +17143,12 @@ <context> <name>EricApplication</name> <message> - <location filename="../EricWidgets/EricApplication.py" line="220" /> + <location filename="../EricWidgets/EricApplication.py" line="221" /> <source>Loading Style Sheet</source> <translation>Cargando Hoja de Estilos</translation> </message> <message> - <location filename="../EricWidgets/EricApplication.py" line="223" /> + <location filename="../EricWidgets/EricApplication.py" line="224" /> <source><p>The Qt Style Sheet file <b>{0}</b> could not be read.<br>Reason: {1}</p></source> <translation><p>El archivo de Hoja de Estilo Qt <b>{0}</b> no se puede leer.<br>Causa: {1}</p></translation> </message> @@ -46060,7 +46083,7 @@ <translation>Pygments</translation> </message> <message> - <location filename="../Preferences/__init__.py" line="468" /> + <location filename="../Preferences/__init__.py" line="469" /> <location filename="../QScintilla/Lexers/__init__.py" line="482" /> <source>Python Files (*.py *.py3)</source> <translation>Archivos Python (*.py *.py3)</translation> @@ -46313,7 +46336,7 @@ <translation>Todos los archivos (*)</translation> </message> <message> - <location filename="../Preferences/__init__.py" line="471" /> + <location filename="../Preferences/__init__.py" line="472" /> <location filename="../QScintilla/Lexers/__init__.py" line="575" /> <source>Python3 Files (*.py)</source> <translation>Archivos Python (*.py3)</translation> @@ -54877,18 +54900,18 @@ <context> <name>Preferences</name> <message> - <location filename="../Preferences/__init__.py" line="1651" /> + <location filename="../Preferences/__init__.py" line="1652" /> <source>Export Preferences</source> <translation>Exportar Preferencias</translation> </message> <message> - <location filename="../Preferences/__init__.py" line="1680" /> - <location filename="../Preferences/__init__.py" line="1653" /> + <location filename="../Preferences/__init__.py" line="1681" /> + <location filename="../Preferences/__init__.py" line="1654" /> <source>Properties File (*.ini);;All Files (*)</source> <translation>Archivo de Propiedades (*.ini);;Todos los archivos (*)</translation> </message> <message> - <location filename="../Preferences/__init__.py" line="1678" /> + <location filename="../Preferences/__init__.py" line="1679" /> <source>Import Preferences</source> <translation>Importar Preferencias</translation> </message> @@ -56375,8 +56398,8 @@ <translation><b>Cobertura de Código...</b><p>Muestra la información de cobertura de código para todos los archivos Python en el proyecto.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5856" /> - <location filename="../Project/Project.py" line="5843" /> + <location filename="../Project/Project.py" line="5857" /> + <location filename="../Project/Project.py" line="5844" /> <location filename="../Project/Project.py" line="4649" /> <source>Profile Data</source> <translation>Datos de perfil</translation> @@ -56397,7 +56420,7 @@ <translation><b>Datos de Profiling...</b><p>Muestra datos de profiling para el proyecto.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5908" /> + <location filename="../Project/Project.py" line="5909" /> <location filename="../Project/Project.py" line="4675" /> <source>Application Diagram</source> <translation>Diagrama de Aplicación</translation> @@ -56438,8 +56461,8 @@ <translation><b>Cargar Diagrama...</b><p>Carga un diagrama desde un archivo.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="6103" /> - <location filename="../Project/Project.py" line="6044" /> + <location filename="../Project/Project.py" line="6104" /> + <location filename="../Project/Project.py" line="6045" /> <location filename="../Project/Project.py" line="4719" /> <source>Create Package List</source> <translation>Crear Lista del Paquete</translation> @@ -56460,7 +56483,7 @@ <translation><b>Crear Package List</b><p>Crea una lista inicial de archivos para incluir en un archivo de plugin para eric. Esta lista se crea a partir del archivo de proyecto.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="6172" /> + <location filename="../Project/Project.py" line="6173" /> <location filename="../Project/Project.py" line="4742" /> <source>Create Plugin Archives</source> <translation>Crear Archivos de Plugin</translation> @@ -56501,9 +56524,9 @@ <translation><b>Crear Archivos de Plugin (Snapshot)</b><p>Crea ficheros para archivo de plugin de eric usando el listado de ficheros dado en un archivo PKGLIST*. El nombre del archivo se construye a partir del nombre del script principal si no se designa uno en el archivo de package list. La entrada de versión del script principal se modifica para reflejar una snapshot release.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="6589" /> - <location filename="../Project/Project.py" line="6560" /> - <location filename="../Project/Project.py" line="6511" /> + <location filename="../Project/Project.py" line="6590" /> + <location filename="../Project/Project.py" line="6561" /> + <location filename="../Project/Project.py" line="6512" /> <location filename="../Project/Project.py" line="4795" /> <source>Execute Make</source> <translation>Ejecutar Make</translation> @@ -56524,7 +56547,7 @@ <translation><b>Ejecutar Make</b><p>Ejecuta un 'make' para reconstruir el target configurado.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="6566" /> + <location filename="../Project/Project.py" line="6567" /> <location filename="../Project/Project.py" line="4814" /> <source>Test for Changes</source> <translation>Comprobar Cambios</translation> @@ -56565,7 +56588,7 @@ <translation><b>Crear Archivo SBOM</b><p>Esto permite la creación de un archivo SBOM de las dependencias del proyecto. Puede basarse en varias fuentes de input y se guardará como un archivo CycloneDX SBOM.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="6744" /> + <location filename="../Project/Project.py" line="6745" /> <location filename="../Project/Project.py" line="4871" /> <source>About Black</source> <translation>Acerca de Black</translation> @@ -56813,195 +56836,195 @@ <translation>Otras Herramientas</translation> </message> <message> - <location filename="../Project/Project.py" line="5275" /> - <location filename="../Project/Project.py" line="5272" /> + <location filename="../Project/Project.py" line="5276" /> + <location filename="../Project/Project.py" line="5273" /> <source>Project</source> <translation>Proyecto</translation> </message> <message> - <location filename="../Project/Project.py" line="5338" /> + <location filename="../Project/Project.py" line="5339" /> <source>&Clear</source> <translation>&Borrar</translation> </message> <message> - <location filename="../Project/Project.py" line="5497" /> - <source>Search New Files</source> - <translation>Buscar nuevos archivos</translation> - </message> - <message> <location filename="../Project/Project.py" line="5498" /> + <source>Search New Files</source> + <translation>Buscar nuevos archivos</translation> + </message> + <message> + <location filename="../Project/Project.py" line="5499" /> <source>There were no new files found to be added.</source> <translation>No se han encontrado nuevos archivos para ser añadidos.</translation> </message> <message> - <location filename="../Project/Project.py" line="5649" /> - <location filename="../Project/Project.py" line="5636" /> - <source>Version Control System</source> - <translation>Sistema de control de versiones</translation> - </message> - <message> - <location filename="../Project/Project.py" line="5637" /> - <source><p>The selected VCS <b>{0}</b> could not be found. <br/>Reverting override.</p><p>{1}</p></source> - <translation><p>El VCS seleccionado <b>{0}</b> no ha sido encontrado.<br>Revirtiendo sobreescritura.</p><p>{1}</p></translation> - </message> - <message> <location filename="../Project/Project.py" line="5650" /> + <location filename="../Project/Project.py" line="5637" /> + <source>Version Control System</source> + <translation>Sistema de control de versiones</translation> + </message> + <message> + <location filename="../Project/Project.py" line="5638" /> + <source><p>The selected VCS <b>{0}</b> could not be found. <br/>Reverting override.</p><p>{1}</p></source> + <translation><p>El VCS seleccionado <b>{0}</b> no ha sido encontrado.<br>Revirtiendo sobreescritura.</p><p>{1}</p></translation> + </message> + <message> + <location filename="../Project/Project.py" line="5651" /> <source><p>The selected VCS <b>{0}</b> could not be found.<br/>Disabling version control.</p><p>{1}</p></source> <translation><p>El VCS seleccionado <b>{0}</b> no ha sido encontrado.<br>Deshabilitando control de versiones.</p><p>{1}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5798" /> + <location filename="../Project/Project.py" line="5799" /> <source>Coverage Data</source> <translation>Datos de Cobertura</translation> </message> <message> - <location filename="../Project/Project.py" line="5844" /> - <location filename="../Project/Project.py" line="5799" /> + <location filename="../Project/Project.py" line="5845" /> + <location filename="../Project/Project.py" line="5800" /> <source>There is no main script defined for the current project. Aborting</source> <translation>No hay script principal definido para el proyecto actual. Abortando</translation> </message> <message> - <location filename="../Project/Project.py" line="5811" /> - <source>Code Coverage</source> - <translation>Cobertura de codigo</translation> - </message> - <message> <location filename="../Project/Project.py" line="5812" /> + <source>Code Coverage</source> + <translation>Cobertura de codigo</translation> + </message> + <message> + <location filename="../Project/Project.py" line="5813" /> <source>Please select a coverage file</source> <translation>Por favor seleccione un archivo de cobertura</translation> </message> <message> - <location filename="../Project/Project.py" line="5857" /> + <location filename="../Project/Project.py" line="5858" /> <source>Please select a profile file</source> <translation>Por favor seleccione un archivo de profiling</translation> </message> <message> - <location filename="../Project/Project.py" line="5909" /> + <location filename="../Project/Project.py" line="5910" /> <source>Include module names?</source> <translation>¿Incluir nombres de módulos?</translation> </message> <message> - <location filename="../Project/Project.py" line="6045" /> + <location filename="../Project/Project.py" line="6046" /> <source><p>The file <b>PKGLIST</b> already exists.</p><p>Overwrite it?</p></source> <translation><p>El archivo <b>PKGLIST</b> ya existe.</p><p>¿Desea sobreescribirlo?</p></translation> </message> <message> - <location filename="../Project/Project.py" line="6104" /> + <location filename="../Project/Project.py" line="6105" /> <source><p>The file <b>PKGLIST</b> could not be created.</p><p>Reason: {0}</p></source> <translation><p>El archivo <b>PKGLIST</b> no puede ser creado.</p><p>Causa: {0}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="6393" /> - <location filename="../Project/Project.py" line="6351" /> - <location filename="../Project/Project.py" line="6305" /> - <location filename="../Project/Project.py" line="6294" /> - <location filename="../Project/Project.py" line="6276" /> - <location filename="../Project/Project.py" line="6243" /> - <location filename="../Project/Project.py" line="6213" /> - <location filename="../Project/Project.py" line="6185" /> - <location filename="../Project/Project.py" line="6155" /> - <location filename="../Project/Project.py" line="6141" /> - <location filename="../Project/Project.py" line="6124" /> + <location filename="../Project/Project.py" line="6394" /> + <location filename="../Project/Project.py" line="6352" /> + <location filename="../Project/Project.py" line="6306" /> + <location filename="../Project/Project.py" line="6295" /> + <location filename="../Project/Project.py" line="6277" /> + <location filename="../Project/Project.py" line="6244" /> + <location filename="../Project/Project.py" line="6214" /> + <location filename="../Project/Project.py" line="6186" /> + <location filename="../Project/Project.py" line="6156" /> + <location filename="../Project/Project.py" line="6142" /> + <location filename="../Project/Project.py" line="6125" /> <source>Create Plugin Archive</source> <translation>Crear Archivo de Plugin</translation> </message> <message> - <location filename="../Project/Project.py" line="6125" /> + <location filename="../Project/Project.py" line="6126" /> <source>The project does not have a main script defined. Aborting...</source> <translation>No hay script principal definido para el proyecto actual. Abortando...</translation> </message> <message> - <location filename="../Project/Project.py" line="6142" /> + <location filename="../Project/Project.py" line="6143" /> <source>Select package lists:</source> <translation>Seleccionar package lists:</translation> </message> <message> - <location filename="../Project/Project.py" line="6156" /> + <location filename="../Project/Project.py" line="6157" /> <source><p>No package list files (PKGLIST*) available or selected. Aborting...</p></source> <translation><p>No hay archivo de package list (PKGLIST*) disponible o seleccionado. Abortando...</p></translation> </message> <message> - <location filename="../Project/Project.py" line="6164" /> - <source>Creating plugin archives...</source> - <translation>Creando archivos de plugin...</translation> - </message> - <message> <location filename="../Project/Project.py" line="6165" /> + <source>Creating plugin archives...</source> + <translation>Creando archivos de plugin...</translation> + </message> + <message> + <location filename="../Project/Project.py" line="6166" /> <source>Abort</source> <translation>Abortar</translation> </message> <message> - <location filename="../Project/Project.py" line="6168" /> + <location filename="../Project/Project.py" line="6169" /> <source>%v/%m Archives</source> <translation>%v/%m Archivos</translation> </message> <message> - <location filename="../Project/Project.py" line="6186" /> + <location filename="../Project/Project.py" line="6187" /> <source><p>The file <b>{0}</b> could not be read.</p><p>Reason: {1}</p></source> <translation><p>El archivo<b>{0}</b> no puede ser leído.</p><p>Causa: {1}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="6214" /> + <location filename="../Project/Project.py" line="6215" /> <source><p>The file <b>{0}</b> is not ready yet.</p><p>Please rework it and delete the'; initial_list' line of the header.</p></source> <translation><p>El archivo <b>{0}</b> todavía no está listo.</p><p>Por favor, revíselo y borre la línea '; initial_list' del encabezado.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="6244" /> + <location filename="../Project/Project.py" line="6245" /> <source><p>The eric plugin archive file <b>{0}</b> could not be created.</p><p>Reason: {1}</p></source> <translation><p>El archivo de plugin de eric <b>{0}</b> no ha podido ser creado.</p><p>Razón: {1}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="6277" /> + <location filename="../Project/Project.py" line="6278" /> <source><p>The file <b>{0}</b> could not be stored in the archive. Ignoring it.</p><p>Reason: {1}</p></source> <translation><p>El fichero<b>{0}</b> no ha podido ser almacenado en el archivo. Va a ser ignorado.</p><p>Causa: {1}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="6295" /> + <location filename="../Project/Project.py" line="6296" /> <source><p>The eric plugin archive files were created with some errors.</p></source> <translation><p>Los ficheros para archivo de plugin de eric se han creado con errores.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="6306" /> + <location filename="../Project/Project.py" line="6307" /> <source><p>The eric plugin archive files were created successfully.</p></source> <translation><p>Los ficheros para archivo de plugin de eric se han creado correctamente.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="6352" /> + <location filename="../Project/Project.py" line="6353" /> <source><p>The plugin file <b>{0}</b> could not be read.</p><p>Reason: {1}</p></source> <translation><p>El archivo de plugin<b>{0}</b> no puede ser leido.</p><p>Causa: {1}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="6394" /> + <location filename="../Project/Project.py" line="6395" /> <source><p>The plugin file <b>{0}</b> could not be read.</p> <p>Reason: {1}</p></source> <translation><p>El archivo de plugin<b>{0}</b> no puede ser leido.</p><p>Causa: {1}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="6512" /> + <location filename="../Project/Project.py" line="6513" /> <source>The make process did not start.</source> <translation>El proceso make no ha comenzado.</translation> </message> <message> - <location filename="../Project/Project.py" line="6561" /> + <location filename="../Project/Project.py" line="6562" /> <source>The make process crashed.</source> <translation>El proceso make ha fallado.</translation> </message> <message> - <location filename="../Project/Project.py" line="6569" /> + <location filename="../Project/Project.py" line="6570" /> <source><p>There are changes that require the configured make target <b>{0}</b> to be rebuilt.</p></source> <translation><p>Hay cambios que requieren que el target make configurado <b>{0}</b> se reconstruya.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="6574" /> + <location filename="../Project/Project.py" line="6575" /> <source><p>There are changes that require the default make target to be rebuilt.</p></source> <translation><p>Hay cambios que requieren que el target make por defecto se reconstruya.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="6590" /> + <location filename="../Project/Project.py" line="6591" /> <source>The makefile contains errors.</source> <translation>El makefile contiene errores.</translation> </message> <message> - <location filename="../Project/Project.py" line="6745" /> + <location filename="../Project/Project.py" line="6746" /> <source><p><b>Black Version {0}</b></p><p><i>Black</i> is the uncompromising Python code formatter.</p></source> <translation><p><b>Versión de Black {0}</b></p><p><i>Black</i> es el formateador de código de Python inflexible.</p></translation> </message> @@ -57869,10 +57892,10 @@ <translation>Abrir en Editor</translation> </message> <message> - <location filename="../Project/ProjectOthersBrowser.py" line="353" /> - <location filename="../Project/ProjectOthersBrowser.py" line="345" /> - <location filename="../Project/ProjectOthersBrowser.py" line="335" /> - <location filename="../Project/ProjectOthersBrowser.py" line="327" /> + <location filename="../Project/ProjectOthersBrowser.py" line="357" /> + <location filename="../Project/ProjectOthersBrowser.py" line="349" /> + <location filename="../Project/ProjectOthersBrowser.py" line="339" /> + <location filename="../Project/ProjectOthersBrowser.py" line="331" /> <location filename="../Project/ProjectOthersBrowser.py" line="85" /> <source>Show Mime-Type</source> <translation>Mostrar Mime-Type</translation> @@ -57946,28 +57969,28 @@ <translation>Configurar...</translation> </message> <message> - <location filename="../Project/ProjectOthersBrowser.py" line="328" /> + <location filename="../Project/ProjectOthersBrowser.py" line="332" /> <source>The mime type of the file could not be determined.</source> <translation>El mime type del archivo no se puede determinar.</translation> </message> <message> - <location filename="../Project/ProjectOthersBrowser.py" line="346" /> - <location filename="../Project/ProjectOthersBrowser.py" line="336" /> + <location filename="../Project/ProjectOthersBrowser.py" line="350" /> + <location filename="../Project/ProjectOthersBrowser.py" line="340" /> <source>The file has the mime type <b>{0}</b>.</source> <translation>El archivo tiene el mime type <b>{0}</b>.</translation> </message> <message> - <location filename="../Project/ProjectOthersBrowser.py" line="354" /> + <location filename="../Project/ProjectOthersBrowser.py" line="358" /> <source>The file has the mime type <b>{0}</b>.<br/> Shall it be added to the list of text mime types?</source> <translation>El archivo tiene el mime type <b>{0}</b>.<br/> ¿Añadirlo a la lista de mime types?</translation> </message> <message> - <location filename="../Project/ProjectOthersBrowser.py" line="447" /> + <location filename="../Project/ProjectOthersBrowser.py" line="451" /> <source>Delete files/directories</source> <translation>Borrar archivos/directorios</translation> </message> <message> - <location filename="../Project/ProjectOthersBrowser.py" line="448" /> + <location filename="../Project/ProjectOthersBrowser.py" line="452" /> <source>Do you really want to delete these entries from the project?</source> <translation>¿Realmente quiere borrar estas entradas del proyecto?</translation> </message> @@ -85370,60 +85393,60 @@ <translation>sin tamaño</translation> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="901" /> + <location filename="../Debugger/VariablesViewer.py" line="904" /> <source>Global Variables</source> <translation>Variables Globales</translation> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="903" /> + <location filename="../Debugger/VariablesViewer.py" line="906" /> <source><b>The Global Variables Viewer Window</b><p>This window displays the global variables of the debugged program.</p></source> <translation><b>Ventana de Visor de Variables Globales</b><p>Esta ventana muestra las variables globales del programa en depuración.</p></translation> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="910" /> + <location filename="../Debugger/VariablesViewer.py" line="913" /> <source>Local Variables</source> <translation>Variables Locales</translation> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="912" /> + <location filename="../Debugger/VariablesViewer.py" line="915" /> <source><b>The Local Variables Viewer Window</b><p>This window displays the local variables of the debugged program.</p></source> <translation><b>Ventana de Visor de Variables Locales</b><p>Esta ventana muestra las variables locales del programa en depuración.</p></translation> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="1030" /> + <location filename="../Debugger/VariablesViewer.py" line="1039" /> <source>Show Details...</source> <translation>Mostrar detalles...</translation> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="1032" /> + <location filename="../Debugger/VariablesViewer.py" line="1041" /> <source>Expand</source> <translation>Expandir</translation> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="1033" /> - <source>Collapse</source> - <translation>Contraer</translation> - </message> - <message> - <location filename="../Debugger/VariablesViewer.py" line="1034" /> - <source>Collapse All</source> - <translation>Contraer Todo</translation> - </message> - <message> <location filename="../Debugger/VariablesViewer.py" line="1042" /> - <location filename="../Debugger/VariablesViewer.py" line="1036" /> + <source>Collapse</source> + <translation>Contraer</translation> + </message> + <message> + <location filename="../Debugger/VariablesViewer.py" line="1043" /> + <source>Collapse All</source> + <translation>Contraer Todo</translation> + </message> + <message> + <location filename="../Debugger/VariablesViewer.py" line="1051" /> + <location filename="../Debugger/VariablesViewer.py" line="1045" /> <source>Refresh</source> <translation>Actualizar</translation> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="1044" /> - <location filename="../Debugger/VariablesViewer.py" line="1038" /> + <location filename="../Debugger/VariablesViewer.py" line="1053" /> + <location filename="../Debugger/VariablesViewer.py" line="1047" /> <source>Configure...</source> <translation>Configurar...</translation> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="1046" /> - <location filename="../Debugger/VariablesViewer.py" line="1039" /> + <location filename="../Debugger/VariablesViewer.py" line="1055" /> + <location filename="../Debugger/VariablesViewer.py" line="1048" /> <source>Variables Type Filter...</source> <translation>Fitro por Tipo de Variable...</translation> </message> @@ -96007,12 +96030,12 @@ <context> <name>eric7_ide</name> <message> - <location filename="../eric7_ide.py" line="394" /> + <location filename="../eric7_ide.py" line="395" /> <source>Starting...</source> <translation type="unfinished">Comenzando...</translation> </message> <message> - <location filename="../eric7_ide.py" line="400" /> + <location filename="../eric7_ide.py" line="401" /> <source>Generating Main Window...</source> <translation type="unfinished">Generando Ventana Principal...</translation> </message>
--- a/src/eric7/i18n/eric7_fr.ts Fri Oct 14 14:46:40 2022 +0200 +++ b/src/eric7/i18n/eric7_fr.ts Fri Oct 14 17:02:09 2022 +0200 @@ -1829,17 +1829,17 @@ <translation type="unfinished" /> </message> <message> - <location filename="../Utilities/BackgroundService.py" line="488" /> + <location filename="../Utilities/BackgroundService.py" line="487" /> <source>Eric's background client disconnected because of an unknown reason.</source> <translation type="unfinished" /> </message> <message> + <location filename="../Utilities/BackgroundService.py" line="496" /> + <source>Background client disconnected.</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../Utilities/BackgroundService.py" line="497" /> - <source>Background client disconnected.</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Utilities/BackgroundService.py" line="498" /> <source>The background client for <b>{0}</b> disconnected because of an unknown reason.<br>Should it be restarted?</source> <translation type="unfinished" /> </message> @@ -8901,13 +8901,13 @@ <translation type="unfinished" /> </message> <message> - <location filename="../Debugger/DebugViewer.py" line="754" /> + <location filename="../Debugger/DebugViewer.py" line="756" /> <source><p>Debugger with ID <b>{0}</b> has been connected.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Debugger/DebugViewer.py" line="997" /> - <location filename="../Debugger/DebugViewer.py" line="869" /> + <location filename="../Debugger/DebugViewer.py" line="999" /> + <location filename="../Debugger/DebugViewer.py" line="871" /> <source>unknown state ({0})</source> <translation type="unfinished" /> </message> @@ -9596,7 +9596,7 @@ <translation>Ne pas spécifier d'encodage pour le débogueur</translation> </message> <message> - <location filename="../Project/DebuggerPropertiesDialog.py" line="127" /> + <location filename="../Project/DebuggerPropertiesDialog.py" line="133" /> <source>All Files (*)</source> <translation>Tous fichiers (*)</translation> </message> @@ -11173,960 +11173,972 @@ <context> <name>Editor</name> <message> - <location filename="../QScintilla/Editor.py" line="3245" /> - <location filename="../QScintilla/Editor.py" line="406" /> + <location filename="../QScintilla/Editor.py" line="3268" /> + <location filename="../QScintilla/Editor.py" line="431" /> + <location filename="../QScintilla/Editor.py" line="416" /> + <location filename="../QScintilla/Editor.py" line="404" /> <source>Open File</source> <translation>Ouvrir Fichier</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="407" /> + <location filename="../QScintilla/Editor.py" line="405" /> + <source><p>The file <b>{0}</b> is not a text file. It will not be opened!</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="417" /> + <source><p>The size of the file <b>{0}</b> is <b>{1} KB</b> and exceeds the configured limit of <b>{2} KB</b>. It will not be opened!</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="432" /> <source><p>The size of the file <b>{0}</b> is <b>{1} KB</b>. Do you really want to load it?</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="505" /> + <location filename="../QScintilla/Editor.py" line="528" /> <source><b>A Source Editor Window</b><p>This window is used to display and edit a source file. You can open as many of these as you like. The name of the file is displayed in the window's titlebar.</p><p>In order to set breakpoints just click in the space between the line numbers and the fold markers. Via the context menu of the margins they may be edited.</p><p>In order to set bookmarks just Shift click in the space between the line numbers and the fold markers.</p><p>These actions can be reversed via the context menu.</p><p>Ctrl clicking on a syntax error marker shows some info about this error.</p></source> <translation><b>Fenêtre d'édition</b><p>Cette fenêtre est utilisée pour afficher et éditer les codes sources. Vous pouvez en ouvrir autant que vous le souhaitez. Le nom du fichier ouvert est inscrit dans la barre principale.</p><p>Vous pouvez définir des points d'arrêt en cliquant sur la marge de gauche, entre les numéros de lignes et les marques de pliage de code. Les points d'arrêt peuvent être édités via le menu contextuel (en cliquant droit sur le point).</p><p>De manière similaire, vous pouvez définir des signets avec Shift+Click dans la marge.</p><p>Pour ces deux types de points, le menu contextuel (click droit) permet de défaire l'action.</p><p>Le Ctrl+Click sur une marque d'erreur de sytaxe permet de visualiser les informations sur l'erreur.</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="833" /> + <location filename="../QScintilla/Editor.py" line="856" /> <source>Undo</source> <translation>Défaire</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="836" /> + <location filename="../QScintilla/Editor.py" line="859" /> <source>Redo</source> <translation>Refaire</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="839" /> + <location filename="../QScintilla/Editor.py" line="862" /> <source>Revert to last saved state</source> <translation>Ecraser avec le dernier état enregistré</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="843" /> + <location filename="../QScintilla/Editor.py" line="866" /> <source>Cut</source> <translation>Couper</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="846" /> + <location filename="../QScintilla/Editor.py" line="869" /> <source>Copy</source> <translation>Copier</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="849" /> + <location filename="../QScintilla/Editor.py" line="872" /> <source>Paste</source> <translation>Coller</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="855" /> - <source>Indent</source> - <translation>Indenter</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="860" /> - <source>Unindent</source> - <translation>Désindenter</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="865" /> - <source>Comment</source> - <translation>Commenter</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="870" /> - <source>Uncomment</source> - <translation>Décommenter</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="8934" /> - <location filename="../QScintilla/Editor.py" line="875" /> - <source>Generate Docstring</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/Editor.py" line="878" /> + <source>Indent</source> + <translation>Indenter</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="883" /> + <source>Unindent</source> + <translation>Désindenter</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="888" /> + <source>Comment</source> + <translation>Commenter</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="893" /> + <source>Uncomment</source> + <translation>Décommenter</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="8957" /> + <location filename="../QScintilla/Editor.py" line="898" /> + <source>Generate Docstring</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="901" /> <source>Select to brace</source> <translation>Sélection parenthèses</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="879" /> + <location filename="../QScintilla/Editor.py" line="902" /> <source>Select all</source> <translation>Tout sélectionner</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="880" /> + <location filename="../QScintilla/Editor.py" line="903" /> <source>Deselect all</source> <translation>Tout déselectionner</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="882" /> + <location filename="../QScintilla/Editor.py" line="905" /> <source>Execute Selection In Console</source> <translation>Exécuter la sélection en console</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="894" /> + <location filename="../QScintilla/Editor.py" line="917" /> <source>Use Monospaced Font</source> <translation>Utiliser une police monospacée</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="899" /> + <location filename="../QScintilla/Editor.py" line="922" /> <source>Autosave enabled</source> <translation>Sauvegarde automatique activée</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="904" /> + <location filename="../QScintilla/Editor.py" line="927" /> <source>Typing aids enabled</source> <translation>Aide à la frappe activée</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="912" /> + <location filename="../QScintilla/Editor.py" line="935" /> <source>Automatic Completion enabled</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="921" /> - <source>Calltip</source> - <translation>Calltip</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="924" /> - <source>Code Info</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="939" /> - <source>New Document View</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/Editor.py" line="944" /> + <source>Calltip</source> + <translation>Calltip</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="947" /> + <source>Code Info</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="962" /> + <source>New Document View</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="967" /> <source>New Document View (with new split)</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="952" /> + <location filename="../QScintilla/Editor.py" line="975" /> <source>Save</source> <translation>Enregistrer</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="956" /> + <location filename="../QScintilla/Editor.py" line="979" /> <source>Save As...</source> <translation>Enregistrer sous...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="961" /> + <location filename="../QScintilla/Editor.py" line="984" /> <source>Save Copy...</source> <translation>Enregistrer une copie...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="983" /> - <location filename="../QScintilla/Editor.py" line="980" /> + <location filename="../QScintilla/Editor.py" line="1006" /> + <location filename="../QScintilla/Editor.py" line="1003" /> <source>Complete</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="987" /> + <location filename="../QScintilla/Editor.py" line="1010" /> <source>Clear Completions Cache</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="990" /> + <location filename="../QScintilla/Editor.py" line="1013" /> <source>Complete from Document</source> <translation>à partir du document</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="992" /> + <location filename="../QScintilla/Editor.py" line="1015" /> <source>Complete from APIs</source> <translation>à partir des fichiers API</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="995" /> + <location filename="../QScintilla/Editor.py" line="1018" /> <source>Complete from Document and APIs</source> <translation>à partir du document et des fichiers API</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1009" /> + <location filename="../QScintilla/Editor.py" line="1032" /> <source>Check</source> <translation>Vérification</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1020" /> + <location filename="../QScintilla/Editor.py" line="1043" /> <source>Code Formatting</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1023" /> - <source>Format Code</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1027" /> - <source>Check Formatting</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1031" /> - <source>Formatting Diff</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/Editor.py" line="1046" /> + <source>Format Code</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1050" /> + <source>Check Formatting</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1054" /> + <source>Formatting Diff</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1069" /> <source>Tools</source> <translation>Outils</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1057" /> + <location filename="../QScintilla/Editor.py" line="1080" /> <source>Show</source> <translation>Afficher</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1059" /> + <location filename="../QScintilla/Editor.py" line="1082" /> <source>Code metrics...</source> <translation>Statistiques du code...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1061" /> + <location filename="../QScintilla/Editor.py" line="1084" /> <source>Code coverage...</source> <translation>Code coverage...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1064" /> - <source>Show code coverage annotations</source> - <translation>Afficher les annotations de code coverage</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1067" /> - <source>Hide code coverage annotations</source> - <translation>Masquer les annotations de code coverage</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1071" /> - <source>Profile data...</source> - <translation>Profiler les données...</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1085" /> - <source>Diagrams</source> - <translation>Diagrammes</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="1087" /> + <source>Show code coverage annotations</source> + <translation>Afficher les annotations de code coverage</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1090" /> + <source>Hide code coverage annotations</source> + <translation>Masquer les annotations de code coverage</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1094" /> + <source>Profile data...</source> + <translation>Profiler les données...</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1108" /> + <source>Diagrams</source> + <translation>Diagrammes</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1110" /> <source>Class Diagram...</source> <translation>Diagramme des classes...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1088" /> - <source>Package Diagram...</source> - <translation>Diagramme des packages...</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1089" /> - <source>Imports Diagram...</source> - <translation>Diagramme des modules...</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1091" /> - <source>Application Diagram...</source> - <translation>Diagramme de l'application...</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1096" /> - <source>Load Diagram...</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/Editor.py" line="1111" /> + <source>Package Diagram...</source> + <translation>Diagramme des packages...</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1112" /> + <source>Imports Diagram...</source> + <translation>Diagramme des modules...</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1114" /> + <source>Application Diagram...</source> + <translation>Diagramme de l'application...</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1119" /> + <source>Load Diagram...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1134" /> <source>Languages</source> <translation>Langages</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1115" /> + <location filename="../QScintilla/Editor.py" line="1138" /> <source>Text</source> <translation type="unfinished">Texte</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1140" /> + <location filename="../QScintilla/Editor.py" line="1163" /> <source>Guessed</source> <translation>Suggestion</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1471" /> - <location filename="../QScintilla/Editor.py" line="1144" /> + <location filename="../QScintilla/Editor.py" line="1494" /> + <location filename="../QScintilla/Editor.py" line="1167" /> <source>Alternatives</source> <translation>Alternatives</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1161" /> - <source>Encodings</source> - <translation>Encodings</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="1184" /> + <source>Encodings</source> + <translation>Encodings</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1207" /> <source>Re-Open With Encoding</source> <translation>Réouvrir avec encodage</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1204" /> + <location filename="../QScintilla/Editor.py" line="1227" /> <source>End-of-Line Type</source> <translation>Type de fin de ligne</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1208" /> + <location filename="../QScintilla/Editor.py" line="1231" /> <source>Unix</source> <translation>Unix</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1214" /> + <location filename="../QScintilla/Editor.py" line="1237" /> <source>Windows</source> <translation>Windows</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1220" /> + <location filename="../QScintilla/Editor.py" line="1243" /> <source>Macintosh</source> <translation>Macintosh</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1238" /> + <location filename="../QScintilla/Editor.py" line="1261" /> <source>Spelling</source> <translation type="unfinished">Orthographe</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8052" /> - <location filename="../QScintilla/Editor.py" line="1246" /> + <location filename="../QScintilla/Editor.py" line="8075" /> + <location filename="../QScintilla/Editor.py" line="1269" /> <source>Check spelling...</source> <translation>Correction orthographique...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1251" /> + <location filename="../QScintilla/Editor.py" line="1274" /> <source>Check spelling of selection...</source> <translation>Correction orthographique de la sélection...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1255" /> + <location filename="../QScintilla/Editor.py" line="1278" /> <source>Remove from dictionary</source> <translation>Supprimer du dictionnaire</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1272" /> + <location filename="../QScintilla/Editor.py" line="1295" /> <source>Spell Check Languages</source> <translation>Correction orthographique</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1276" /> + <location filename="../QScintilla/Editor.py" line="1299" /> <source>No Language</source> <translation>Pas de langage</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1303" /> + <location filename="../QScintilla/Editor.py" line="1326" /> <source>Toggle bookmark</source> <translation>Placer/supprimer un signet</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1305" /> - <source>Next bookmark</source> - <translation>Signet suivant</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1308" /> - <source>Previous bookmark</source> - <translation>Signet précédent</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1311" /> - <source>Clear all bookmarks</source> - <translation>Effacer tous les signets</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1322" /> - <source>Toggle breakpoint</source> - <translation>Placer/supprimer un point d'arrêt</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1325" /> - <source>Toggle temporary breakpoint</source> - <translation>Placer/Supprimer un point d'arret temporaire</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="1328" /> - <source>Edit breakpoint...</source> - <translation>Éditer le point d'arrêt...</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="5754" /> + <source>Next bookmark</source> + <translation>Signet suivant</translation> + </message> + <message> <location filename="../QScintilla/Editor.py" line="1331" /> - <source>Enable breakpoint</source> - <translation>Activer le point d'arrêt</translation> + <source>Previous bookmark</source> + <translation>Signet précédent</translation> </message> <message> <location filename="../QScintilla/Editor.py" line="1334" /> - <source>Next breakpoint</source> - <translation>Point d'arrêt suivant</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1337" /> - <source>Previous breakpoint</source> - <translation>Point d'arrêt précédent</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1340" /> - <source>Clear all breakpoints</source> - <translation>Effacer tous les points d'arrêts</translation> + <source>Clear all bookmarks</source> + <translation>Effacer tous les signets</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1345" /> + <source>Toggle breakpoint</source> + <translation>Placer/supprimer un point d'arrêt</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1348" /> + <source>Toggle temporary breakpoint</source> + <translation>Placer/Supprimer un point d'arret temporaire</translation> </message> <message> <location filename="../QScintilla/Editor.py" line="1351" /> - <source>Toggle all folds</source> - <translation>Contracte/Déploie tout le code</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1356" /> - <source>Toggle all folds (including children)</source> - <translation>Contracte/Déploie tout le code (sous-niveaux inclus)</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1359" /> - <source>Toggle current fold</source> - <translation>Contracte/Déploie le paragraphe courant</translation> + <source>Edit breakpoint...</source> + <translation>Éditer le point d'arrêt...</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="5777" /> + <location filename="../QScintilla/Editor.py" line="1354" /> + <source>Enable breakpoint</source> + <translation>Activer le point d'arrêt</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1357" /> + <source>Next breakpoint</source> + <translation>Point d'arrêt suivant</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1360" /> + <source>Previous breakpoint</source> + <translation>Point d'arrêt précédent</translation> </message> <message> <location filename="../QScintilla/Editor.py" line="1363" /> - <source>Expand (including children)</source> - <translation>Déploie (sous-niveaux inclus)</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1367" /> - <source>Collapse (including children)</source> - <translation>Contracte (sous-niveaux inclus)</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1372" /> - <source>Clear all folds</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1383" /> - <source>Goto syntax error</source> - <translation>Aller à l'erreur de syntaxe suivante</translation> + <source>Clear all breakpoints</source> + <translation>Effacer tous les points d'arrêts</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1374" /> + <source>Toggle all folds</source> + <translation>Contracte/Déploie tout le code</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1379" /> + <source>Toggle all folds (including children)</source> + <translation>Contracte/Déploie tout le code (sous-niveaux inclus)</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1382" /> + <source>Toggle current fold</source> + <translation>Contracte/Déploie le paragraphe courant</translation> </message> <message> <location filename="../QScintilla/Editor.py" line="1386" /> - <source>Show syntax error message</source> - <translation>Afficher le message d'erreur de syntaxe</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1389" /> - <source>Clear syntax error</source> - <translation>Supprimer les flags d'erreurs de syntaxe</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1393" /> - <source>Next warning</source> - <translation>Alerte suivante</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1396" /> - <source>Previous warning</source> - <translation>Alerte précédente</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1399" /> - <source>Show warning message</source> - <translation>Afficher les messages d'alerte</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1402" /> - <source>Clear warnings</source> - <translation>Effacer les alertes</translation> + <source>Expand (including children)</source> + <translation>Déploie (sous-niveaux inclus)</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1390" /> + <source>Collapse (including children)</source> + <translation>Contracte (sous-niveaux inclus)</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1395" /> + <source>Clear all folds</source> + <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/Editor.py" line="1406" /> - <source>Next uncovered line</source> - <translation>Ligne non executée suivante</translation> + <source>Goto syntax error</source> + <translation>Aller à l'erreur de syntaxe suivante</translation> </message> <message> <location filename="../QScintilla/Editor.py" line="1409" /> - <source>Previous uncovered line</source> - <translation>Ligne non executée précédente</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1413" /> - <source>Next task</source> - <translation>Tâche suivante</translation> + <source>Show syntax error message</source> + <translation>Afficher le message d'erreur de syntaxe</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1412" /> + <source>Clear syntax error</source> + <translation>Supprimer les flags d'erreurs de syntaxe</translation> </message> <message> <location filename="../QScintilla/Editor.py" line="1416" /> + <source>Next warning</source> + <translation>Alerte suivante</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1419" /> + <source>Previous warning</source> + <translation>Alerte précédente</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1422" /> + <source>Show warning message</source> + <translation>Afficher les messages d'alerte</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1425" /> + <source>Clear warnings</source> + <translation>Effacer les alertes</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1429" /> + <source>Next uncovered line</source> + <translation>Ligne non executée suivante</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1432" /> + <source>Previous uncovered line</source> + <translation>Ligne non executée précédente</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1436" /> + <source>Next task</source> + <translation>Tâche suivante</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1439" /> <source>Previous task</source> <translation>Tâche précédente</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1420" /> + <location filename="../QScintilla/Editor.py" line="1443" /> <source>Next change</source> <translation>Modification suivante</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1423" /> + <location filename="../QScintilla/Editor.py" line="1446" /> <source>Previous change</source> <translation>Modification précédente</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1426" /> - <source>Clear changes</source> - <translation>Effacer les modifications</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1457" /> - <location filename="../QScintilla/Editor.py" line="1448" /> - <source>Export source</source> - <translation>Exportation de source</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="1449" /> + <source>Clear changes</source> + <translation>Effacer les modifications</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1480" /> + <location filename="../QScintilla/Editor.py" line="1471" /> + <source>Export source</source> + <translation>Exportation de source</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1472" /> <source><p>No exporter available for the export format <b>{0}</b>. Aborting...</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1458" /> + <location filename="../QScintilla/Editor.py" line="1481" /> <source>No export format given. Aborting...</source> <translation>Aucun format d'exportation indiqué. Abandon...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1468" /> - <source>Alternatives ({0})</source> - <translation type="unfinished">Alternatives ({0})</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="1491" /> + <source>Alternatives ({0})</source> + <translation type="unfinished">Alternatives ({0})</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1514" /> <source>Pygments Lexer</source> <translation>Analyseur Pygments</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1492" /> + <location filename="../QScintilla/Editor.py" line="1515" /> <source>Select the Pygments lexer to apply.</source> <translation>Sélectionne l'analyseur Pygments à appliquer.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2051" /> + <location filename="../QScintilla/Editor.py" line="2074" /> <source>Modification of Read Only file</source> <translation>Modification de la lecture seule</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2052" /> + <location filename="../QScintilla/Editor.py" line="2075" /> <source>You are attempting to change a read only file. Please save to a different file first.</source> <translation>Le fichier est en lecture seule. Sauvez d'abord votre fichier sous un autre nom.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2473" /> + <location filename="../QScintilla/Editor.py" line="2496" /> <source>Add Breakpoint</source> <translation type="unfinished">Ajouter un point d'arrêt</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2474" /> + <location filename="../QScintilla/Editor.py" line="2497" /> <source>No Python byte code will be created for the selected line. No break point will be set!</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="2807" /> + <location filename="../QScintilla/Editor.py" line="2830" /> <source>Printing...</source> <translation>Impression....</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2824" /> + <location filename="../QScintilla/Editor.py" line="2847" /> <source>Printing completed</source> <translation>Impression terminée</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2826" /> + <location filename="../QScintilla/Editor.py" line="2849" /> <source>Error while printing</source> <translation>Erreur durant l'impression</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2829" /> + <location filename="../QScintilla/Editor.py" line="2852" /> <source>Printing aborted</source> <translation>Impression abandonnée</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="3187" /> + <location filename="../QScintilla/Editor.py" line="3210" /> <source>File Modified</source> <translation>Fichier Modifié</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="3188" /> + <location filename="../QScintilla/Editor.py" line="3211" /> <source><p>The file <b>{0}</b> has unsaved changes.</p></source> <translation><p>Le fichier <b>{0}</b> a des modifications non enregistrées.</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="3246" /> + <location filename="../QScintilla/Editor.py" line="3269" /> <source><p>The file <b>{0}</b> could not be opened.</p><p>Reason: {1}</p></source> <translation><p>Le fichier <b>{0}</b> ne peut être ouvert.</p><p>Raison : {1}</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="3424" /> - <location filename="../QScintilla/Editor.py" line="3405" /> - <location filename="../QScintilla/Editor.py" line="3365" /> + <location filename="../QScintilla/Editor.py" line="3447" /> + <location filename="../QScintilla/Editor.py" line="3428" /> + <location filename="../QScintilla/Editor.py" line="3388" /> <source>Save File</source> <translation>Enregistrer Fichier</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="3366" /> + <location filename="../QScintilla/Editor.py" line="3389" /> <source><p>The file <b>{0}</b> could not be saved.<br/>Reason: {1}</p></source> <translation><p>Le fichier <b>{0}</b> ne peut être enregistré.<br/>Raison : {1}</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="3425" /> + <location filename="../QScintilla/Editor.py" line="3448" /> <source><p>The file <b>{0}</b> already exists. Overwrite it?</p></source> <translation><p>Le fichier <b>{0}</b>existe déjà. Écraser ?</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="4935" /> + <location filename="../QScintilla/Editor.py" line="4958" /> <source>Autocompletion</source> <translation>Autocompletion</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="4936" /> + <location filename="../QScintilla/Editor.py" line="4959" /> <source>Autocompletion is not available because there is no autocompletion source set.</source> <translation>L'autocompletion n'est pas disponible car aucune source d'autocomplétion n'est définie.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5064" /> + <location filename="../QScintilla/Editor.py" line="5087" /> <source>Auto-Completion Provider</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="5065" /> + <location filename="../QScintilla/Editor.py" line="5088" /> <source>The completion list provider '{0}' was already registered. Ignoring duplicate request.</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="5357" /> + <location filename="../QScintilla/Editor.py" line="5380" /> <source>Call-Tips Provider</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="5358" /> + <location filename="../QScintilla/Editor.py" line="5381" /> <source>The call-tips provider '{0}' was already registered. Ignoring duplicate request.</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="5758" /> + <location filename="../QScintilla/Editor.py" line="5781" /> <source>Disable breakpoint</source> <translation>Désactiver le point d'arrêt</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6113" /> + <location filename="../QScintilla/Editor.py" line="6136" /> <source>Code Coverage</source> <translation>Code Coverage</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6114" /> + <location filename="../QScintilla/Editor.py" line="6137" /> <source>Please select a coverage file</source> <translation>Sélectionner un fichier coverage</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6189" /> - <location filename="../QScintilla/Editor.py" line="6181" /> + <location filename="../QScintilla/Editor.py" line="6212" /> + <location filename="../QScintilla/Editor.py" line="6204" /> <source>Show Code Coverage Annotations</source> <translation>Afficher les annotations de Code Coverage</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6182" /> + <location filename="../QScintilla/Editor.py" line="6205" /> <source>All lines have been covered.</source> <translation>Toutes les lignes ont été executées.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6190" /> + <location filename="../QScintilla/Editor.py" line="6213" /> <source>There is no coverage file available.</source> <translation>Impossible de trouver le fichier de coverage.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6286" /> + <location filename="../QScintilla/Editor.py" line="6309" /> <source>Profile Data</source> <translation>Profiler de données</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6287" /> + <location filename="../QScintilla/Editor.py" line="6310" /> <source>Please select a profile file</source> <translation>Sélectionner un fichier profile</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6450" /> - <location filename="../QScintilla/Editor.py" line="6444" /> + <location filename="../QScintilla/Editor.py" line="6473" /> + <location filename="../QScintilla/Editor.py" line="6467" /> <source>Syntax Error</source> <translation>Erreur de syntaxe</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6451" /> + <location filename="../QScintilla/Editor.py" line="6474" /> <source>No syntax error message available.</source> <translation>Aucun message d'erreur de syntaxe..</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6662" /> - <location filename="../QScintilla/Editor.py" line="6656" /> + <location filename="../QScintilla/Editor.py" line="6685" /> + <location filename="../QScintilla/Editor.py" line="6679" /> <source>Warning</source> <translation>Warning</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6662" /> + <location filename="../QScintilla/Editor.py" line="6685" /> <source>No warning messages available.</source> <translation>Pas de message d'alerte disponible.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6726" /> + <location filename="../QScintilla/Editor.py" line="6749" /> <source>Style: {0}</source> <translation>Style : {0}</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6729" /> + <location filename="../QScintilla/Editor.py" line="6752" /> <source>Warning: {0}</source> <translation>Alerte : {0}</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6736" /> + <location filename="../QScintilla/Editor.py" line="6759" /> <source>Error: {0}</source> <translation>Erreur : {0}</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6843" /> + <location filename="../QScintilla/Editor.py" line="6866" /> <source>Macro Name</source> <translation>Nom de la macro</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6843" /> + <location filename="../QScintilla/Editor.py" line="6866" /> <source>Select a macro name:</source> <translation>Sélectionner un nom de macro:</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6869" /> + <location filename="../QScintilla/Editor.py" line="6892" /> <source>Load macro file</source> <translation>Charger un fichier macro</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6915" /> - <location filename="../QScintilla/Editor.py" line="6871" /> + <location filename="../QScintilla/Editor.py" line="6938" /> + <location filename="../QScintilla/Editor.py" line="6894" /> <source>Macro files (*.macro)</source> <translation>Fichier Macro (*.macro)</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6893" /> - <location filename="../QScintilla/Editor.py" line="6883" /> + <location filename="../QScintilla/Editor.py" line="6916" /> + <location filename="../QScintilla/Editor.py" line="6906" /> <source>Error loading macro</source> <translation>Erreur lors du chargement de la macro</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6884" /> + <location filename="../QScintilla/Editor.py" line="6907" /> <source><p>The macro file <b>{0}</b> could not be read.</p></source> <translation><p>Le fichier macro <b>{0}</b> ne peut être lu.</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6894" /> + <location filename="../QScintilla/Editor.py" line="6917" /> <source><p>The macro file <b>{0}</b> is corrupt.</p></source> <translation><p>Le fichier macro <b>{0}</b> est corrompu.</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6913" /> + <location filename="../QScintilla/Editor.py" line="6936" /> <source>Save macro file</source> <translation>Enregistrer le fichier macro</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6931" /> + <location filename="../QScintilla/Editor.py" line="6954" /> <source>Save macro</source> <translation>Enregistrer la macro</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6932" /> + <location filename="../QScintilla/Editor.py" line="6955" /> <source><p>The macro file <b>{0}</b> already exists. Overwrite it?</p></source> <translation><p>Le fichier macro <b>{0}</b>existe déjà. Écraser ?</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6947" /> + <location filename="../QScintilla/Editor.py" line="6970" /> <source>Error saving macro</source> <translation>Erreur lors de l'enregistrement de la macro</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6948" /> + <location filename="../QScintilla/Editor.py" line="6971" /> <source><p>The macro file <b>{0}</b> could not be written.</p></source> <translation><p>Le fichier macro <b>{0}</b> ne peut être écrit.</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6961" /> + <location filename="../QScintilla/Editor.py" line="6984" /> <source>Start Macro Recording</source> <translation>Démarrer l'enregistrement de la macro</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6962" /> + <location filename="../QScintilla/Editor.py" line="6985" /> <source>Macro recording is already active. Start new?</source> <translation>L'enregistrement de macro est déjà actif. En démarrer une nouvelle ?</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6988" /> + <location filename="../QScintilla/Editor.py" line="7011" /> <source>Macro Recording</source> <translation>Enregistrement de macro</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6989" /> + <location filename="../QScintilla/Editor.py" line="7012" /> <source>Enter name of the macro:</source> <translation>Entrer le nom de la macro:</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7140" /> + <location filename="../QScintilla/Editor.py" line="7163" /> <source><p>The file <b>{0}</b> has been changed while it was opened in eric. Reread it?</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="7146" /> + <location filename="../QScintilla/Editor.py" line="7169" /> <source><br><b>Warning:</b> You will lose your changes upon reopening it.</source> <translation><br><b>Alerte :</b> Vous allez perdre vos modifications à la réouverture.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7153" /> + <location filename="../QScintilla/Editor.py" line="7176" /> <source>File changed</source> <translation>Fichier modifié</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7203" /> + <location filename="../QScintilla/Editor.py" line="7226" /> <source>{0} (ro)</source> <translation type="unfinished">{0} (ro)</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7494" /> - <source>Drop Error</source> - <translation>Erreur de suppression</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="7495" /> - <source><p><b>{0}</b> is not a file.</p></source> - <translation><p><b>{0}</b> n'est pas un fichier.</p></translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="7515" /> - <source>Resources</source> - <translation>Ressources</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="7517" /> - <source>Add file...</source> - <translation>Ajouter un fichier...</translation> + <source>Drop Error</source> + <translation>Erreur de suppression</translation> </message> <message> <location filename="../QScintilla/Editor.py" line="7518" /> + <source><p><b>{0}</b> is not a file.</p></source> + <translation><p><b>{0}</b> n'est pas un fichier.</p></translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="7538" /> + <source>Resources</source> + <translation>Ressources</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="7540" /> + <source>Add file...</source> + <translation>Ajouter un fichier...</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="7541" /> <source>Add files...</source> <translation>Ajouter des fichiers...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7519" /> + <location filename="../QScintilla/Editor.py" line="7542" /> <source>Add aliased file...</source> <translation>Ajouter un fichier alias...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7521" /> + <location filename="../QScintilla/Editor.py" line="7544" /> <source>Add localized resource...</source> <translation>Ajouter une ressource localisée...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7524" /> + <location filename="../QScintilla/Editor.py" line="7547" /> <source>Add resource frame</source> <translation>Ajouter un cadre ressource</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7543" /> + <location filename="../QScintilla/Editor.py" line="7566" /> <source>Add file resource</source> <translation>Ajoute un fichier ressource</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7557" /> + <location filename="../QScintilla/Editor.py" line="7580" /> <source>Add file resources</source> <translation>Ajoute des fichiers ressources</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7581" /> - <location filename="../QScintilla/Editor.py" line="7575" /> + <location filename="../QScintilla/Editor.py" line="7604" /> + <location filename="../QScintilla/Editor.py" line="7598" /> <source>Add aliased file resource</source> <translation>Ajoute un alias de fichier ressource</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7582" /> + <location filename="../QScintilla/Editor.py" line="7605" /> <source>Alias for file <b>{0}</b>:</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="7657" /> + <location filename="../QScintilla/Editor.py" line="7680" /> <source>Package Diagram</source> <translation>Diagramme de package</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7658" /> + <location filename="../QScintilla/Editor.py" line="7681" /> <source>Include class attributes?</source> <translation>Inclure les attributs de classes ?</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7678" /> + <location filename="../QScintilla/Editor.py" line="7701" /> <source>Imports Diagram</source> <translation>Diagramme des modules</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7679" /> + <location filename="../QScintilla/Editor.py" line="7702" /> <source>Include imports from external modules?</source> <translation>Inclure l'importation de modules externes?</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7698" /> + <location filename="../QScintilla/Editor.py" line="7721" /> <source>Application Diagram</source> <translation>Diagramme de l'application</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7699" /> + <location filename="../QScintilla/Editor.py" line="7722" /> <source>Include module names?</source> <translation>Inclure les noms de modules ?</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8056" /> + <location filename="../QScintilla/Editor.py" line="8079" /> <source>Add to dictionary</source> <translation>Ajouter au dictionnaire</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8058" /> + <location filename="../QScintilla/Editor.py" line="8081" /> <source>Ignore All</source> <translation>Tout ignorer</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8476" /> + <location filename="../QScintilla/Editor.py" line="8499" /> <source>Sort Lines</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="8477" /> + <location filename="../QScintilla/Editor.py" line="8500" /> <source>The selection contains illegal data for a numerical sort.</source> <translation>La sélection contient des données illégales pour un tri numérique.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8570" /> + <location filename="../QScintilla/Editor.py" line="8593" /> <source>Register Mouse Click Handler</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="8571" /> + <location filename="../QScintilla/Editor.py" line="8594" /> <source>A mouse click handler for "{0}" was already registered by "{1}". Aborting request by "{2}"...</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="8667" /> + <location filename="../QScintilla/Editor.py" line="8690" /> <source>{0:4d} {1}</source> <comment>line number, source code</comment> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="8673" /> + <location filename="../QScintilla/Editor.py" line="8696" /> <source>{0:4d} {1} => {2}</source> <comment>line number, source code, file name</comment> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="8741" /> + <location filename="../QScintilla/Editor.py" line="8764" /> <source>EditorConfig Properties</source> <translation>Propriétés d'EditorConfig</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8742" /> + <location filename="../QScintilla/Editor.py" line="8765" /> <source><p>The EditorConfig properties for file <b>{0}</b> could not be loaded.</p></source> <translation><p>Les propriétés d'EditorConfig du fichier <b>{0}</b> n'ont pas pu être chargées.</p></translation> </message> @@ -13034,26 +13046,26 @@ <context> <name>EditorFilePage</name> <message> - <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="339" /> - <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="322" /> - <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="305" /> - <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="294" /> + <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="341" /> + <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="324" /> + <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="307" /> + <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="296" /> <source>Add File Filter</source> <translation>Ajouter un filtre de fichier</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="295" /> + <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="297" /> <source>A Save File Filter must contain exactly one wildcard pattern. Yours contains {0}.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="306" /> + <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="308" /> <source>A File Filter must contain at least one wildcard pattern.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="340" /> - <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="323" /> + <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="342" /> + <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="325" /> <source>Enter the file filter entry:</source> <translation>Entrer le filtre de fichier :</translation> </message> @@ -13099,11 +13111,22 @@ </message> <message> <location filename="../Preferences/ConfigurationPages/EditorFilePage.ui" line="0" /> + <location filename="../Preferences/ConfigurationPages/EditorFilePage.ui" line="0" /> <source> KB</source> <translation>Ko</translation> </message> <message> <location filename="../Preferences/ConfigurationPages/EditorFilePage.ui" line="0" /> + <source>Reject, if file is greater than</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/EditorFilePage.ui" line="0" /> + <source>Enter the filesize, opening a file should be rejected.</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/EditorFilePage.ui" line="0" /> <source>End of Line</source> <translation>Fins de lignes</translation> </message> @@ -17132,12 +17155,12 @@ <context> <name>EricApplication</name> <message> - <location filename="../EricWidgets/EricApplication.py" line="220" /> + <location filename="../EricWidgets/EricApplication.py" line="221" /> <source>Loading Style Sheet</source> <translation type="unfinished">Chargement d'une feuille de style</translation> </message> <message> - <location filename="../EricWidgets/EricApplication.py" line="223" /> + <location filename="../EricWidgets/EricApplication.py" line="224" /> <source><p>The Qt Style Sheet file <b>{0}</b> could not be read.<br>Reason: {1}</p></source> <translation type="unfinished"><p>La feuille de style Qt <b>{0}</b> ne peut être lue.<br>Raison: {1}</p></translation> </message> @@ -46040,7 +46063,7 @@ <translation>Pygments</translation> </message> <message> - <location filename="../Preferences/__init__.py" line="468" /> + <location filename="../Preferences/__init__.py" line="469" /> <location filename="../QScintilla/Lexers/__init__.py" line="482" /> <source>Python Files (*.py *.py3)</source> <translation>Fichiers Python (*.py *.py3)</translation> @@ -46293,7 +46316,7 @@ <translation>Tous fichiers (*)</translation> </message> <message> - <location filename="../Preferences/__init__.py" line="471" /> + <location filename="../Preferences/__init__.py" line="472" /> <location filename="../QScintilla/Lexers/__init__.py" line="575" /> <source>Python3 Files (*.py)</source> <translation>Fichiers Python3 (*.py)</translation> @@ -54850,18 +54873,18 @@ <context> <name>Preferences</name> <message> - <location filename="../Preferences/__init__.py" line="1651" /> + <location filename="../Preferences/__init__.py" line="1652" /> <source>Export Preferences</source> <translation>Export des préférences</translation> </message> <message> - <location filename="../Preferences/__init__.py" line="1680" /> - <location filename="../Preferences/__init__.py" line="1653" /> + <location filename="../Preferences/__init__.py" line="1681" /> + <location filename="../Preferences/__init__.py" line="1654" /> <source>Properties File (*.ini);;All Files (*)</source> <translation>Fichier propriétés (*.ini);;Tous les fichiers (*)</translation> </message> <message> - <location filename="../Preferences/__init__.py" line="1678" /> + <location filename="../Preferences/__init__.py" line="1679" /> <source>Import Preferences</source> <translation>Import des préférences</translation> </message> @@ -56348,8 +56371,8 @@ <translation><b>Code Coverage...</b><p>Affiche les informations de code coverage pour le projet.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5856" /> - <location filename="../Project/Project.py" line="5843" /> + <location filename="../Project/Project.py" line="5857" /> + <location filename="../Project/Project.py" line="5844" /> <location filename="../Project/Project.py" line="4649" /> <source>Profile Data</source> <translation>Profiling des données</translation> @@ -56370,7 +56393,7 @@ <translation><b>Profilling des données...</b><p>Affiche le profiling des données du projet.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5908" /> + <location filename="../Project/Project.py" line="5909" /> <location filename="../Project/Project.py" line="4675" /> <source>Application Diagram</source> <translation>Diagramme de l'application</translation> @@ -56411,8 +56434,8 @@ <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6103" /> - <location filename="../Project/Project.py" line="6044" /> + <location filename="../Project/Project.py" line="6104" /> + <location filename="../Project/Project.py" line="6045" /> <location filename="../Project/Project.py" line="4719" /> <source>Create Package List</source> <translation>Création de la liste de package</translation> @@ -56433,7 +56456,7 @@ <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6172" /> + <location filename="../Project/Project.py" line="6173" /> <location filename="../Project/Project.py" line="4742" /> <source>Create Plugin Archives</source> <translation>Créer une archive plugin</translation> @@ -56474,9 +56497,9 @@ <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6589" /> - <location filename="../Project/Project.py" line="6560" /> - <location filename="../Project/Project.py" line="6511" /> + <location filename="../Project/Project.py" line="6590" /> + <location filename="../Project/Project.py" line="6561" /> + <location filename="../Project/Project.py" line="6512" /> <location filename="../Project/Project.py" line="4795" /> <source>Execute Make</source> <translation>Exécuter Make</translation> @@ -56497,7 +56520,7 @@ <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6566" /> + <location filename="../Project/Project.py" line="6567" /> <location filename="../Project/Project.py" line="4814" /> <source>Test for Changes</source> <translation type="unfinished" /> @@ -56538,7 +56561,7 @@ <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6744" /> + <location filename="../Project/Project.py" line="6745" /> <location filename="../Project/Project.py" line="4871" /> <source>About Black</source> <translation type="unfinished" /> @@ -56786,195 +56809,195 @@ <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5275" /> - <location filename="../Project/Project.py" line="5272" /> + <location filename="../Project/Project.py" line="5276" /> + <location filename="../Project/Project.py" line="5273" /> <source>Project</source> <translation>Projet</translation> </message> <message> - <location filename="../Project/Project.py" line="5338" /> + <location filename="../Project/Project.py" line="5339" /> <source>&Clear</source> <translation>&Effacer</translation> </message> <message> - <location filename="../Project/Project.py" line="5497" /> - <source>Search New Files</source> - <translation>Rechercher des nouveaux fichiers</translation> - </message> - <message> <location filename="../Project/Project.py" line="5498" /> + <source>Search New Files</source> + <translation>Rechercher des nouveaux fichiers</translation> + </message> + <message> + <location filename="../Project/Project.py" line="5499" /> <source>There were no new files found to be added.</source> <translation>Aucun fichier à ajouter n'a été trouvé.</translation> </message> <message> - <location filename="../Project/Project.py" line="5649" /> - <location filename="../Project/Project.py" line="5636" /> - <source>Version Control System</source> - <translation>Système de conrôle des versions (VCS)</translation> - </message> - <message> - <location filename="../Project/Project.py" line="5637" /> - <source><p>The selected VCS <b>{0}</b> could not be found. <br/>Reverting override.</p><p>{1}</p></source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Project/Project.py" line="5650" /> + <location filename="../Project/Project.py" line="5637" /> + <source>Version Control System</source> + <translation>Système de conrôle des versions (VCS)</translation> + </message> + <message> + <location filename="../Project/Project.py" line="5638" /> + <source><p>The selected VCS <b>{0}</b> could not be found. <br/>Reverting override.</p><p>{1}</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Project/Project.py" line="5651" /> <source><p>The selected VCS <b>{0}</b> could not be found.<br/>Disabling version control.</p><p>{1}</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5798" /> + <location filename="../Project/Project.py" line="5799" /> <source>Coverage Data</source> <translation>Coverage de données</translation> </message> <message> - <location filename="../Project/Project.py" line="5844" /> - <location filename="../Project/Project.py" line="5799" /> + <location filename="../Project/Project.py" line="5845" /> + <location filename="../Project/Project.py" line="5800" /> <source>There is no main script defined for the current project. Aborting</source> <translation>Il n'y a pas de script principal défini dans le projet en cours. Abandon</translation> </message> <message> - <location filename="../Project/Project.py" line="5811" /> - <source>Code Coverage</source> - <translation>Code Coverage</translation> - </message> - <message> <location filename="../Project/Project.py" line="5812" /> + <source>Code Coverage</source> + <translation>Code Coverage</translation> + </message> + <message> + <location filename="../Project/Project.py" line="5813" /> <source>Please select a coverage file</source> <translation>Sélectionner un fichier coverage</translation> </message> <message> - <location filename="../Project/Project.py" line="5857" /> + <location filename="../Project/Project.py" line="5858" /> <source>Please select a profile file</source> <translation>Sélectionner un fichier profile</translation> </message> <message> - <location filename="../Project/Project.py" line="5909" /> + <location filename="../Project/Project.py" line="5910" /> <source>Include module names?</source> <translation>Inclure les noms de modules ?</translation> </message> <message> - <location filename="../Project/Project.py" line="6045" /> + <location filename="../Project/Project.py" line="6046" /> <source><p>The file <b>PKGLIST</b> already exists.</p><p>Overwrite it?</p></source> <translation><p>Le fichier <b>PKGLIST</b> existe déjà.</p><p>Ecraser ?</p></translation> </message> <message> - <location filename="../Project/Project.py" line="6104" /> + <location filename="../Project/Project.py" line="6105" /> <source><p>The file <b>PKGLIST</b> could not be created.</p><p>Reason: {0}</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6393" /> - <location filename="../Project/Project.py" line="6351" /> - <location filename="../Project/Project.py" line="6305" /> - <location filename="../Project/Project.py" line="6294" /> - <location filename="../Project/Project.py" line="6276" /> - <location filename="../Project/Project.py" line="6243" /> - <location filename="../Project/Project.py" line="6213" /> - <location filename="../Project/Project.py" line="6185" /> - <location filename="../Project/Project.py" line="6155" /> - <location filename="../Project/Project.py" line="6141" /> - <location filename="../Project/Project.py" line="6124" /> + <location filename="../Project/Project.py" line="6394" /> + <location filename="../Project/Project.py" line="6352" /> + <location filename="../Project/Project.py" line="6306" /> + <location filename="../Project/Project.py" line="6295" /> + <location filename="../Project/Project.py" line="6277" /> + <location filename="../Project/Project.py" line="6244" /> + <location filename="../Project/Project.py" line="6214" /> + <location filename="../Project/Project.py" line="6186" /> + <location filename="../Project/Project.py" line="6156" /> + <location filename="../Project/Project.py" line="6142" /> + <location filename="../Project/Project.py" line="6125" /> <source>Create Plugin Archive</source> <translation>Création de l'archive du plugin</translation> </message> <message> - <location filename="../Project/Project.py" line="6125" /> + <location filename="../Project/Project.py" line="6126" /> <source>The project does not have a main script defined. Aborting...</source> <translation>Le projet n'a pas de script principal défini. Abandon...</translation> </message> <message> - <location filename="../Project/Project.py" line="6142" /> + <location filename="../Project/Project.py" line="6143" /> <source>Select package lists:</source> <translation>Sélectionner les listes de packages :</translation> </message> <message> - <location filename="../Project/Project.py" line="6156" /> + <location filename="../Project/Project.py" line="6157" /> <source><p>No package list files (PKGLIST*) available or selected. Aborting...</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6164" /> - <source>Creating plugin archives...</source> - <translation>Création en cours des archives de plugin...</translation> - </message> - <message> <location filename="../Project/Project.py" line="6165" /> + <source>Creating plugin archives...</source> + <translation>Création en cours des archives de plugin...</translation> + </message> + <message> + <location filename="../Project/Project.py" line="6166" /> <source>Abort</source> <translation>Abandonner</translation> </message> <message> - <location filename="../Project/Project.py" line="6168" /> + <location filename="../Project/Project.py" line="6169" /> <source>%v/%m Archives</source> <translation>Archives %v/%m</translation> </message> <message> - <location filename="../Project/Project.py" line="6186" /> + <location filename="../Project/Project.py" line="6187" /> <source><p>The file <b>{0}</b> could not be read.</p><p>Reason: {1}</p></source> <translation><p>Le fichier <b>{0}</b> ne peut être lu.</p><p>Raison : {1}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="6214" /> + <location filename="../Project/Project.py" line="6215" /> <source><p>The file <b>{0}</b> is not ready yet.</p><p>Please rework it and delete the'; initial_list' line of the header.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6244" /> + <location filename="../Project/Project.py" line="6245" /> <source><p>The eric plugin archive file <b>{0}</b> could not be created.</p><p>Reason: {1}</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6277" /> + <location filename="../Project/Project.py" line="6278" /> <source><p>The file <b>{0}</b> could not be stored in the archive. Ignoring it.</p><p>Reason: {1}</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6295" /> + <location filename="../Project/Project.py" line="6296" /> <source><p>The eric plugin archive files were created with some errors.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6306" /> + <location filename="../Project/Project.py" line="6307" /> <source><p>The eric plugin archive files were created successfully.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6352" /> + <location filename="../Project/Project.py" line="6353" /> <source><p>The plugin file <b>{0}</b> could not be read.</p><p>Reason: {1}</p></source> <translation><p>Le fichier plugin <b>{0}</b> ne peut être lu.</p><p>Raison : {1}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="6394" /> + <location filename="../Project/Project.py" line="6395" /> <source><p>The plugin file <b>{0}</b> could not be read.</p> <p>Reason: {1}</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6512" /> + <location filename="../Project/Project.py" line="6513" /> <source>The make process did not start.</source> <translation>Le processus make n'a pas démarré.</translation> </message> <message> - <location filename="../Project/Project.py" line="6561" /> + <location filename="../Project/Project.py" line="6562" /> <source>The make process crashed.</source> <translation>Crash du processus make.</translation> </message> <message> - <location filename="../Project/Project.py" line="6569" /> + <location filename="../Project/Project.py" line="6570" /> <source><p>There are changes that require the configured make target <b>{0}</b> to be rebuilt.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6574" /> + <location filename="../Project/Project.py" line="6575" /> <source><p>There are changes that require the default make target to be rebuilt.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6590" /> + <location filename="../Project/Project.py" line="6591" /> <source>The makefile contains errors.</source> <translation>Le makefile contient des erreurs.</translation> </message> <message> - <location filename="../Project/Project.py" line="6745" /> + <location filename="../Project/Project.py" line="6746" /> <source><p><b>Black Version {0}</b></p><p><i>Black</i> is the uncompromising Python code formatter.</p></source> <translation type="unfinished" /> </message> @@ -57834,10 +57857,10 @@ <translation type="unfinished">Ouvrir dans l'éditeur</translation> </message> <message> - <location filename="../Project/ProjectOthersBrowser.py" line="353" /> - <location filename="../Project/ProjectOthersBrowser.py" line="345" /> - <location filename="../Project/ProjectOthersBrowser.py" line="335" /> - <location filename="../Project/ProjectOthersBrowser.py" line="327" /> + <location filename="../Project/ProjectOthersBrowser.py" line="357" /> + <location filename="../Project/ProjectOthersBrowser.py" line="349" /> + <location filename="../Project/ProjectOthersBrowser.py" line="339" /> + <location filename="../Project/ProjectOthersBrowser.py" line="331" /> <location filename="../Project/ProjectOthersBrowser.py" line="85" /> <source>Show Mime-Type</source> <translation>Montrer le type mime</translation> @@ -57911,28 +57934,28 @@ <translation>Configuration...</translation> </message> <message> - <location filename="../Project/ProjectOthersBrowser.py" line="328" /> + <location filename="../Project/ProjectOthersBrowser.py" line="332" /> <source>The mime type of the file could not be determined.</source> <translation>Le type mime du fichier n'a pas pu être déterminé.</translation> </message> <message> - <location filename="../Project/ProjectOthersBrowser.py" line="346" /> - <location filename="../Project/ProjectOthersBrowser.py" line="336" /> + <location filename="../Project/ProjectOthersBrowser.py" line="350" /> + <location filename="../Project/ProjectOthersBrowser.py" line="340" /> <source>The file has the mime type <b>{0}</b>.</source> <translation>Le fichier a le type mime <b>{0}</b>.</translation> </message> <message> - <location filename="../Project/ProjectOthersBrowser.py" line="354" /> + <location filename="../Project/ProjectOthersBrowser.py" line="358" /> <source>The file has the mime type <b>{0}</b>.<br/> Shall it be added to the list of text mime types?</source> <translation>Le fichier a le type mime <b>{0}</b>.<br/> Faut il l'ajouter à la liste des fichiers de type mime texte ?</translation> </message> <message> - <location filename="../Project/ProjectOthersBrowser.py" line="447" /> + <location filename="../Project/ProjectOthersBrowser.py" line="451" /> <source>Delete files/directories</source> <translation>Supprimer fichiers/répertoires</translation> </message> <message> - <location filename="../Project/ProjectOthersBrowser.py" line="448" /> + <location filename="../Project/ProjectOthersBrowser.py" line="452" /> <source>Do you really want to delete these entries from the project?</source> <translation>Voulez-vous réellement supprimer ces entrées du projet?</translation> </message> @@ -85295,60 +85318,60 @@ <translation type="unfinished" /> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="901" /> + <location filename="../Debugger/VariablesViewer.py" line="904" /> <source>Global Variables</source> <translation>Variables globales</translation> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="903" /> + <location filename="../Debugger/VariablesViewer.py" line="906" /> <source><b>The Global Variables Viewer Window</b><p>This window displays the global variables of the debugged program.</p></source> <translation><b>Fenêtre de visualisation des variables globales</b><p>Cette fenêtre affiche les variables globales du programme débogué.</p></translation> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="910" /> + <location filename="../Debugger/VariablesViewer.py" line="913" /> <source>Local Variables</source> <translation>Variables locales</translation> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="912" /> + <location filename="../Debugger/VariablesViewer.py" line="915" /> <source><b>The Local Variables Viewer Window</b><p>This window displays the local variables of the debugged program.</p></source> <translation><b>Fenêtre de visualisation des variables locales</b><p>Cette fenêtre affiche les variables locales du programme débogué.</p></translation> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="1030" /> + <location filename="../Debugger/VariablesViewer.py" line="1039" /> <source>Show Details...</source> <translation>Afficher les détails...</translation> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="1032" /> + <location filename="../Debugger/VariablesViewer.py" line="1041" /> <source>Expand</source> <translation>Déployer</translation> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="1033" /> - <source>Collapse</source> - <translation>Contracter</translation> - </message> - <message> - <location filename="../Debugger/VariablesViewer.py" line="1034" /> - <source>Collapse All</source> - <translation>Tout contracter</translation> - </message> - <message> <location filename="../Debugger/VariablesViewer.py" line="1042" /> - <location filename="../Debugger/VariablesViewer.py" line="1036" /> + <source>Collapse</source> + <translation>Contracter</translation> + </message> + <message> + <location filename="../Debugger/VariablesViewer.py" line="1043" /> + <source>Collapse All</source> + <translation>Tout contracter</translation> + </message> + <message> + <location filename="../Debugger/VariablesViewer.py" line="1051" /> + <location filename="../Debugger/VariablesViewer.py" line="1045" /> <source>Refresh</source> <translation>Rafraichir</translation> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="1044" /> - <location filename="../Debugger/VariablesViewer.py" line="1038" /> + <location filename="../Debugger/VariablesViewer.py" line="1053" /> + <location filename="../Debugger/VariablesViewer.py" line="1047" /> <source>Configure...</source> <translation>Configuration...</translation> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="1046" /> - <location filename="../Debugger/VariablesViewer.py" line="1039" /> + <location filename="../Debugger/VariablesViewer.py" line="1055" /> + <location filename="../Debugger/VariablesViewer.py" line="1048" /> <source>Variables Type Filter...</source> <translation>Filtre de type de variables...</translation> </message> @@ -95925,12 +95948,12 @@ <context> <name>eric7_ide</name> <message> - <location filename="../eric7_ide.py" line="394" /> + <location filename="../eric7_ide.py" line="395" /> <source>Starting...</source> <translation type="unfinished">Démarrage...</translation> </message> <message> - <location filename="../eric7_ide.py" line="400" /> + <location filename="../eric7_ide.py" line="401" /> <source>Generating Main Window...</source> <translation type="unfinished">Création de la fenêtre principale...</translation> </message>
--- a/src/eric7/i18n/eric7_it.ts Fri Oct 14 14:46:40 2022 +0200 +++ b/src/eric7/i18n/eric7_it.ts Fri Oct 14 17:02:09 2022 +0200 @@ -1814,17 +1814,17 @@ <translation type="unfinished" /> </message> <message> - <location filename="../Utilities/BackgroundService.py" line="488" /> + <location filename="../Utilities/BackgroundService.py" line="487" /> <source>Eric's background client disconnected because of an unknown reason.</source> <translation type="unfinished" /> </message> <message> + <location filename="../Utilities/BackgroundService.py" line="496" /> + <source>Background client disconnected.</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../Utilities/BackgroundService.py" line="497" /> - <source>Background client disconnected.</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Utilities/BackgroundService.py" line="498" /> <source>The background client for <b>{0}</b> disconnected because of an unknown reason.<br>Should it be restarted?</source> <translation type="unfinished" /> </message> @@ -8874,13 +8874,13 @@ <translation type="unfinished" /> </message> <message> - <location filename="../Debugger/DebugViewer.py" line="754" /> + <location filename="../Debugger/DebugViewer.py" line="756" /> <source><p>Debugger with ID <b>{0}</b> has been connected.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Debugger/DebugViewer.py" line="997" /> - <location filename="../Debugger/DebugViewer.py" line="869" /> + <location filename="../Debugger/DebugViewer.py" line="999" /> + <location filename="../Debugger/DebugViewer.py" line="871" /> <source>unknown state ({0})</source> <translation type="unfinished" /> </message> @@ -9568,7 +9568,7 @@ <translation>Non impostare l'encoding del client Debug</translation> </message> <message> - <location filename="../Project/DebuggerPropertiesDialog.py" line="127" /> + <location filename="../Project/DebuggerPropertiesDialog.py" line="133" /> <source>All Files (*)</source> <translation>Tutti i file (*)</translation> </message> @@ -11147,960 +11147,972 @@ <context> <name>Editor</name> <message> - <location filename="../QScintilla/Editor.py" line="3245" /> - <location filename="../QScintilla/Editor.py" line="406" /> + <location filename="../QScintilla/Editor.py" line="3268" /> + <location filename="../QScintilla/Editor.py" line="431" /> + <location filename="../QScintilla/Editor.py" line="416" /> + <location filename="../QScintilla/Editor.py" line="404" /> <source>Open File</source> <translation>Apri File</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="407" /> + <location filename="../QScintilla/Editor.py" line="405" /> + <source><p>The file <b>{0}</b> is not a text file. It will not be opened!</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="417" /> + <source><p>The size of the file <b>{0}</b> is <b>{1} KB</b> and exceeds the configured limit of <b>{2} KB</b>. It will not be opened!</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="432" /> <source><p>The size of the file <b>{0}</b> is <b>{1} KB</b>. Do you really want to load it?</p></source> <translation><p>La dimensione del file <b>{0}</b> è <b>{1} KB</b>. Sei sicuro di volerlo caricare ?</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="505" /> + <location filename="../QScintilla/Editor.py" line="528" /> <source><b>A Source Editor Window</b><p>This window is used to display and edit a source file. You can open as many of these as you like. The name of the file is displayed in the window's titlebar.</p><p>In order to set breakpoints just click in the space between the line numbers and the fold markers. Via the context menu of the margins they may be edited.</p><p>In order to set bookmarks just Shift click in the space between the line numbers and the fold markers.</p><p>These actions can be reversed via the context menu.</p><p>Ctrl clicking on a syntax error marker shows some info about this error.</p></source> <translation><b>Una finesta di edit</b><p>Questa finestra è usata per visualizzare e modificare un file sorgente. Si possono aprire quante finestre si vogliono. Il nome del file è mostrato nella barra dei titolo della finestra.</p><p>Per impostare dei breakpoint basta cliccare nello spazio tra i numeri di riga e i marcatori di compressione. Con il menù contestuale del margine possono essere modificati.</p><p>Per impostare un segnalibro basta cliccare con lo Shift premuto nello spazio tra il numero di linea e i marcatori di compressione.</p><p>Queste azioni possono essere invertite con il menù contestuale.</p><p> Cliccare con il tasto Ctrl premuto un marcatore di errore della sintassi mostra delle informazioni sull'errore.</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="833" /> + <location filename="../QScintilla/Editor.py" line="856" /> <source>Undo</source> <translation>Annulla</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="836" /> + <location filename="../QScintilla/Editor.py" line="859" /> <source>Redo</source> <translation>Rifai</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="839" /> + <location filename="../QScintilla/Editor.py" line="862" /> <source>Revert to last saved state</source> <translation>Ritorna all'ultimo stato salvato</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="843" /> + <location filename="../QScintilla/Editor.py" line="866" /> <source>Cut</source> <translation>Taglia</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="846" /> + <location filename="../QScintilla/Editor.py" line="869" /> <source>Copy</source> <translation>Copia</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="849" /> + <location filename="../QScintilla/Editor.py" line="872" /> <source>Paste</source> <translation>Incolla</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="855" /> - <source>Indent</source> - <translation>Identa</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="860" /> - <source>Unindent</source> - <translation>Annulla identazione</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="865" /> - <source>Comment</source> - <translation>Commenta</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="870" /> - <source>Uncomment</source> - <translation>Annulla commenta</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="8934" /> - <location filename="../QScintilla/Editor.py" line="875" /> - <source>Generate Docstring</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/Editor.py" line="878" /> + <source>Indent</source> + <translation>Identa</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="883" /> + <source>Unindent</source> + <translation>Annulla identazione</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="888" /> + <source>Comment</source> + <translation>Commenta</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="893" /> + <source>Uncomment</source> + <translation>Annulla commenta</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="8957" /> + <location filename="../QScintilla/Editor.py" line="898" /> + <source>Generate Docstring</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="901" /> <source>Select to brace</source> <translation>Seleziona per parentesizzare</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="879" /> + <location filename="../QScintilla/Editor.py" line="902" /> <source>Select all</source> <translation>Seleziona tutti</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="880" /> + <location filename="../QScintilla/Editor.py" line="903" /> <source>Deselect all</source> <translation>Deseleziona tutti</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="882" /> + <location filename="../QScintilla/Editor.py" line="905" /> <source>Execute Selection In Console</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="894" /> + <location filename="../QScintilla/Editor.py" line="917" /> <source>Use Monospaced Font</source> <translation>Usa un font Monospaced</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="899" /> + <location filename="../QScintilla/Editor.py" line="922" /> <source>Autosave enabled</source> <translation>Salvataggio automatico abilitato</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="904" /> + <location filename="../QScintilla/Editor.py" line="927" /> <source>Typing aids enabled</source> <translation>Aiuti alla digitazione abilitati</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="912" /> + <location filename="../QScintilla/Editor.py" line="935" /> <source>Automatic Completion enabled</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="921" /> - <source>Calltip</source> - <translation>Calltip</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="924" /> - <source>Code Info</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="939" /> - <source>New Document View</source> - <translation>Nuova vista Documento</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="944" /> + <source>Calltip</source> + <translation>Calltip</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="947" /> + <source>Code Info</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="962" /> + <source>New Document View</source> + <translation>Nuova vista Documento</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="967" /> <source>New Document View (with new split)</source> <translation>Nuova vista Documento (con nuova divisione)</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="952" /> + <location filename="../QScintilla/Editor.py" line="975" /> <source>Save</source> <translation>Salva</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="956" /> + <location filename="../QScintilla/Editor.py" line="979" /> <source>Save As...</source> <translation>Salva come...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="961" /> + <location filename="../QScintilla/Editor.py" line="984" /> <source>Save Copy...</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="983" /> - <location filename="../QScintilla/Editor.py" line="980" /> + <location filename="../QScintilla/Editor.py" line="1006" /> + <location filename="../QScintilla/Editor.py" line="1003" /> <source>Complete</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="987" /> + <location filename="../QScintilla/Editor.py" line="1010" /> <source>Clear Completions Cache</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="990" /> + <location filename="../QScintilla/Editor.py" line="1013" /> <source>Complete from Document</source> <translation type="unfinished">dal Documento</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="992" /> + <location filename="../QScintilla/Editor.py" line="1015" /> <source>Complete from APIs</source> <translation type="unfinished">dalle APIs</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="995" /> + <location filename="../QScintilla/Editor.py" line="1018" /> <source>Complete from Document and APIs</source> <translation type="unfinished">dal Documento e dalle APIs</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1009" /> + <location filename="../QScintilla/Editor.py" line="1032" /> <source>Check</source> <translation>Controlla</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1020" /> + <location filename="../QScintilla/Editor.py" line="1043" /> <source>Code Formatting</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1023" /> - <source>Format Code</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1027" /> - <source>Check Formatting</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1031" /> - <source>Formatting Diff</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/Editor.py" line="1046" /> + <source>Format Code</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1050" /> + <source>Check Formatting</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1054" /> + <source>Formatting Diff</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1069" /> <source>Tools</source> <translation>Strumenti</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1057" /> + <location filename="../QScintilla/Editor.py" line="1080" /> <source>Show</source> <translation>Mostra</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1059" /> + <location filename="../QScintilla/Editor.py" line="1082" /> <source>Code metrics...</source> <translation>Statistiche codice...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1061" /> + <location filename="../QScintilla/Editor.py" line="1084" /> <source>Code coverage...</source> <translation>Analisi codice...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1064" /> - <source>Show code coverage annotations</source> - <translation>Mostra le annotazioni dell'analisi del codice</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1067" /> - <source>Hide code coverage annotations</source> - <translation>Nascondi le annotazioni dell'analisi del codice</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1071" /> - <source>Profile data...</source> - <translation>Profilazione dati...</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1085" /> - <source>Diagrams</source> - <translation>Diagrammi</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="1087" /> + <source>Show code coverage annotations</source> + <translation>Mostra le annotazioni dell'analisi del codice</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1090" /> + <source>Hide code coverage annotations</source> + <translation>Nascondi le annotazioni dell'analisi del codice</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1094" /> + <source>Profile data...</source> + <translation>Profilazione dati...</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1108" /> + <source>Diagrams</source> + <translation>Diagrammi</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1110" /> <source>Class Diagram...</source> <translation>Diagrammi di classe...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1088" /> - <source>Package Diagram...</source> - <translation>Diagrammi del package...</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1089" /> - <source>Imports Diagram...</source> - <translation>Importa diagrammi...</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1091" /> - <source>Application Diagram...</source> - <translation>Diagrammi dell'applicazione...</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1096" /> - <source>Load Diagram...</source> - <translation>Carica Diagramma...</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="1111" /> + <source>Package Diagram...</source> + <translation>Diagrammi del package...</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1112" /> + <source>Imports Diagram...</source> + <translation>Importa diagrammi...</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1114" /> + <source>Application Diagram...</source> + <translation>Diagrammi dell'applicazione...</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1119" /> + <source>Load Diagram...</source> + <translation>Carica Diagramma...</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1134" /> <source>Languages</source> <translation>Linguaggi</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1115" /> + <location filename="../QScintilla/Editor.py" line="1138" /> <source>Text</source> <translation type="unfinished">Testo</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1140" /> + <location filename="../QScintilla/Editor.py" line="1163" /> <source>Guessed</source> <translation>Indovinato</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1471" /> - <location filename="../QScintilla/Editor.py" line="1144" /> + <location filename="../QScintilla/Editor.py" line="1494" /> + <location filename="../QScintilla/Editor.py" line="1167" /> <source>Alternatives</source> <translation>Alternative</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1161" /> - <source>Encodings</source> - <translation>Codifica</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="1184" /> + <source>Encodings</source> + <translation>Codifica</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1207" /> <source>Re-Open With Encoding</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1204" /> + <location filename="../QScintilla/Editor.py" line="1227" /> <source>End-of-Line Type</source> <translation>Tipo di fine-linea</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1208" /> + <location filename="../QScintilla/Editor.py" line="1231" /> <source>Unix</source> <translation>Unix</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1214" /> + <location filename="../QScintilla/Editor.py" line="1237" /> <source>Windows</source> <translation>Windows</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1220" /> + <location filename="../QScintilla/Editor.py" line="1243" /> <source>Macintosh</source> <translation>Macintosh</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1238" /> + <location filename="../QScintilla/Editor.py" line="1261" /> <source>Spelling</source> <translation type="unfinished">Spelling</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8052" /> - <location filename="../QScintilla/Editor.py" line="1246" /> + <location filename="../QScintilla/Editor.py" line="8075" /> + <location filename="../QScintilla/Editor.py" line="1269" /> <source>Check spelling...</source> <translation>Controllo sillabazione...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1251" /> + <location filename="../QScintilla/Editor.py" line="1274" /> <source>Check spelling of selection...</source> <translation>Controllo sillabazione della selezione...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1255" /> + <location filename="../QScintilla/Editor.py" line="1278" /> <source>Remove from dictionary</source> <translation>Rimuovi dal dizionario</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1272" /> + <location filename="../QScintilla/Editor.py" line="1295" /> <source>Spell Check Languages</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1276" /> + <location filename="../QScintilla/Editor.py" line="1299" /> <source>No Language</source> <translation>Nessun linguaggio</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1303" /> + <location filename="../QScintilla/Editor.py" line="1326" /> <source>Toggle bookmark</source> <translation>Inverti bookmark</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1305" /> - <source>Next bookmark</source> - <translation>Prossimo segnalibro</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1308" /> - <source>Previous bookmark</source> - <translation>Segnalibro precedente</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1311" /> - <source>Clear all bookmarks</source> - <translation>Pulisci di tutti di segnalibri</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1322" /> - <source>Toggle breakpoint</source> - <translation>Abilita/Disabilita breakpoint</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1325" /> - <source>Toggle temporary breakpoint</source> - <translation>Abilita/Disabilita breakpoint temporaneo</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="1328" /> - <source>Edit breakpoint...</source> - <translation>Modifica Breakpoint...</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="5754" /> + <source>Next bookmark</source> + <translation>Prossimo segnalibro</translation> + </message> + <message> <location filename="../QScintilla/Editor.py" line="1331" /> - <source>Enable breakpoint</source> - <translation>Abilita breakpoint</translation> + <source>Previous bookmark</source> + <translation>Segnalibro precedente</translation> </message> <message> <location filename="../QScintilla/Editor.py" line="1334" /> - <source>Next breakpoint</source> - <translation>Prossimo breakpoint</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1337" /> - <source>Previous breakpoint</source> - <translation>Breakpoint precedente</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1340" /> - <source>Clear all breakpoints</source> - <translation>Elimina tutti i breakpoint</translation> + <source>Clear all bookmarks</source> + <translation>Pulisci di tutti di segnalibri</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1345" /> + <source>Toggle breakpoint</source> + <translation>Abilita/Disabilita breakpoint</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1348" /> + <source>Toggle temporary breakpoint</source> + <translation>Abilita/Disabilita breakpoint temporaneo</translation> </message> <message> <location filename="../QScintilla/Editor.py" line="1351" /> - <source>Toggle all folds</source> - <translation type="unfinished">Abilita/Disabilita tutti i raggruppamenti</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1356" /> - <source>Toggle all folds (including children)</source> - <translation type="unfinished">Abilita/Disabilita tutti i raggruppamenti (inclusi i figli)</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1359" /> - <source>Toggle current fold</source> - <translation type="unfinished">Abilita/Disabilita il raggruppamento corrente</translation> + <source>Edit breakpoint...</source> + <translation>Modifica Breakpoint...</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="5777" /> + <location filename="../QScintilla/Editor.py" line="1354" /> + <source>Enable breakpoint</source> + <translation>Abilita breakpoint</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1357" /> + <source>Next breakpoint</source> + <translation>Prossimo breakpoint</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1360" /> + <source>Previous breakpoint</source> + <translation>Breakpoint precedente</translation> </message> <message> <location filename="../QScintilla/Editor.py" line="1363" /> - <source>Expand (including children)</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1367" /> - <source>Collapse (including children)</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1372" /> - <source>Clear all folds</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1383" /> - <source>Goto syntax error</source> - <translation>Vai all'errore di sintassi</translation> + <source>Clear all breakpoints</source> + <translation>Elimina tutti i breakpoint</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1374" /> + <source>Toggle all folds</source> + <translation type="unfinished">Abilita/Disabilita tutti i raggruppamenti</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1379" /> + <source>Toggle all folds (including children)</source> + <translation type="unfinished">Abilita/Disabilita tutti i raggruppamenti (inclusi i figli)</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1382" /> + <source>Toggle current fold</source> + <translation type="unfinished">Abilita/Disabilita il raggruppamento corrente</translation> </message> <message> <location filename="../QScintilla/Editor.py" line="1386" /> - <source>Show syntax error message</source> - <translation>Mostra i messaggi degli errori di sintassi</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1389" /> - <source>Clear syntax error</source> - <translation>Elimina errori di sintassi</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1393" /> - <source>Next warning</source> - <translation>Warning successivo</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1396" /> - <source>Previous warning</source> - <translation>Warning precedente</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1399" /> - <source>Show warning message</source> - <translation>Mostra Warning</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1402" /> - <source>Clear warnings</source> - <translation>Pulisci warning</translation> + <source>Expand (including children)</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1390" /> + <source>Collapse (including children)</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1395" /> + <source>Clear all folds</source> + <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/Editor.py" line="1406" /> - <source>Next uncovered line</source> - <translation>Prossimo file non analizzato</translation> + <source>Goto syntax error</source> + <translation>Vai all'errore di sintassi</translation> </message> <message> <location filename="../QScintilla/Editor.py" line="1409" /> - <source>Previous uncovered line</source> - <translation>File non analizzato precedente</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1413" /> - <source>Next task</source> - <translation>Prossimo task</translation> + <source>Show syntax error message</source> + <translation>Mostra i messaggi degli errori di sintassi</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1412" /> + <source>Clear syntax error</source> + <translation>Elimina errori di sintassi</translation> </message> <message> <location filename="../QScintilla/Editor.py" line="1416" /> + <source>Next warning</source> + <translation>Warning successivo</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1419" /> + <source>Previous warning</source> + <translation>Warning precedente</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1422" /> + <source>Show warning message</source> + <translation>Mostra Warning</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1425" /> + <source>Clear warnings</source> + <translation>Pulisci warning</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1429" /> + <source>Next uncovered line</source> + <translation>Prossimo file non analizzato</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1432" /> + <source>Previous uncovered line</source> + <translation>File non analizzato precedente</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1436" /> + <source>Next task</source> + <translation>Prossimo task</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1439" /> <source>Previous task</source> <translation>Task precedente</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1420" /> + <location filename="../QScintilla/Editor.py" line="1443" /> <source>Next change</source> <translation>Modifica successiva</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1423" /> + <location filename="../QScintilla/Editor.py" line="1446" /> <source>Previous change</source> <translation>Modifica precedente</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1426" /> - <source>Clear changes</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1457" /> - <location filename="../QScintilla/Editor.py" line="1448" /> - <source>Export source</source> - <translation>Esporta sorgenti</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="1449" /> + <source>Clear changes</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1480" /> + <location filename="../QScintilla/Editor.py" line="1471" /> + <source>Export source</source> + <translation>Esporta sorgenti</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1472" /> <source><p>No exporter available for the export format <b>{0}</b>. Aborting...</p></source> <translation><p>Nessun esportatore disponibile per il formato di export<b>{0}</b>. Termino...</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1458" /> + <location filename="../QScintilla/Editor.py" line="1481" /> <source>No export format given. Aborting...</source> <translation>Nessun formato di export impostato. Annullamento...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1468" /> - <source>Alternatives ({0})</source> - <translation>Alternative ({0})</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="1491" /> + <source>Alternatives ({0})</source> + <translation>Alternative ({0})</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1514" /> <source>Pygments Lexer</source> <translation>Analizzatore lessicale Pygments</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1492" /> + <location filename="../QScintilla/Editor.py" line="1515" /> <source>Select the Pygments lexer to apply.</source> <translation>Selezione l'analizzatore lessicale di Pygments da applicare.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2051" /> + <location filename="../QScintilla/Editor.py" line="2074" /> <source>Modification of Read Only file</source> <translation>Modifica di un file di sola lettura</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2052" /> + <location filename="../QScintilla/Editor.py" line="2075" /> <source>You are attempting to change a read only file. Please save to a different file first.</source> <translation>Stai tentando di modificare un file in sola lettura. Per favore prima salva come un file diverso.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2473" /> + <location filename="../QScintilla/Editor.py" line="2496" /> <source>Add Breakpoint</source> <translation type="unfinished">Aggiungi un breakpoint</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2474" /> + <location filename="../QScintilla/Editor.py" line="2497" /> <source>No Python byte code will be created for the selected line. No break point will be set!</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="2807" /> + <location filename="../QScintilla/Editor.py" line="2830" /> <source>Printing...</source> <translation>In stampa...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2824" /> + <location filename="../QScintilla/Editor.py" line="2847" /> <source>Printing completed</source> <translation>Stampa completata</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2826" /> + <location filename="../QScintilla/Editor.py" line="2849" /> <source>Error while printing</source> <translation>Errore durante la stampa</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2829" /> + <location filename="../QScintilla/Editor.py" line="2852" /> <source>Printing aborted</source> <translation>Stampa annullata</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="3187" /> + <location filename="../QScintilla/Editor.py" line="3210" /> <source>File Modified</source> <translation>File modificato</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="3188" /> + <location filename="../QScintilla/Editor.py" line="3211" /> <source><p>The file <b>{0}</b> has unsaved changes.</p></source> <translation><p>Il file <b>{0}</b> contiene modifiche non salvate.</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="3246" /> + <location filename="../QScintilla/Editor.py" line="3269" /> <source><p>The file <b>{0}</b> could not be opened.</p><p>Reason: {1}</p></source> <translation><p>Il file <b>{0}</b> non può essere aperto.<br />Motivo: {1}</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="3424" /> - <location filename="../QScintilla/Editor.py" line="3405" /> - <location filename="../QScintilla/Editor.py" line="3365" /> + <location filename="../QScintilla/Editor.py" line="3447" /> + <location filename="../QScintilla/Editor.py" line="3428" /> + <location filename="../QScintilla/Editor.py" line="3388" /> <source>Save File</source> <translation>Salva file</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="3366" /> + <location filename="../QScintilla/Editor.py" line="3389" /> <source><p>The file <b>{0}</b> could not be saved.<br/>Reason: {1}</p></source> <translation><p>Il file <b>{0}</b> non può essere salvato.<br />Motivo: {1}</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="3425" /> + <location filename="../QScintilla/Editor.py" line="3448" /> <source><p>The file <b>{0}</b> already exists. Overwrite it?</p></source> <translation><p>Il file <b>{0}</b> esiste già. Sovrascriverlo ?</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="4935" /> + <location filename="../QScintilla/Editor.py" line="4958" /> <source>Autocompletion</source> <translation>Autocompletamento</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="4936" /> + <location filename="../QScintilla/Editor.py" line="4959" /> <source>Autocompletion is not available because there is no autocompletion source set.</source> <translation>L'autocomplentamento non è disponibile perchè non ci sono fonti impostate.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5064" /> + <location filename="../QScintilla/Editor.py" line="5087" /> <source>Auto-Completion Provider</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="5065" /> + <location filename="../QScintilla/Editor.py" line="5088" /> <source>The completion list provider '{0}' was already registered. Ignoring duplicate request.</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="5357" /> + <location filename="../QScintilla/Editor.py" line="5380" /> <source>Call-Tips Provider</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="5358" /> + <location filename="../QScintilla/Editor.py" line="5381" /> <source>The call-tips provider '{0}' was already registered. Ignoring duplicate request.</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="5758" /> + <location filename="../QScintilla/Editor.py" line="5781" /> <source>Disable breakpoint</source> <translation>Disabilita breakpoint</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6113" /> + <location filename="../QScintilla/Editor.py" line="6136" /> <source>Code Coverage</source> <translation>Analisi codice</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6114" /> + <location filename="../QScintilla/Editor.py" line="6137" /> <source>Please select a coverage file</source> <translation>Per favore seleziona un file per l'analisi</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6189" /> - <location filename="../QScintilla/Editor.py" line="6181" /> + <location filename="../QScintilla/Editor.py" line="6212" /> + <location filename="../QScintilla/Editor.py" line="6204" /> <source>Show Code Coverage Annotations</source> <translation>Mostra le annotazioni dell'analisi del codice</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6182" /> + <location filename="../QScintilla/Editor.py" line="6205" /> <source>All lines have been covered.</source> <translation>Tutte le linee sono state analizzate.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6190" /> + <location filename="../QScintilla/Editor.py" line="6213" /> <source>There is no coverage file available.</source> <translation>Non ci sono file di analisi disponibili.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6286" /> + <location filename="../QScintilla/Editor.py" line="6309" /> <source>Profile Data</source> <translation>Profilazione dati</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6287" /> + <location filename="../QScintilla/Editor.py" line="6310" /> <source>Please select a profile file</source> <translation>Per favore seleziona un file per la profilazione</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6450" /> - <location filename="../QScintilla/Editor.py" line="6444" /> + <location filename="../QScintilla/Editor.py" line="6473" /> + <location filename="../QScintilla/Editor.py" line="6467" /> <source>Syntax Error</source> <translation>Errore di sintassi</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6451" /> + <location filename="../QScintilla/Editor.py" line="6474" /> <source>No syntax error message available.</source> <translation>Nessun messaggio degli errori di sintassi disponibile.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6662" /> - <location filename="../QScintilla/Editor.py" line="6656" /> + <location filename="../QScintilla/Editor.py" line="6685" /> + <location filename="../QScintilla/Editor.py" line="6679" /> <source>Warning</source> <translation>Attenzione</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6662" /> + <location filename="../QScintilla/Editor.py" line="6685" /> <source>No warning messages available.</source> <translation>Nessun messaggio di attenzione disponibile.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6726" /> + <location filename="../QScintilla/Editor.py" line="6749" /> <source>Style: {0}</source> <translation>Stile: {0}</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6729" /> + <location filename="../QScintilla/Editor.py" line="6752" /> <source>Warning: {0}</source> <translation>Attenzione: {0}</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6736" /> + <location filename="../QScintilla/Editor.py" line="6759" /> <source>Error: {0}</source> <translation>Errore: {0}</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6843" /> + <location filename="../QScintilla/Editor.py" line="6866" /> <source>Macro Name</source> <translation>Nome Macro</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6843" /> + <location filename="../QScintilla/Editor.py" line="6866" /> <source>Select a macro name:</source> <translation>Seleziona un nome per la macro:</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6869" /> + <location filename="../QScintilla/Editor.py" line="6892" /> <source>Load macro file</source> <translation>Carica un file di macro</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6915" /> - <location filename="../QScintilla/Editor.py" line="6871" /> + <location filename="../QScintilla/Editor.py" line="6938" /> + <location filename="../QScintilla/Editor.py" line="6894" /> <source>Macro files (*.macro)</source> <translation>File Macro (*.macro)</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6893" /> - <location filename="../QScintilla/Editor.py" line="6883" /> + <location filename="../QScintilla/Editor.py" line="6916" /> + <location filename="../QScintilla/Editor.py" line="6906" /> <source>Error loading macro</source> <translation>Errore nel caricamento della macro</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6884" /> + <location filename="../QScintilla/Editor.py" line="6907" /> <source><p>The macro file <b>{0}</b> could not be read.</p></source> <translation><p>Il file macro <b>{0}</b> non può essere letto.</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6894" /> + <location filename="../QScintilla/Editor.py" line="6917" /> <source><p>The macro file <b>{0}</b> is corrupt.</p></source> <translation><p>Il file macro <b>{0}</b> è danneggiato.</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6913" /> + <location filename="../QScintilla/Editor.py" line="6936" /> <source>Save macro file</source> <translation>Salva un file di macro</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6931" /> + <location filename="../QScintilla/Editor.py" line="6954" /> <source>Save macro</source> <translation>Salva macro</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6932" /> + <location filename="../QScintilla/Editor.py" line="6955" /> <source><p>The macro file <b>{0}</b> already exists. Overwrite it?</p></source> <translation><p>Il file delle macro <b>{0}</b> esiste già.Sovrascriverlo ?</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6947" /> + <location filename="../QScintilla/Editor.py" line="6970" /> <source>Error saving macro</source> <translation>Errore nel salvataggio della macro</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6948" /> + <location filename="../QScintilla/Editor.py" line="6971" /> <source><p>The macro file <b>{0}</b> could not be written.</p></source> <translation><p>Il file macro <b>{0}</b> non può essere scritto.</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6961" /> + <location filename="../QScintilla/Editor.py" line="6984" /> <source>Start Macro Recording</source> <translation>Avvia registrazione della macro</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6962" /> + <location filename="../QScintilla/Editor.py" line="6985" /> <source>Macro recording is already active. Start new?</source> <translation>Registrazione macro già attiva. Avvia nuovamente ?</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6988" /> + <location filename="../QScintilla/Editor.py" line="7011" /> <source>Macro Recording</source> <translation>Registrazione Macro</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6989" /> + <location filename="../QScintilla/Editor.py" line="7012" /> <source>Enter name of the macro:</source> <translation>Inserisci un nome per la macro:</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7140" /> + <location filename="../QScintilla/Editor.py" line="7163" /> <source><p>The file <b>{0}</b> has been changed while it was opened in eric. Reread it?</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="7146" /> + <location filename="../QScintilla/Editor.py" line="7169" /> <source><br><b>Warning:</b> You will lose your changes upon reopening it.</source> <translation><br><b>Attenzione:</b> con la riapertura le modifiche andranno perse.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7153" /> + <location filename="../QScintilla/Editor.py" line="7176" /> <source>File changed</source> <translation>File modificato</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7203" /> + <location filename="../QScintilla/Editor.py" line="7226" /> <source>{0} (ro)</source> <translation>{0} (ro)</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7494" /> - <source>Drop Error</source> - <translation>Errore Drop</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="7495" /> - <source><p><b>{0}</b> is not a file.</p></source> - <translation><p><b>{0}</b> non è un file.</p></translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="7515" /> - <source>Resources</source> - <translation>Risorse</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="7517" /> - <source>Add file...</source> - <translation>Aggiungi file...</translation> + <source>Drop Error</source> + <translation>Errore Drop</translation> </message> <message> <location filename="../QScintilla/Editor.py" line="7518" /> + <source><p><b>{0}</b> is not a file.</p></source> + <translation><p><b>{0}</b> non è un file.</p></translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="7538" /> + <source>Resources</source> + <translation>Risorse</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="7540" /> + <source>Add file...</source> + <translation>Aggiungi file...</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="7541" /> <source>Add files...</source> <translation>Aggiungi files...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7519" /> + <location filename="../QScintilla/Editor.py" line="7542" /> <source>Add aliased file...</source> <translation>Aggiungi file sinonimo...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7521" /> + <location filename="../QScintilla/Editor.py" line="7544" /> <source>Add localized resource...</source> <translation>Aggiungi una risorsa localizzata...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7524" /> + <location filename="../QScintilla/Editor.py" line="7547" /> <source>Add resource frame</source> <translation>Aggiungi riquadro delle risorse</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7543" /> + <location filename="../QScintilla/Editor.py" line="7566" /> <source>Add file resource</source> <translation>Aggiungi un file risorse</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7557" /> + <location filename="../QScintilla/Editor.py" line="7580" /> <source>Add file resources</source> <translation>Aggiundi dei file risorse</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7581" /> - <location filename="../QScintilla/Editor.py" line="7575" /> + <location filename="../QScintilla/Editor.py" line="7604" /> + <location filename="../QScintilla/Editor.py" line="7598" /> <source>Add aliased file resource</source> <translation>Aggiungi file sinonimo delle risorse</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7582" /> + <location filename="../QScintilla/Editor.py" line="7605" /> <source>Alias for file <b>{0}</b>:</source> <translation>Alias per il file <b>{0}</b>:</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7657" /> + <location filename="../QScintilla/Editor.py" line="7680" /> <source>Package Diagram</source> <translation>Diagrammi del package</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7658" /> + <location filename="../QScintilla/Editor.py" line="7681" /> <source>Include class attributes?</source> <translation>Includi gli attributi della classe ?</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7678" /> + <location filename="../QScintilla/Editor.py" line="7701" /> <source>Imports Diagram</source> <translation>Importa diagrammi</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7679" /> + <location filename="../QScintilla/Editor.py" line="7702" /> <source>Include imports from external modules?</source> <translation>Includi gli import dai moduli esterni ?</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7698" /> + <location filename="../QScintilla/Editor.py" line="7721" /> <source>Application Diagram</source> <translation>Diagrammi dell'applicazione</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7699" /> + <location filename="../QScintilla/Editor.py" line="7722" /> <source>Include module names?</source> <translation>Includi i nomi dei moduli ?</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8056" /> + <location filename="../QScintilla/Editor.py" line="8079" /> <source>Add to dictionary</source> <translation>Aggiungi al dizionario</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8058" /> + <location filename="../QScintilla/Editor.py" line="8081" /> <source>Ignore All</source> <translation>Ignora tutto</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8476" /> + <location filename="../QScintilla/Editor.py" line="8499" /> <source>Sort Lines</source> <translation>Righe ordinate</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8477" /> + <location filename="../QScintilla/Editor.py" line="8500" /> <source>The selection contains illegal data for a numerical sort.</source> <translation>La selezione contiene dati non validi per un ordinamento numerico.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8570" /> + <location filename="../QScintilla/Editor.py" line="8593" /> <source>Register Mouse Click Handler</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="8571" /> + <location filename="../QScintilla/Editor.py" line="8594" /> <source>A mouse click handler for "{0}" was already registered by "{1}". Aborting request by "{2}"...</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="8667" /> + <location filename="../QScintilla/Editor.py" line="8690" /> <source>{0:4d} {1}</source> <comment>line number, source code</comment> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="8673" /> + <location filename="../QScintilla/Editor.py" line="8696" /> <source>{0:4d} {1} => {2}</source> <comment>line number, source code, file name</comment> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="8741" /> + <location filename="../QScintilla/Editor.py" line="8764" /> <source>EditorConfig Properties</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="8742" /> + <location filename="../QScintilla/Editor.py" line="8765" /> <source><p>The EditorConfig properties for file <b>{0}</b> could not be loaded.</p></source> <translation type="unfinished" /> </message> @@ -13004,26 +13016,26 @@ <context> <name>EditorFilePage</name> <message> - <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="339" /> - <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="322" /> - <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="305" /> - <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="294" /> + <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="341" /> + <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="324" /> + <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="307" /> + <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="296" /> <source>Add File Filter</source> <translation>Aggiungi filtro file</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="295" /> + <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="297" /> <source>A Save File Filter must contain exactly one wildcard pattern. Yours contains {0}.</source> <translation>Un filtro di salvataggio deve contenere esattamente un pattern con i caratteri jolly. Il tuo ne contiene {0}.</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="306" /> + <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="308" /> <source>A File Filter must contain at least one wildcard pattern.</source> <translation>Un filtro file deve contenere almeno un pattern con caratteri jolly.</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="340" /> - <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="323" /> + <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="342" /> + <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="325" /> <source>Enter the file filter entry:</source> <translation>Inserisci il filtro file:</translation> </message> @@ -13069,11 +13081,22 @@ </message> <message> <location filename="../Preferences/ConfigurationPages/EditorFilePage.ui" line="0" /> + <location filename="../Preferences/ConfigurationPages/EditorFilePage.ui" line="0" /> <source> KB</source> <translation>Kb</translation> </message> <message> <location filename="../Preferences/ConfigurationPages/EditorFilePage.ui" line="0" /> + <source>Reject, if file is greater than</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/EditorFilePage.ui" line="0" /> + <source>Enter the filesize, opening a file should be rejected.</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/EditorFilePage.ui" line="0" /> <source>End of Line</source> <translation>Fine linea</translation> </message> @@ -17098,12 +17121,12 @@ <context> <name>EricApplication</name> <message> - <location filename="../EricWidgets/EricApplication.py" line="220" /> + <location filename="../EricWidgets/EricApplication.py" line="221" /> <source>Loading Style Sheet</source> <translation type="unfinished">Caricamento Style Sheet</translation> </message> <message> - <location filename="../EricWidgets/EricApplication.py" line="223" /> + <location filename="../EricWidgets/EricApplication.py" line="224" /> <source><p>The Qt Style Sheet file <b>{0}</b> could not be read.<br>Reason: {1}</p></source> <translation type="unfinished"><p>Il file Qt Style Sheet <b>{0}</b> non può essere letto. <br>Motivo: {1}</p></translation> </message> @@ -46000,7 +46023,7 @@ <translation>Pygments</translation> </message> <message> - <location filename="../Preferences/__init__.py" line="468" /> + <location filename="../Preferences/__init__.py" line="469" /> <location filename="../QScintilla/Lexers/__init__.py" line="482" /> <source>Python Files (*.py *.py3)</source> <translation type="unfinished">File Python (*.py *.py3)</translation> @@ -46253,7 +46276,7 @@ <translation>Tutti i file (*)</translation> </message> <message> - <location filename="../Preferences/__init__.py" line="471" /> + <location filename="../Preferences/__init__.py" line="472" /> <location filename="../QScintilla/Lexers/__init__.py" line="575" /> <source>Python3 Files (*.py)</source> <translation>Python3 Files (*.py)</translation> @@ -54809,18 +54832,18 @@ <context> <name>Preferences</name> <message> - <location filename="../Preferences/__init__.py" line="1651" /> + <location filename="../Preferences/__init__.py" line="1652" /> <source>Export Preferences</source> <translation>Esporta Preferenze</translation> </message> <message> - <location filename="../Preferences/__init__.py" line="1680" /> - <location filename="../Preferences/__init__.py" line="1653" /> + <location filename="../Preferences/__init__.py" line="1681" /> + <location filename="../Preferences/__init__.py" line="1654" /> <source>Properties File (*.ini);;All Files (*)</source> <translation>File proprietà (*.ini);;Tutti i file(*)</translation> </message> <message> - <location filename="../Preferences/__init__.py" line="1678" /> + <location filename="../Preferences/__init__.py" line="1679" /> <source>Import Preferences</source> <translation>Importa Preferenze</translation> </message> @@ -56307,8 +56330,8 @@ <translation><b>Analisi codice...</b><p>Mostra le analisi del codice di tutti i file Python nel progetto.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5856" /> - <location filename="../Project/Project.py" line="5843" /> + <location filename="../Project/Project.py" line="5857" /> + <location filename="../Project/Project.py" line="5844" /> <location filename="../Project/Project.py" line="4649" /> <source>Profile Data</source> <translation>Profilazione dati</translation> @@ -56329,7 +56352,7 @@ <translation><b>Profilazione dati...</b><p>Mostra la profilazione dei dati per il progetto.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5908" /> + <location filename="../Project/Project.py" line="5909" /> <location filename="../Project/Project.py" line="4675" /> <source>Application Diagram</source> <translation>Diagrammi dell'applicazione</translation> @@ -56370,8 +56393,8 @@ <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6103" /> - <location filename="../Project/Project.py" line="6044" /> + <location filename="../Project/Project.py" line="6104" /> + <location filename="../Project/Project.py" line="6045" /> <location filename="../Project/Project.py" line="4719" /> <source>Create Package List</source> <translation>Crea lista del package</translation> @@ -56392,7 +56415,7 @@ <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6172" /> + <location filename="../Project/Project.py" line="6173" /> <location filename="../Project/Project.py" line="4742" /> <source>Create Plugin Archives</source> <translation type="unfinished" /> @@ -56433,9 +56456,9 @@ <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6589" /> - <location filename="../Project/Project.py" line="6560" /> - <location filename="../Project/Project.py" line="6511" /> + <location filename="../Project/Project.py" line="6590" /> + <location filename="../Project/Project.py" line="6561" /> + <location filename="../Project/Project.py" line="6512" /> <location filename="../Project/Project.py" line="4795" /> <source>Execute Make</source> <translation type="unfinished" /> @@ -56456,7 +56479,7 @@ <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6566" /> + <location filename="../Project/Project.py" line="6567" /> <location filename="../Project/Project.py" line="4814" /> <source>Test for Changes</source> <translation type="unfinished" /> @@ -56497,7 +56520,7 @@ <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6744" /> + <location filename="../Project/Project.py" line="6745" /> <location filename="../Project/Project.py" line="4871" /> <source>About Black</source> <translation type="unfinished" /> @@ -56745,195 +56768,195 @@ <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5275" /> - <location filename="../Project/Project.py" line="5272" /> + <location filename="../Project/Project.py" line="5276" /> + <location filename="../Project/Project.py" line="5273" /> <source>Project</source> <translation>Progetto</translation> </message> <message> - <location filename="../Project/Project.py" line="5338" /> + <location filename="../Project/Project.py" line="5339" /> <source>&Clear</source> <translation>Pulis&ci</translation> </message> <message> - <location filename="../Project/Project.py" line="5497" /> - <source>Search New Files</source> - <translation>Cerca Nuovi File</translation> - </message> - <message> <location filename="../Project/Project.py" line="5498" /> + <source>Search New Files</source> + <translation>Cerca Nuovi File</translation> + </message> + <message> + <location filename="../Project/Project.py" line="5499" /> <source>There were no new files found to be added.</source> <translation>Non sono stati trovati file da aggiungere.</translation> </message> <message> - <location filename="../Project/Project.py" line="5649" /> - <location filename="../Project/Project.py" line="5636" /> - <source>Version Control System</source> - <translation>Version Control System</translation> - </message> - <message> - <location filename="../Project/Project.py" line="5637" /> - <source><p>The selected VCS <b>{0}</b> could not be found. <br/>Reverting override.</p><p>{1}</p></source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Project/Project.py" line="5650" /> + <location filename="../Project/Project.py" line="5637" /> + <source>Version Control System</source> + <translation>Version Control System</translation> + </message> + <message> + <location filename="../Project/Project.py" line="5638" /> + <source><p>The selected VCS <b>{0}</b> could not be found. <br/>Reverting override.</p><p>{1}</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Project/Project.py" line="5651" /> <source><p>The selected VCS <b>{0}</b> could not be found.<br/>Disabling version control.</p><p>{1}</p></source> <translation><p>VCS selezionato <b>{0}</b>non trovato.<br>Disabilito il controllo di versione.</p><p>{1}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5798" /> + <location filename="../Project/Project.py" line="5799" /> <source>Coverage Data</source> <translation>Dati Analisi</translation> </message> <message> - <location filename="../Project/Project.py" line="5844" /> - <location filename="../Project/Project.py" line="5799" /> + <location filename="../Project/Project.py" line="5845" /> + <location filename="../Project/Project.py" line="5800" /> <source>There is no main script defined for the current project. Aborting</source> <translation>Non c'è uno script principale definito per il progetto. Esco</translation> </message> <message> - <location filename="../Project/Project.py" line="5811" /> - <source>Code Coverage</source> - <translation>Analisi codice</translation> - </message> - <message> <location filename="../Project/Project.py" line="5812" /> + <source>Code Coverage</source> + <translation>Analisi codice</translation> + </message> + <message> + <location filename="../Project/Project.py" line="5813" /> <source>Please select a coverage file</source> <translation>Per favore seleziona un file per l'analisi</translation> </message> <message> - <location filename="../Project/Project.py" line="5857" /> + <location filename="../Project/Project.py" line="5858" /> <source>Please select a profile file</source> <translation>Per favore seleziona un file per la profilazione</translation> </message> <message> - <location filename="../Project/Project.py" line="5909" /> + <location filename="../Project/Project.py" line="5910" /> <source>Include module names?</source> <translation>Includi i nomi dei moduli ?</translation> </message> <message> - <location filename="../Project/Project.py" line="6045" /> + <location filename="../Project/Project.py" line="6046" /> <source><p>The file <b>PKGLIST</b> already exists.</p><p>Overwrite it?</p></source> <translation><p>Il file <b>PKGLIST</b> esiste già.</p><p>Sovrascriverlo?</p></translation> </message> <message> - <location filename="../Project/Project.py" line="6104" /> + <location filename="../Project/Project.py" line="6105" /> <source><p>The file <b>PKGLIST</b> could not be created.</p><p>Reason: {0}</p></source> <translation><p>Il file <b>PKGLIST</b> non può essere creato.<br />Motivo: {0}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="6393" /> - <location filename="../Project/Project.py" line="6351" /> - <location filename="../Project/Project.py" line="6305" /> - <location filename="../Project/Project.py" line="6294" /> - <location filename="../Project/Project.py" line="6276" /> - <location filename="../Project/Project.py" line="6243" /> - <location filename="../Project/Project.py" line="6213" /> - <location filename="../Project/Project.py" line="6185" /> - <location filename="../Project/Project.py" line="6155" /> - <location filename="../Project/Project.py" line="6141" /> - <location filename="../Project/Project.py" line="6124" /> + <location filename="../Project/Project.py" line="6394" /> + <location filename="../Project/Project.py" line="6352" /> + <location filename="../Project/Project.py" line="6306" /> + <location filename="../Project/Project.py" line="6295" /> + <location filename="../Project/Project.py" line="6277" /> + <location filename="../Project/Project.py" line="6244" /> + <location filename="../Project/Project.py" line="6214" /> + <location filename="../Project/Project.py" line="6186" /> + <location filename="../Project/Project.py" line="6156" /> + <location filename="../Project/Project.py" line="6142" /> + <location filename="../Project/Project.py" line="6125" /> <source>Create Plugin Archive</source> <translation>Crea un archivio per il plugin</translation> </message> <message> - <location filename="../Project/Project.py" line="6125" /> + <location filename="../Project/Project.py" line="6126" /> <source>The project does not have a main script defined. Aborting...</source> <translation>Non c'è uno script principale definito per il progetto. Esco...</translation> </message> <message> - <location filename="../Project/Project.py" line="6142" /> + <location filename="../Project/Project.py" line="6143" /> <source>Select package lists:</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6156" /> + <location filename="../Project/Project.py" line="6157" /> <source><p>No package list files (PKGLIST*) available or selected. Aborting...</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6164" /> - <source>Creating plugin archives...</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Project/Project.py" line="6165" /> + <source>Creating plugin archives...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Project/Project.py" line="6166" /> <source>Abort</source> <translation type="unfinished">Termina</translation> </message> <message> - <location filename="../Project/Project.py" line="6168" /> + <location filename="../Project/Project.py" line="6169" /> <source>%v/%m Archives</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6186" /> + <location filename="../Project/Project.py" line="6187" /> <source><p>The file <b>{0}</b> could not be read.</p><p>Reason: {1}</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6214" /> + <location filename="../Project/Project.py" line="6215" /> <source><p>The file <b>{0}</b> is not ready yet.</p><p>Please rework it and delete the'; initial_list' line of the header.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6244" /> + <location filename="../Project/Project.py" line="6245" /> <source><p>The eric plugin archive file <b>{0}</b> could not be created.</p><p>Reason: {1}</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6277" /> + <location filename="../Project/Project.py" line="6278" /> <source><p>The file <b>{0}</b> could not be stored in the archive. Ignoring it.</p><p>Reason: {1}</p></source> <translation><p>Il file <b>{0}</b> non può essere aggiunto all'archivio.Lo ignoro.</p><p>Motivo: {1}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="6295" /> + <location filename="../Project/Project.py" line="6296" /> <source><p>The eric plugin archive files were created with some errors.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6306" /> + <location filename="../Project/Project.py" line="6307" /> <source><p>The eric plugin archive files were created successfully.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6352" /> + <location filename="../Project/Project.py" line="6353" /> <source><p>The plugin file <b>{0}</b> could not be read.</p><p>Reason: {1}</p></source> <translation><p>Il file plugin <b>{0}</b> non può essere salvato.<br />Motivo: {1}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="6394" /> + <location filename="../Project/Project.py" line="6395" /> <source><p>The plugin file <b>{0}</b> could not be read.</p> <p>Reason: {1}</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6512" /> + <location filename="../Project/Project.py" line="6513" /> <source>The make process did not start.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6561" /> + <location filename="../Project/Project.py" line="6562" /> <source>The make process crashed.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6569" /> + <location filename="../Project/Project.py" line="6570" /> <source><p>There are changes that require the configured make target <b>{0}</b> to be rebuilt.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6574" /> + <location filename="../Project/Project.py" line="6575" /> <source><p>There are changes that require the default make target to be rebuilt.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6590" /> + <location filename="../Project/Project.py" line="6591" /> <source>The makefile contains errors.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6745" /> + <location filename="../Project/Project.py" line="6746" /> <source><p><b>Black Version {0}</b></p><p><i>Black</i> is the uncompromising Python code formatter.</p></source> <translation type="unfinished" /> </message> @@ -57793,10 +57816,10 @@ <translation type="unfinished">Apri con l'editor</translation> </message> <message> - <location filename="../Project/ProjectOthersBrowser.py" line="353" /> - <location filename="../Project/ProjectOthersBrowser.py" line="345" /> - <location filename="../Project/ProjectOthersBrowser.py" line="335" /> - <location filename="../Project/ProjectOthersBrowser.py" line="327" /> + <location filename="../Project/ProjectOthersBrowser.py" line="357" /> + <location filename="../Project/ProjectOthersBrowser.py" line="349" /> + <location filename="../Project/ProjectOthersBrowser.py" line="339" /> + <location filename="../Project/ProjectOthersBrowser.py" line="331" /> <location filename="../Project/ProjectOthersBrowser.py" line="85" /> <source>Show Mime-Type</source> <translation type="unfinished" /> @@ -57870,28 +57893,28 @@ <translation>Configura...</translation> </message> <message> - <location filename="../Project/ProjectOthersBrowser.py" line="328" /> + <location filename="../Project/ProjectOthersBrowser.py" line="332" /> <source>The mime type of the file could not be determined.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/ProjectOthersBrowser.py" line="346" /> - <location filename="../Project/ProjectOthersBrowser.py" line="336" /> + <location filename="../Project/ProjectOthersBrowser.py" line="350" /> + <location filename="../Project/ProjectOthersBrowser.py" line="340" /> <source>The file has the mime type <b>{0}</b>.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/ProjectOthersBrowser.py" line="354" /> + <location filename="../Project/ProjectOthersBrowser.py" line="358" /> <source>The file has the mime type <b>{0}</b>.<br/> Shall it be added to the list of text mime types?</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/ProjectOthersBrowser.py" line="447" /> + <location filename="../Project/ProjectOthersBrowser.py" line="451" /> <source>Delete files/directories</source> <translation>Cancella file/directory</translation> </message> <message> - <location filename="../Project/ProjectOthersBrowser.py" line="448" /> + <location filename="../Project/ProjectOthersBrowser.py" line="452" /> <source>Do you really want to delete these entries from the project?</source> <translation>Vuoi veramente cancellare questi elementi dal progetto ?</translation> </message> @@ -85208,60 +85231,60 @@ <translation type="unfinished" /> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="901" /> + <location filename="../Debugger/VariablesViewer.py" line="904" /> <source>Global Variables</source> <translation>Variabili globali</translation> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="903" /> + <location filename="../Debugger/VariablesViewer.py" line="906" /> <source><b>The Global Variables Viewer Window</b><p>This window displays the global variables of the debugged program.</p></source> <translation><b>Finestra di visualizzazione delle variabili globali</b><p>Questa finestra mostra le variabili globali del programma in debug.</p></translation> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="910" /> + <location filename="../Debugger/VariablesViewer.py" line="913" /> <source>Local Variables</source> <translation>Variabili locali</translation> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="912" /> + <location filename="../Debugger/VariablesViewer.py" line="915" /> <source><b>The Local Variables Viewer Window</b><p>This window displays the local variables of the debugged program.</p></source> <translation><b>Finestra di visualizzazione delle variabili locali</b><p>Questa finestra mostra le variabili locali del programma in debug.</p></translation> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="1030" /> + <location filename="../Debugger/VariablesViewer.py" line="1039" /> <source>Show Details...</source> <translation>Mostra dettagli...</translation> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="1032" /> + <location filename="../Debugger/VariablesViewer.py" line="1041" /> <source>Expand</source> <translation type="unfinished" /> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="1033" /> - <source>Collapse</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Debugger/VariablesViewer.py" line="1034" /> - <source>Collapse All</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Debugger/VariablesViewer.py" line="1042" /> - <location filename="../Debugger/VariablesViewer.py" line="1036" /> + <source>Collapse</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Debugger/VariablesViewer.py" line="1043" /> + <source>Collapse All</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Debugger/VariablesViewer.py" line="1051" /> + <location filename="../Debugger/VariablesViewer.py" line="1045" /> <source>Refresh</source> <translation type="unfinished" /> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="1044" /> - <location filename="../Debugger/VariablesViewer.py" line="1038" /> + <location filename="../Debugger/VariablesViewer.py" line="1053" /> + <location filename="../Debugger/VariablesViewer.py" line="1047" /> <source>Configure...</source> <translation>Configura...</translation> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="1046" /> - <location filename="../Debugger/VariablesViewer.py" line="1039" /> + <location filename="../Debugger/VariablesViewer.py" line="1055" /> + <location filename="../Debugger/VariablesViewer.py" line="1048" /> <source>Variables Type Filter...</source> <translation type="unfinished" /> </message> @@ -95789,12 +95812,12 @@ <context> <name>eric7_ide</name> <message> - <location filename="../eric7_ide.py" line="394" /> + <location filename="../eric7_ide.py" line="395" /> <source>Starting...</source> <translation type="unfinished">Inizio...</translation> </message> <message> - <location filename="../eric7_ide.py" line="400" /> + <location filename="../eric7_ide.py" line="401" /> <source>Generating Main Window...</source> <translation type="unfinished">Generazione Main Window...</translation> </message>
--- a/src/eric7/i18n/eric7_pt.ts Fri Oct 14 14:46:40 2022 +0200 +++ b/src/eric7/i18n/eric7_pt.ts Fri Oct 14 17:02:09 2022 +0200 @@ -1824,17 +1824,17 @@ <translation type="unfinished" /> </message> <message> - <location filename="../Utilities/BackgroundService.py" line="488" /> + <location filename="../Utilities/BackgroundService.py" line="487" /> <source>Eric's background client disconnected because of an unknown reason.</source> <translation type="unfinished">Cliente de fundo de Eric desconectou-se por motivo desconhecido.</translation> </message> <message> + <location filename="../Utilities/BackgroundService.py" line="496" /> + <source>Background client disconnected.</source> + <translation>Cliente de fundo desconectado.</translation> + </message> + <message> <location filename="../Utilities/BackgroundService.py" line="497" /> - <source>Background client disconnected.</source> - <translation>Cliente de fundo desconectado.</translation> - </message> - <message> - <location filename="../Utilities/BackgroundService.py" line="498" /> <source>The background client for <b>{0}</b> disconnected because of an unknown reason.<br>Should it be restarted?</source> <translation>Cliente de fundo para <b>{0}</b> desconetou-se por um motivo desconhecido. <br>Deveria reiniciar-se?</translation> </message> @@ -8893,13 +8893,13 @@ <translation type="unfinished" /> </message> <message> - <location filename="../Debugger/DebugViewer.py" line="754" /> + <location filename="../Debugger/DebugViewer.py" line="756" /> <source><p>Debugger with ID <b>{0}</b> has been connected.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Debugger/DebugViewer.py" line="997" /> - <location filename="../Debugger/DebugViewer.py" line="869" /> + <location filename="../Debugger/DebugViewer.py" line="999" /> + <location filename="../Debugger/DebugViewer.py" line="871" /> <source>unknown state ({0})</source> <translation type="unfinished" /> </message> @@ -9588,7 +9588,7 @@ <translation>Não definir a codificação do cliente de depuração</translation> </message> <message> - <location filename="../Project/DebuggerPropertiesDialog.py" line="127" /> + <location filename="../Project/DebuggerPropertiesDialog.py" line="133" /> <source>All Files (*)</source> <translation>Ficheiros Todos (*)</translation> </message> @@ -11167,960 +11167,972 @@ <context> <name>Editor</name> <message> - <location filename="../QScintilla/Editor.py" line="3245" /> - <location filename="../QScintilla/Editor.py" line="406" /> + <location filename="../QScintilla/Editor.py" line="3268" /> + <location filename="../QScintilla/Editor.py" line="431" /> + <location filename="../QScintilla/Editor.py" line="416" /> + <location filename="../QScintilla/Editor.py" line="404" /> <source>Open File</source> <translation>Abrir Ficheiro</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="407" /> + <location filename="../QScintilla/Editor.py" line="405" /> + <source><p>The file <b>{0}</b> is not a text file. It will not be opened!</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="417" /> + <source><p>The size of the file <b>{0}</b> is <b>{1} KB</b> and exceeds the configured limit of <b>{2} KB</b>. It will not be opened!</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="432" /> <source><p>The size of the file <b>{0}</b> is <b>{1} KB</b>. Do you really want to load it?</p></source> <translation><p>O tamanho do ficheiro <b>{0}</b> é <b>{1} KB</b>. Tem a certeza de que o quer carregar?</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="505" /> + <location filename="../QScintilla/Editor.py" line="528" /> <source><b>A Source Editor Window</b><p>This window is used to display and edit a source file. You can open as many of these as you like. The name of the file is displayed in the window's titlebar.</p><p>In order to set breakpoints just click in the space between the line numbers and the fold markers. Via the context menu of the margins they may be edited.</p><p>In order to set bookmarks just Shift click in the space between the line numbers and the fold markers.</p><p>These actions can be reversed via the context menu.</p><p>Ctrl clicking on a syntax error marker shows some info about this error.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="833" /> + <location filename="../QScintilla/Editor.py" line="856" /> <source>Undo</source> <translation>Desfazer</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="836" /> + <location filename="../QScintilla/Editor.py" line="859" /> <source>Redo</source> <translation>Refazer</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="839" /> + <location filename="../QScintilla/Editor.py" line="862" /> <source>Revert to last saved state</source> <translation>Voltar ao último estado guardado</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="843" /> + <location filename="../QScintilla/Editor.py" line="866" /> <source>Cut</source> <translation>Cortar</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="846" /> + <location filename="../QScintilla/Editor.py" line="869" /> <source>Copy</source> <translation>Copiar</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="849" /> + <location filename="../QScintilla/Editor.py" line="872" /> <source>Paste</source> <translation>Colar</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="855" /> - <source>Indent</source> - <translation>Indentar</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="860" /> - <source>Unindent</source> - <translation>Tirar Indentação</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="865" /> - <source>Comment</source> - <translation>Comentar</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="870" /> - <source>Uncomment</source> - <translation>Descomentar</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="8934" /> - <location filename="../QScintilla/Editor.py" line="875" /> - <source>Generate Docstring</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/Editor.py" line="878" /> + <source>Indent</source> + <translation>Indentar</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="883" /> + <source>Unindent</source> + <translation>Tirar Indentação</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="888" /> + <source>Comment</source> + <translation>Comentar</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="893" /> + <source>Uncomment</source> + <translation>Descomentar</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="8957" /> + <location filename="../QScintilla/Editor.py" line="898" /> + <source>Generate Docstring</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="901" /> <source>Select to brace</source> <translation>Selecionar até parentesis</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="879" /> + <location filename="../QScintilla/Editor.py" line="902" /> <source>Select all</source> <translation>Selecionar tudo</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="880" /> + <location filename="../QScintilla/Editor.py" line="903" /> <source>Deselect all</source> <translation>Desselecionar tudo</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="882" /> + <location filename="../QScintilla/Editor.py" line="905" /> <source>Execute Selection In Console</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="894" /> + <location filename="../QScintilla/Editor.py" line="917" /> <source>Use Monospaced Font</source> <translation>Usar Tipo de Letra de Tamanho Único</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="899" /> + <location filename="../QScintilla/Editor.py" line="922" /> <source>Autosave enabled</source> <translation>Ativado autogravar </translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="904" /> + <location filename="../QScintilla/Editor.py" line="927" /> <source>Typing aids enabled</source> <translation>Habilitada a ajuda à escritura</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="912" /> + <location filename="../QScintilla/Editor.py" line="935" /> <source>Automatic Completion enabled</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="921" /> - <source>Calltip</source> - <translation>Dica</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="924" /> - <source>Code Info</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="939" /> - <source>New Document View</source> - <translation>Vista de Documento Novo</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="944" /> + <source>Calltip</source> + <translation>Dica</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="947" /> + <source>Code Info</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="962" /> + <source>New Document View</source> + <translation>Vista de Documento Novo</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="967" /> <source>New Document View (with new split)</source> <translation>Vista de Documento Novo (com divisão nova)</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="952" /> + <location filename="../QScintilla/Editor.py" line="975" /> <source>Save</source> <translation>Gravar</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="956" /> + <location filename="../QScintilla/Editor.py" line="979" /> <source>Save As...</source> <translation>Gravar Como...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="961" /> + <location filename="../QScintilla/Editor.py" line="984" /> <source>Save Copy...</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="983" /> - <location filename="../QScintilla/Editor.py" line="980" /> + <location filename="../QScintilla/Editor.py" line="1006" /> + <location filename="../QScintilla/Editor.py" line="1003" /> <source>Complete</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="987" /> + <location filename="../QScintilla/Editor.py" line="1010" /> <source>Clear Completions Cache</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="990" /> + <location filename="../QScintilla/Editor.py" line="1013" /> <source>Complete from Document</source> <translation type="unfinished">desde Documento</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="992" /> + <location filename="../QScintilla/Editor.py" line="1015" /> <source>Complete from APIs</source> <translation type="unfinished">desde APIs</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="995" /> + <location filename="../QScintilla/Editor.py" line="1018" /> <source>Complete from Document and APIs</source> <translation type="unfinished">desde Documento e APIs</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1009" /> + <location filename="../QScintilla/Editor.py" line="1032" /> <source>Check</source> <translation>Verificar</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1020" /> + <location filename="../QScintilla/Editor.py" line="1043" /> <source>Code Formatting</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1023" /> - <source>Format Code</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1027" /> - <source>Check Formatting</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1031" /> - <source>Formatting Diff</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/Editor.py" line="1046" /> + <source>Format Code</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1050" /> + <source>Check Formatting</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1054" /> + <source>Formatting Diff</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1069" /> <source>Tools</source> <translation>Ferramentas</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1057" /> + <location filename="../QScintilla/Editor.py" line="1080" /> <source>Show</source> <translation>Mostrar</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1059" /> + <location filename="../QScintilla/Editor.py" line="1082" /> <source>Code metrics...</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1061" /> + <location filename="../QScintilla/Editor.py" line="1084" /> <source>Code coverage...</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1064" /> - <source>Show code coverage annotations</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1067" /> - <source>Hide code coverage annotations</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1071" /> - <source>Profile data...</source> - <translation>Dados de Perfil...</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1085" /> - <source>Diagrams</source> - <translation>Diagramas</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="1087" /> + <source>Show code coverage annotations</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1090" /> + <source>Hide code coverage annotations</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1094" /> + <source>Profile data...</source> + <translation>Dados de Perfil...</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1108" /> + <source>Diagrams</source> + <translation>Diagramas</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1110" /> <source>Class Diagram...</source> <translation>Diagrama de Classes...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1088" /> - <source>Package Diagram...</source> - <translation>Diagrama do Pacote...</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1089" /> - <source>Imports Diagram...</source> - <translation>Diagrama de Imports...</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1091" /> - <source>Application Diagram...</source> - <translation>Diagrama da Aplicação...</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1096" /> - <source>Load Diagram...</source> - <translation>Carregar Diagrama...</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="1111" /> + <source>Package Diagram...</source> + <translation>Diagrama do Pacote...</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1112" /> + <source>Imports Diagram...</source> + <translation>Diagrama de Imports...</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1114" /> + <source>Application Diagram...</source> + <translation>Diagrama da Aplicação...</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1119" /> + <source>Load Diagram...</source> + <translation>Carregar Diagrama...</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1134" /> <source>Languages</source> <translation>Linguagens</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1115" /> + <location filename="../QScintilla/Editor.py" line="1138" /> <source>Text</source> <translation type="unfinished">Texto</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1140" /> + <location filename="../QScintilla/Editor.py" line="1163" /> <source>Guessed</source> <translation>Adivinhado</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1471" /> - <location filename="../QScintilla/Editor.py" line="1144" /> + <location filename="../QScintilla/Editor.py" line="1494" /> + <location filename="../QScintilla/Editor.py" line="1167" /> <source>Alternatives</source> <translation>Alternativas</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1161" /> - <source>Encodings</source> - <translation>Codificações</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="1184" /> + <source>Encodings</source> + <translation>Codificações</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1207" /> <source>Re-Open With Encoding</source> <translation>Reabrir Com Codificação</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1204" /> + <location filename="../QScintilla/Editor.py" line="1227" /> <source>End-of-Line Type</source> <translation>Tipo do Fim-de-Linha</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1208" /> + <location filename="../QScintilla/Editor.py" line="1231" /> <source>Unix</source> <translation /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1214" /> + <location filename="../QScintilla/Editor.py" line="1237" /> <source>Windows</source> <translation /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1220" /> + <location filename="../QScintilla/Editor.py" line="1243" /> <source>Macintosh</source> <translation /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1238" /> + <location filename="../QScintilla/Editor.py" line="1261" /> <source>Spelling</source> <translation type="unfinished">Verificação ortográfica</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8052" /> - <location filename="../QScintilla/Editor.py" line="1246" /> + <location filename="../QScintilla/Editor.py" line="8075" /> + <location filename="../QScintilla/Editor.py" line="1269" /> <source>Check spelling...</source> <translation>Verificação ortográfica...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1251" /> + <location filename="../QScintilla/Editor.py" line="1274" /> <source>Check spelling of selection...</source> <translation>Verificação ortográfica da seleção...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1255" /> + <location filename="../QScintilla/Editor.py" line="1278" /> <source>Remove from dictionary</source> <translation>Retirar do dicionário</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1272" /> + <location filename="../QScintilla/Editor.py" line="1295" /> <source>Spell Check Languages</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1276" /> + <location filename="../QScintilla/Editor.py" line="1299" /> <source>No Language</source> <translation>Nenhuma Linguagem</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1303" /> + <location filename="../QScintilla/Editor.py" line="1326" /> <source>Toggle bookmark</source> <translation>Alternar marcadores</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1305" /> - <source>Next bookmark</source> - <translation>Marcador seguinte</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1308" /> - <source>Previous bookmark</source> - <translation>Marcador anterior</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1311" /> - <source>Clear all bookmarks</source> - <translation>Limpar os marcadores todos</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1322" /> - <source>Toggle breakpoint</source> - <translation>Alternar pontos de interrupção</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1325" /> - <source>Toggle temporary breakpoint</source> - <translation>Alternar pontos de interrupção temporais</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="1328" /> - <source>Edit breakpoint...</source> - <translation>Editar ponto de interrupção...</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="5754" /> + <source>Next bookmark</source> + <translation>Marcador seguinte</translation> + </message> + <message> <location filename="../QScintilla/Editor.py" line="1331" /> - <source>Enable breakpoint</source> - <translation>Habilitar pontos de interrupção</translation> + <source>Previous bookmark</source> + <translation>Marcador anterior</translation> </message> <message> <location filename="../QScintilla/Editor.py" line="1334" /> - <source>Next breakpoint</source> - <translation>Ponto de interrupção seguinte</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1337" /> - <source>Previous breakpoint</source> - <translation>Ponto de interrupção anterior</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1340" /> - <source>Clear all breakpoints</source> - <translation>Apagar todos os pontos de interrupção</translation> + <source>Clear all bookmarks</source> + <translation>Limpar os marcadores todos</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1345" /> + <source>Toggle breakpoint</source> + <translation>Alternar pontos de interrupção</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1348" /> + <source>Toggle temporary breakpoint</source> + <translation>Alternar pontos de interrupção temporais</translation> </message> <message> <location filename="../QScintilla/Editor.py" line="1351" /> - <source>Toggle all folds</source> - <translation type="unfinished">Alternar as dobras todas</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1356" /> - <source>Toggle all folds (including children)</source> - <translation type="unfinished">Alternar as dobras todas (incluindo filhos)</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1359" /> - <source>Toggle current fold</source> - <translation type="unfinished">Alternar a dobra atual</translation> + <source>Edit breakpoint...</source> + <translation>Editar ponto de interrupção...</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="5777" /> + <location filename="../QScintilla/Editor.py" line="1354" /> + <source>Enable breakpoint</source> + <translation>Habilitar pontos de interrupção</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1357" /> + <source>Next breakpoint</source> + <translation>Ponto de interrupção seguinte</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1360" /> + <source>Previous breakpoint</source> + <translation>Ponto de interrupção anterior</translation> </message> <message> <location filename="../QScintilla/Editor.py" line="1363" /> - <source>Expand (including children)</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1367" /> - <source>Collapse (including children)</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1372" /> - <source>Clear all folds</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1383" /> - <source>Goto syntax error</source> - <translation>Ir ao erro de sintaxe</translation> + <source>Clear all breakpoints</source> + <translation>Apagar todos os pontos de interrupção</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1374" /> + <source>Toggle all folds</source> + <translation type="unfinished">Alternar as dobras todas</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1379" /> + <source>Toggle all folds (including children)</source> + <translation type="unfinished">Alternar as dobras todas (incluindo filhos)</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1382" /> + <source>Toggle current fold</source> + <translation type="unfinished">Alternar a dobra atual</translation> </message> <message> <location filename="../QScintilla/Editor.py" line="1386" /> - <source>Show syntax error message</source> - <translation>Mostrar a mensagem de erro de sintaxe</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1389" /> - <source>Clear syntax error</source> - <translation>Limpar o erro de sintaxe</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1393" /> - <source>Next warning</source> - <translation>Aviso seguinte</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1396" /> - <source>Previous warning</source> - <translation>Aviso anterior</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1399" /> - <source>Show warning message</source> - <translation>Mostrar mensagem de aviso</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1402" /> - <source>Clear warnings</source> - <translation>Limpar avisos</translation> + <source>Expand (including children)</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1390" /> + <source>Collapse (including children)</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1395" /> + <source>Clear all folds</source> + <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/Editor.py" line="1406" /> - <source>Next uncovered line</source> - <translation>Linha seguinte sem cobrir</translation> + <source>Goto syntax error</source> + <translation>Ir ao erro de sintaxe</translation> </message> <message> <location filename="../QScintilla/Editor.py" line="1409" /> - <source>Previous uncovered line</source> - <translation>Linha anterior sem cobrir</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1413" /> - <source>Next task</source> - <translation>Tarefa seguinte</translation> + <source>Show syntax error message</source> + <translation>Mostrar a mensagem de erro de sintaxe</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1412" /> + <source>Clear syntax error</source> + <translation>Limpar o erro de sintaxe</translation> </message> <message> <location filename="../QScintilla/Editor.py" line="1416" /> + <source>Next warning</source> + <translation>Aviso seguinte</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1419" /> + <source>Previous warning</source> + <translation>Aviso anterior</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1422" /> + <source>Show warning message</source> + <translation>Mostrar mensagem de aviso</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1425" /> + <source>Clear warnings</source> + <translation>Limpar avisos</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1429" /> + <source>Next uncovered line</source> + <translation>Linha seguinte sem cobrir</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1432" /> + <source>Previous uncovered line</source> + <translation>Linha anterior sem cobrir</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1436" /> + <source>Next task</source> + <translation>Tarefa seguinte</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1439" /> <source>Previous task</source> <translation>Tarefa anterior</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1420" /> + <location filename="../QScintilla/Editor.py" line="1443" /> <source>Next change</source> <translation>Alteração seguinte</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1423" /> + <location filename="../QScintilla/Editor.py" line="1446" /> <source>Previous change</source> <translation>Alteração anterior</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1426" /> - <source>Clear changes</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1457" /> - <location filename="../QScintilla/Editor.py" line="1448" /> - <source>Export source</source> - <translation>Exportar fonte</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="1449" /> + <source>Clear changes</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1480" /> + <location filename="../QScintilla/Editor.py" line="1471" /> + <source>Export source</source> + <translation>Exportar fonte</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1472" /> <source><p>No exporter available for the export format <b>{0}</b>. Aborting...</p></source> <translation><p>Não está disponível um exportador para formato <b>{0}</b>. A cancelar...</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1458" /> + <location filename="../QScintilla/Editor.py" line="1481" /> <source>No export format given. Aborting...</source> <translation>Não foi dado o formato para exportar. A cancelar...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1468" /> - <source>Alternatives ({0})</source> - <translation>Alternativas ({0})</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="1491" /> + <source>Alternatives ({0})</source> + <translation>Alternativas ({0})</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1514" /> <source>Pygments Lexer</source> <translation>Analizador Léxico Pygments</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1492" /> + <location filename="../QScintilla/Editor.py" line="1515" /> <source>Select the Pygments lexer to apply.</source> <translation>Selecionar o analizador léxico Pygments a aplicar.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2051" /> + <location filename="../QScintilla/Editor.py" line="2074" /> <source>Modification of Read Only file</source> <translation>Modificação do ficheiro de Apenas Leitura</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2052" /> + <location filename="../QScintilla/Editor.py" line="2075" /> <source>You are attempting to change a read only file. Please save to a different file first.</source> <translation>Tenta alterar um ficheiro de Apenas Leitura. Por favor guarde-o primeiro num ficheiro diferente. </translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2473" /> + <location filename="../QScintilla/Editor.py" line="2496" /> <source>Add Breakpoint</source> <translation type="unfinished">Adicionar Ponto de Interrupção</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2474" /> + <location filename="../QScintilla/Editor.py" line="2497" /> <source>No Python byte code will be created for the selected line. No break point will be set!</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="2807" /> + <location filename="../QScintilla/Editor.py" line="2830" /> <source>Printing...</source> <translation>A imprimir...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2824" /> + <location filename="../QScintilla/Editor.py" line="2847" /> <source>Printing completed</source> <translation>Impressão completa</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2826" /> + <location filename="../QScintilla/Editor.py" line="2849" /> <source>Error while printing</source> <translation>Erro durante a impressão</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2829" /> + <location filename="../QScintilla/Editor.py" line="2852" /> <source>Printing aborted</source> <translation>Impressão cancelada</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="3187" /> + <location filename="../QScintilla/Editor.py" line="3210" /> <source>File Modified</source> <translation>Ficheiro Modificado</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="3188" /> + <location filename="../QScintilla/Editor.py" line="3211" /> <source><p>The file <b>{0}</b> has unsaved changes.</p></source> <translation><p>O ficheiro <b>{0}</b> tem alterações por gravar.</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="3246" /> + <location filename="../QScintilla/Editor.py" line="3269" /> <source><p>The file <b>{0}</b> could not be opened.</p><p>Reason: {1}</p></source> <translation><p>Não se pôde abrir o ficheiro <b>{0}</b>.</p><p> Motivo: {1}</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="3424" /> - <location filename="../QScintilla/Editor.py" line="3405" /> - <location filename="../QScintilla/Editor.py" line="3365" /> + <location filename="../QScintilla/Editor.py" line="3447" /> + <location filename="../QScintilla/Editor.py" line="3428" /> + <location filename="../QScintilla/Editor.py" line="3388" /> <source>Save File</source> <translation>Gravar Ficheiro</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="3366" /> + <location filename="../QScintilla/Editor.py" line="3389" /> <source><p>The file <b>{0}</b> could not be saved.<br/>Reason: {1}</p></source> <translation><p>O ficheiro <b>{0}</b> não se pôde gravar. <br/>Motivo: {1}</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="3425" /> + <location filename="../QScintilla/Editor.py" line="3448" /> <source><p>The file <b>{0}</b> already exists. Overwrite it?</p></source> <translation><p>O ficheiro <b>{0}</b> já existe. Sobreescrever?</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="4935" /> + <location filename="../QScintilla/Editor.py" line="4958" /> <source>Autocompletion</source> <translation>Autocompletar</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="4936" /> + <location filename="../QScintilla/Editor.py" line="4959" /> <source>Autocompletion is not available because there is no autocompletion source set.</source> <translation>Autocompletar não está disponivel porque a fonte de autocompletar não está definida.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5064" /> + <location filename="../QScintilla/Editor.py" line="5087" /> <source>Auto-Completion Provider</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="5065" /> + <location filename="../QScintilla/Editor.py" line="5088" /> <source>The completion list provider '{0}' was already registered. Ignoring duplicate request.</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="5357" /> + <location filename="../QScintilla/Editor.py" line="5380" /> <source>Call-Tips Provider</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="5358" /> + <location filename="../QScintilla/Editor.py" line="5381" /> <source>The call-tips provider '{0}' was already registered. Ignoring duplicate request.</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="5758" /> + <location filename="../QScintilla/Editor.py" line="5781" /> <source>Disable breakpoint</source> <translation>Inabilitar ponto de interrupção</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6113" /> + <location filename="../QScintilla/Editor.py" line="6136" /> <source>Code Coverage</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="6114" /> + <location filename="../QScintilla/Editor.py" line="6137" /> <source>Please select a coverage file</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="6189" /> - <location filename="../QScintilla/Editor.py" line="6181" /> + <location filename="../QScintilla/Editor.py" line="6212" /> + <location filename="../QScintilla/Editor.py" line="6204" /> <source>Show Code Coverage Annotations</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="6182" /> + <location filename="../QScintilla/Editor.py" line="6205" /> <source>All lines have been covered.</source> <translation>Foram cobertas as linhas todas.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6190" /> + <location filename="../QScintilla/Editor.py" line="6213" /> <source>There is no coverage file available.</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="6286" /> + <location filename="../QScintilla/Editor.py" line="6309" /> <source>Profile Data</source> <translation>Dados de Perfil</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6287" /> + <location filename="../QScintilla/Editor.py" line="6310" /> <source>Please select a profile file</source> <translation>Escolha um ficheiro de perfil por favor</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6450" /> - <location filename="../QScintilla/Editor.py" line="6444" /> + <location filename="../QScintilla/Editor.py" line="6473" /> + <location filename="../QScintilla/Editor.py" line="6467" /> <source>Syntax Error</source> <translation>Erro de Sintaxe</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6451" /> + <location filename="../QScintilla/Editor.py" line="6474" /> <source>No syntax error message available.</source> <translation>Não está disponível a mensagem de erro de sintaxe.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6662" /> - <location filename="../QScintilla/Editor.py" line="6656" /> + <location filename="../QScintilla/Editor.py" line="6685" /> + <location filename="../QScintilla/Editor.py" line="6679" /> <source>Warning</source> <translation>Aviso</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6662" /> + <location filename="../QScintilla/Editor.py" line="6685" /> <source>No warning messages available.</source> <translation>Não estão disponíveis mensagens de aviso.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6726" /> + <location filename="../QScintilla/Editor.py" line="6749" /> <source>Style: {0}</source> <translation>Estilo: {0}</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6729" /> + <location filename="../QScintilla/Editor.py" line="6752" /> <source>Warning: {0}</source> <translation>Aviso: {0}</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6736" /> + <location filename="../QScintilla/Editor.py" line="6759" /> <source>Error: {0}</source> <translation>Erro: {0}</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6843" /> + <location filename="../QScintilla/Editor.py" line="6866" /> <source>Macro Name</source> <translation>Nome de Macro</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6843" /> + <location filename="../QScintilla/Editor.py" line="6866" /> <source>Select a macro name:</source> <translation>Selecionar um nome de macro:</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6869" /> + <location filename="../QScintilla/Editor.py" line="6892" /> <source>Load macro file</source> <translation>Carregar ficheiro macro</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6915" /> - <location filename="../QScintilla/Editor.py" line="6871" /> + <location filename="../QScintilla/Editor.py" line="6938" /> + <location filename="../QScintilla/Editor.py" line="6894" /> <source>Macro files (*.macro)</source> <translation>Ficheiros Macro (*.macro)</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6893" /> - <location filename="../QScintilla/Editor.py" line="6883" /> + <location filename="../QScintilla/Editor.py" line="6916" /> + <location filename="../QScintilla/Editor.py" line="6906" /> <source>Error loading macro</source> <translation>Erro ao carregar macro</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6884" /> + <location filename="../QScintilla/Editor.py" line="6907" /> <source><p>The macro file <b>{0}</b> could not be read.</p></source> <translation><p>O ficheiro macro <b>{0}</b> não se pode ler.</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6894" /> + <location filename="../QScintilla/Editor.py" line="6917" /> <source><p>The macro file <b>{0}</b> is corrupt.</p></source> <translation><p>O ficheiro macro <b>{0}</b> está corrompido.</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6913" /> + <location filename="../QScintilla/Editor.py" line="6936" /> <source>Save macro file</source> <translation>Gravar ficheiro macro</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6931" /> + <location filename="../QScintilla/Editor.py" line="6954" /> <source>Save macro</source> <translation>Gravar macro</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6932" /> + <location filename="../QScintilla/Editor.py" line="6955" /> <source><p>The macro file <b>{0}</b> already exists. Overwrite it?</p></source> <translation><p>O ficheiro macro <b>{0}</b> já existe. Sobreescrever-lo?</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6947" /> + <location filename="../QScintilla/Editor.py" line="6970" /> <source>Error saving macro</source> <translation>Erro ao gravar macro</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6948" /> + <location filename="../QScintilla/Editor.py" line="6971" /> <source><p>The macro file <b>{0}</b> could not be written.</p></source> <translation><p>O ficheiro macro <b>{0}</b> não pode ser escrito.</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6961" /> + <location filename="../QScintilla/Editor.py" line="6984" /> <source>Start Macro Recording</source> <translation>Iniciar Registo de Macro</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6962" /> + <location filename="../QScintilla/Editor.py" line="6985" /> <source>Macro recording is already active. Start new?</source> <translation>A gravação de macro já está ativada. Começar nova?</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6988" /> + <location filename="../QScintilla/Editor.py" line="7011" /> <source>Macro Recording</source> <translation>Gravação de Macro</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6989" /> + <location filename="../QScintilla/Editor.py" line="7012" /> <source>Enter name of the macro:</source> <translation>Introduza o nome de macro:</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7140" /> + <location filename="../QScintilla/Editor.py" line="7163" /> <source><p>The file <b>{0}</b> has been changed while it was opened in eric. Reread it?</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="7146" /> + <location filename="../QScintilla/Editor.py" line="7169" /> <source><br><b>Warning:</b> You will lose your changes upon reopening it.</source> <translation><br><b>Aviso:</b> Perderá todas as alterações uma vez que o volte a abrir.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7153" /> + <location filename="../QScintilla/Editor.py" line="7176" /> <source>File changed</source> <translation>Ficheiro alterado</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7203" /> + <location filename="../QScintilla/Editor.py" line="7226" /> <source>{0} (ro)</source> <translation /> </message> <message> - <location filename="../QScintilla/Editor.py" line="7494" /> - <source>Drop Error</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="7495" /> - <source><p><b>{0}</b> is not a file.</p></source> - <translation><p><b>{0}</b> não é um ficheiro.</p></translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="7515" /> - <source>Resources</source> - <translation>Recursos</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="7517" /> - <source>Add file...</source> - <translation>Adicionar Ficheiro...</translation> + <source>Drop Error</source> + <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/Editor.py" line="7518" /> + <source><p><b>{0}</b> is not a file.</p></source> + <translation><p><b>{0}</b> não é um ficheiro.</p></translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="7538" /> + <source>Resources</source> + <translation>Recursos</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="7540" /> + <source>Add file...</source> + <translation>Adicionar Ficheiro...</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="7541" /> <source>Add files...</source> <translation>Adicionar Ficheiros...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7519" /> + <location filename="../QScintilla/Editor.py" line="7542" /> <source>Add aliased file...</source> <translation>Adicionar ficheiro com pseudónimo...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7521" /> + <location filename="../QScintilla/Editor.py" line="7544" /> <source>Add localized resource...</source> <translation>Adicionar recursos localizado...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7524" /> + <location filename="../QScintilla/Editor.py" line="7547" /> <source>Add resource frame</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="7543" /> + <location filename="../QScintilla/Editor.py" line="7566" /> <source>Add file resource</source> <translation>Adicionar recurso de ficheiro</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7557" /> + <location filename="../QScintilla/Editor.py" line="7580" /> <source>Add file resources</source> <translation>Adicionar recursos de ficheiro</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7581" /> - <location filename="../QScintilla/Editor.py" line="7575" /> + <location filename="../QScintilla/Editor.py" line="7604" /> + <location filename="../QScintilla/Editor.py" line="7598" /> <source>Add aliased file resource</source> <translation>Adicionar recurso de ficheiro com pseudónimo</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7582" /> + <location filename="../QScintilla/Editor.py" line="7605" /> <source>Alias for file <b>{0}</b>:</source> <translation>Pseudónimo para o ficheiro <b>{0}</b>:</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7657" /> + <location filename="../QScintilla/Editor.py" line="7680" /> <source>Package Diagram</source> <translation>Diagrama do Pacote</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7658" /> + <location filename="../QScintilla/Editor.py" line="7681" /> <source>Include class attributes?</source> <translation>Incluir atributos de classes?</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7678" /> + <location filename="../QScintilla/Editor.py" line="7701" /> <source>Imports Diagram</source> <translation>Diagrama de Imports</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7679" /> + <location filename="../QScintilla/Editor.py" line="7702" /> <source>Include imports from external modules?</source> <translation>Incluir imports de módulos externos?</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7698" /> + <location filename="../QScintilla/Editor.py" line="7721" /> <source>Application Diagram</source> <translation>Diagrama da Aplicação</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7699" /> + <location filename="../QScintilla/Editor.py" line="7722" /> <source>Include module names?</source> <translation>Incluir nome dos módulos?</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8056" /> + <location filename="../QScintilla/Editor.py" line="8079" /> <source>Add to dictionary</source> <translation>Adicionar dicionário</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8058" /> + <location filename="../QScintilla/Editor.py" line="8081" /> <source>Ignore All</source> <translation>Ignorar Tudo</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8476" /> + <location filename="../QScintilla/Editor.py" line="8499" /> <source>Sort Lines</source> <translation>Ordenar Linhas</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8477" /> + <location filename="../QScintilla/Editor.py" line="8500" /> <source>The selection contains illegal data for a numerical sort.</source> <translation>A seleção contém dados ilegais para uma ordenação numérica.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8570" /> + <location filename="../QScintilla/Editor.py" line="8593" /> <source>Register Mouse Click Handler</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="8571" /> + <location filename="../QScintilla/Editor.py" line="8594" /> <source>A mouse click handler for "{0}" was already registered by "{1}". Aborting request by "{2}"...</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="8667" /> + <location filename="../QScintilla/Editor.py" line="8690" /> <source>{0:4d} {1}</source> <comment>line number, source code</comment> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="8673" /> + <location filename="../QScintilla/Editor.py" line="8696" /> <source>{0:4d} {1} => {2}</source> <comment>line number, source code, file name</comment> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="8741" /> + <location filename="../QScintilla/Editor.py" line="8764" /> <source>EditorConfig Properties</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="8742" /> + <location filename="../QScintilla/Editor.py" line="8765" /> <source><p>The EditorConfig properties for file <b>{0}</b> could not be loaded.</p></source> <translation type="unfinished" /> </message> @@ -13023,26 +13035,26 @@ <context> <name>EditorFilePage</name> <message> - <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="339" /> - <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="322" /> - <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="305" /> - <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="294" /> + <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="341" /> + <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="324" /> + <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="307" /> + <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="296" /> <source>Add File Filter</source> <translation>Adicionar Filtro de Ficheiros</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="295" /> + <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="297" /> <source>A Save File Filter must contain exactly one wildcard pattern. Yours contains {0}.</source> <translation>O Filtro de Gravar Ficheiro deve ter exactamente um padrão de caracteres curinga. O seu tem exatamente {0}.</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="306" /> + <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="308" /> <source>A File Filter must contain at least one wildcard pattern.</source> <translation>Um Filtro de Ficheiros deve ter ao menos um caracter curinga.</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="340" /> - <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="323" /> + <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="342" /> + <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="325" /> <source>Enter the file filter entry:</source> <translation>Introduzir entrada do filtro de ficheiros:</translation> </message> @@ -13088,11 +13100,22 @@ </message> <message> <location filename="../Preferences/ConfigurationPages/EditorFilePage.ui" line="0" /> + <location filename="../Preferences/ConfigurationPages/EditorFilePage.ui" line="0" /> <source> KB</source> <translation /> </message> <message> <location filename="../Preferences/ConfigurationPages/EditorFilePage.ui" line="0" /> + <source>Reject, if file is greater than</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/EditorFilePage.ui" line="0" /> + <source>Enter the filesize, opening a file should be rejected.</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/EditorFilePage.ui" line="0" /> <source>End of Line</source> <translation>Fim de Linha</translation> </message> @@ -17117,12 +17140,12 @@ <context> <name>EricApplication</name> <message> - <location filename="../EricWidgets/EricApplication.py" line="220" /> + <location filename="../EricWidgets/EricApplication.py" line="221" /> <source>Loading Style Sheet</source> <translation type="unfinished">A carregar Folha de Estilos</translation> </message> <message> - <location filename="../EricWidgets/EricApplication.py" line="223" /> + <location filename="../EricWidgets/EricApplication.py" line="224" /> <source><p>The Qt Style Sheet file <b>{0}</b> could not be read.<br>Reason: {1}</p></source> <translation type="unfinished"><p>O ficheiro de Folha de Estilos do Qt <b>{0}</b> nao pode ser lido. <br>Razao: {1}</p></translation> </message> @@ -45997,7 +46020,7 @@ <translation /> </message> <message> - <location filename="../Preferences/__init__.py" line="468" /> + <location filename="../Preferences/__init__.py" line="469" /> <location filename="../QScintilla/Lexers/__init__.py" line="482" /> <source>Python Files (*.py *.py3)</source> <translation type="unfinished">Ficheiros Python (*.py *.py3)</translation> @@ -46250,7 +46273,7 @@ <translation>Ficheiros Todos (*)</translation> </message> <message> - <location filename="../Preferences/__init__.py" line="471" /> + <location filename="../Preferences/__init__.py" line="472" /> <location filename="../QScintilla/Lexers/__init__.py" line="575" /> <source>Python3 Files (*.py)</source> <translation>Ficheiros Python3 (*.py)</translation> @@ -54803,18 +54826,18 @@ <context> <name>Preferences</name> <message> - <location filename="../Preferences/__init__.py" line="1651" /> + <location filename="../Preferences/__init__.py" line="1652" /> <source>Export Preferences</source> <translation>Exportar Preferências</translation> </message> <message> - <location filename="../Preferences/__init__.py" line="1680" /> - <location filename="../Preferences/__init__.py" line="1653" /> + <location filename="../Preferences/__init__.py" line="1681" /> + <location filename="../Preferences/__init__.py" line="1654" /> <source>Properties File (*.ini);;All Files (*)</source> <translation>Ficheiro de Propriedades (*.ini);;Ficheiros Todos (*)</translation> </message> <message> - <location filename="../Preferences/__init__.py" line="1678" /> + <location filename="../Preferences/__init__.py" line="1679" /> <source>Import Preferences</source> <translation>Importar Preferências</translation> </message> @@ -56301,8 +56324,8 @@ <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5856" /> - <location filename="../Project/Project.py" line="5843" /> + <location filename="../Project/Project.py" line="5857" /> + <location filename="../Project/Project.py" line="5844" /> <location filename="../Project/Project.py" line="4649" /> <source>Profile Data</source> <translation type="unfinished">Dados de Perfil</translation> @@ -56323,7 +56346,7 @@ <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5908" /> + <location filename="../Project/Project.py" line="5909" /> <location filename="../Project/Project.py" line="4675" /> <source>Application Diagram</source> <translation>Diagrama da Aplicação</translation> @@ -56364,8 +56387,8 @@ <translation><b>Carregar Diagrama...</b><p>Carga um diagrama desde um ficheiro.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="6103" /> - <location filename="../Project/Project.py" line="6044" /> + <location filename="../Project/Project.py" line="6104" /> + <location filename="../Project/Project.py" line="6045" /> <location filename="../Project/Project.py" line="4719" /> <source>Create Package List</source> <translation type="unfinished" /> @@ -56386,7 +56409,7 @@ <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6172" /> + <location filename="../Project/Project.py" line="6173" /> <location filename="../Project/Project.py" line="4742" /> <source>Create Plugin Archives</source> <translation type="unfinished" /> @@ -56427,9 +56450,9 @@ <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6589" /> - <location filename="../Project/Project.py" line="6560" /> - <location filename="../Project/Project.py" line="6511" /> + <location filename="../Project/Project.py" line="6590" /> + <location filename="../Project/Project.py" line="6561" /> + <location filename="../Project/Project.py" line="6512" /> <location filename="../Project/Project.py" line="4795" /> <source>Execute Make</source> <translation type="unfinished" /> @@ -56450,7 +56473,7 @@ <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6566" /> + <location filename="../Project/Project.py" line="6567" /> <location filename="../Project/Project.py" line="4814" /> <source>Test for Changes</source> <translation type="unfinished" /> @@ -56491,7 +56514,7 @@ <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6744" /> + <location filename="../Project/Project.py" line="6745" /> <location filename="../Project/Project.py" line="4871" /> <source>About Black</source> <translation type="unfinished" /> @@ -56739,195 +56762,195 @@ <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5275" /> - <location filename="../Project/Project.py" line="5272" /> + <location filename="../Project/Project.py" line="5276" /> + <location filename="../Project/Project.py" line="5273" /> <source>Project</source> <translation>Projeto</translation> </message> <message> - <location filename="../Project/Project.py" line="5338" /> + <location filename="../Project/Project.py" line="5339" /> <source>&Clear</source> <translation>&Limpar</translation> </message> <message> - <location filename="../Project/Project.py" line="5497" /> - <source>Search New Files</source> - <translation>Procurar Ficheiros Novos</translation> - </message> - <message> <location filename="../Project/Project.py" line="5498" /> + <source>Search New Files</source> + <translation>Procurar Ficheiros Novos</translation> + </message> + <message> + <location filename="../Project/Project.py" line="5499" /> <source>There were no new files found to be added.</source> <translation>Não se encontraram ficheiros novos para adicionar.</translation> </message> <message> - <location filename="../Project/Project.py" line="5649" /> - <location filename="../Project/Project.py" line="5636" /> - <source>Version Control System</source> - <translation>Sistema de Control de Versão</translation> - </message> - <message> - <location filename="../Project/Project.py" line="5637" /> - <source><p>The selected VCS <b>{0}</b> could not be found. <br/>Reverting override.</p><p>{1}</p></source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Project/Project.py" line="5650" /> + <location filename="../Project/Project.py" line="5637" /> + <source>Version Control System</source> + <translation>Sistema de Control de Versão</translation> + </message> + <message> + <location filename="../Project/Project.py" line="5638" /> + <source><p>The selected VCS <b>{0}</b> could not be found. <br/>Reverting override.</p><p>{1}</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Project/Project.py" line="5651" /> <source><p>The selected VCS <b>{0}</b> could not be found.<br/>Disabling version control.</p><p>{1}</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5798" /> + <location filename="../Project/Project.py" line="5799" /> <source>Coverage Data</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5844" /> - <location filename="../Project/Project.py" line="5799" /> + <location filename="../Project/Project.py" line="5845" /> + <location filename="../Project/Project.py" line="5800" /> <source>There is no main script defined for the current project. Aborting</source> <translation>O projeto atual não tem um script principal definido. A cancelar</translation> </message> <message> - <location filename="../Project/Project.py" line="5811" /> - <source>Code Coverage</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Project/Project.py" line="5812" /> + <source>Code Coverage</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Project/Project.py" line="5813" /> <source>Please select a coverage file</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5857" /> + <location filename="../Project/Project.py" line="5858" /> <source>Please select a profile file</source> <translation>Escolha um ficheiro de perfil por favor</translation> </message> <message> - <location filename="../Project/Project.py" line="5909" /> + <location filename="../Project/Project.py" line="5910" /> <source>Include module names?</source> <translation>Incluir nomes de módulos?</translation> </message> <message> - <location filename="../Project/Project.py" line="6045" /> + <location filename="../Project/Project.py" line="6046" /> <source><p>The file <b>PKGLIST</b> already exists.</p><p>Overwrite it?</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6104" /> + <location filename="../Project/Project.py" line="6105" /> <source><p>The file <b>PKGLIST</b> could not be created.</p><p>Reason: {0}</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6393" /> - <location filename="../Project/Project.py" line="6351" /> - <location filename="../Project/Project.py" line="6305" /> - <location filename="../Project/Project.py" line="6294" /> - <location filename="../Project/Project.py" line="6276" /> - <location filename="../Project/Project.py" line="6243" /> - <location filename="../Project/Project.py" line="6213" /> - <location filename="../Project/Project.py" line="6185" /> - <location filename="../Project/Project.py" line="6155" /> - <location filename="../Project/Project.py" line="6141" /> - <location filename="../Project/Project.py" line="6124" /> + <location filename="../Project/Project.py" line="6394" /> + <location filename="../Project/Project.py" line="6352" /> + <location filename="../Project/Project.py" line="6306" /> + <location filename="../Project/Project.py" line="6295" /> + <location filename="../Project/Project.py" line="6277" /> + <location filename="../Project/Project.py" line="6244" /> + <location filename="../Project/Project.py" line="6214" /> + <location filename="../Project/Project.py" line="6186" /> + <location filename="../Project/Project.py" line="6156" /> + <location filename="../Project/Project.py" line="6142" /> + <location filename="../Project/Project.py" line="6125" /> <source>Create Plugin Archive</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6125" /> + <location filename="../Project/Project.py" line="6126" /> <source>The project does not have a main script defined. Aborting...</source> <translation>O projeto atual não tem um script principal definido. A cancelar...</translation> </message> <message> - <location filename="../Project/Project.py" line="6142" /> + <location filename="../Project/Project.py" line="6143" /> <source>Select package lists:</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6156" /> + <location filename="../Project/Project.py" line="6157" /> <source><p>No package list files (PKGLIST*) available or selected. Aborting...</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6164" /> - <source>Creating plugin archives...</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Project/Project.py" line="6165" /> + <source>Creating plugin archives...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Project/Project.py" line="6166" /> <source>Abort</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6168" /> + <location filename="../Project/Project.py" line="6169" /> <source>%v/%m Archives</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6186" /> + <location filename="../Project/Project.py" line="6187" /> <source><p>The file <b>{0}</b> could not be read.</p><p>Reason: {1}</p></source> <translation type="unfinished"><p>O ficheiro <b>{0}</b> não se pôde ler. </p><p>Motivo: {1}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="6214" /> + <location filename="../Project/Project.py" line="6215" /> <source><p>The file <b>{0}</b> is not ready yet.</p><p>Please rework it and delete the'; initial_list' line of the header.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6244" /> + <location filename="../Project/Project.py" line="6245" /> <source><p>The eric plugin archive file <b>{0}</b> could not be created.</p><p>Reason: {1}</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6277" /> + <location filename="../Project/Project.py" line="6278" /> <source><p>The file <b>{0}</b> could not be stored in the archive. Ignoring it.</p><p>Reason: {1}</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6295" /> + <location filename="../Project/Project.py" line="6296" /> <source><p>The eric plugin archive files were created with some errors.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6306" /> + <location filename="../Project/Project.py" line="6307" /> <source><p>The eric plugin archive files were created successfully.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6352" /> + <location filename="../Project/Project.py" line="6353" /> <source><p>The plugin file <b>{0}</b> could not be read.</p><p>Reason: {1}</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6394" /> + <location filename="../Project/Project.py" line="6395" /> <source><p>The plugin file <b>{0}</b> could not be read.</p> <p>Reason: {1}</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6512" /> + <location filename="../Project/Project.py" line="6513" /> <source>The make process did not start.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6561" /> + <location filename="../Project/Project.py" line="6562" /> <source>The make process crashed.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6569" /> + <location filename="../Project/Project.py" line="6570" /> <source><p>There are changes that require the configured make target <b>{0}</b> to be rebuilt.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6574" /> + <location filename="../Project/Project.py" line="6575" /> <source><p>There are changes that require the default make target to be rebuilt.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6590" /> + <location filename="../Project/Project.py" line="6591" /> <source>The makefile contains errors.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6745" /> + <location filename="../Project/Project.py" line="6746" /> <source><p><b>Black Version {0}</b></p><p><i>Black</i> is the uncompromising Python code formatter.</p></source> <translation type="unfinished" /> </message> @@ -57787,10 +57810,10 @@ <translation type="unfinished">Abrir no Editor</translation> </message> <message> - <location filename="../Project/ProjectOthersBrowser.py" line="353" /> - <location filename="../Project/ProjectOthersBrowser.py" line="345" /> - <location filename="../Project/ProjectOthersBrowser.py" line="335" /> - <location filename="../Project/ProjectOthersBrowser.py" line="327" /> + <location filename="../Project/ProjectOthersBrowser.py" line="357" /> + <location filename="../Project/ProjectOthersBrowser.py" line="349" /> + <location filename="../Project/ProjectOthersBrowser.py" line="339" /> + <location filename="../Project/ProjectOthersBrowser.py" line="331" /> <location filename="../Project/ProjectOthersBrowser.py" line="85" /> <source>Show Mime-Type</source> <translation type="unfinished">Mostrar Tipos MIME</translation> @@ -57864,28 +57887,28 @@ <translation>Configurar...</translation> </message> <message> - <location filename="../Project/ProjectOthersBrowser.py" line="328" /> + <location filename="../Project/ProjectOthersBrowser.py" line="332" /> <source>The mime type of the file could not be determined.</source> <translation type="unfinished">O tipo MIME do ficheiro não pôde ser identificado.</translation> </message> <message> - <location filename="../Project/ProjectOthersBrowser.py" line="346" /> - <location filename="../Project/ProjectOthersBrowser.py" line="336" /> + <location filename="../Project/ProjectOthersBrowser.py" line="350" /> + <location filename="../Project/ProjectOthersBrowser.py" line="340" /> <source>The file has the mime type <b>{0}</b>.</source> <translation type="unfinished">O ficheiro tem o tipo MIME <b>{0}</b>.</translation> </message> <message> - <location filename="../Project/ProjectOthersBrowser.py" line="354" /> + <location filename="../Project/ProjectOthersBrowser.py" line="358" /> <source>The file has the mime type <b>{0}</b>.<br/> Shall it be added to the list of text mime types?</source> <translation type="unfinished">O ficheiro tem o tipo MIME <b>{0}</b>.<br/>Deverá ser adicionado à lista de tipos MIME de texto?</translation> </message> <message> - <location filename="../Project/ProjectOthersBrowser.py" line="447" /> + <location filename="../Project/ProjectOthersBrowser.py" line="451" /> <source>Delete files/directories</source> <translation>Apagar ficheiros/diretórios</translation> </message> <message> - <location filename="../Project/ProjectOthersBrowser.py" line="448" /> + <location filename="../Project/ProjectOthersBrowser.py" line="452" /> <source>Do you really want to delete these entries from the project?</source> <translation>Tem a certeza de que quer apagar estas entradas do projeto?</translation> </message> @@ -85047,60 +85070,60 @@ <translation type="unfinished" /> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="901" /> + <location filename="../Debugger/VariablesViewer.py" line="904" /> <source>Global Variables</source> <translation>Variáveis Globais</translation> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="903" /> + <location filename="../Debugger/VariablesViewer.py" line="906" /> <source><b>The Global Variables Viewer Window</b><p>This window displays the global variables of the debugged program.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="910" /> + <location filename="../Debugger/VariablesViewer.py" line="913" /> <source>Local Variables</source> <translation>Variáveis Locais</translation> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="912" /> + <location filename="../Debugger/VariablesViewer.py" line="915" /> <source><b>The Local Variables Viewer Window</b><p>This window displays the local variables of the debugged program.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="1030" /> + <location filename="../Debugger/VariablesViewer.py" line="1039" /> <source>Show Details...</source> <translation>Mostrar Detalhes...</translation> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="1032" /> + <location filename="../Debugger/VariablesViewer.py" line="1041" /> <source>Expand</source> <translation type="unfinished" /> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="1033" /> - <source>Collapse</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Debugger/VariablesViewer.py" line="1034" /> - <source>Collapse All</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Debugger/VariablesViewer.py" line="1042" /> - <location filename="../Debugger/VariablesViewer.py" line="1036" /> + <source>Collapse</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Debugger/VariablesViewer.py" line="1043" /> + <source>Collapse All</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Debugger/VariablesViewer.py" line="1051" /> + <location filename="../Debugger/VariablesViewer.py" line="1045" /> <source>Refresh</source> <translation type="unfinished">Atualizar</translation> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="1044" /> - <location filename="../Debugger/VariablesViewer.py" line="1038" /> + <location filename="../Debugger/VariablesViewer.py" line="1053" /> + <location filename="../Debugger/VariablesViewer.py" line="1047" /> <source>Configure...</source> <translation>Configurar...</translation> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="1046" /> - <location filename="../Debugger/VariablesViewer.py" line="1039" /> + <location filename="../Debugger/VariablesViewer.py" line="1055" /> + <location filename="../Debugger/VariablesViewer.py" line="1048" /> <source>Variables Type Filter...</source> <translation type="unfinished" /> </message> @@ -95616,12 +95639,12 @@ <context> <name>eric7_ide</name> <message> - <location filename="../eric7_ide.py" line="394" /> + <location filename="../eric7_ide.py" line="395" /> <source>Starting...</source> <translation type="unfinished">A iniciar...</translation> </message> <message> - <location filename="../eric7_ide.py" line="400" /> + <location filename="../eric7_ide.py" line="401" /> <source>Generating Main Window...</source> <translation type="unfinished">A criar a Janela Principal...</translation> </message>
--- a/src/eric7/i18n/eric7_ru.ts Fri Oct 14 14:46:40 2022 +0200 +++ b/src/eric7/i18n/eric7_ru.ts Fri Oct 14 17:02:09 2022 +0200 @@ -1818,17 +1818,17 @@ <translation>Ошибка фонового клиента остановила сервис.</translation> </message> <message> - <location filename="../Utilities/BackgroundService.py" line="488" /> + <location filename="../Utilities/BackgroundService.py" line="487" /> <source>Eric's background client disconnected because of an unknown reason.</source> <translation>Фоновый клиент Eric'а прервал соединение по неизвестной причине.</translation> </message> <message> + <location filename="../Utilities/BackgroundService.py" line="496" /> + <source>Background client disconnected.</source> + <translation>Соединение фонового клиента прервано.</translation> + </message> + <message> <location filename="../Utilities/BackgroundService.py" line="497" /> - <source>Background client disconnected.</source> - <translation>Соединение фонового клиента прервано.</translation> - </message> - <message> - <location filename="../Utilities/BackgroundService.py" line="498" /> <source>The background client for <b>{0}</b> disconnected because of an unknown reason.<br>Should it be restarted?</source> <translation>Соединение фонового клиента <b>{0}</b> прервано по неизвестной причине.<br>Перезапустить клиента?</translation> </message> @@ -8923,13 +8923,13 @@ <translation>Отображение дизассемблированного кода в случае исключения.</translation> </message> <message> - <location filename="../Debugger/DebugViewer.py" line="754" /> + <location filename="../Debugger/DebugViewer.py" line="756" /> <source><p>Debugger with ID <b>{0}</b> has been connected.</p></source> <translation><p>Подключен отладчик с ID <b>{0}</b>.</p></translation> </message> <message> - <location filename="../Debugger/DebugViewer.py" line="997" /> - <location filename="../Debugger/DebugViewer.py" line="869" /> + <location filename="../Debugger/DebugViewer.py" line="999" /> + <location filename="../Debugger/DebugViewer.py" line="871" /> <source>unknown state ({0})</source> <translation>неизвестное состояние ({0})</translation> </message> @@ -9622,7 +9622,7 @@ <translation>Не устанавливать кодировку клиента отладки</translation> </message> <message> - <location filename="../Project/DebuggerPropertiesDialog.py" line="127" /> + <location filename="../Project/DebuggerPropertiesDialog.py" line="133" /> <source>All Files (*)</source> <translation>Все файлы (*)</translation> </message> @@ -11203,948 +11203,960 @@ <context> <name>Editor</name> <message> - <location filename="../QScintilla/Editor.py" line="3245" /> - <location filename="../QScintilla/Editor.py" line="406" /> + <location filename="../QScintilla/Editor.py" line="3268" /> + <location filename="../QScintilla/Editor.py" line="431" /> + <location filename="../QScintilla/Editor.py" line="416" /> + <location filename="../QScintilla/Editor.py" line="404" /> <source>Open File</source> <translation>Открыть файл</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="407" /> + <location filename="../QScintilla/Editor.py" line="405" /> + <source><p>The file <b>{0}</b> is not a text file. It will not be opened!</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="417" /> + <source><p>The size of the file <b>{0}</b> is <b>{1} KB</b> and exceeds the configured limit of <b>{2} KB</b>. It will not be opened!</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="432" /> <source><p>The size of the file <b>{0}</b> is <b>{1} KB</b>. Do you really want to load it?</p></source> <translation><p>Файл <b>{0}</b> занимает <b>{1} KB</b>. Вы действительно хотите его загрузить?</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="505" /> + <location filename="../QScintilla/Editor.py" line="528" /> <source><b>A Source Editor Window</b><p>This window is used to display and edit a source file. You can open as many of these as you like. The name of the file is displayed in the window's titlebar.</p><p>In order to set breakpoints just click in the space between the line numbers and the fold markers. Via the context menu of the margins they may be edited.</p><p>In order to set bookmarks just Shift click in the space between the line numbers and the fold markers.</p><p>These actions can be reversed via the context menu.</p><p>Ctrl clicking on a syntax error marker shows some info about this error.</p></source> <translation><b>Окно редактора</b><p>Это окно используется для просмотра и редактирования исходных текстов приложений. Вы можете открыть несколько окон одновременно. Имя редактируемого файла отображается в заголовке окна.</p><p>Чтобы установить точку останова - кликните в пространство между номером строки и панелью свёртки на нужной строке. Появившийся маркер точки останова можно настроить через контекстное меню.</p><p>Чтобы установить закладку кликните в пространство между номером строки и панелью свёртки на нужной строке при нажатой клавише Shift.</p><p>Эти действия можно отменить через контекстное меню.</p><p>Если при нажатой клавише Ctrl кликнуть на маркер синтаксической ошибки, то будет показана дополнительная информация об ошибке.</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="833" /> + <location filename="../QScintilla/Editor.py" line="856" /> <source>Undo</source> <translation>Отменить</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="836" /> + <location filename="../QScintilla/Editor.py" line="859" /> <source>Redo</source> <translation>Повторить</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="839" /> + <location filename="../QScintilla/Editor.py" line="862" /> <source>Revert to last saved state</source> <translation>Вернуть к последнему записанному состоянию</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="843" /> + <location filename="../QScintilla/Editor.py" line="866" /> <source>Cut</source> <translation>Вырезать</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="846" /> + <location filename="../QScintilla/Editor.py" line="869" /> <source>Copy</source> <translation>Копировать</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="849" /> + <location filename="../QScintilla/Editor.py" line="872" /> <source>Paste</source> <translation>Вставить</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="855" /> - <source>Indent</source> - <translation>Увеличить отступ</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="860" /> - <source>Unindent</source> - <translation>Уменьшить отступ</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="865" /> - <source>Comment</source> - <translation>Закомментировать</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="870" /> - <source>Uncomment</source> - <translation>Раскомментировать</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="8934" /> - <location filename="../QScintilla/Editor.py" line="875" /> - <source>Generate Docstring</source> - <translation>Генерировать строки документации</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="878" /> + <source>Indent</source> + <translation>Увеличить отступ</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="883" /> + <source>Unindent</source> + <translation>Уменьшить отступ</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="888" /> + <source>Comment</source> + <translation>Закомментировать</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="893" /> + <source>Uncomment</source> + <translation>Раскомментировать</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="8957" /> + <location filename="../QScintilla/Editor.py" line="898" /> + <source>Generate Docstring</source> + <translation>Генерировать строки документации</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="901" /> <source>Select to brace</source> <translation>Выбрать до скобки</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="879" /> + <location filename="../QScintilla/Editor.py" line="902" /> <source>Select all</source> <translation>Выделить всё</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="880" /> + <location filename="../QScintilla/Editor.py" line="903" /> <source>Deselect all</source> <translation>Снять выделение</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="882" /> + <location filename="../QScintilla/Editor.py" line="905" /> <source>Execute Selection In Console</source> <translation>Выполнить выбор в консоли</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="894" /> + <location filename="../QScintilla/Editor.py" line="917" /> <source>Use Monospaced Font</source> <translation>Использовать моноширинный шрифт</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="899" /> + <location filename="../QScintilla/Editor.py" line="922" /> <source>Autosave enabled</source> <translation>Автосохранение разрешено</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="904" /> + <location filename="../QScintilla/Editor.py" line="927" /> <source>Typing aids enabled</source> <translation>Разрешить помощь при наборе</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="912" /> + <location filename="../QScintilla/Editor.py" line="935" /> <source>Automatic Completion enabled</source> <translation>Автоматическое дополнение</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="921" /> - <source>Calltip</source> - <translation>Подсказка</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="924" /> - <source>Code Info</source> - <translation>Инфо для кода</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="939" /> - <source>New Document View</source> - <translation>Новое окно для документа</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="944" /> + <source>Calltip</source> + <translation>Подсказка</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="947" /> + <source>Code Info</source> + <translation>Инфо для кода</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="962" /> + <source>New Document View</source> + <translation>Новое окно для документа</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="967" /> <source>New Document View (with new split)</source> <translation>Новое окно для документа (в новом разделе)</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="952" /> + <location filename="../QScintilla/Editor.py" line="975" /> <source>Save</source> <translation>Сохранить</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="956" /> + <location filename="../QScintilla/Editor.py" line="979" /> <source>Save As...</source> <translation>Сохранить как...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="961" /> + <location filename="../QScintilla/Editor.py" line="984" /> <source>Save Copy...</source> <translation>Сохранить копию...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="983" /> - <location filename="../QScintilla/Editor.py" line="980" /> + <location filename="../QScintilla/Editor.py" line="1006" /> + <location filename="../QScintilla/Editor.py" line="1003" /> <source>Complete</source> <translation>Дополнить</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="987" /> + <location filename="../QScintilla/Editor.py" line="1010" /> <source>Clear Completions Cache</source> <translation>Очистить кэш дополнений</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="990" /> + <location filename="../QScintilla/Editor.py" line="1013" /> <source>Complete from Document</source> <translation>Дополнение из документа</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="992" /> + <location filename="../QScintilla/Editor.py" line="1015" /> <source>Complete from APIs</source> <translation>Дополнение из API</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="995" /> + <location filename="../QScintilla/Editor.py" line="1018" /> <source>Complete from Document and APIs</source> <translation>Дополнение из документа и API</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1009" /> + <location filename="../QScintilla/Editor.py" line="1032" /> <source>Check</source> <translation>Проверки</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1020" /> + <location filename="../QScintilla/Editor.py" line="1043" /> <source>Code Formatting</source> <translation>Форматирование кода</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1023" /> - <source>Format Code</source> - <translation>Форматировать код</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1027" /> - <source>Check Formatting</source> - <translation>Проверить форматирование</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1031" /> - <source>Formatting Diff</source> - <translation>Различия форматирования</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="1046" /> + <source>Format Code</source> + <translation>Форматировать код</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1050" /> + <source>Check Formatting</source> + <translation>Проверить форматирование</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1054" /> + <source>Formatting Diff</source> + <translation>Различия форматирования</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1069" /> <source>Tools</source> <translation>Инструменты</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1057" /> + <location filename="../QScintilla/Editor.py" line="1080" /> <source>Show</source> <translation>Показать</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1059" /> + <location filename="../QScintilla/Editor.py" line="1082" /> <source>Code metrics...</source> <translation>Метрики кода...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1061" /> + <location filename="../QScintilla/Editor.py" line="1084" /> <source>Code coverage...</source> <translation>Покрытие кода...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1064" /> - <source>Show code coverage annotations</source> - <translation>Показать аннотации по покрытию кода</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1067" /> - <source>Hide code coverage annotations</source> - <translation>Не показывать аннотации по покрытию кода</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1071" /> - <source>Profile data...</source> - <translation>Данные профайлера...</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1085" /> - <source>Diagrams</source> - <translation>Диаграммы</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="1087" /> + <source>Show code coverage annotations</source> + <translation>Показать аннотации по покрытию кода</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1090" /> + <source>Hide code coverage annotations</source> + <translation>Не показывать аннотации по покрытию кода</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1094" /> + <source>Profile data...</source> + <translation>Данные профайлера...</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1108" /> + <source>Diagrams</source> + <translation>Диаграммы</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1110" /> <source>Class Diagram...</source> <translation>Диаграмма классов...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1088" /> - <source>Package Diagram...</source> - <translation>Диаграмма пакетов...</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1089" /> - <source>Imports Diagram...</source> - <translation>Диаграмма импортирования...</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1091" /> - <source>Application Diagram...</source> - <translation>Диаграмма приложения...</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1096" /> - <source>Load Diagram...</source> - <translation>Загрузить диаграмму...</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="1111" /> + <source>Package Diagram...</source> + <translation>Диаграмма пакетов...</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1112" /> + <source>Imports Diagram...</source> + <translation>Диаграмма импортирования...</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1114" /> + <source>Application Diagram...</source> + <translation>Диаграмма приложения...</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1119" /> + <source>Load Diagram...</source> + <translation>Загрузить диаграмму...</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1134" /> <source>Languages</source> <translation>Языки</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1115" /> + <location filename="../QScintilla/Editor.py" line="1138" /> <source>Text</source> <translation>Текст</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1140" /> + <location filename="../QScintilla/Editor.py" line="1163" /> <source>Guessed</source> <translation>Предполагаемый язык</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1471" /> - <location filename="../QScintilla/Editor.py" line="1144" /> + <location filename="../QScintilla/Editor.py" line="1494" /> + <location filename="../QScintilla/Editor.py" line="1167" /> <source>Alternatives</source> <translation>Альтернативная подсветка</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1161" /> - <source>Encodings</source> - <translation>Кодировки</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="1184" /> + <source>Encodings</source> + <translation>Кодировки</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1207" /> <source>Re-Open With Encoding</source> <translation>Открыть заново с кодировкой</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1204" /> + <location filename="../QScintilla/Editor.py" line="1227" /> <source>End-of-Line Type</source> <translation>Тип конца строки</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1208" /> + <location filename="../QScintilla/Editor.py" line="1231" /> <source>Unix</source> <translation>Unix</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1214" /> + <location filename="../QScintilla/Editor.py" line="1237" /> <source>Windows</source> <translation>Windows</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1220" /> + <location filename="../QScintilla/Editor.py" line="1243" /> <source>Macintosh</source> <translation>Macintosh</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1238" /> + <location filename="../QScintilla/Editor.py" line="1261" /> <source>Spelling</source> <translation>Проверка орфографии</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8052" /> - <location filename="../QScintilla/Editor.py" line="1246" /> + <location filename="../QScintilla/Editor.py" line="8075" /> + <location filename="../QScintilla/Editor.py" line="1269" /> <source>Check spelling...</source> <translation>Проверка орфографии...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1251" /> + <location filename="../QScintilla/Editor.py" line="1274" /> <source>Check spelling of selection...</source> <translation>Проверка орфографии выделенного участка...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1255" /> + <location filename="../QScintilla/Editor.py" line="1278" /> <source>Remove from dictionary</source> <translation>Удалить из словаря</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1272" /> + <location filename="../QScintilla/Editor.py" line="1295" /> <source>Spell Check Languages</source> <translation>Языки проверки правописания</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1276" /> + <location filename="../QScintilla/Editor.py" line="1299" /> <source>No Language</source> <translation>Нет языка</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1303" /> + <location filename="../QScintilla/Editor.py" line="1326" /> <source>Toggle bookmark</source> <translation>Создать/Удалить закладку</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1305" /> - <source>Next bookmark</source> - <translation>Следующая закладка</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1308" /> - <source>Previous bookmark</source> - <translation>Предыдущая закладка</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1311" /> - <source>Clear all bookmarks</source> - <translation>Очистить все закладки</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1322" /> - <source>Toggle breakpoint</source> - <translation>Поставить/убрать точку останова</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1325" /> - <source>Toggle temporary breakpoint</source> - <translation>Поставить/убрать временную точку останова</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="1328" /> - <source>Edit breakpoint...</source> - <translation>Редактировать точку останова...</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="5754" /> + <source>Next bookmark</source> + <translation>Следующая закладка</translation> + </message> + <message> <location filename="../QScintilla/Editor.py" line="1331" /> - <source>Enable breakpoint</source> - <translation>Установить точку останова</translation> + <source>Previous bookmark</source> + <translation>Предыдущая закладка</translation> </message> <message> <location filename="../QScintilla/Editor.py" line="1334" /> - <source>Next breakpoint</source> - <translation>Следующая точка останова</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1337" /> - <source>Previous breakpoint</source> - <translation>Предыдущая точка останова</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1340" /> - <source>Clear all breakpoints</source> - <translation>Убрать все точки останова</translation> + <source>Clear all bookmarks</source> + <translation>Очистить все закладки</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1345" /> + <source>Toggle breakpoint</source> + <translation>Поставить/убрать точку останова</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1348" /> + <source>Toggle temporary breakpoint</source> + <translation>Поставить/убрать временную точку останова</translation> </message> <message> <location filename="../QScintilla/Editor.py" line="1351" /> - <source>Toggle all folds</source> - <translation>Свернуть/Развернуть все свертки</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1356" /> - <source>Toggle all folds (including children)</source> - <translation>Свернуть/Развернуть все свёртки (включая дочерние)</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1359" /> - <source>Toggle current fold</source> - <translation>Свернуть/Развернуть текущую свертку</translation> + <source>Edit breakpoint...</source> + <translation>Редактировать точку останова...</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="5777" /> + <location filename="../QScintilla/Editor.py" line="1354" /> + <source>Enable breakpoint</source> + <translation>Установить точку останова</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1357" /> + <source>Next breakpoint</source> + <translation>Следующая точка останова</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1360" /> + <source>Previous breakpoint</source> + <translation>Предыдущая точка останова</translation> </message> <message> <location filename="../QScintilla/Editor.py" line="1363" /> - <source>Expand (including children)</source> - <translation>Развернуть (включая дочерние)</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1367" /> - <source>Collapse (including children)</source> - <translation>Свернуть (включая дочерние)</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1372" /> - <source>Clear all folds</source> - <translation>Очистить все свертки</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1383" /> - <source>Goto syntax error</source> - <translation>Перейти к синтаксической ошибке</translation> + <source>Clear all breakpoints</source> + <translation>Убрать все точки останова</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1374" /> + <source>Toggle all folds</source> + <translation>Свернуть/Развернуть все свертки</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1379" /> + <source>Toggle all folds (including children)</source> + <translation>Свернуть/Развернуть все свёртки (включая дочерние)</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1382" /> + <source>Toggle current fold</source> + <translation>Свернуть/Развернуть текущую свертку</translation> </message> <message> <location filename="../QScintilla/Editor.py" line="1386" /> - <source>Show syntax error message</source> - <translation>Показать сообщение о синтаксической ошибке</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1389" /> - <source>Clear syntax error</source> - <translation>Очистить синтаксическую ошибку</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1393" /> - <source>Next warning</source> - <translation>Следующее предупреждение</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1396" /> - <source>Previous warning</source> - <translation>Предыдущее предупреждение</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1399" /> - <source>Show warning message</source> - <translation>Показать предупреждение</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1402" /> - <source>Clear warnings</source> - <translation>Очистить предупреждения</translation> + <source>Expand (including children)</source> + <translation>Развернуть (включая дочерние)</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1390" /> + <source>Collapse (including children)</source> + <translation>Свернуть (включая дочерние)</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1395" /> + <source>Clear all folds</source> + <translation>Очистить все свертки</translation> </message> <message> <location filename="../QScintilla/Editor.py" line="1406" /> - <source>Next uncovered line</source> - <translation>Следующая неохваченная строка</translation> + <source>Goto syntax error</source> + <translation>Перейти к синтаксической ошибке</translation> </message> <message> <location filename="../QScintilla/Editor.py" line="1409" /> - <source>Previous uncovered line</source> - <translation>Предыдущая неохваченная строка</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1413" /> - <source>Next task</source> - <translation>Следующая задача</translation> + <source>Show syntax error message</source> + <translation>Показать сообщение о синтаксической ошибке</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1412" /> + <source>Clear syntax error</source> + <translation>Очистить синтаксическую ошибку</translation> </message> <message> <location filename="../QScintilla/Editor.py" line="1416" /> + <source>Next warning</source> + <translation>Следующее предупреждение</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1419" /> + <source>Previous warning</source> + <translation>Предыдущее предупреждение</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1422" /> + <source>Show warning message</source> + <translation>Показать предупреждение</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1425" /> + <source>Clear warnings</source> + <translation>Очистить предупреждения</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1429" /> + <source>Next uncovered line</source> + <translation>Следующая неохваченная строка</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1432" /> + <source>Previous uncovered line</source> + <translation>Предыдущая неохваченная строка</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1436" /> + <source>Next task</source> + <translation>Следующая задача</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1439" /> <source>Previous task</source> <translation>Предыдущая задача</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1420" /> + <location filename="../QScintilla/Editor.py" line="1443" /> <source>Next change</source> <translation>Следующее изменение</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1423" /> + <location filename="../QScintilla/Editor.py" line="1446" /> <source>Previous change</source> <translation>Предыдущее изменение</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1426" /> - <source>Clear changes</source> - <translation>Очистить изменения</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1457" /> - <location filename="../QScintilla/Editor.py" line="1448" /> - <source>Export source</source> - <translation>Экспортировать исходник</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="1449" /> + <source>Clear changes</source> + <translation>Очистить изменения</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1480" /> + <location filename="../QScintilla/Editor.py" line="1471" /> + <source>Export source</source> + <translation>Экспортировать исходник</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1472" /> <source><p>No exporter available for the export format <b>{0}</b>. Aborting...</p></source> <translation><p>Не найден экспортёр для формата <b>{0}</b>. Отмена...</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1458" /> + <location filename="../QScintilla/Editor.py" line="1481" /> <source>No export format given. Aborting...</source> <translation>Не задан формат экспорта. Прерывание...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1468" /> - <source>Alternatives ({0})</source> - <translation>Альтернативы ({0})</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="1491" /> + <source>Alternatives ({0})</source> + <translation>Альтернативы ({0})</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1514" /> <source>Pygments Lexer</source> <translation>Лексер Pygments</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1492" /> + <location filename="../QScintilla/Editor.py" line="1515" /> <source>Select the Pygments lexer to apply.</source> <translation>Выберите для использования лексер Pygments.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2051" /> + <location filename="../QScintilla/Editor.py" line="2074" /> <source>Modification of Read Only file</source> <translation>Редактирование файла, открытого только на чтение</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2052" /> + <location filename="../QScintilla/Editor.py" line="2075" /> <source>You are attempting to change a read only file. Please save to a different file first.</source> <translation>Попытка редактирования файла, открытого только на чтение. Пожалуйста, сначала сохраните изменения в другой файл.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2473" /> + <location filename="../QScintilla/Editor.py" line="2496" /> <source>Add Breakpoint</source> <translation>Добавить точку останова</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2474" /> + <location filename="../QScintilla/Editor.py" line="2497" /> <source>No Python byte code will be created for the selected line. No break point will be set!</source> <translation>Не будет создан байтовый код Python для выбранной строки. Точка останова не будет установлена!</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2807" /> + <location filename="../QScintilla/Editor.py" line="2830" /> <source>Printing...</source> <translation>Печать...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2824" /> + <location filename="../QScintilla/Editor.py" line="2847" /> <source>Printing completed</source> <translation>Печать завершена</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2826" /> + <location filename="../QScintilla/Editor.py" line="2849" /> <source>Error while printing</source> <translation>Ошибка печати</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2829" /> + <location filename="../QScintilla/Editor.py" line="2852" /> <source>Printing aborted</source> <translation>Печать прервана</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="3187" /> + <location filename="../QScintilla/Editor.py" line="3210" /> <source>File Modified</source> <translation>Файл изменён</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="3188" /> + <location filename="../QScintilla/Editor.py" line="3211" /> <source><p>The file <b>{0}</b> has unsaved changes.</p></source> <translation><p>В файле <b>{0}</b> есть несохранённые изменения.</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="3246" /> + <location filename="../QScintilla/Editor.py" line="3269" /> <source><p>The file <b>{0}</b> could not be opened.</p><p>Reason: {1}</p></source> <translation><p>Невозможно прочитать файл <b>{0}</b>.</p><p>Причина: {1}</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="3424" /> - <location filename="../QScintilla/Editor.py" line="3405" /> - <location filename="../QScintilla/Editor.py" line="3365" /> + <location filename="../QScintilla/Editor.py" line="3447" /> + <location filename="../QScintilla/Editor.py" line="3428" /> + <location filename="../QScintilla/Editor.py" line="3388" /> <source>Save File</source> <translation>Сохранить файл</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="3366" /> + <location filename="../QScintilla/Editor.py" line="3389" /> <source><p>The file <b>{0}</b> could not be saved.<br/>Reason: {1}</p></source> <translation><p>Невозможно сохранить файл <b>{0}</b>:<br>Причина: {1}.</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="3425" /> + <location filename="../QScintilla/Editor.py" line="3448" /> <source><p>The file <b>{0}</b> already exists. Overwrite it?</p></source> <translation><p>Файл <b>{0}</b> уже существует. Переписать?</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="4935" /> + <location filename="../QScintilla/Editor.py" line="4958" /> <source>Autocompletion</source> <translation>Автодополнение</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="4936" /> + <location filename="../QScintilla/Editor.py" line="4959" /> <source>Autocompletion is not available because there is no autocompletion source set.</source> <translation>Автодополнение недоступно, так как не задан источник автодополнения.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5064" /> + <location filename="../QScintilla/Editor.py" line="5087" /> <source>Auto-Completion Provider</source> <translation>Источник автодополнений</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5065" /> + <location filename="../QScintilla/Editor.py" line="5088" /> <source>The completion list provider '{0}' was already registered. Ignoring duplicate request.</source> <translation>Список дополнений источника '{0}' уже зарегистрирован. Повторный запрос проигнорирован.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5357" /> + <location filename="../QScintilla/Editor.py" line="5380" /> <source>Call-Tips Provider</source> <translation>Источник всплывающих подсказок</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5358" /> + <location filename="../QScintilla/Editor.py" line="5381" /> <source>The call-tips provider '{0}' was already registered. Ignoring duplicate request.</source> <translation>Источник всплывающих подсказок '{0}' уже зарегистрирован. Повторный запрос проигнорирован.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5758" /> + <location filename="../QScintilla/Editor.py" line="5781" /> <source>Disable breakpoint</source> <translation>Убрать точку останова</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6113" /> + <location filename="../QScintilla/Editor.py" line="6136" /> <source>Code Coverage</source> <translation>Покрытие кода</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6114" /> + <location filename="../QScintilla/Editor.py" line="6137" /> <source>Please select a coverage file</source> <translation>Пожалуйста, выберите файл покрытия</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6189" /> - <location filename="../QScintilla/Editor.py" line="6181" /> + <location filename="../QScintilla/Editor.py" line="6212" /> + <location filename="../QScintilla/Editor.py" line="6204" /> <source>Show Code Coverage Annotations</source> <translation>Показать аннотации по покрытию кода</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6182" /> + <location filename="../QScintilla/Editor.py" line="6205" /> <source>All lines have been covered.</source> <translation>Все строки были охвачены.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6190" /> + <location filename="../QScintilla/Editor.py" line="6213" /> <source>There is no coverage file available.</source> <translation>Нет доступного файла покрытия.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6286" /> + <location filename="../QScintilla/Editor.py" line="6309" /> <source>Profile Data</source> <translation>Данные профайлера</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6287" /> + <location filename="../QScintilla/Editor.py" line="6310" /> <source>Please select a profile file</source> <translation>Пожалуйста, выберите файл профиля</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6450" /> - <location filename="../QScintilla/Editor.py" line="6444" /> + <location filename="../QScintilla/Editor.py" line="6473" /> + <location filename="../QScintilla/Editor.py" line="6467" /> <source>Syntax Error</source> <translation>Синтаксическая ошибка</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6451" /> + <location filename="../QScintilla/Editor.py" line="6474" /> <source>No syntax error message available.</source> <translation>Нет сообщения о синтаксической ошибке.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6662" /> - <location filename="../QScintilla/Editor.py" line="6656" /> + <location filename="../QScintilla/Editor.py" line="6685" /> + <location filename="../QScintilla/Editor.py" line="6679" /> <source>Warning</source> <translation>Предупреждение</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6662" /> + <location filename="../QScintilla/Editor.py" line="6685" /> <source>No warning messages available.</source> <translation>Нет предупреждающего сообщения.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6726" /> + <location filename="../QScintilla/Editor.py" line="6749" /> <source>Style: {0}</source> <translation>Стиль: {0}</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6729" /> + <location filename="../QScintilla/Editor.py" line="6752" /> <source>Warning: {0}</source> <translation>Предупреждение: {0}</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6736" /> + <location filename="../QScintilla/Editor.py" line="6759" /> <source>Error: {0}</source> <translation>Ошибка: {0}</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6843" /> + <location filename="../QScintilla/Editor.py" line="6866" /> <source>Macro Name</source> <translation>Имя макроса</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6843" /> + <location filename="../QScintilla/Editor.py" line="6866" /> <source>Select a macro name:</source> <translation>Задайте имя макроса:</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6869" /> + <location filename="../QScintilla/Editor.py" line="6892" /> <source>Load macro file</source> <translation>Загрузить макрос</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6915" /> - <location filename="../QScintilla/Editor.py" line="6871" /> + <location filename="../QScintilla/Editor.py" line="6938" /> + <location filename="../QScintilla/Editor.py" line="6894" /> <source>Macro files (*.macro)</source> <translation>Макросы (*.macro)</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6893" /> - <location filename="../QScintilla/Editor.py" line="6883" /> + <location filename="../QScintilla/Editor.py" line="6916" /> + <location filename="../QScintilla/Editor.py" line="6906" /> <source>Error loading macro</source> <translation>Ошибка при загрузке макроса</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6884" /> + <location filename="../QScintilla/Editor.py" line="6907" /> <source><p>The macro file <b>{0}</b> could not be read.</p></source> <translation><p>Невозможно прочитать файл с макросами: <b>{0}</b>.</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6894" /> + <location filename="../QScintilla/Editor.py" line="6917" /> <source><p>The macro file <b>{0}</b> is corrupt.</p></source> <translation><p>Файл с макросами <b>{0}</b> повреждён.</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6913" /> + <location filename="../QScintilla/Editor.py" line="6936" /> <source>Save macro file</source> <translation>Сохранить файл с макросами</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6931" /> + <location filename="../QScintilla/Editor.py" line="6954" /> <source>Save macro</source> <translation>Сохранить макрос</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6932" /> + <location filename="../QScintilla/Editor.py" line="6955" /> <source><p>The macro file <b>{0}</b> already exists. Overwrite it?</p></source> <translation><p>Макро <b>{0}</b> уже существует. Переписать?</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6947" /> + <location filename="../QScintilla/Editor.py" line="6970" /> <source>Error saving macro</source> <translation>Ошибка при сохранении макроса</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6948" /> + <location filename="../QScintilla/Editor.py" line="6971" /> <source><p>The macro file <b>{0}</b> could not be written.</p></source> <translation><p>Невозможно сохранить файл с макросами: <b>{0}</b>.</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6961" /> + <location filename="../QScintilla/Editor.py" line="6984" /> <source>Start Macro Recording</source> <translation>Начать запись макроса</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6962" /> + <location filename="../QScintilla/Editor.py" line="6985" /> <source>Macro recording is already active. Start new?</source> <translation>Запись макроса уже идёт. Начать новую запись?</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6988" /> + <location filename="../QScintilla/Editor.py" line="7011" /> <source>Macro Recording</source> <translation>Запись макроса</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6989" /> + <location filename="../QScintilla/Editor.py" line="7012" /> <source>Enter name of the macro:</source> <translation>Задайте имя макроса:</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7140" /> + <location filename="../QScintilla/Editor.py" line="7163" /> <source><p>The file <b>{0}</b> has been changed while it was opened in eric. Reread it?</p></source> <translation><p>Файл <b>{0}</b> был изменён, будучи открытым в eric. Перепрочесть?</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7146" /> + <location filename="../QScintilla/Editor.py" line="7169" /> <source><br><b>Warning:</b> You will lose your changes upon reopening it.</source> <translation><br><b>Предупреждение:</b> При переоткрытии все изменения будут потеряны.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7153" /> + <location filename="../QScintilla/Editor.py" line="7176" /> <source>File changed</source> <translation>Файл изменен</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7203" /> + <location filename="../QScintilla/Editor.py" line="7226" /> <source>{0} (ro)</source> <translation>{0} (только чтение)</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7494" /> - <source>Drop Error</source> - <translation>Ошибка Drag&&Drop</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="7495" /> - <source><p><b>{0}</b> is not a file.</p></source> - <translation><p><b>{0}</b> не является файлом.</p></translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="7515" /> - <source>Resources</source> - <translation>Ресурсы</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="7517" /> - <source>Add file...</source> - <translation>Добавить файл...</translation> + <source>Drop Error</source> + <translation>Ошибка Drag&&Drop</translation> </message> <message> <location filename="../QScintilla/Editor.py" line="7518" /> + <source><p><b>{0}</b> is not a file.</p></source> + <translation><p><b>{0}</b> не является файлом.</p></translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="7538" /> + <source>Resources</source> + <translation>Ресурсы</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="7540" /> + <source>Add file...</source> + <translation>Добавить файл...</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="7541" /> <source>Add files...</source> <translation>Добавить файлы...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7519" /> + <location filename="../QScintilla/Editor.py" line="7542" /> <source>Add aliased file...</source> <translation>Добавить файл под другим именем...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7521" /> + <location filename="../QScintilla/Editor.py" line="7544" /> <source>Add localized resource...</source> <translation>Добавить локализованный ресурс...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7524" /> + <location filename="../QScintilla/Editor.py" line="7547" /> <source>Add resource frame</source> <translation>Добавить фрагмент ресурсов</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7543" /> + <location filename="../QScintilla/Editor.py" line="7566" /> <source>Add file resource</source> <translation>Добавить файл ресурсов</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7557" /> + <location filename="../QScintilla/Editor.py" line="7580" /> <source>Add file resources</source> <translation>Добавить файлы ресурсов</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7581" /> - <location filename="../QScintilla/Editor.py" line="7575" /> + <location filename="../QScintilla/Editor.py" line="7604" /> + <location filename="../QScintilla/Editor.py" line="7598" /> <source>Add aliased file resource</source> <translation>Добавить файл ресурсов под другим именем</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7582" /> + <location filename="../QScintilla/Editor.py" line="7605" /> <source>Alias for file <b>{0}</b>:</source> <translation>Другое имя для файла <b>{0}</b>:</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7657" /> + <location filename="../QScintilla/Editor.py" line="7680" /> <source>Package Diagram</source> <translation>Диаграмма пакетов</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7658" /> + <location filename="../QScintilla/Editor.py" line="7681" /> <source>Include class attributes?</source> <translation>Включать атрибуты класса?</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7678" /> + <location filename="../QScintilla/Editor.py" line="7701" /> <source>Imports Diagram</source> <translation>Диаграмма импортов</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7679" /> + <location filename="../QScintilla/Editor.py" line="7702" /> <source>Include imports from external modules?</source> <translation>Включать импорты из внешних модулей?</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7698" /> + <location filename="../QScintilla/Editor.py" line="7721" /> <source>Application Diagram</source> <translation>Диаграмма приложения</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7699" /> + <location filename="../QScintilla/Editor.py" line="7722" /> <source>Include module names?</source> <translation>Включать имена модулей?</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8056" /> + <location filename="../QScintilla/Editor.py" line="8079" /> <source>Add to dictionary</source> <translation>Добавить в словарь</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8058" /> + <location filename="../QScintilla/Editor.py" line="8081" /> <source>Ignore All</source> <translation>Игнорировать всё</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8476" /> + <location filename="../QScintilla/Editor.py" line="8499" /> <source>Sort Lines</source> <translation>Сортировать строки</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8477" /> + <location filename="../QScintilla/Editor.py" line="8500" /> <source>The selection contains illegal data for a numerical sort.</source> <translation>Выборка содержит данные неподходящие для сортировки как числа.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8570" /> + <location filename="../QScintilla/Editor.py" line="8593" /> <source>Register Mouse Click Handler</source> <translation>Регистрация обработчика кликов мышки</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8571" /> + <location filename="../QScintilla/Editor.py" line="8594" /> <source>A mouse click handler for "{0}" was already registered by "{1}". Aborting request by "{2}"...</source> <translation>Обработчик кликов мышки для "{0}" уже зарегистрирован "{1}". Запрос прерван "{2}"...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8667" /> + <location filename="../QScintilla/Editor.py" line="8690" /> <source>{0:4d} {1}</source> <comment>line number, source code</comment> <translation>{0:4d} {1}</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8673" /> + <location filename="../QScintilla/Editor.py" line="8696" /> <source>{0:4d} {1} => {2}</source> <comment>line number, source code, file name</comment> @@ -12152,12 +12164,12 @@ => {2}</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8741" /> + <location filename="../QScintilla/Editor.py" line="8764" /> <source>EditorConfig Properties</source> <translation>Свойства EditorConfig</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8742" /> + <location filename="../QScintilla/Editor.py" line="8765" /> <source><p>The EditorConfig properties for file <b>{0}</b> could not be loaded.</p></source> <translation><p>Не удается загрузить свойства EditorConfig для файла <b>{0}</b>.</p></translation> </message> @@ -13061,26 +13073,26 @@ <context> <name>EditorFilePage</name> <message> - <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="339" /> - <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="322" /> - <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="305" /> - <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="294" /> + <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="341" /> + <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="324" /> + <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="307" /> + <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="296" /> <source>Add File Filter</source> <translation>Добавить фильтр файлов</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="295" /> + <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="297" /> <source>A Save File Filter must contain exactly one wildcard pattern. Yours contains {0}.</source> <translation>Фильтр для сохранения файлов может содержать только один шаблон.</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="306" /> + <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="308" /> <source>A File Filter must contain at least one wildcard pattern.</source> <translation>Фильтр для файлов должен содержать по крайней мере один шаблон.</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="340" /> - <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="323" /> + <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="342" /> + <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="325" /> <source>Enter the file filter entry:</source> <translation>Введите фильтр для файлов:</translation> </message> @@ -13126,11 +13138,22 @@ </message> <message> <location filename="../Preferences/ConfigurationPages/EditorFilePage.ui" line="0" /> + <location filename="../Preferences/ConfigurationPages/EditorFilePage.ui" line="0" /> <source> KB</source> <translation> KB</translation> </message> <message> <location filename="../Preferences/ConfigurationPages/EditorFilePage.ui" line="0" /> + <source>Reject, if file is greater than</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/EditorFilePage.ui" line="0" /> + <source>Enter the filesize, opening a file should be rejected.</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/EditorFilePage.ui" line="0" /> <source>End of Line</source> <translation>Окончания строк</translation> </message> @@ -17158,12 +17181,12 @@ <context> <name>EricApplication</name> <message> - <location filename="../EricWidgets/EricApplication.py" line="220" /> + <location filename="../EricWidgets/EricApplication.py" line="221" /> <source>Loading Style Sheet</source> <translation>Загрузка таблицы стилей</translation> </message> <message> - <location filename="../EricWidgets/EricApplication.py" line="223" /> + <location filename="../EricWidgets/EricApplication.py" line="224" /> <source><p>The Qt Style Sheet file <b>{0}</b> could not be read.<br>Reason: {1}</p></source> <translation><p>Невозможно прочитать файл таблицы стилей Qt <b>{0}</b>.<br>Причина: {1}</p></translation> </message> @@ -46126,7 +46149,7 @@ <translation>Pygments</translation> </message> <message> - <location filename="../Preferences/__init__.py" line="468" /> + <location filename="../Preferences/__init__.py" line="469" /> <location filename="../QScintilla/Lexers/__init__.py" line="482" /> <source>Python Files (*.py *.py3)</source> <translation>Файлы Python (*.py *.py3)</translation> @@ -46379,7 +46402,7 @@ <translation>Все файлы (*)</translation> </message> <message> - <location filename="../Preferences/__init__.py" line="471" /> + <location filename="../Preferences/__init__.py" line="472" /> <location filename="../QScintilla/Lexers/__init__.py" line="575" /> <source>Python3 Files (*.py)</source> <translation>Файлы Python3 (*.py)</translation> @@ -54964,18 +54987,18 @@ <context> <name>Preferences</name> <message> - <location filename="../Preferences/__init__.py" line="1651" /> + <location filename="../Preferences/__init__.py" line="1652" /> <source>Export Preferences</source> <translation>Экспорт Preferences</translation> </message> <message> - <location filename="../Preferences/__init__.py" line="1680" /> - <location filename="../Preferences/__init__.py" line="1653" /> + <location filename="../Preferences/__init__.py" line="1681" /> + <location filename="../Preferences/__init__.py" line="1654" /> <source>Properties File (*.ini);;All Files (*)</source> <translation>Файлы Preferences (*.ini);;Все файлы (*)</translation> </message> <message> - <location filename="../Preferences/__init__.py" line="1678" /> + <location filename="../Preferences/__init__.py" line="1679" /> <source>Import Preferences</source> <translation>Импорт Preferences</translation> </message> @@ -56481,8 +56504,8 @@ <translation><b>Покрытие кода...</b><p>Показать информацию покрытия кода всех Python-файлов проекта.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5856" /> - <location filename="../Project/Project.py" line="5843" /> + <location filename="../Project/Project.py" line="5857" /> + <location filename="../Project/Project.py" line="5844" /> <location filename="../Project/Project.py" line="4649" /> <source>Profile Data</source> <translation>Данные профайлера</translation> @@ -56503,7 +56526,7 @@ <translation><b>Данные профайлера...</b><p>Отображение результатов профилирования проекта.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5908" /> + <location filename="../Project/Project.py" line="5909" /> <location filename="../Project/Project.py" line="4675" /> <source>Application Diagram</source> <translation>Диаграмма приложения</translation> @@ -56544,8 +56567,8 @@ <translation><b>Загрузить диаграмму...</b><p>Загрузить диаграмму из файла.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="6103" /> - <location filename="../Project/Project.py" line="6044" /> + <location filename="../Project/Project.py" line="6104" /> + <location filename="../Project/Project.py" line="6045" /> <location filename="../Project/Project.py" line="4719" /> <source>Create Package List</source> <translation>Создать список пакета</translation> @@ -56566,7 +56589,7 @@ <translation><b>Создать список пакета</b><p>Создаёт начальный список файлов для включения в архив плагина eric. Список создаётся из файла проекта.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="6172" /> + <location filename="../Project/Project.py" line="6173" /> <location filename="../Project/Project.py" line="4742" /> <source>Create Plugin Archives</source> <translation>Создать архивы плагина</translation> @@ -56607,9 +56630,9 @@ <translation><b>Создать архивы плагина (Snapshot)</b><p>Создание архивных файлов плагина eric, используя список файлов, приведенный в файле PKGLIST. Имя архива, если оно не задано в файле со списком пакета, создается из имени главного сценария. Версия главного скрипта изменяется в соответствии релизом snapshot.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="6589" /> - <location filename="../Project/Project.py" line="6560" /> - <location filename="../Project/Project.py" line="6511" /> + <location filename="../Project/Project.py" line="6590" /> + <location filename="../Project/Project.py" line="6561" /> + <location filename="../Project/Project.py" line="6512" /> <location filename="../Project/Project.py" line="4795" /> <source>Execute Make</source> <translation>Выполнить Make</translation> @@ -56630,7 +56653,7 @@ <translation><b>Выполнить Make</b><p>Выполнение прогона 'make' для пересборки настроеной цели.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="6566" /> + <location filename="../Project/Project.py" line="6567" /> <location filename="../Project/Project.py" line="4814" /> <source>Test for Changes</source> <translation>Проверить изменения</translation> @@ -56671,7 +56694,7 @@ <translation><b>Создать файл SBOM</b><p>Создание SBOM файла зависимостей проекта. Он может быть основан на различных источниках ввода и будет сохранен как файл CycloneDX SBOM.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="6744" /> + <location filename="../Project/Project.py" line="6745" /> <location filename="../Project/Project.py" line="4871" /> <source>About Black</source> <translation>О Black</translation> @@ -56919,195 +56942,195 @@ <translation>Другие инструменты</translation> </message> <message> - <location filename="../Project/Project.py" line="5275" /> - <location filename="../Project/Project.py" line="5272" /> + <location filename="../Project/Project.py" line="5276" /> + <location filename="../Project/Project.py" line="5273" /> <source>Project</source> <translation>Проект</translation> </message> <message> - <location filename="../Project/Project.py" line="5338" /> + <location filename="../Project/Project.py" line="5339" /> <source>&Clear</source> <translation>&Очистить</translation> </message> <message> - <location filename="../Project/Project.py" line="5497" /> - <source>Search New Files</source> - <translation>Поиск новых файлов</translation> - </message> - <message> <location filename="../Project/Project.py" line="5498" /> + <source>Search New Files</source> + <translation>Поиск новых файлов</translation> + </message> + <message> + <location filename="../Project/Project.py" line="5499" /> <source>There were no new files found to be added.</source> <translation>Не найдено новых файлов для добавления.</translation> </message> <message> - <location filename="../Project/Project.py" line="5649" /> - <location filename="../Project/Project.py" line="5636" /> - <source>Version Control System</source> - <translation>Система контроля версий</translation> - </message> - <message> - <location filename="../Project/Project.py" line="5637" /> - <source><p>The selected VCS <b>{0}</b> could not be found. <br/>Reverting override.</p><p>{1}</p></source> - <translation><p>Выбранная VCS <b>{0}</b> не найдена.<br/>Возврат отвергнут.</p><p>{1}</p></translation> - </message> - <message> <location filename="../Project/Project.py" line="5650" /> + <location filename="../Project/Project.py" line="5637" /> + <source>Version Control System</source> + <translation>Система контроля версий</translation> + </message> + <message> + <location filename="../Project/Project.py" line="5638" /> + <source><p>The selected VCS <b>{0}</b> could not be found. <br/>Reverting override.</p><p>{1}</p></source> + <translation><p>Выбранная VCS <b>{0}</b> не найдена.<br/>Возврат отвергнут.</p><p>{1}</p></translation> + </message> + <message> + <location filename="../Project/Project.py" line="5651" /> <source><p>The selected VCS <b>{0}</b> could not be found.<br/>Disabling version control.</p><p>{1}</p></source> <translation><p>Выбранная VCS <b>{0}</b> не найдена.<br/>Контроль версий отключен.</p><p>{1}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5798" /> + <location filename="../Project/Project.py" line="5799" /> <source>Coverage Data</source> <translation>Данные покрытия</translation> </message> <message> - <location filename="../Project/Project.py" line="5844" /> - <location filename="../Project/Project.py" line="5799" /> + <location filename="../Project/Project.py" line="5845" /> + <location filename="../Project/Project.py" line="5800" /> <source>There is no main script defined for the current project. Aborting</source> <translation>Для текущего проекта не определён главный сценарий. Отмена</translation> </message> <message> - <location filename="../Project/Project.py" line="5811" /> - <source>Code Coverage</source> - <translation>Покрытие кода</translation> - </message> - <message> <location filename="../Project/Project.py" line="5812" /> + <source>Code Coverage</source> + <translation>Покрытие кода</translation> + </message> + <message> + <location filename="../Project/Project.py" line="5813" /> <source>Please select a coverage file</source> <translation>Пожалуйста, выберите файл покрытия</translation> </message> <message> - <location filename="../Project/Project.py" line="5857" /> + <location filename="../Project/Project.py" line="5858" /> <source>Please select a profile file</source> <translation>Пожалуйста, выберите файл профиля</translation> </message> <message> - <location filename="../Project/Project.py" line="5909" /> + <location filename="../Project/Project.py" line="5910" /> <source>Include module names?</source> <translation>Включать имена модулей?</translation> </message> <message> - <location filename="../Project/Project.py" line="6045" /> + <location filename="../Project/Project.py" line="6046" /> <source><p>The file <b>PKGLIST</b> already exists.</p><p>Overwrite it?</p></source> <translation><p>Файл <b>PKGLIST</b> уже существует. Переписать?</p></translation> </message> <message> - <location filename="../Project/Project.py" line="6104" /> + <location filename="../Project/Project.py" line="6105" /> <source><p>The file <b>PKGLIST</b> could not be created.</p><p>Reason: {0}</p></source> <translation><p>Невозможно создать файл <b>PKGLIST</b>.</p><p>Причина: {0}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="6393" /> - <location filename="../Project/Project.py" line="6351" /> - <location filename="../Project/Project.py" line="6305" /> - <location filename="../Project/Project.py" line="6294" /> - <location filename="../Project/Project.py" line="6276" /> - <location filename="../Project/Project.py" line="6243" /> - <location filename="../Project/Project.py" line="6213" /> - <location filename="../Project/Project.py" line="6185" /> - <location filename="../Project/Project.py" line="6155" /> - <location filename="../Project/Project.py" line="6141" /> - <location filename="../Project/Project.py" line="6124" /> + <location filename="../Project/Project.py" line="6394" /> + <location filename="../Project/Project.py" line="6352" /> + <location filename="../Project/Project.py" line="6306" /> + <location filename="../Project/Project.py" line="6295" /> + <location filename="../Project/Project.py" line="6277" /> + <location filename="../Project/Project.py" line="6244" /> + <location filename="../Project/Project.py" line="6214" /> + <location filename="../Project/Project.py" line="6186" /> + <location filename="../Project/Project.py" line="6156" /> + <location filename="../Project/Project.py" line="6142" /> + <location filename="../Project/Project.py" line="6125" /> <source>Create Plugin Archive</source> <translation>Создать архив плагина</translation> </message> <message> - <location filename="../Project/Project.py" line="6125" /> + <location filename="../Project/Project.py" line="6126" /> <source>The project does not have a main script defined. Aborting...</source> <translation>Для текущего проекта не определён главный сценарий. Отмена...</translation> </message> <message> - <location filename="../Project/Project.py" line="6142" /> + <location filename="../Project/Project.py" line="6143" /> <source>Select package lists:</source> <translation>Выбор списков пакета:</translation> </message> <message> - <location filename="../Project/Project.py" line="6156" /> + <location filename="../Project/Project.py" line="6157" /> <source><p>No package list files (PKGLIST*) available or selected. Aborting...</p></source> <translation><p>Файлы со списком пакета (PKGLIST*) не доступны или не выбраны. Отмена...</p></translation> </message> <message> - <location filename="../Project/Project.py" line="6164" /> - <source>Creating plugin archives...</source> - <translation>Создание архивов плагина...</translation> - </message> - <message> <location filename="../Project/Project.py" line="6165" /> + <source>Creating plugin archives...</source> + <translation>Создание архивов плагина...</translation> + </message> + <message> + <location filename="../Project/Project.py" line="6166" /> <source>Abort</source> <translation>Прервать</translation> </message> <message> - <location filename="../Project/Project.py" line="6168" /> + <location filename="../Project/Project.py" line="6169" /> <source>%v/%m Archives</source> <translation>%v из %m архивов</translation> </message> <message> - <location filename="../Project/Project.py" line="6186" /> + <location filename="../Project/Project.py" line="6187" /> <source><p>The file <b>{0}</b> could not be read.</p><p>Reason: {1}</p></source> <translation><p>Невозможно прочитать файл <b>{0}</b>.</p><p>Причина: {1}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="6214" /> + <location filename="../Project/Project.py" line="6215" /> <source><p>The file <b>{0}</b> is not ready yet.</p><p>Please rework it and delete the'; initial_list' line of the header.</p></source> <translation><p>Файл <b>{0}</b> пока не готов.</p><p>Пожалуйста переработайте его и удалите строки '; initial_list' из его заголовка.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="6244" /> + <location filename="../Project/Project.py" line="6245" /> <source><p>The eric plugin archive file <b>{0}</b> could not be created.</p><p>Reason: {1}</p></source> <translation><p>Невозможно создать архив плагина <b>{0}</b> eric.</p><p>Причина: {1}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="6277" /> + <location filename="../Project/Project.py" line="6278" /> <source><p>The file <b>{0}</b> could not be stored in the archive. Ignoring it.</p><p>Reason: {1}</p></source> <translation><p>Невозможно сохранить файл <b>{0}</b> в архиве. Игнорируем его.</p><p>Причина: {1}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="6295" /> + <location filename="../Project/Project.py" line="6296" /> <source><p>The eric plugin archive files were created with some errors.</p></source> <translation><p>Файлы архива плагина eric были созданы с ошибками.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="6306" /> + <location filename="../Project/Project.py" line="6307" /> <source><p>The eric plugin archive files were created successfully.</p></source> <translation><p>Файлы архива плагина eric созданы успешно.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="6352" /> + <location filename="../Project/Project.py" line="6353" /> <source><p>The plugin file <b>{0}</b> could not be read.</p><p>Reason: {1}</p></source> <translation><p>Невозможно прочитать файл плагина <b>{0}</b>.</p><p>Причина: {1}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="6394" /> + <location filename="../Project/Project.py" line="6395" /> <source><p>The plugin file <b>{0}</b> could not be read.</p> <p>Reason: {1}</p></source> <translation><p>Невозможно прочитать файл плагина <b>{0}</b>.</p><p>Причина: {1}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="6512" /> + <location filename="../Project/Project.py" line="6513" /> <source>The make process did not start.</source> <translation>Make-процесс не был запущен.</translation> </message> <message> - <location filename="../Project/Project.py" line="6561" /> + <location filename="../Project/Project.py" line="6562" /> <source>The make process crashed.</source> <translation>Make-процесс разрушен.</translation> </message> <message> - <location filename="../Project/Project.py" line="6569" /> + <location filename="../Project/Project.py" line="6570" /> <source><p>There are changes that require the configured make target <b>{0}</b> to be rebuilt.</p></source> <translation><p>Существуют изменения, которые требуют конфигурации make-цели <b>{0}</b> для ее пересборки.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="6574" /> + <location filename="../Project/Project.py" line="6575" /> <source><p>There are changes that require the default make target to be rebuilt.</p></source> <translation><p>Существуют изменения, которые требуют make-цель по умолчанию для ее пересборки.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="6590" /> + <location filename="../Project/Project.py" line="6591" /> <source>The makefile contains errors.</source> <translation>Makefile содержит ошибки.</translation> </message> <message> - <location filename="../Project/Project.py" line="6745" /> + <location filename="../Project/Project.py" line="6746" /> <source><p><b>Black Version {0}</b></p><p><i>Black</i> is the uncompromising Python code formatter.</p></source> <translation><p><b>Black вер. {0}</b></p><p><i>Black</i> – это бескомпромиссный форматер кода Python.</p></translation> </message> @@ -57976,10 +57999,10 @@ <translation>Открыть в редакторе</translation> </message> <message> - <location filename="../Project/ProjectOthersBrowser.py" line="353" /> - <location filename="../Project/ProjectOthersBrowser.py" line="345" /> - <location filename="../Project/ProjectOthersBrowser.py" line="335" /> - <location filename="../Project/ProjectOthersBrowser.py" line="327" /> + <location filename="../Project/ProjectOthersBrowser.py" line="357" /> + <location filename="../Project/ProjectOthersBrowser.py" line="349" /> + <location filename="../Project/ProjectOthersBrowser.py" line="339" /> + <location filename="../Project/ProjectOthersBrowser.py" line="331" /> <location filename="../Project/ProjectOthersBrowser.py" line="85" /> <source>Show Mime-Type</source> <translation>Показ Mime-Types</translation> @@ -58053,28 +58076,28 @@ <translation>Настроить...</translation> </message> <message> - <location filename="../Project/ProjectOthersBrowser.py" line="328" /> + <location filename="../Project/ProjectOthersBrowser.py" line="332" /> <source>The mime type of the file could not be determined.</source> <translation>Невозможно определить тип mime файла.</translation> </message> <message> - <location filename="../Project/ProjectOthersBrowser.py" line="346" /> - <location filename="../Project/ProjectOthersBrowser.py" line="336" /> + <location filename="../Project/ProjectOthersBrowser.py" line="350" /> + <location filename="../Project/ProjectOthersBrowser.py" line="340" /> <source>The file has the mime type <b>{0}</b>.</source> <translation>Файл типа <b>{0}</b> по стандарту MIME.</translation> </message> <message> - <location filename="../Project/ProjectOthersBrowser.py" line="354" /> + <location filename="../Project/ProjectOthersBrowser.py" line="358" /> <source>The file has the mime type <b>{0}</b>.<br/> Shall it be added to the list of text mime types?</source> <translation>Файл типа <b>{0}</b> по стандарту MIME.<br/> Добавить ли в текстовый список типов MIME?</translation> </message> <message> - <location filename="../Project/ProjectOthersBrowser.py" line="447" /> + <location filename="../Project/ProjectOthersBrowser.py" line="451" /> <source>Delete files/directories</source> <translation>Удаление файлов/каталогов</translation> </message> <message> - <location filename="../Project/ProjectOthersBrowser.py" line="448" /> + <location filename="../Project/ProjectOthersBrowser.py" line="452" /> <source>Do you really want to delete these entries from the project?</source> <translation>Вы действительно хотите удалить эти элементы из проекта?</translation> </message> @@ -85565,62 +85588,62 @@ <translation>unsized</translation> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="901" /> + <location filename="../Debugger/VariablesViewer.py" line="904" /> <source>Global Variables</source> <translation>Глобальные переменные</translation> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="903" /> + <location filename="../Debugger/VariablesViewer.py" line="906" /> <source><b>The Global Variables Viewer Window</b><p>This window displays the global variables of the debugged program.</p></source> <translation><b>Окно показа глобальных переменных</b> <p>Это окно отображает глобальные переменные отлаживаемой программы.</p></translation> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="910" /> + <location filename="../Debugger/VariablesViewer.py" line="913" /> <source>Local Variables</source> <translation>Локальные переменные</translation> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="912" /> + <location filename="../Debugger/VariablesViewer.py" line="915" /> <source><b>The Local Variables Viewer Window</b><p>This window displays the local variables of the debugged program.</p></source> <translation><b>Окно показа локальных переменных</b> <p>Это окно отображает локальные переменные отлаживаемой программы.</p></translation> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="1030" /> + <location filename="../Debugger/VariablesViewer.py" line="1039" /> <source>Show Details...</source> <translation>Показать подробности...</translation> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="1032" /> + <location filename="../Debugger/VariablesViewer.py" line="1041" /> <source>Expand</source> <translation>Развернуть</translation> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="1033" /> - <source>Collapse</source> - <translation>Свернуть</translation> - </message> - <message> - <location filename="../Debugger/VariablesViewer.py" line="1034" /> - <source>Collapse All</source> - <translation>Свернуть все</translation> - </message> - <message> <location filename="../Debugger/VariablesViewer.py" line="1042" /> - <location filename="../Debugger/VariablesViewer.py" line="1036" /> + <source>Collapse</source> + <translation>Свернуть</translation> + </message> + <message> + <location filename="../Debugger/VariablesViewer.py" line="1043" /> + <source>Collapse All</source> + <translation>Свернуть все</translation> + </message> + <message> + <location filename="../Debugger/VariablesViewer.py" line="1051" /> + <location filename="../Debugger/VariablesViewer.py" line="1045" /> <source>Refresh</source> <translation>Освежить</translation> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="1044" /> - <location filename="../Debugger/VariablesViewer.py" line="1038" /> + <location filename="../Debugger/VariablesViewer.py" line="1053" /> + <location filename="../Debugger/VariablesViewer.py" line="1047" /> <source>Configure...</source> <translation>Настроить...</translation> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="1046" /> - <location filename="../Debugger/VariablesViewer.py" line="1039" /> + <location filename="../Debugger/VariablesViewer.py" line="1055" /> + <location filename="../Debugger/VariablesViewer.py" line="1048" /> <source>Variables Type Filter...</source> <translation>Фильтр типа переменных...</translation> </message> @@ -96246,12 +96269,12 @@ <context> <name>eric7_ide</name> <message> - <location filename="../eric7_ide.py" line="394" /> + <location filename="../eric7_ide.py" line="395" /> <source>Starting...</source> <translation type="unfinished">Запуск...</translation> </message> <message> - <location filename="../eric7_ide.py" line="400" /> + <location filename="../eric7_ide.py" line="401" /> <source>Generating Main Window...</source> <translation type="unfinished">Создание главного окна...</translation> </message>
--- a/src/eric7/i18n/eric7_tr.ts Fri Oct 14 14:46:40 2022 +0200 +++ b/src/eric7/i18n/eric7_tr.ts Fri Oct 14 17:02:09 2022 +0200 @@ -1811,17 +1811,17 @@ <translation type="unfinished" /> </message> <message> - <location filename="../Utilities/BackgroundService.py" line="488" /> + <location filename="../Utilities/BackgroundService.py" line="487" /> <source>Eric's background client disconnected because of an unknown reason.</source> <translation type="unfinished" /> </message> <message> + <location filename="../Utilities/BackgroundService.py" line="496" /> + <source>Background client disconnected.</source> + <translation type="unfinished" /> + </message> + <message> <location filename="../Utilities/BackgroundService.py" line="497" /> - <source>Background client disconnected.</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Utilities/BackgroundService.py" line="498" /> <source>The background client for <b>{0}</b> disconnected because of an unknown reason.<br>Should it be restarted?</source> <translation type="unfinished" /> </message> @@ -8862,13 +8862,13 @@ <translation type="unfinished" /> </message> <message> - <location filename="../Debugger/DebugViewer.py" line="754" /> + <location filename="../Debugger/DebugViewer.py" line="756" /> <source><p>Debugger with ID <b>{0}</b> has been connected.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Debugger/DebugViewer.py" line="997" /> - <location filename="../Debugger/DebugViewer.py" line="869" /> + <location filename="../Debugger/DebugViewer.py" line="999" /> + <location filename="../Debugger/DebugViewer.py" line="871" /> <source>unknown state ({0})</source> <translation type="unfinished" /> </message> @@ -9554,7 +9554,7 @@ <translation>Hata ayıklayıcı istemcisini şifreleme ayarlarını yapma</translation> </message> <message> - <location filename="../Project/DebuggerPropertiesDialog.py" line="127" /> + <location filename="../Project/DebuggerPropertiesDialog.py" line="133" /> <source>All Files (*)</source> <translation>Tüm Dosyalar (*)</translation> </message> @@ -11124,960 +11124,972 @@ <context> <name>Editor</name> <message> - <location filename="../QScintilla/Editor.py" line="3245" /> - <location filename="../QScintilla/Editor.py" line="406" /> + <location filename="../QScintilla/Editor.py" line="3268" /> + <location filename="../QScintilla/Editor.py" line="431" /> + <location filename="../QScintilla/Editor.py" line="416" /> + <location filename="../QScintilla/Editor.py" line="404" /> <source>Open File</source> <translation>Dosya Aç</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="407" /> + <location filename="../QScintilla/Editor.py" line="405" /> + <source><p>The file <b>{0}</b> is not a text file. It will not be opened!</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="417" /> + <source><p>The size of the file <b>{0}</b> is <b>{1} KB</b> and exceeds the configured limit of <b>{2} KB</b>. It will not be opened!</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="432" /> <source><p>The size of the file <b>{0}</b> is <b>{1} KB</b>. Do you really want to load it?</p></source> <translation><p><b>{0}</b>dosyasının boyutu <b>{1} KB</b>. Bu dosyayı yüklemek istiyor musunuz?</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="505" /> + <location filename="../QScintilla/Editor.py" line="528" /> <source><b>A Source Editor Window</b><p>This window is used to display and edit a source file. You can open as many of these as you like. The name of the file is displayed in the window's titlebar.</p><p>In order to set breakpoints just click in the space between the line numbers and the fold markers. Via the context menu of the margins they may be edited.</p><p>In order to set bookmarks just Shift click in the space between the line numbers and the fold markers.</p><p>These actions can be reversed via the context menu.</p><p>Ctrl clicking on a syntax error marker shows some info about this error.</p></source> <translation><b>Kaynak Düzenleme Penceresi</b><p>Bu pencere kaynak kod dosyalarını düzenlemek ve göstermek için kullanılır.Bunu pekçok kez kullanmak üzere açabilirsiniz. Dosyanın isim başlıkçubuğunda gösterilir.</p><p>Bekleme noktaların kolayca ekleyip düzenleyebilmeniz için satır numaraları ve işaret alanı vardır..İçerik menüsü aracılığı ile sınırları düzenleyebilirsiniz.</p><p>Bekleme noktalarını ayarlamak için Shift ve ara çubuğuna beraber basabilirsiniz.</p><p>Bu işlem içerik menüsü ilede yapılabilir.</p><p>Bir yazım hatasının üzerinde Ctrl ile tıklarsanız o hata ile ilgili ayrıntılı yardım alırsınız.</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="833" /> + <location filename="../QScintilla/Editor.py" line="856" /> <source>Undo</source> <translation>Geri Al</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="836" /> + <location filename="../QScintilla/Editor.py" line="859" /> <source>Redo</source> <translation>İleri al</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="839" /> + <location filename="../QScintilla/Editor.py" line="862" /> <source>Revert to last saved state</source> <translation>En son kaydedileni eski haline getir</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="843" /> + <location filename="../QScintilla/Editor.py" line="866" /> <source>Cut</source> <translation>Kes</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="846" /> + <location filename="../QScintilla/Editor.py" line="869" /> <source>Copy</source> <translation>Kopyala</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="849" /> + <location filename="../QScintilla/Editor.py" line="872" /> <source>Paste</source> <translation>Yapıştır</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="855" /> - <source>Indent</source> - <translation>Girinti</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="860" /> - <source>Unindent</source> - <translation>Girintisiz</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="865" /> - <source>Comment</source> - <translation>Yorumlayıcı</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="870" /> - <source>Uncomment</source> - <translation>Yorumlanamaz</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="8934" /> - <location filename="../QScintilla/Editor.py" line="875" /> - <source>Generate Docstring</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/Editor.py" line="878" /> + <source>Indent</source> + <translation>Girinti</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="883" /> + <source>Unindent</source> + <translation>Girintisiz</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="888" /> + <source>Comment</source> + <translation>Yorumlayıcı</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="893" /> + <source>Uncomment</source> + <translation>Yorumlanamaz</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="8957" /> + <location filename="../QScintilla/Editor.py" line="898" /> + <source>Generate Docstring</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="901" /> <source>Select to brace</source> <translation>Köşeli ayracı seç</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="879" /> + <location filename="../QScintilla/Editor.py" line="902" /> <source>Select all</source> <translation>Hepsini seç</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="880" /> + <location filename="../QScintilla/Editor.py" line="903" /> <source>Deselect all</source> <translation>Tüm seçimi iptal et</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="882" /> + <location filename="../QScintilla/Editor.py" line="905" /> <source>Execute Selection In Console</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="894" /> + <location filename="../QScintilla/Editor.py" line="917" /> <source>Use Monospaced Font</source> <translation>Tek hacimli yazıtipi kullan</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="899" /> + <location filename="../QScintilla/Editor.py" line="922" /> <source>Autosave enabled</source> <translation>Otomatik kayıt kabul edildi</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="904" /> + <location filename="../QScintilla/Editor.py" line="927" /> <source>Typing aids enabled</source> <translation>Yazım yardımı etkinleştirildi</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="912" /> + <location filename="../QScintilla/Editor.py" line="935" /> <source>Automatic Completion enabled</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="921" /> - <source>Calltip</source> - <translation>İpucu</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="924" /> - <source>Code Info</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="939" /> - <source>New Document View</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/Editor.py" line="944" /> + <source>Calltip</source> + <translation>İpucu</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="947" /> + <source>Code Info</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="962" /> + <source>New Document View</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="967" /> <source>New Document View (with new split)</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="952" /> + <location filename="../QScintilla/Editor.py" line="975" /> <source>Save</source> <translation>Kaydet</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="956" /> + <location filename="../QScintilla/Editor.py" line="979" /> <source>Save As...</source> <translation>Farklı Kaydet...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="961" /> + <location filename="../QScintilla/Editor.py" line="984" /> <source>Save Copy...</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="983" /> - <location filename="../QScintilla/Editor.py" line="980" /> + <location filename="../QScintilla/Editor.py" line="1006" /> + <location filename="../QScintilla/Editor.py" line="1003" /> <source>Complete</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="987" /> + <location filename="../QScintilla/Editor.py" line="1010" /> <source>Clear Completions Cache</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="990" /> + <location filename="../QScintilla/Editor.py" line="1013" /> <source>Complete from Document</source> <translation type="unfinished">Belgeden</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="992" /> + <location filename="../QScintilla/Editor.py" line="1015" /> <source>Complete from APIs</source> <translation type="unfinished">API'den</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="995" /> + <location filename="../QScintilla/Editor.py" line="1018" /> <source>Complete from Document and APIs</source> <translation type="unfinished">Belgeden ve API'den</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1009" /> + <location filename="../QScintilla/Editor.py" line="1032" /> <source>Check</source> <translation>Kontrol</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1020" /> + <location filename="../QScintilla/Editor.py" line="1043" /> <source>Code Formatting</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1023" /> - <source>Format Code</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1027" /> - <source>Check Formatting</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1031" /> - <source>Formatting Diff</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/Editor.py" line="1046" /> + <source>Format Code</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1050" /> + <source>Check Formatting</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1054" /> + <source>Formatting Diff</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1069" /> <source>Tools</source> <translation type="unfinished">Araçlar</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1057" /> + <location filename="../QScintilla/Editor.py" line="1080" /> <source>Show</source> <translation>Göster</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1059" /> + <location filename="../QScintilla/Editor.py" line="1082" /> <source>Code metrics...</source> <translation>Metrik Kod...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1061" /> + <location filename="../QScintilla/Editor.py" line="1084" /> <source>Code coverage...</source> <translation>Kod koruyucu...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1064" /> - <source>Show code coverage annotations</source> - <translation>Kodun dipnotunu göster</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1067" /> - <source>Hide code coverage annotations</source> - <translation>Kod koruyucu dipnotunu gizle</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1071" /> - <source>Profile data...</source> - <translation>Veri kesiti...</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1085" /> - <source>Diagrams</source> - <translation>Şema</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="1087" /> + <source>Show code coverage annotations</source> + <translation>Kodun dipnotunu göster</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1090" /> + <source>Hide code coverage annotations</source> + <translation>Kod koruyucu dipnotunu gizle</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1094" /> + <source>Profile data...</source> + <translation>Veri kesiti...</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1108" /> + <source>Diagrams</source> + <translation>Şema</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1110" /> <source>Class Diagram...</source> <translation>Sınıf Şeması...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1088" /> - <source>Package Diagram...</source> - <translation>Paket Şeması...</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1089" /> - <source>Imports Diagram...</source> - <translation>Şemayı İçe aktar...</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1091" /> - <source>Application Diagram...</source> - <translation>Uygulama Şeması...</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1096" /> - <source>Load Diagram...</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/Editor.py" line="1111" /> + <source>Package Diagram...</source> + <translation>Paket Şeması...</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1112" /> + <source>Imports Diagram...</source> + <translation>Şemayı İçe aktar...</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1114" /> + <source>Application Diagram...</source> + <translation>Uygulama Şeması...</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1119" /> + <source>Load Diagram...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1134" /> <source>Languages</source> <translation>Diller</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1115" /> + <location filename="../QScintilla/Editor.py" line="1138" /> <source>Text</source> <translation type="unfinished">Metin</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1140" /> + <location filename="../QScintilla/Editor.py" line="1163" /> <source>Guessed</source> <translation>Tahmin edilen</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1471" /> - <location filename="../QScintilla/Editor.py" line="1144" /> + <location filename="../QScintilla/Editor.py" line="1494" /> + <location filename="../QScintilla/Editor.py" line="1167" /> <source>Alternatives</source> <translation>Alternatifler</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1161" /> - <source>Encodings</source> - <translation>Kodlama</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="1184" /> + <source>Encodings</source> + <translation>Kodlama</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1207" /> <source>Re-Open With Encoding</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1204" /> + <location filename="../QScintilla/Editor.py" line="1227" /> <source>End-of-Line Type</source> <translation>Yazım satırının sonu</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1208" /> + <location filename="../QScintilla/Editor.py" line="1231" /> <source>Unix</source> <translation>Unix</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1214" /> + <location filename="../QScintilla/Editor.py" line="1237" /> <source>Windows</source> <translation>Windows</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1220" /> + <location filename="../QScintilla/Editor.py" line="1243" /> <source>Macintosh</source> <translation>Macintosh</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1238" /> + <location filename="../QScintilla/Editor.py" line="1261" /> <source>Spelling</source> <translation type="unfinished">Yazım kontolü yapılıyor</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8052" /> - <location filename="../QScintilla/Editor.py" line="1246" /> + <location filename="../QScintilla/Editor.py" line="8075" /> + <location filename="../QScintilla/Editor.py" line="1269" /> <source>Check spelling...</source> <translation>Yazım Kontrolü...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1251" /> + <location filename="../QScintilla/Editor.py" line="1274" /> <source>Check spelling of selection...</source> <translation>Seçilen alanın yazım kontrolü...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1255" /> + <location filename="../QScintilla/Editor.py" line="1278" /> <source>Remove from dictionary</source> <translation>Sözlükten çıkar</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1272" /> + <location filename="../QScintilla/Editor.py" line="1295" /> <source>Spell Check Languages</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1276" /> + <location filename="../QScintilla/Editor.py" line="1299" /> <source>No Language</source> <translation>Dil Yok</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1303" /> + <location filename="../QScintilla/Editor.py" line="1326" /> <source>Toggle bookmark</source> <translation>Yerimi açkapa</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1305" /> - <source>Next bookmark</source> - <translation>Sonraki yerimi</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1308" /> - <source>Previous bookmark</source> - <translation>Önceki yerimi</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1311" /> - <source>Clear all bookmarks</source> - <translation>Tüm yerimlerini temizle</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1322" /> - <source>Toggle breakpoint</source> - <translation>Beklemenoktası açkapa</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1325" /> - <source>Toggle temporary breakpoint</source> - <translation>Geçici bekleme noktası açkapa</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="1328" /> - <source>Edit breakpoint...</source> - <translation>Bekleme noktasını düzenle...</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="5754" /> + <source>Next bookmark</source> + <translation>Sonraki yerimi</translation> + </message> + <message> <location filename="../QScintilla/Editor.py" line="1331" /> - <source>Enable breakpoint</source> - <translation>Beklemenoktasını etkinleştir</translation> + <source>Previous bookmark</source> + <translation>Önceki yerimi</translation> </message> <message> <location filename="../QScintilla/Editor.py" line="1334" /> - <source>Next breakpoint</source> - <translation>Sonraki Beklemenoktası</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1337" /> - <source>Previous breakpoint</source> - <translation>Önceki bekleme noktası</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1340" /> - <source>Clear all breakpoints</source> - <translation>Tüm beklemenoktalarını temizle</translation> + <source>Clear all bookmarks</source> + <translation>Tüm yerimlerini temizle</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1345" /> + <source>Toggle breakpoint</source> + <translation>Beklemenoktası açkapa</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1348" /> + <source>Toggle temporary breakpoint</source> + <translation>Geçici bekleme noktası açkapa</translation> </message> <message> <location filename="../QScintilla/Editor.py" line="1351" /> - <source>Toggle all folds</source> - <translation type="unfinished">Tüm Açkapaları Kapat</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1356" /> - <source>Toggle all folds (including children)</source> - <translation type="unfinished">Tüm açkapalar (iç içe olanlar dahil)</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1359" /> - <source>Toggle current fold</source> - <translation type="unfinished">Geçerli açkapayı kapat</translation> + <source>Edit breakpoint...</source> + <translation>Bekleme noktasını düzenle...</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="5777" /> + <location filename="../QScintilla/Editor.py" line="1354" /> + <source>Enable breakpoint</source> + <translation>Beklemenoktasını etkinleştir</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1357" /> + <source>Next breakpoint</source> + <translation>Sonraki Beklemenoktası</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1360" /> + <source>Previous breakpoint</source> + <translation>Önceki bekleme noktası</translation> </message> <message> <location filename="../QScintilla/Editor.py" line="1363" /> - <source>Expand (including children)</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1367" /> - <source>Collapse (including children)</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1372" /> - <source>Clear all folds</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1383" /> - <source>Goto syntax error</source> - <translation>Sözdizimi hatasına git</translation> + <source>Clear all breakpoints</source> + <translation>Tüm beklemenoktalarını temizle</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1374" /> + <source>Toggle all folds</source> + <translation type="unfinished">Tüm Açkapaları Kapat</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1379" /> + <source>Toggle all folds (including children)</source> + <translation type="unfinished">Tüm açkapalar (iç içe olanlar dahil)</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1382" /> + <source>Toggle current fold</source> + <translation type="unfinished">Geçerli açkapayı kapat</translation> </message> <message> <location filename="../QScintilla/Editor.py" line="1386" /> - <source>Show syntax error message</source> - <translation>Sözdizimi hata mesajını göster</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1389" /> - <source>Clear syntax error</source> - <translation>Sözdizimi hatalarını sil</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1393" /> - <source>Next warning</source> - <translation>Sonraki Uyarı</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1396" /> - <source>Previous warning</source> - <translation>Önceki Uyarı</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1399" /> - <source>Show warning message</source> - <translation>Uyarı mesajını göster</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1402" /> - <source>Clear warnings</source> - <translation>Uyarıları temizle</translation> + <source>Expand (including children)</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1390" /> + <source>Collapse (including children)</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1395" /> + <source>Clear all folds</source> + <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/Editor.py" line="1406" /> - <source>Next uncovered line</source> - <translation>Sonraki kapanmamış satır</translation> + <source>Goto syntax error</source> + <translation>Sözdizimi hatasına git</translation> </message> <message> <location filename="../QScintilla/Editor.py" line="1409" /> - <source>Previous uncovered line</source> - <translation>Önceki kaplanmamış satır</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1413" /> - <source>Next task</source> - <translation>Sonraki görev</translation> + <source>Show syntax error message</source> + <translation>Sözdizimi hata mesajını göster</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1412" /> + <source>Clear syntax error</source> + <translation>Sözdizimi hatalarını sil</translation> </message> <message> <location filename="../QScintilla/Editor.py" line="1416" /> + <source>Next warning</source> + <translation>Sonraki Uyarı</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1419" /> + <source>Previous warning</source> + <translation>Önceki Uyarı</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1422" /> + <source>Show warning message</source> + <translation>Uyarı mesajını göster</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1425" /> + <source>Clear warnings</source> + <translation>Uyarıları temizle</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1429" /> + <source>Next uncovered line</source> + <translation>Sonraki kapanmamış satır</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1432" /> + <source>Previous uncovered line</source> + <translation>Önceki kaplanmamış satır</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1436" /> + <source>Next task</source> + <translation>Sonraki görev</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1439" /> <source>Previous task</source> <translation>Önceki görev</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1420" /> + <location filename="../QScintilla/Editor.py" line="1443" /> <source>Next change</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1423" /> + <location filename="../QScintilla/Editor.py" line="1446" /> <source>Previous change</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1426" /> - <source>Clear changes</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1457" /> - <location filename="../QScintilla/Editor.py" line="1448" /> - <source>Export source</source> - <translation>Kaynağı dışaktar</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="1449" /> + <source>Clear changes</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1480" /> + <location filename="../QScintilla/Editor.py" line="1471" /> + <source>Export source</source> + <translation>Kaynağı dışaktar</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1472" /> <source><p>No exporter available for the export format <b>{0}</b>. Aborting...</p></source> <translation><p>dışa katarma tipi <b>{0}</b>için dışaaktarıcı yok. Vazgeçiliyior...</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1458" /> + <location filename="../QScintilla/Editor.py" line="1481" /> <source>No export format given. Aborting...</source> <translation>Girilen dışaaktarma formatı yok. İptal edildi...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1468" /> - <source>Alternatives ({0})</source> - <translation>Alternatifler ({0})</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="1491" /> + <source>Alternatives ({0})</source> + <translation>Alternatifler ({0})</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1514" /> <source>Pygments Lexer</source> <translation>Pygments Lexer</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1492" /> + <location filename="../QScintilla/Editor.py" line="1515" /> <source>Select the Pygments lexer to apply.</source> <translation>Kullanmak için Pygment lexer seç.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2051" /> + <location filename="../QScintilla/Editor.py" line="2074" /> <source>Modification of Read Only file</source> <translation>Yalnızca okunabilir dosyada değişiklik</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2052" /> + <location filename="../QScintilla/Editor.py" line="2075" /> <source>You are attempting to change a read only file. Please save to a different file first.</source> <translation>Yalnızca okunabilir bir dosyayı değiştirmeşe çalışıyorsunuz. Lütfen önce farklı bir isimde kaydediniz.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2473" /> + <location filename="../QScintilla/Editor.py" line="2496" /> <source>Add Breakpoint</source> <translation type="unfinished">Bekleme Noktası Ekle</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2474" /> + <location filename="../QScintilla/Editor.py" line="2497" /> <source>No Python byte code will be created for the selected line. No break point will be set!</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="2807" /> + <location filename="../QScintilla/Editor.py" line="2830" /> <source>Printing...</source> <translation>Yazılıyor...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2824" /> + <location filename="../QScintilla/Editor.py" line="2847" /> <source>Printing completed</source> <translation>Yazdırma tamalandı</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2826" /> + <location filename="../QScintilla/Editor.py" line="2849" /> <source>Error while printing</source> <translation>Yazdırılırken hata</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2829" /> + <location filename="../QScintilla/Editor.py" line="2852" /> <source>Printing aborted</source> <translation>Yazdırma iptal edildi</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="3187" /> + <location filename="../QScintilla/Editor.py" line="3210" /> <source>File Modified</source> <translation>Dosya Değiştirildi</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="3188" /> + <location filename="../QScintilla/Editor.py" line="3211" /> <source><p>The file <b>{0}</b> has unsaved changes.</p></source> <translation><p><b>{0}</b>dosyasında kaydedilmemiş değişiklikler var.</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="3246" /> + <location filename="../QScintilla/Editor.py" line="3269" /> <source><p>The file <b>{0}</b> could not be opened.</p><p>Reason: {1}</p></source> <translation><p>Dosya <b>{0}</b> açılamıyor.</p><p>Sebep: {1}</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="3424" /> - <location filename="../QScintilla/Editor.py" line="3405" /> - <location filename="../QScintilla/Editor.py" line="3365" /> + <location filename="../QScintilla/Editor.py" line="3447" /> + <location filename="../QScintilla/Editor.py" line="3428" /> + <location filename="../QScintilla/Editor.py" line="3388" /> <source>Save File</source> <translation>Dosyayı Kaydet</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="3366" /> + <location filename="../QScintilla/Editor.py" line="3389" /> <source><p>The file <b>{0}</b> could not be saved.<br/>Reason: {1}</p></source> <translation><p>Dosya <b>{0}</b> kaydedilemiyor.</p><p>Sebep: {1}</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="3425" /> + <location filename="../QScintilla/Editor.py" line="3448" /> <source><p>The file <b>{0}</b> already exists. Overwrite it?</p></source> <translation><p><b>{0}</b> dosyası halen mevcut. Üzerine yazılsın mı?</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="4935" /> + <location filename="../QScintilla/Editor.py" line="4958" /> <source>Autocompletion</source> <translation>Otomatik tamamlama</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="4936" /> + <location filename="../QScintilla/Editor.py" line="4959" /> <source>Autocompletion is not available because there is no autocompletion source set.</source> <translation>Otomatiktamamlama uygun değil çünkü bu otomatiktamamlama kaynağı değil.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5064" /> + <location filename="../QScintilla/Editor.py" line="5087" /> <source>Auto-Completion Provider</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="5065" /> + <location filename="../QScintilla/Editor.py" line="5088" /> <source>The completion list provider '{0}' was already registered. Ignoring duplicate request.</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="5357" /> + <location filename="../QScintilla/Editor.py" line="5380" /> <source>Call-Tips Provider</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="5358" /> + <location filename="../QScintilla/Editor.py" line="5381" /> <source>The call-tips provider '{0}' was already registered. Ignoring duplicate request.</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="5758" /> + <location filename="../QScintilla/Editor.py" line="5781" /> <source>Disable breakpoint</source> <translation>Durmanoktasını iptal et</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6113" /> + <location filename="../QScintilla/Editor.py" line="6136" /> <source>Code Coverage</source> <translation>Kod Koruyucu</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6114" /> + <location filename="../QScintilla/Editor.py" line="6137" /> <source>Please select a coverage file</source> <translation>Lütfen bir koruyucu dosya seçiniz</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6189" /> - <location filename="../QScintilla/Editor.py" line="6181" /> + <location filename="../QScintilla/Editor.py" line="6212" /> + <location filename="../QScintilla/Editor.py" line="6204" /> <source>Show Code Coverage Annotations</source> <translation>Kodların Dipnotunu Göster</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6182" /> + <location filename="../QScintilla/Editor.py" line="6205" /> <source>All lines have been covered.</source> <translation>Tüm satırlar korumaya alındı.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6190" /> + <location filename="../QScintilla/Editor.py" line="6213" /> <source>There is no coverage file available.</source> <translation>Hazırda koruma dosyası yok.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6286" /> + <location filename="../QScintilla/Editor.py" line="6309" /> <source>Profile Data</source> <translation>Veri Kesiti</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6287" /> + <location filename="../QScintilla/Editor.py" line="6310" /> <source>Please select a profile file</source> <translation>Lütfen kesit dosyasını seçiniz</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6450" /> - <location filename="../QScintilla/Editor.py" line="6444" /> + <location filename="../QScintilla/Editor.py" line="6473" /> + <location filename="../QScintilla/Editor.py" line="6467" /> <source>Syntax Error</source> <translation>Sözdizimi Hatası</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6451" /> + <location filename="../QScintilla/Editor.py" line="6474" /> <source>No syntax error message available.</source> <translation>Uygun söz dizimi hata mesajı yok.</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6662" /> - <location filename="../QScintilla/Editor.py" line="6656" /> + <location filename="../QScintilla/Editor.py" line="6685" /> + <location filename="../QScintilla/Editor.py" line="6679" /> <source>Warning</source> <translation type="unfinished">Dikkat</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6662" /> + <location filename="../QScintilla/Editor.py" line="6685" /> <source>No warning messages available.</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="6726" /> + <location filename="../QScintilla/Editor.py" line="6749" /> <source>Style: {0}</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="6729" /> + <location filename="../QScintilla/Editor.py" line="6752" /> <source>Warning: {0}</source> <translation>Dikkat: {0}</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6736" /> + <location filename="../QScintilla/Editor.py" line="6759" /> <source>Error: {0}</source> <translation>Hata: {0}</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6843" /> + <location filename="../QScintilla/Editor.py" line="6866" /> <source>Macro Name</source> <translation>Makro Adı</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6843" /> + <location filename="../QScintilla/Editor.py" line="6866" /> <source>Select a macro name:</source> <translation>Bir makro ismi seç:</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6869" /> + <location filename="../QScintilla/Editor.py" line="6892" /> <source>Load macro file</source> <translation>Makro dosyasını yükle</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6915" /> - <location filename="../QScintilla/Editor.py" line="6871" /> + <location filename="../QScintilla/Editor.py" line="6938" /> + <location filename="../QScintilla/Editor.py" line="6894" /> <source>Macro files (*.macro)</source> <translation>Makro dosyaları (*.macro)</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6893" /> - <location filename="../QScintilla/Editor.py" line="6883" /> + <location filename="../QScintilla/Editor.py" line="6916" /> + <location filename="../QScintilla/Editor.py" line="6906" /> <source>Error loading macro</source> <translation>Makronun yüklenmesinde hata</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6884" /> + <location filename="../QScintilla/Editor.py" line="6907" /> <source><p>The macro file <b>{0}</b> could not be read.</p></source> <translation><p>Makro dosyası <b>{0}</b> okunamıyor.</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6894" /> + <location filename="../QScintilla/Editor.py" line="6917" /> <source><p>The macro file <b>{0}</b> is corrupt.</p></source> <translation><p>Makro dosyası <b>{0}</b> bozuk.</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6913" /> + <location filename="../QScintilla/Editor.py" line="6936" /> <source>Save macro file</source> <translation>Makro Dosyasını Kaydet</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6931" /> + <location filename="../QScintilla/Editor.py" line="6954" /> <source>Save macro</source> <translation>Makro Kaydet</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6932" /> + <location filename="../QScintilla/Editor.py" line="6955" /> <source><p>The macro file <b>{0}</b> already exists. Overwrite it?</p></source> <translation><p>Makro dosyası <b>{0}</b> zaten var. Üzerine yazılsın mı?</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6947" /> + <location filename="../QScintilla/Editor.py" line="6970" /> <source>Error saving macro</source> <translation>Makronun kaydedilmesinde hata</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6948" /> + <location filename="../QScintilla/Editor.py" line="6971" /> <source><p>The macro file <b>{0}</b> could not be written.</p></source> <translation><p>Makro dosyası <b>{0}</b> yazılamıyor.</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6961" /> + <location filename="../QScintilla/Editor.py" line="6984" /> <source>Start Macro Recording</source> <translation>Makro Kaydı Başladı</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6962" /> + <location filename="../QScintilla/Editor.py" line="6985" /> <source>Macro recording is already active. Start new?</source> <translation>Makro kaydı şuan aktif. Yeniden başlasın mı?</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6988" /> + <location filename="../QScintilla/Editor.py" line="7011" /> <source>Macro Recording</source> <translation>Makro Kaydediliyor</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6989" /> + <location filename="../QScintilla/Editor.py" line="7012" /> <source>Enter name of the macro:</source> <translation>Makronun ismini gir:</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7140" /> + <location filename="../QScintilla/Editor.py" line="7163" /> <source><p>The file <b>{0}</b> has been changed while it was opened in eric. Reread it?</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="7146" /> + <location filename="../QScintilla/Editor.py" line="7169" /> <source><br><b>Warning:</b> You will lose your changes upon reopening it.</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="7153" /> + <location filename="../QScintilla/Editor.py" line="7176" /> <source>File changed</source> <translation>Dosya değiştirilmiş</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7203" /> + <location filename="../QScintilla/Editor.py" line="7226" /> <source>{0} (ro)</source> <translation>{0} (ro)</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7494" /> - <source>Drop Error</source> - <translation>Düşme hatası</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="7495" /> - <source><p><b>{0}</b> is not a file.</p></source> - <translation><p><b>{0}</b> bir dosya değil.</p></translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="7515" /> - <source>Resources</source> - <translation>Kaynaklar</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="7517" /> - <source>Add file...</source> - <translation>Dosya ekle...</translation> + <source>Drop Error</source> + <translation>Düşme hatası</translation> </message> <message> <location filename="../QScintilla/Editor.py" line="7518" /> + <source><p><b>{0}</b> is not a file.</p></source> + <translation><p><b>{0}</b> bir dosya değil.</p></translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="7538" /> + <source>Resources</source> + <translation>Kaynaklar</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="7540" /> + <source>Add file...</source> + <translation>Dosya ekle...</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="7541" /> <source>Add files...</source> <translation>Dosyaları ekle...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7519" /> + <location filename="../QScintilla/Editor.py" line="7542" /> <source>Add aliased file...</source> <translation>Kısaltmalar dosyasına ekle...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7521" /> + <location filename="../QScintilla/Editor.py" line="7544" /> <source>Add localized resource...</source> <translation>Yaral kaynak ekle...</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7524" /> + <location filename="../QScintilla/Editor.py" line="7547" /> <source>Add resource frame</source> <translation>Çerçeve kaynağı ekle</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7543" /> + <location filename="../QScintilla/Editor.py" line="7566" /> <source>Add file resource</source> <translation>Dosya kaynağını ekle</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7557" /> + <location filename="../QScintilla/Editor.py" line="7580" /> <source>Add file resources</source> <translation>Dosya kaynaklarını ekle</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7581" /> - <location filename="../QScintilla/Editor.py" line="7575" /> + <location filename="../QScintilla/Editor.py" line="7604" /> + <location filename="../QScintilla/Editor.py" line="7598" /> <source>Add aliased file resource</source> <translation>Kısaltmalar dosyası kaynağını ekle</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7582" /> + <location filename="../QScintilla/Editor.py" line="7605" /> <source>Alias for file <b>{0}</b>:</source> <translation><b>{0} dosyası için takma ad</b>:</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7657" /> + <location filename="../QScintilla/Editor.py" line="7680" /> <source>Package Diagram</source> <translation>Paket Şeması</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7658" /> + <location filename="../QScintilla/Editor.py" line="7681" /> <source>Include class attributes?</source> <translation>Sınıf nitelikleri dahil edilsin mi?</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7678" /> + <location filename="../QScintilla/Editor.py" line="7701" /> <source>Imports Diagram</source> <translation>Şemayı İçe Aktar</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7679" /> + <location filename="../QScintilla/Editor.py" line="7702" /> <source>Include imports from external modules?</source> <translation>Harici modüllerdan içe aktarım dahil edilsin mi?</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7698" /> + <location filename="../QScintilla/Editor.py" line="7721" /> <source>Application Diagram</source> <translation>Uygulama Şeması</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7699" /> + <location filename="../QScintilla/Editor.py" line="7722" /> <source>Include module names?</source> <translation>Modül isimleri dahil edilsin mi?</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8056" /> + <location filename="../QScintilla/Editor.py" line="8079" /> <source>Add to dictionary</source> <translation>Sözlüğe ekle</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8058" /> + <location filename="../QScintilla/Editor.py" line="8081" /> <source>Ignore All</source> <translation>Hepsini Yoksay</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8476" /> + <location filename="../QScintilla/Editor.py" line="8499" /> <source>Sort Lines</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="8477" /> + <location filename="../QScintilla/Editor.py" line="8500" /> <source>The selection contains illegal data for a numerical sort.</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="8570" /> + <location filename="../QScintilla/Editor.py" line="8593" /> <source>Register Mouse Click Handler</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="8571" /> + <location filename="../QScintilla/Editor.py" line="8594" /> <source>A mouse click handler for "{0}" was already registered by "{1}". Aborting request by "{2}"...</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="8667" /> + <location filename="../QScintilla/Editor.py" line="8690" /> <source>{0:4d} {1}</source> <comment>line number, source code</comment> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="8673" /> + <location filename="../QScintilla/Editor.py" line="8696" /> <source>{0:4d} {1} => {2}</source> <comment>line number, source code, file name</comment> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="8741" /> + <location filename="../QScintilla/Editor.py" line="8764" /> <source>EditorConfig Properties</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="8742" /> + <location filename="../QScintilla/Editor.py" line="8765" /> <source><p>The EditorConfig properties for file <b>{0}</b> could not be loaded.</p></source> <translation type="unfinished" /> </message> @@ -12980,26 +12992,26 @@ <context> <name>EditorFilePage</name> <message> - <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="339" /> - <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="322" /> - <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="305" /> - <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="294" /> + <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="341" /> + <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="324" /> + <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="307" /> + <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="296" /> <source>Add File Filter</source> <translation type="unfinished" /> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="295" /> + <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="297" /> <source>A Save File Filter must contain exactly one wildcard pattern. Yours contains {0}.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="306" /> + <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="308" /> <source>A File Filter must contain at least one wildcard pattern.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="340" /> - <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="323" /> + <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="342" /> + <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="325" /> <source>Enter the file filter entry:</source> <translation type="unfinished" /> </message> @@ -13045,11 +13057,22 @@ </message> <message> <location filename="../Preferences/ConfigurationPages/EditorFilePage.ui" line="0" /> + <location filename="../Preferences/ConfigurationPages/EditorFilePage.ui" line="0" /> <source> KB</source> <translation>KB</translation> </message> <message> <location filename="../Preferences/ConfigurationPages/EditorFilePage.ui" line="0" /> + <source>Reject, if file is greater than</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/EditorFilePage.ui" line="0" /> + <source>Enter the filesize, opening a file should be rejected.</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/EditorFilePage.ui" line="0" /> <source>End of Line</source> <translation>Satırın Sonu</translation> </message> @@ -17064,12 +17087,12 @@ <context> <name>EricApplication</name> <message> - <location filename="../EricWidgets/EricApplication.py" line="220" /> + <location filename="../EricWidgets/EricApplication.py" line="221" /> <source>Loading Style Sheet</source> <translation type="unfinished">Stil Görünümleri Yükleniyor</translation> </message> <message> - <location filename="../EricWidgets/EricApplication.py" line="223" /> + <location filename="../EricWidgets/EricApplication.py" line="224" /> <source><p>The Qt Style Sheet file <b>{0}</b> could not be read.<br>Reason: {1}</p></source> <translation type="unfinished" /> </message> @@ -45947,7 +45970,7 @@ <translation>Pygments</translation> </message> <message> - <location filename="../Preferences/__init__.py" line="468" /> + <location filename="../Preferences/__init__.py" line="469" /> <location filename="../QScintilla/Lexers/__init__.py" line="482" /> <source>Python Files (*.py *.py3)</source> <translation type="unfinished">Python Dosyaları (*.py *.py3)</translation> @@ -46200,7 +46223,7 @@ <translation>Tüm Dosyalar (*)</translation> </message> <message> - <location filename="../Preferences/__init__.py" line="471" /> + <location filename="../Preferences/__init__.py" line="472" /> <location filename="../QScintilla/Lexers/__init__.py" line="575" /> <source>Python3 Files (*.py)</source> <translation>Python Dosyaları (*.py3)</translation> @@ -54750,18 +54773,18 @@ <context> <name>Preferences</name> <message> - <location filename="../Preferences/__init__.py" line="1651" /> + <location filename="../Preferences/__init__.py" line="1652" /> <source>Export Preferences</source> <translation>Seçenekleri Dışa Aktar</translation> </message> <message> - <location filename="../Preferences/__init__.py" line="1680" /> - <location filename="../Preferences/__init__.py" line="1653" /> + <location filename="../Preferences/__init__.py" line="1681" /> + <location filename="../Preferences/__init__.py" line="1654" /> <source>Properties File (*.ini);;All Files (*)</source> <translation type="unfinished" /> </message> <message> - <location filename="../Preferences/__init__.py" line="1678" /> + <location filename="../Preferences/__init__.py" line="1679" /> <source>Import Preferences</source> <translation>Seçenekleri İçe Aktar</translation> </message> @@ -56248,8 +56271,8 @@ <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5856" /> - <location filename="../Project/Project.py" line="5843" /> + <location filename="../Project/Project.py" line="5857" /> + <location filename="../Project/Project.py" line="5844" /> <location filename="../Project/Project.py" line="4649" /> <source>Profile Data</source> <translation>Veri Kesiti</translation> @@ -56270,7 +56293,7 @@ <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5908" /> + <location filename="../Project/Project.py" line="5909" /> <location filename="../Project/Project.py" line="4675" /> <source>Application Diagram</source> <translation>Uygulama Şeması</translation> @@ -56311,8 +56334,8 @@ <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6103" /> - <location filename="../Project/Project.py" line="6044" /> + <location filename="../Project/Project.py" line="6104" /> + <location filename="../Project/Project.py" line="6045" /> <location filename="../Project/Project.py" line="4719" /> <source>Create Package List</source> <translation>Paket Listesini Oluştur</translation> @@ -56333,7 +56356,7 @@ <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6172" /> + <location filename="../Project/Project.py" line="6173" /> <location filename="../Project/Project.py" line="4742" /> <source>Create Plugin Archives</source> <translation type="unfinished" /> @@ -56374,9 +56397,9 @@ <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6589" /> - <location filename="../Project/Project.py" line="6560" /> - <location filename="../Project/Project.py" line="6511" /> + <location filename="../Project/Project.py" line="6590" /> + <location filename="../Project/Project.py" line="6561" /> + <location filename="../Project/Project.py" line="6512" /> <location filename="../Project/Project.py" line="4795" /> <source>Execute Make</source> <translation type="unfinished" /> @@ -56397,7 +56420,7 @@ <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6566" /> + <location filename="../Project/Project.py" line="6567" /> <location filename="../Project/Project.py" line="4814" /> <source>Test for Changes</source> <translation type="unfinished" /> @@ -56438,7 +56461,7 @@ <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6744" /> + <location filename="../Project/Project.py" line="6745" /> <location filename="../Project/Project.py" line="4871" /> <source>About Black</source> <translation type="unfinished" /> @@ -56686,195 +56709,195 @@ <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5275" /> - <location filename="../Project/Project.py" line="5272" /> + <location filename="../Project/Project.py" line="5276" /> + <location filename="../Project/Project.py" line="5273" /> <source>Project</source> <translation>Proje</translation> </message> <message> - <location filename="../Project/Project.py" line="5338" /> + <location filename="../Project/Project.py" line="5339" /> <source>&Clear</source> <translation>T&emizle</translation> </message> <message> - <location filename="../Project/Project.py" line="5497" /> - <source>Search New Files</source> - <translation>Yeni Dosyaları Ara</translation> - </message> - <message> <location filename="../Project/Project.py" line="5498" /> + <source>Search New Files</source> + <translation>Yeni Dosyaları Ara</translation> + </message> + <message> + <location filename="../Project/Project.py" line="5499" /> <source>There were no new files found to be added.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5649" /> - <location filename="../Project/Project.py" line="5636" /> - <source>Version Control System</source> - <translation>Sürüm Kontrol Sistemi</translation> - </message> - <message> - <location filename="../Project/Project.py" line="5637" /> - <source><p>The selected VCS <b>{0}</b> could not be found. <br/>Reverting override.</p><p>{1}</p></source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Project/Project.py" line="5650" /> + <location filename="../Project/Project.py" line="5637" /> + <source>Version Control System</source> + <translation>Sürüm Kontrol Sistemi</translation> + </message> + <message> + <location filename="../Project/Project.py" line="5638" /> + <source><p>The selected VCS <b>{0}</b> could not be found. <br/>Reverting override.</p><p>{1}</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Project/Project.py" line="5651" /> <source><p>The selected VCS <b>{0}</b> could not be found.<br/>Disabling version control.</p><p>{1}</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5798" /> + <location filename="../Project/Project.py" line="5799" /> <source>Coverage Data</source> <translation>Veri Kapsamı</translation> </message> <message> - <location filename="../Project/Project.py" line="5844" /> - <location filename="../Project/Project.py" line="5799" /> + <location filename="../Project/Project.py" line="5845" /> + <location filename="../Project/Project.py" line="5800" /> <source>There is no main script defined for the current project. Aborting</source> <translation>Bugeçerli projede tanımlanan ana betik değil. Durduruluyor</translation> </message> <message> - <location filename="../Project/Project.py" line="5811" /> - <source>Code Coverage</source> - <translation>Kod Koruyucu</translation> - </message> - <message> <location filename="../Project/Project.py" line="5812" /> + <source>Code Coverage</source> + <translation>Kod Koruyucu</translation> + </message> + <message> + <location filename="../Project/Project.py" line="5813" /> <source>Please select a coverage file</source> <translation>Lütfen bir koruyucu dosya seçiniz</translation> </message> <message> - <location filename="../Project/Project.py" line="5857" /> + <location filename="../Project/Project.py" line="5858" /> <source>Please select a profile file</source> <translation>Lütfen kesit dosyasını seçiniz</translation> </message> <message> - <location filename="../Project/Project.py" line="5909" /> + <location filename="../Project/Project.py" line="5910" /> <source>Include module names?</source> <translation>Modül isimleri dahil edilsin mi?</translation> </message> <message> - <location filename="../Project/Project.py" line="6045" /> + <location filename="../Project/Project.py" line="6046" /> <source><p>The file <b>PKGLIST</b> already exists.</p><p>Overwrite it?</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6104" /> + <location filename="../Project/Project.py" line="6105" /> <source><p>The file <b>PKGLIST</b> could not be created.</p><p>Reason: {0}</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6393" /> - <location filename="../Project/Project.py" line="6351" /> - <location filename="../Project/Project.py" line="6305" /> - <location filename="../Project/Project.py" line="6294" /> - <location filename="../Project/Project.py" line="6276" /> - <location filename="../Project/Project.py" line="6243" /> - <location filename="../Project/Project.py" line="6213" /> - <location filename="../Project/Project.py" line="6185" /> - <location filename="../Project/Project.py" line="6155" /> - <location filename="../Project/Project.py" line="6141" /> - <location filename="../Project/Project.py" line="6124" /> + <location filename="../Project/Project.py" line="6394" /> + <location filename="../Project/Project.py" line="6352" /> + <location filename="../Project/Project.py" line="6306" /> + <location filename="../Project/Project.py" line="6295" /> + <location filename="../Project/Project.py" line="6277" /> + <location filename="../Project/Project.py" line="6244" /> + <location filename="../Project/Project.py" line="6214" /> + <location filename="../Project/Project.py" line="6186" /> + <location filename="../Project/Project.py" line="6156" /> + <location filename="../Project/Project.py" line="6142" /> + <location filename="../Project/Project.py" line="6125" /> <source>Create Plugin Archive</source> <translation>Eklenti Arşivi Oluştur</translation> </message> <message> - <location filename="../Project/Project.py" line="6125" /> + <location filename="../Project/Project.py" line="6126" /> <source>The project does not have a main script defined. Aborting...</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6142" /> + <location filename="../Project/Project.py" line="6143" /> <source>Select package lists:</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6156" /> + <location filename="../Project/Project.py" line="6157" /> <source><p>No package list files (PKGLIST*) available or selected. Aborting...</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6164" /> - <source>Creating plugin archives...</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Project/Project.py" line="6165" /> + <source>Creating plugin archives...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Project/Project.py" line="6166" /> <source>Abort</source> <translation type="unfinished">Vazgeç</translation> </message> <message> - <location filename="../Project/Project.py" line="6168" /> + <location filename="../Project/Project.py" line="6169" /> <source>%v/%m Archives</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6186" /> + <location filename="../Project/Project.py" line="6187" /> <source><p>The file <b>{0}</b> could not be read.</p><p>Reason: {1}</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6214" /> + <location filename="../Project/Project.py" line="6215" /> <source><p>The file <b>{0}</b> is not ready yet.</p><p>Please rework it and delete the'; initial_list' line of the header.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6244" /> + <location filename="../Project/Project.py" line="6245" /> <source><p>The eric plugin archive file <b>{0}</b> could not be created.</p><p>Reason: {1}</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6277" /> + <location filename="../Project/Project.py" line="6278" /> <source><p>The file <b>{0}</b> could not be stored in the archive. Ignoring it.</p><p>Reason: {1}</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6295" /> + <location filename="../Project/Project.py" line="6296" /> <source><p>The eric plugin archive files were created with some errors.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6306" /> + <location filename="../Project/Project.py" line="6307" /> <source><p>The eric plugin archive files were created successfully.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6352" /> + <location filename="../Project/Project.py" line="6353" /> <source><p>The plugin file <b>{0}</b> could not be read.</p><p>Reason: {1}</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6394" /> + <location filename="../Project/Project.py" line="6395" /> <source><p>The plugin file <b>{0}</b> could not be read.</p> <p>Reason: {1}</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6512" /> + <location filename="../Project/Project.py" line="6513" /> <source>The make process did not start.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6561" /> + <location filename="../Project/Project.py" line="6562" /> <source>The make process crashed.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6569" /> + <location filename="../Project/Project.py" line="6570" /> <source><p>There are changes that require the configured make target <b>{0}</b> to be rebuilt.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6574" /> + <location filename="../Project/Project.py" line="6575" /> <source><p>There are changes that require the default make target to be rebuilt.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6590" /> + <location filename="../Project/Project.py" line="6591" /> <source>The makefile contains errors.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6745" /> + <location filename="../Project/Project.py" line="6746" /> <source><p><b>Black Version {0}</b></p><p><i>Black</i> is the uncompromising Python code formatter.</p></source> <translation type="unfinished" /> </message> @@ -57734,10 +57757,10 @@ <translation type="unfinished">Düzenleyicide Aç</translation> </message> <message> - <location filename="../Project/ProjectOthersBrowser.py" line="353" /> - <location filename="../Project/ProjectOthersBrowser.py" line="345" /> - <location filename="../Project/ProjectOthersBrowser.py" line="335" /> - <location filename="../Project/ProjectOthersBrowser.py" line="327" /> + <location filename="../Project/ProjectOthersBrowser.py" line="357" /> + <location filename="../Project/ProjectOthersBrowser.py" line="349" /> + <location filename="../Project/ProjectOthersBrowser.py" line="339" /> + <location filename="../Project/ProjectOthersBrowser.py" line="331" /> <location filename="../Project/ProjectOthersBrowser.py" line="85" /> <source>Show Mime-Type</source> <translation type="unfinished" /> @@ -57811,28 +57834,28 @@ <translation>Ayarlanıyor...</translation> </message> <message> - <location filename="../Project/ProjectOthersBrowser.py" line="328" /> + <location filename="../Project/ProjectOthersBrowser.py" line="332" /> <source>The mime type of the file could not be determined.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/ProjectOthersBrowser.py" line="346" /> - <location filename="../Project/ProjectOthersBrowser.py" line="336" /> + <location filename="../Project/ProjectOthersBrowser.py" line="350" /> + <location filename="../Project/ProjectOthersBrowser.py" line="340" /> <source>The file has the mime type <b>{0}</b>.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/ProjectOthersBrowser.py" line="354" /> + <location filename="../Project/ProjectOthersBrowser.py" line="358" /> <source>The file has the mime type <b>{0}</b>.<br/> Shall it be added to the list of text mime types?</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/ProjectOthersBrowser.py" line="447" /> + <location filename="../Project/ProjectOthersBrowser.py" line="451" /> <source>Delete files/directories</source> <translation>Dosyaları/Dizinleri Sil</translation> </message> <message> - <location filename="../Project/ProjectOthersBrowser.py" line="448" /> + <location filename="../Project/ProjectOthersBrowser.py" line="452" /> <source>Do you really want to delete these entries from the project?</source> <translation>Bu girişi projeden silmek istediğinizden gerçekten emin misiniz?</translation> </message> @@ -85002,60 +85025,60 @@ <translation type="unfinished" /> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="901" /> + <location filename="../Debugger/VariablesViewer.py" line="904" /> <source>Global Variables</source> <translation>Evrensel Değişkenler</translation> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="903" /> + <location filename="../Debugger/VariablesViewer.py" line="906" /> <source><b>The Global Variables Viewer Window</b><p>This window displays the global variables of the debugged program.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="910" /> + <location filename="../Debugger/VariablesViewer.py" line="913" /> <source>Local Variables</source> <translation>Yerel Değişkenler</translation> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="912" /> + <location filename="../Debugger/VariablesViewer.py" line="915" /> <source><b>The Local Variables Viewer Window</b><p>This window displays the local variables of the debugged program.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="1030" /> + <location filename="../Debugger/VariablesViewer.py" line="1039" /> <source>Show Details...</source> <translation>Detayları Göster...</translation> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="1032" /> + <location filename="../Debugger/VariablesViewer.py" line="1041" /> <source>Expand</source> <translation type="unfinished" /> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="1033" /> - <source>Collapse</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Debugger/VariablesViewer.py" line="1034" /> - <source>Collapse All</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Debugger/VariablesViewer.py" line="1042" /> - <location filename="../Debugger/VariablesViewer.py" line="1036" /> + <source>Collapse</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Debugger/VariablesViewer.py" line="1043" /> + <source>Collapse All</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Debugger/VariablesViewer.py" line="1051" /> + <location filename="../Debugger/VariablesViewer.py" line="1045" /> <source>Refresh</source> <translation type="unfinished">Tazele</translation> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="1044" /> - <location filename="../Debugger/VariablesViewer.py" line="1038" /> + <location filename="../Debugger/VariablesViewer.py" line="1053" /> + <location filename="../Debugger/VariablesViewer.py" line="1047" /> <source>Configure...</source> <translation>Ayarlanıyor...</translation> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="1046" /> - <location filename="../Debugger/VariablesViewer.py" line="1039" /> + <location filename="../Debugger/VariablesViewer.py" line="1055" /> + <location filename="../Debugger/VariablesViewer.py" line="1048" /> <source>Variables Type Filter...</source> <translation type="unfinished" /> </message> @@ -95563,12 +95586,12 @@ <context> <name>eric7_ide</name> <message> - <location filename="../eric7_ide.py" line="394" /> + <location filename="../eric7_ide.py" line="395" /> <source>Starting...</source> <translation type="unfinished" /> </message> <message> - <location filename="../eric7_ide.py" line="400" /> + <location filename="../eric7_ide.py" line="401" /> <source>Generating Main Window...</source> <translation type="unfinished">Anapencere üretiliyor...</translation> </message>
--- a/src/eric7/i18n/eric7_zh_CN.ts Fri Oct 14 14:46:40 2022 +0200 +++ b/src/eric7/i18n/eric7_zh_CN.ts Fri Oct 14 17:02:09 2022 +0200 @@ -1827,17 +1827,17 @@ <translation type="unfinished" /> </message> <message> - <location filename="../Utilities/BackgroundService.py" line="488" /> + <location filename="../Utilities/BackgroundService.py" line="487" /> <source>Eric's background client disconnected because of an unknown reason.</source> <translation>Erics 后台客户端因未知原因断开连接。</translation> </message> <message> + <location filename="../Utilities/BackgroundService.py" line="496" /> + <source>Background client disconnected.</source> + <translation>后台客户端已断开连接。</translation> + </message> + <message> <location filename="../Utilities/BackgroundService.py" line="497" /> - <source>Background client disconnected.</source> - <translation>后台客户端已断开连接。</translation> - </message> - <message> - <location filename="../Utilities/BackgroundService.py" line="498" /> <source>The background client for <b>{0}</b> disconnected because of an unknown reason.<br>Should it be restarted?</source> <translation><b>{0}</b> 的后台客户端因未知原因中断了连接。<br>是否对其重新启动?</translation> </message> @@ -8895,13 +8895,13 @@ <translation type="unfinished" /> </message> <message> - <location filename="../Debugger/DebugViewer.py" line="754" /> + <location filename="../Debugger/DebugViewer.py" line="756" /> <source><p>Debugger with ID <b>{0}</b> has been connected.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Debugger/DebugViewer.py" line="997" /> - <location filename="../Debugger/DebugViewer.py" line="869" /> + <location filename="../Debugger/DebugViewer.py" line="999" /> + <location filename="../Debugger/DebugViewer.py" line="871" /> <source>unknown state ({0})</source> <translation type="unfinished" /> </message> @@ -9590,7 +9590,7 @@ <translation>不要设定调试客户的编码</translation> </message> <message> - <location filename="../Project/DebuggerPropertiesDialog.py" line="127" /> + <location filename="../Project/DebuggerPropertiesDialog.py" line="133" /> <source>All Files (*)</source> <translation>所有文件 (*)</translation> </message> @@ -11157,960 +11157,972 @@ <context> <name>Editor</name> <message> - <location filename="../QScintilla/Editor.py" line="3245" /> - <location filename="../QScintilla/Editor.py" line="406" /> + <location filename="../QScintilla/Editor.py" line="3268" /> + <location filename="../QScintilla/Editor.py" line="431" /> + <location filename="../QScintilla/Editor.py" line="416" /> + <location filename="../QScintilla/Editor.py" line="404" /> <source>Open File</source> <translation>打开文件</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="407" /> + <location filename="../QScintilla/Editor.py" line="405" /> + <source><p>The file <b>{0}</b> is not a text file. It will not be opened!</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="417" /> + <source><p>The size of the file <b>{0}</b> is <b>{1} KB</b> and exceeds the configured limit of <b>{2} KB</b>. It will not be opened!</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="432" /> <source><p>The size of the file <b>{0}</b> is <b>{1} KB</b>. Do you really want to load it?</p></source> <translation><p>文件 <b>{0}</b> 的大小为 <b>{1} KB</b>。确认要读取它?</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="505" /> + <location filename="../QScintilla/Editor.py" line="528" /> <source><b>A Source Editor Window</b><p>This window is used to display and edit a source file. You can open as many of these as you like. The name of the file is displayed in the window's titlebar.</p><p>In order to set breakpoints just click in the space between the line numbers and the fold markers. Via the context menu of the margins they may be edited.</p><p>In order to set bookmarks just Shift click in the space between the line numbers and the fold markers.</p><p>These actions can be reversed via the context menu.</p><p>Ctrl clicking on a syntax error marker shows some info about this error.</p></source> <translation><b>源代码编辑器窗口</b><p>该窗口用于显示和编辑源文件。可以打开任意多个窗口。文件名显示在窗口标题栏中。</p><p>要设置断点只需在行号与折叠标记之间的空白处点击即可。通过页边空白的上下文菜单可进行编辑。</p><p>要设置书签只需按住 Shift 键再在行号与折叠标记之间的空白处点击即可。</p><p>以上行为都可能通过上下文菜单进行反转。</p><p>按住 Ctrl 再语法错误标记上点击可显示该错误的部分信息。</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="833" /> + <location filename="../QScintilla/Editor.py" line="856" /> <source>Undo</source> <translation>撤消</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="836" /> + <location filename="../QScintilla/Editor.py" line="859" /> <source>Redo</source> <translation>重做</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="839" /> + <location filename="../QScintilla/Editor.py" line="862" /> <source>Revert to last saved state</source> <translation>还原到最后保存的状态</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="843" /> + <location filename="../QScintilla/Editor.py" line="866" /> <source>Cut</source> <translation>剪切</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="846" /> + <location filename="../QScintilla/Editor.py" line="869" /> <source>Copy</source> <translation>复制</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="849" /> + <location filename="../QScintilla/Editor.py" line="872" /> <source>Paste</source> <translation>粘贴</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="855" /> - <source>Indent</source> - <translation>缩进</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="860" /> - <source>Unindent</source> - <translation>取消缩进</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="865" /> - <source>Comment</source> - <translation>注释</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="870" /> - <source>Uncomment</source> - <translation>取消注释</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="8934" /> - <location filename="../QScintilla/Editor.py" line="875" /> - <source>Generate Docstring</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/Editor.py" line="878" /> + <source>Indent</source> + <translation>缩进</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="883" /> + <source>Unindent</source> + <translation>取消缩进</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="888" /> + <source>Comment</source> + <translation>注释</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="893" /> + <source>Uncomment</source> + <translation>取消注释</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="8957" /> + <location filename="../QScintilla/Editor.py" line="898" /> + <source>Generate Docstring</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="901" /> <source>Select to brace</source> <translation>选择括号内容</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="879" /> + <location filename="../QScintilla/Editor.py" line="902" /> <source>Select all</source> <translation>全选</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="880" /> + <location filename="../QScintilla/Editor.py" line="903" /> <source>Deselect all</source> <translation>全部取消选择</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="882" /> + <location filename="../QScintilla/Editor.py" line="905" /> <source>Execute Selection In Console</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="894" /> + <location filename="../QScintilla/Editor.py" line="917" /> <source>Use Monospaced Font</source> <translation>使用单空格字体</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="899" /> + <location filename="../QScintilla/Editor.py" line="922" /> <source>Autosave enabled</source> <translation>允许自动保存</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="904" /> + <location filename="../QScintilla/Editor.py" line="927" /> <source>Typing aids enabled</source> <translation>允许输入辅助</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="912" /> + <location filename="../QScintilla/Editor.py" line="935" /> <source>Automatic Completion enabled</source> <translation>允许自动补全</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="921" /> - <source>Calltip</source> - <translation>调用提示</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="924" /> - <source>Code Info</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="939" /> - <source>New Document View</source> - <translation>新建文档视图</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="944" /> + <source>Calltip</source> + <translation>调用提示</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="947" /> + <source>Code Info</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="962" /> + <source>New Document View</source> + <translation>新建文档视图</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="967" /> <source>New Document View (with new split)</source> <translation>新建文档视图(在新拆分页中)</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="952" /> + <location filename="../QScintilla/Editor.py" line="975" /> <source>Save</source> <translation>保存</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="956" /> + <location filename="../QScintilla/Editor.py" line="979" /> <source>Save As...</source> <translation>另存为…</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="961" /> + <location filename="../QScintilla/Editor.py" line="984" /> <source>Save Copy...</source> <translation type="unfinished">保存副本…</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="983" /> - <location filename="../QScintilla/Editor.py" line="980" /> + <location filename="../QScintilla/Editor.py" line="1006" /> + <location filename="../QScintilla/Editor.py" line="1003" /> <source>Complete</source> <translation>补全</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="987" /> + <location filename="../QScintilla/Editor.py" line="1010" /> <source>Clear Completions Cache</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="990" /> + <location filename="../QScintilla/Editor.py" line="1013" /> <source>Complete from Document</source> <translation type="unfinished">从文档</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="992" /> + <location filename="../QScintilla/Editor.py" line="1015" /> <source>Complete from APIs</source> <translation type="unfinished">从 APIs</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="995" /> + <location filename="../QScintilla/Editor.py" line="1018" /> <source>Complete from Document and APIs</source> <translation type="unfinished">从文档和 APIs</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1009" /> + <location filename="../QScintilla/Editor.py" line="1032" /> <source>Check</source> <translation>检查</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1020" /> + <location filename="../QScintilla/Editor.py" line="1043" /> <source>Code Formatting</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1023" /> - <source>Format Code</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1027" /> - <source>Check Formatting</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1031" /> - <source>Formatting Diff</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/Editor.py" line="1046" /> + <source>Format Code</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1050" /> + <source>Check Formatting</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1054" /> + <source>Formatting Diff</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1069" /> <source>Tools</source> <translation>工具</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1057" /> + <location filename="../QScintilla/Editor.py" line="1080" /> <source>Show</source> <translation>显示</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1059" /> + <location filename="../QScintilla/Editor.py" line="1082" /> <source>Code metrics...</source> <translation>代码度量…</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1061" /> + <location filename="../QScintilla/Editor.py" line="1084" /> <source>Code coverage...</source> <translation>代码覆盖率…</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1064" /> - <source>Show code coverage annotations</source> - <translation>显示代码覆盖率注解</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1067" /> - <source>Hide code coverage annotations</source> - <translation>隐藏代码覆盖率注解</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1071" /> - <source>Profile data...</source> - <translation>剖析数据…</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1085" /> - <source>Diagrams</source> - <translation>图表</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="1087" /> + <source>Show code coverage annotations</source> + <translation>显示代码覆盖率注解</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1090" /> + <source>Hide code coverage annotations</source> + <translation>隐藏代码覆盖率注解</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1094" /> + <source>Profile data...</source> + <translation>剖析数据…</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1108" /> + <source>Diagrams</source> + <translation>图表</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1110" /> <source>Class Diagram...</source> <translation>类图…</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1088" /> - <source>Package Diagram...</source> - <translation>程序包图…</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1089" /> - <source>Imports Diagram...</source> - <translation>引用图…</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1091" /> - <source>Application Diagram...</source> - <translation>应用程序图…</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1096" /> - <source>Load Diagram...</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/Editor.py" line="1111" /> + <source>Package Diagram...</source> + <translation>程序包图…</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1112" /> + <source>Imports Diagram...</source> + <translation>引用图…</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1114" /> + <source>Application Diagram...</source> + <translation>应用程序图…</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1119" /> + <source>Load Diagram...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1134" /> <source>Languages</source> <translation>语言</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1115" /> + <location filename="../QScintilla/Editor.py" line="1138" /> <source>Text</source> <translation type="unfinished">文本</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1140" /> + <location filename="../QScintilla/Editor.py" line="1163" /> <source>Guessed</source> <translation>猜测</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1471" /> - <location filename="../QScintilla/Editor.py" line="1144" /> + <location filename="../QScintilla/Editor.py" line="1494" /> + <location filename="../QScintilla/Editor.py" line="1167" /> <source>Alternatives</source> <translation>备选</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1161" /> - <source>Encodings</source> - <translation>编码</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="1184" /> + <source>Encodings</source> + <translation>编码</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1207" /> <source>Re-Open With Encoding</source> <translation>使用指定编码重新打开</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1204" /> + <location filename="../QScintilla/Editor.py" line="1227" /> <source>End-of-Line Type</source> <translation>行尾类型</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1208" /> + <location filename="../QScintilla/Editor.py" line="1231" /> <source>Unix</source> <translation>Unix</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1214" /> + <location filename="../QScintilla/Editor.py" line="1237" /> <source>Windows</source> <translation>Windows</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1220" /> + <location filename="../QScintilla/Editor.py" line="1243" /> <source>Macintosh</source> <translation>Macintosh</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1238" /> + <location filename="../QScintilla/Editor.py" line="1261" /> <source>Spelling</source> <translation type="unfinished">拼写法</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8052" /> - <location filename="../QScintilla/Editor.py" line="1246" /> + <location filename="../QScintilla/Editor.py" line="8075" /> + <location filename="../QScintilla/Editor.py" line="1269" /> <source>Check spelling...</source> <translation>正在进行拼写检查…</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1251" /> + <location filename="../QScintilla/Editor.py" line="1274" /> <source>Check spelling of selection...</source> <translation>正在对所选内容进行拼写检查…</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1255" /> + <location filename="../QScintilla/Editor.py" line="1278" /> <source>Remove from dictionary</source> <translation>从词典里移除</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1272" /> + <location filename="../QScintilla/Editor.py" line="1295" /> <source>Spell Check Languages</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1276" /> + <location filename="../QScintilla/Editor.py" line="1299" /> <source>No Language</source> <translation>无语言</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1303" /> + <location filename="../QScintilla/Editor.py" line="1326" /> <source>Toggle bookmark</source> <translation>切换书签</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1305" /> - <source>Next bookmark</source> - <translation>下一个书签</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1308" /> - <source>Previous bookmark</source> - <translation>上一个书签</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1311" /> - <source>Clear all bookmarks</source> - <translation>清除所有书签</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1322" /> - <source>Toggle breakpoint</source> - <translation>切换断点</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1325" /> - <source>Toggle temporary breakpoint</source> - <translation>切换临时断点</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="1328" /> - <source>Edit breakpoint...</source> - <translation>编辑断点…</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="5754" /> + <source>Next bookmark</source> + <translation>下一个书签</translation> + </message> + <message> <location filename="../QScintilla/Editor.py" line="1331" /> - <source>Enable breakpoint</source> - <translation>允许断点</translation> + <source>Previous bookmark</source> + <translation>上一个书签</translation> </message> <message> <location filename="../QScintilla/Editor.py" line="1334" /> - <source>Next breakpoint</source> - <translation>下一个断点</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1337" /> - <source>Previous breakpoint</source> - <translation>上一个断点</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1340" /> - <source>Clear all breakpoints</source> - <translation>清除所有断点</translation> + <source>Clear all bookmarks</source> + <translation>清除所有书签</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1345" /> + <source>Toggle breakpoint</source> + <translation>切换断点</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1348" /> + <source>Toggle temporary breakpoint</source> + <translation>切换临时断点</translation> </message> <message> <location filename="../QScintilla/Editor.py" line="1351" /> - <source>Toggle all folds</source> - <translation type="unfinished">开关所有折叠</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1356" /> - <source>Toggle all folds (including children)</source> - <translation type="unfinished">开关所有折叠(包含子项)</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1359" /> - <source>Toggle current fold</source> - <translation type="unfinished">开关当前折叠</translation> + <source>Edit breakpoint...</source> + <translation>编辑断点…</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="5777" /> + <location filename="../QScintilla/Editor.py" line="1354" /> + <source>Enable breakpoint</source> + <translation>允许断点</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1357" /> + <source>Next breakpoint</source> + <translation>下一个断点</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1360" /> + <source>Previous breakpoint</source> + <translation>上一个断点</translation> </message> <message> <location filename="../QScintilla/Editor.py" line="1363" /> - <source>Expand (including children)</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1367" /> - <source>Collapse (including children)</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1372" /> - <source>Clear all folds</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1383" /> - <source>Goto syntax error</source> - <translation>转到语法错误处</translation> + <source>Clear all breakpoints</source> + <translation>清除所有断点</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1374" /> + <source>Toggle all folds</source> + <translation type="unfinished">开关所有折叠</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1379" /> + <source>Toggle all folds (including children)</source> + <translation type="unfinished">开关所有折叠(包含子项)</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1382" /> + <source>Toggle current fold</source> + <translation type="unfinished">开关当前折叠</translation> </message> <message> <location filename="../QScintilla/Editor.py" line="1386" /> - <source>Show syntax error message</source> - <translation>显示语法错误消息</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1389" /> - <source>Clear syntax error</source> - <translation>清除语法错误</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1393" /> - <source>Next warning</source> - <translation>下一个警告</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1396" /> - <source>Previous warning</source> - <translation>上一个警告</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1399" /> - <source>Show warning message</source> - <translation>显示警告信息</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1402" /> - <source>Clear warnings</source> - <translation>清空警告</translation> + <source>Expand (including children)</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1390" /> + <source>Collapse (including children)</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1395" /> + <source>Clear all folds</source> + <translation type="unfinished" /> </message> <message> <location filename="../QScintilla/Editor.py" line="1406" /> - <source>Next uncovered line</source> - <translation>下一个未覆盖行</translation> + <source>Goto syntax error</source> + <translation>转到语法错误处</translation> </message> <message> <location filename="../QScintilla/Editor.py" line="1409" /> - <source>Previous uncovered line</source> - <translation>上一个未覆盖行</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1413" /> - <source>Next task</source> - <translation>下一个任务</translation> + <source>Show syntax error message</source> + <translation>显示语法错误消息</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1412" /> + <source>Clear syntax error</source> + <translation>清除语法错误</translation> </message> <message> <location filename="../QScintilla/Editor.py" line="1416" /> + <source>Next warning</source> + <translation>下一个警告</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1419" /> + <source>Previous warning</source> + <translation>上一个警告</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1422" /> + <source>Show warning message</source> + <translation>显示警告信息</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1425" /> + <source>Clear warnings</source> + <translation>清空警告</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1429" /> + <source>Next uncovered line</source> + <translation>下一个未覆盖行</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1432" /> + <source>Previous uncovered line</source> + <translation>上一个未覆盖行</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1436" /> + <source>Next task</source> + <translation>下一个任务</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1439" /> <source>Previous task</source> <translation>上一个任务</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1420" /> + <location filename="../QScintilla/Editor.py" line="1443" /> <source>Next change</source> <translation>下一个更改</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1423" /> + <location filename="../QScintilla/Editor.py" line="1446" /> <source>Previous change</source> <translation>上一个更改</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1426" /> - <source>Clear changes</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="1457" /> - <location filename="../QScintilla/Editor.py" line="1448" /> - <source>Export source</source> - <translation>导出源代码</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="1449" /> + <source>Clear changes</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1480" /> + <location filename="../QScintilla/Editor.py" line="1471" /> + <source>Export source</source> + <translation>导出源代码</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1472" /> <source><p>No exporter available for the export format <b>{0}</b>. Aborting...</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="1458" /> + <location filename="../QScintilla/Editor.py" line="1481" /> <source>No export format given. Aborting...</source> <translation>没有给定导出格式。终止…</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1468" /> - <source>Alternatives ({0})</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../QScintilla/Editor.py" line="1491" /> + <source>Alternatives ({0})</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="1514" /> <source>Pygments Lexer</source> <translation>Pygments 词法分析器</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="1492" /> + <location filename="../QScintilla/Editor.py" line="1515" /> <source>Select the Pygments lexer to apply.</source> <translation>选择要应用的 Pygments 词法分析器。</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2051" /> + <location filename="../QScintilla/Editor.py" line="2074" /> <source>Modification of Read Only file</source> <translation>只读文件的改变</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2052" /> + <location filename="../QScintilla/Editor.py" line="2075" /> <source>You are attempting to change a read only file. Please save to a different file first.</source> <translation>试图改变只读文件。请先保存到另一个文件中。</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2473" /> + <location filename="../QScintilla/Editor.py" line="2496" /> <source>Add Breakpoint</source> <translation type="unfinished">添加断点</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2474" /> + <location filename="../QScintilla/Editor.py" line="2497" /> <source>No Python byte code will be created for the selected line. No break point will be set!</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="2807" /> + <location filename="../QScintilla/Editor.py" line="2830" /> <source>Printing...</source> <translation>打印中…</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2824" /> + <location filename="../QScintilla/Editor.py" line="2847" /> <source>Printing completed</source> <translation>打印已完成</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2826" /> + <location filename="../QScintilla/Editor.py" line="2849" /> <source>Error while printing</source> <translation>打印时出错</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="2829" /> + <location filename="../QScintilla/Editor.py" line="2852" /> <source>Printing aborted</source> <translation>打印失败</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="3187" /> + <location filename="../QScintilla/Editor.py" line="3210" /> <source>File Modified</source> <translation>文件已改变</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="3188" /> + <location filename="../QScintilla/Editor.py" line="3211" /> <source><p>The file <b>{0}</b> has unsaved changes.</p></source> <translation><p>文件 <b>{0}</b> 有未保存的更改。</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="3246" /> + <location filename="../QScintilla/Editor.py" line="3269" /> <source><p>The file <b>{0}</b> could not be opened.</p><p>Reason: {1}</p></source> <translation><p>文件 <b>{0}</b> 无法打开。</p><p>原因:{1}</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="3424" /> - <location filename="../QScintilla/Editor.py" line="3405" /> - <location filename="../QScintilla/Editor.py" line="3365" /> + <location filename="../QScintilla/Editor.py" line="3447" /> + <location filename="../QScintilla/Editor.py" line="3428" /> + <location filename="../QScintilla/Editor.py" line="3388" /> <source>Save File</source> <translation>保存文件</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="3366" /> + <location filename="../QScintilla/Editor.py" line="3389" /> <source><p>The file <b>{0}</b> could not be saved.<br/>Reason: {1}</p></source> <translation><p>文件 <b>{0}</b> 无法保存。<br />原因:{1}</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="3425" /> + <location filename="../QScintilla/Editor.py" line="3448" /> <source><p>The file <b>{0}</b> already exists. Overwrite it?</p></source> <translation><p>文件 <b>{0}</b> 已经存在。是否覆盖?</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="4935" /> + <location filename="../QScintilla/Editor.py" line="4958" /> <source>Autocompletion</source> <translation>自动完成</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="4936" /> + <location filename="../QScintilla/Editor.py" line="4959" /> <source>Autocompletion is not available because there is no autocompletion source set.</source> <translation>自动完成无效,没有设定自动完成源。</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="5064" /> + <location filename="../QScintilla/Editor.py" line="5087" /> <source>Auto-Completion Provider</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="5065" /> + <location filename="../QScintilla/Editor.py" line="5088" /> <source>The completion list provider '{0}' was already registered. Ignoring duplicate request.</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="5357" /> + <location filename="../QScintilla/Editor.py" line="5380" /> <source>Call-Tips Provider</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="5358" /> + <location filename="../QScintilla/Editor.py" line="5381" /> <source>The call-tips provider '{0}' was already registered. Ignoring duplicate request.</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="5758" /> + <location filename="../QScintilla/Editor.py" line="5781" /> <source>Disable breakpoint</source> <translation>去除断点</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6113" /> + <location filename="../QScintilla/Editor.py" line="6136" /> <source>Code Coverage</source> <translation>代码覆盖率</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6114" /> + <location filename="../QScintilla/Editor.py" line="6137" /> <source>Please select a coverage file</source> <translation>请选择一个覆盖率文件</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6189" /> - <location filename="../QScintilla/Editor.py" line="6181" /> + <location filename="../QScintilla/Editor.py" line="6212" /> + <location filename="../QScintilla/Editor.py" line="6204" /> <source>Show Code Coverage Annotations</source> <translation>显示代码覆盖率注解</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6182" /> + <location filename="../QScintilla/Editor.py" line="6205" /> <source>All lines have been covered.</source> <translation>所有行均被已覆盖。</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6190" /> + <location filename="../QScintilla/Editor.py" line="6213" /> <source>There is no coverage file available.</source> <translation>没有有效的覆盖率文件。</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6286" /> + <location filename="../QScintilla/Editor.py" line="6309" /> <source>Profile Data</source> <translation>剖析数据</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6287" /> + <location filename="../QScintilla/Editor.py" line="6310" /> <source>Please select a profile file</source> <translation>请选择一个剖析文件</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6450" /> - <location filename="../QScintilla/Editor.py" line="6444" /> + <location filename="../QScintilla/Editor.py" line="6473" /> + <location filename="../QScintilla/Editor.py" line="6467" /> <source>Syntax Error</source> <translation>语法错误</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6451" /> + <location filename="../QScintilla/Editor.py" line="6474" /> <source>No syntax error message available.</source> <translation>语法错误消息无效。</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6662" /> - <location filename="../QScintilla/Editor.py" line="6656" /> + <location filename="../QScintilla/Editor.py" line="6685" /> + <location filename="../QScintilla/Editor.py" line="6679" /> <source>Warning</source> <translation>警告</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6662" /> + <location filename="../QScintilla/Editor.py" line="6685" /> <source>No warning messages available.</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="6726" /> + <location filename="../QScintilla/Editor.py" line="6749" /> <source>Style: {0}</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="6729" /> + <location filename="../QScintilla/Editor.py" line="6752" /> <source>Warning: {0}</source> <translation>警告:{0}</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6736" /> + <location filename="../QScintilla/Editor.py" line="6759" /> <source>Error: {0}</source> <translation>错误:{0}</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6843" /> + <location filename="../QScintilla/Editor.py" line="6866" /> <source>Macro Name</source> <translation>宏名称</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6843" /> + <location filename="../QScintilla/Editor.py" line="6866" /> <source>Select a macro name:</source> <translation>选择一个宏名称:</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6869" /> + <location filename="../QScintilla/Editor.py" line="6892" /> <source>Load macro file</source> <translation>输入宏文件</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6915" /> - <location filename="../QScintilla/Editor.py" line="6871" /> + <location filename="../QScintilla/Editor.py" line="6938" /> + <location filename="../QScintilla/Editor.py" line="6894" /> <source>Macro files (*.macro)</source> <translation>宏文件 (*.macro)</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6893" /> - <location filename="../QScintilla/Editor.py" line="6883" /> + <location filename="../QScintilla/Editor.py" line="6916" /> + <location filename="../QScintilla/Editor.py" line="6906" /> <source>Error loading macro</source> <translation>载入宏文件出错</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6884" /> + <location filename="../QScintilla/Editor.py" line="6907" /> <source><p>The macro file <b>{0}</b> could not be read.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="6894" /> + <location filename="../QScintilla/Editor.py" line="6917" /> <source><p>The macro file <b>{0}</b> is corrupt.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="6913" /> + <location filename="../QScintilla/Editor.py" line="6936" /> <source>Save macro file</source> <translation>保存宏文件</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6931" /> + <location filename="../QScintilla/Editor.py" line="6954" /> <source>Save macro</source> <translation>保存宏</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6932" /> + <location filename="../QScintilla/Editor.py" line="6955" /> <source><p>The macro file <b>{0}</b> already exists. Overwrite it?</p></source> <translation><p>宏文件 <b>{0}</b> 已经存在。是否覆盖?</p></translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6947" /> + <location filename="../QScintilla/Editor.py" line="6970" /> <source>Error saving macro</source> <translation>保存宏出错</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6948" /> + <location filename="../QScintilla/Editor.py" line="6971" /> <source><p>The macro file <b>{0}</b> could not be written.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="6961" /> + <location filename="../QScintilla/Editor.py" line="6984" /> <source>Start Macro Recording</source> <translation>开始宏录制</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6962" /> + <location filename="../QScintilla/Editor.py" line="6985" /> <source>Macro recording is already active. Start new?</source> <translation>宏录制已激活。开始录制新宏?</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6988" /> + <location filename="../QScintilla/Editor.py" line="7011" /> <source>Macro Recording</source> <translation>宏录制</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="6989" /> + <location filename="../QScintilla/Editor.py" line="7012" /> <source>Enter name of the macro:</source> <translation>输入宏名称:</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7140" /> + <location filename="../QScintilla/Editor.py" line="7163" /> <source><p>The file <b>{0}</b> has been changed while it was opened in eric. Reread it?</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="7146" /> + <location filename="../QScintilla/Editor.py" line="7169" /> <source><br><b>Warning:</b> You will lose your changes upon reopening it.</source> <translation><br><b>警告:</b>您在重新打开时将丢失所有更改。</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7153" /> + <location filename="../QScintilla/Editor.py" line="7176" /> <source>File changed</source> <translation>文件已改变</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7203" /> + <location filename="../QScintilla/Editor.py" line="7226" /> <source>{0} (ro)</source> <translation>{0}(只读)</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7494" /> - <source>Drop Error</source> - <translation>降落误差</translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="7495" /> - <source><p><b>{0}</b> is not a file.</p></source> - <translation><p><b>{0}</b> 不是一个文件。</p></translation> - </message> - <message> - <location filename="../QScintilla/Editor.py" line="7515" /> - <source>Resources</source> - <translation>资源</translation> - </message> - <message> <location filename="../QScintilla/Editor.py" line="7517" /> - <source>Add file...</source> - <translation>添加文件…</translation> + <source>Drop Error</source> + <translation>降落误差</translation> </message> <message> <location filename="../QScintilla/Editor.py" line="7518" /> + <source><p><b>{0}</b> is not a file.</p></source> + <translation><p><b>{0}</b> 不是一个文件。</p></translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="7538" /> + <source>Resources</source> + <translation>资源</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="7540" /> + <source>Add file...</source> + <translation>添加文件…</translation> + </message> + <message> + <location filename="../QScintilla/Editor.py" line="7541" /> <source>Add files...</source> <translation>添加文件…</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7519" /> + <location filename="../QScintilla/Editor.py" line="7542" /> <source>Add aliased file...</source> <translation>添加别名文件…</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7521" /> + <location filename="../QScintilla/Editor.py" line="7544" /> <source>Add localized resource...</source> <translation>添加本地资源…</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7524" /> + <location filename="../QScintilla/Editor.py" line="7547" /> <source>Add resource frame</source> <translation>添加资源结构</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7543" /> + <location filename="../QScintilla/Editor.py" line="7566" /> <source>Add file resource</source> <translation>添加文件资源</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7557" /> + <location filename="../QScintilla/Editor.py" line="7580" /> <source>Add file resources</source> <translation>添加多个文件资源</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7581" /> - <location filename="../QScintilla/Editor.py" line="7575" /> + <location filename="../QScintilla/Editor.py" line="7604" /> + <location filename="../QScintilla/Editor.py" line="7598" /> <source>Add aliased file resource</source> <translation>添加别名文件资源</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7582" /> + <location filename="../QScintilla/Editor.py" line="7605" /> <source>Alias for file <b>{0}</b>:</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="7657" /> + <location filename="../QScintilla/Editor.py" line="7680" /> <source>Package Diagram</source> <translation>程序包图</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7658" /> + <location filename="../QScintilla/Editor.py" line="7681" /> <source>Include class attributes?</source> <translation>包含类属性?</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7678" /> + <location filename="../QScintilla/Editor.py" line="7701" /> <source>Imports Diagram</source> <translation>引用图</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7679" /> + <location filename="../QScintilla/Editor.py" line="7702" /> <source>Include imports from external modules?</source> <translation>从外部模块包含引用?</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7698" /> + <location filename="../QScintilla/Editor.py" line="7721" /> <source>Application Diagram</source> <translation>应用程序图</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="7699" /> + <location filename="../QScintilla/Editor.py" line="7722" /> <source>Include module names?</source> <translation>包含模块名?</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8056" /> + <location filename="../QScintilla/Editor.py" line="8079" /> <source>Add to dictionary</source> <translation>添加到文件夹</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8058" /> + <location filename="../QScintilla/Editor.py" line="8081" /> <source>Ignore All</source> <translation>全部忽略</translation> </message> <message> - <location filename="../QScintilla/Editor.py" line="8476" /> + <location filename="../QScintilla/Editor.py" line="8499" /> <source>Sort Lines</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="8477" /> + <location filename="../QScintilla/Editor.py" line="8500" /> <source>The selection contains illegal data for a numerical sort.</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="8570" /> + <location filename="../QScintilla/Editor.py" line="8593" /> <source>Register Mouse Click Handler</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="8571" /> + <location filename="../QScintilla/Editor.py" line="8594" /> <source>A mouse click handler for "{0}" was already registered by "{1}". Aborting request by "{2}"...</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="8667" /> + <location filename="../QScintilla/Editor.py" line="8690" /> <source>{0:4d} {1}</source> <comment>line number, source code</comment> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="8673" /> + <location filename="../QScintilla/Editor.py" line="8696" /> <source>{0:4d} {1} => {2}</source> <comment>line number, source code, file name</comment> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="8741" /> + <location filename="../QScintilla/Editor.py" line="8764" /> <source>EditorConfig Properties</source> <translation type="unfinished" /> </message> <message> - <location filename="../QScintilla/Editor.py" line="8742" /> + <location filename="../QScintilla/Editor.py" line="8765" /> <source><p>The EditorConfig properties for file <b>{0}</b> could not be loaded.</p></source> <translation type="unfinished" /> </message> @@ -13013,26 +13025,26 @@ <context> <name>EditorFilePage</name> <message> - <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="339" /> - <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="322" /> - <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="305" /> - <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="294" /> + <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="341" /> + <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="324" /> + <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="307" /> + <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="296" /> <source>Add File Filter</source> <translation type="unfinished" /> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="295" /> + <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="297" /> <source>A Save File Filter must contain exactly one wildcard pattern. Yours contains {0}.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="306" /> + <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="308" /> <source>A File Filter must contain at least one wildcard pattern.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="340" /> - <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="323" /> + <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="342" /> + <location filename="../Preferences/ConfigurationPages/EditorFilePage.py" line="325" /> <source>Enter the file filter entry:</source> <translation type="unfinished" /> </message> @@ -13078,11 +13090,22 @@ </message> <message> <location filename="../Preferences/ConfigurationPages/EditorFilePage.ui" line="0" /> + <location filename="../Preferences/ConfigurationPages/EditorFilePage.ui" line="0" /> <source> KB</source> <translation>千字节</translation> </message> <message> <location filename="../Preferences/ConfigurationPages/EditorFilePage.ui" line="0" /> + <source>Reject, if file is greater than</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/EditorFilePage.ui" line="0" /> + <source>Enter the filesize, opening a file should be rejected.</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Preferences/ConfigurationPages/EditorFilePage.ui" line="0" /> <source>End of Line</source> <translation>行尾</translation> </message> @@ -17107,12 +17130,12 @@ <context> <name>EricApplication</name> <message> - <location filename="../EricWidgets/EricApplication.py" line="220" /> + <location filename="../EricWidgets/EricApplication.py" line="221" /> <source>Loading Style Sheet</source> <translation type="unfinished">样式表载入中</translation> </message> <message> - <location filename="../EricWidgets/EricApplication.py" line="223" /> + <location filename="../EricWidgets/EricApplication.py" line="224" /> <source><p>The Qt Style Sheet file <b>{0}</b> could not be read.<br>Reason: {1}</p></source> <translation type="unfinished" /> </message> @@ -45952,7 +45975,7 @@ <translation>Pygments</translation> </message> <message> - <location filename="../Preferences/__init__.py" line="468" /> + <location filename="../Preferences/__init__.py" line="469" /> <location filename="../QScintilla/Lexers/__init__.py" line="482" /> <source>Python Files (*.py *.py3)</source> <translation type="unfinished">Python 文件 (*.py *.py3)</translation> @@ -46205,7 +46228,7 @@ <translation>所有文件 (*)</translation> </message> <message> - <location filename="../Preferences/__init__.py" line="471" /> + <location filename="../Preferences/__init__.py" line="472" /> <location filename="../QScintilla/Lexers/__init__.py" line="575" /> <source>Python3 Files (*.py)</source> <translation type="unfinished" /> @@ -54754,18 +54777,18 @@ <context> <name>Preferences</name> <message> - <location filename="../Preferences/__init__.py" line="1651" /> + <location filename="../Preferences/__init__.py" line="1652" /> <source>Export Preferences</source> <translation>导出首选项</translation> </message> <message> - <location filename="../Preferences/__init__.py" line="1680" /> - <location filename="../Preferences/__init__.py" line="1653" /> + <location filename="../Preferences/__init__.py" line="1681" /> + <location filename="../Preferences/__init__.py" line="1654" /> <source>Properties File (*.ini);;All Files (*)</source> <translation>属性文件 (*.ini);;所有文件 (*)</translation> </message> <message> - <location filename="../Preferences/__init__.py" line="1678" /> + <location filename="../Preferences/__init__.py" line="1679" /> <source>Import Preferences</source> <translation>导入首选项</translation> </message> @@ -56251,8 +56274,8 @@ <translation><b>代码覆盖率…</b><p>显示项目中所有 Python 文件的代码覆盖率。</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5856" /> - <location filename="../Project/Project.py" line="5843" /> + <location filename="../Project/Project.py" line="5857" /> + <location filename="../Project/Project.py" line="5844" /> <location filename="../Project/Project.py" line="4649" /> <source>Profile Data</source> <translation>剖析数据</translation> @@ -56273,7 +56296,7 @@ <translation><b>剖析数据…</b><p>显示项目的剖析数据。</p></translation> </message> <message> - <location filename="../Project/Project.py" line="5908" /> + <location filename="../Project/Project.py" line="5909" /> <location filename="../Project/Project.py" line="4675" /> <source>Application Diagram</source> <translation>应用程序图</translation> @@ -56314,8 +56337,8 @@ <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6103" /> - <location filename="../Project/Project.py" line="6044" /> + <location filename="../Project/Project.py" line="6104" /> + <location filename="../Project/Project.py" line="6045" /> <location filename="../Project/Project.py" line="4719" /> <source>Create Package List</source> <translation>创建程序包列表</translation> @@ -56336,7 +56359,7 @@ <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6172" /> + <location filename="../Project/Project.py" line="6173" /> <location filename="../Project/Project.py" line="4742" /> <source>Create Plugin Archives</source> <translation type="unfinished" /> @@ -56377,9 +56400,9 @@ <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6589" /> - <location filename="../Project/Project.py" line="6560" /> - <location filename="../Project/Project.py" line="6511" /> + <location filename="../Project/Project.py" line="6590" /> + <location filename="../Project/Project.py" line="6561" /> + <location filename="../Project/Project.py" line="6512" /> <location filename="../Project/Project.py" line="4795" /> <source>Execute Make</source> <translation type="unfinished" /> @@ -56400,7 +56423,7 @@ <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6566" /> + <location filename="../Project/Project.py" line="6567" /> <location filename="../Project/Project.py" line="4814" /> <source>Test for Changes</source> <translation type="unfinished" /> @@ -56441,7 +56464,7 @@ <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6744" /> + <location filename="../Project/Project.py" line="6745" /> <location filename="../Project/Project.py" line="4871" /> <source>About Black</source> <translation type="unfinished" /> @@ -56689,195 +56712,195 @@ <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5275" /> - <location filename="../Project/Project.py" line="5272" /> + <location filename="../Project/Project.py" line="5276" /> + <location filename="../Project/Project.py" line="5273" /> <source>Project</source> <translation>项目</translation> </message> <message> - <location filename="../Project/Project.py" line="5338" /> + <location filename="../Project/Project.py" line="5339" /> <source>&Clear</source> <translation>清除(&C)</translation> </message> <message> - <location filename="../Project/Project.py" line="5497" /> - <source>Search New Files</source> - <translation>搜索新文件</translation> - </message> - <message> <location filename="../Project/Project.py" line="5498" /> + <source>Search New Files</source> + <translation>搜索新文件</translation> + </message> + <message> + <location filename="../Project/Project.py" line="5499" /> <source>There were no new files found to be added.</source> <translation>没有要添加的新文件。</translation> </message> <message> - <location filename="../Project/Project.py" line="5649" /> - <location filename="../Project/Project.py" line="5636" /> - <source>Version Control System</source> - <translation>版本控制系统</translation> - </message> - <message> - <location filename="../Project/Project.py" line="5637" /> - <source><p>The selected VCS <b>{0}</b> could not be found. <br/>Reverting override.</p><p>{1}</p></source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Project/Project.py" line="5650" /> + <location filename="../Project/Project.py" line="5637" /> + <source>Version Control System</source> + <translation>版本控制系统</translation> + </message> + <message> + <location filename="../Project/Project.py" line="5638" /> + <source><p>The selected VCS <b>{0}</b> could not be found. <br/>Reverting override.</p><p>{1}</p></source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Project/Project.py" line="5651" /> <source><p>The selected VCS <b>{0}</b> could not be found.<br/>Disabling version control.</p><p>{1}</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="5798" /> + <location filename="../Project/Project.py" line="5799" /> <source>Coverage Data</source> <translation>覆盖率数据</translation> </message> <message> - <location filename="../Project/Project.py" line="5844" /> - <location filename="../Project/Project.py" line="5799" /> + <location filename="../Project/Project.py" line="5845" /> + <location filename="../Project/Project.py" line="5800" /> <source>There is no main script defined for the current project. Aborting</source> <translation>当前项目未定义主脚本。终止</translation> </message> <message> - <location filename="../Project/Project.py" line="5811" /> - <source>Code Coverage</source> - <translation>代码覆盖率</translation> - </message> - <message> <location filename="../Project/Project.py" line="5812" /> + <source>Code Coverage</source> + <translation>代码覆盖率</translation> + </message> + <message> + <location filename="../Project/Project.py" line="5813" /> <source>Please select a coverage file</source> <translation>请选择一个覆盖率文件</translation> </message> <message> - <location filename="../Project/Project.py" line="5857" /> + <location filename="../Project/Project.py" line="5858" /> <source>Please select a profile file</source> <translation>请选择一个剖析文件</translation> </message> <message> - <location filename="../Project/Project.py" line="5909" /> + <location filename="../Project/Project.py" line="5910" /> <source>Include module names?</source> <translation>包含模块名?</translation> </message> <message> - <location filename="../Project/Project.py" line="6045" /> + <location filename="../Project/Project.py" line="6046" /> <source><p>The file <b>PKGLIST</b> already exists.</p><p>Overwrite it?</p></source> <translation><p>文件 <b>PKGLIST</b> 已存在。</p><p>是否覆盖?</p></translation> </message> <message> - <location filename="../Project/Project.py" line="6104" /> + <location filename="../Project/Project.py" line="6105" /> <source><p>The file <b>PKGLIST</b> could not be created.</p><p>Reason: {0}</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6393" /> - <location filename="../Project/Project.py" line="6351" /> - <location filename="../Project/Project.py" line="6305" /> - <location filename="../Project/Project.py" line="6294" /> - <location filename="../Project/Project.py" line="6276" /> - <location filename="../Project/Project.py" line="6243" /> - <location filename="../Project/Project.py" line="6213" /> - <location filename="../Project/Project.py" line="6185" /> - <location filename="../Project/Project.py" line="6155" /> - <location filename="../Project/Project.py" line="6141" /> - <location filename="../Project/Project.py" line="6124" /> + <location filename="../Project/Project.py" line="6394" /> + <location filename="../Project/Project.py" line="6352" /> + <location filename="../Project/Project.py" line="6306" /> + <location filename="../Project/Project.py" line="6295" /> + <location filename="../Project/Project.py" line="6277" /> + <location filename="../Project/Project.py" line="6244" /> + <location filename="../Project/Project.py" line="6214" /> + <location filename="../Project/Project.py" line="6186" /> + <location filename="../Project/Project.py" line="6156" /> + <location filename="../Project/Project.py" line="6142" /> + <location filename="../Project/Project.py" line="6125" /> <source>Create Plugin Archive</source> <translation>创建插件存档</translation> </message> <message> - <location filename="../Project/Project.py" line="6125" /> + <location filename="../Project/Project.py" line="6126" /> <source>The project does not have a main script defined. Aborting...</source> <translation>项目未定义主脚本。终止…</translation> </message> <message> - <location filename="../Project/Project.py" line="6142" /> + <location filename="../Project/Project.py" line="6143" /> <source>Select package lists:</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6156" /> + <location filename="../Project/Project.py" line="6157" /> <source><p>No package list files (PKGLIST*) available or selected. Aborting...</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6164" /> - <source>Creating plugin archives...</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Project/Project.py" line="6165" /> + <source>Creating plugin archives...</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Project/Project.py" line="6166" /> <source>Abort</source> <translation type="unfinished">终止</translation> </message> <message> - <location filename="../Project/Project.py" line="6168" /> + <location filename="../Project/Project.py" line="6169" /> <source>%v/%m Archives</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6186" /> + <location filename="../Project/Project.py" line="6187" /> <source><p>The file <b>{0}</b> could not be read.</p><p>Reason: {1}</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6214" /> + <location filename="../Project/Project.py" line="6215" /> <source><p>The file <b>{0}</b> is not ready yet.</p><p>Please rework it and delete the'; initial_list' line of the header.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6244" /> + <location filename="../Project/Project.py" line="6245" /> <source><p>The eric plugin archive file <b>{0}</b> could not be created.</p><p>Reason: {1}</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6277" /> + <location filename="../Project/Project.py" line="6278" /> <source><p>The file <b>{0}</b> could not be stored in the archive. Ignoring it.</p><p>Reason: {1}</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6295" /> + <location filename="../Project/Project.py" line="6296" /> <source><p>The eric plugin archive files were created with some errors.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6306" /> + <location filename="../Project/Project.py" line="6307" /> <source><p>The eric plugin archive files were created successfully.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6352" /> + <location filename="../Project/Project.py" line="6353" /> <source><p>The plugin file <b>{0}</b> could not be read.</p><p>Reason: {1}</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6394" /> + <location filename="../Project/Project.py" line="6395" /> <source><p>The plugin file <b>{0}</b> could not be read.</p> <p>Reason: {1}</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6512" /> + <location filename="../Project/Project.py" line="6513" /> <source>The make process did not start.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6561" /> + <location filename="../Project/Project.py" line="6562" /> <source>The make process crashed.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6569" /> + <location filename="../Project/Project.py" line="6570" /> <source><p>There are changes that require the configured make target <b>{0}</b> to be rebuilt.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6574" /> + <location filename="../Project/Project.py" line="6575" /> <source><p>There are changes that require the default make target to be rebuilt.</p></source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6590" /> + <location filename="../Project/Project.py" line="6591" /> <source>The makefile contains errors.</source> <translation type="unfinished" /> </message> <message> - <location filename="../Project/Project.py" line="6745" /> + <location filename="../Project/Project.py" line="6746" /> <source><p><b>Black Version {0}</b></p><p><i>Black</i> is the uncompromising Python code formatter.</p></source> <translation type="unfinished" /> </message> @@ -57737,10 +57760,10 @@ <translation type="unfinished">在编辑器中打开</translation> </message> <message> - <location filename="../Project/ProjectOthersBrowser.py" line="353" /> - <location filename="../Project/ProjectOthersBrowser.py" line="345" /> - <location filename="../Project/ProjectOthersBrowser.py" line="335" /> - <location filename="../Project/ProjectOthersBrowser.py" line="327" /> + <location filename="../Project/ProjectOthersBrowser.py" line="357" /> + <location filename="../Project/ProjectOthersBrowser.py" line="349" /> + <location filename="../Project/ProjectOthersBrowser.py" line="339" /> + <location filename="../Project/ProjectOthersBrowser.py" line="331" /> <location filename="../Project/ProjectOthersBrowser.py" line="85" /> <source>Show Mime-Type</source> <translation>显示 MIME 类型</translation> @@ -57814,28 +57837,28 @@ <translation>配置…</translation> </message> <message> - <location filename="../Project/ProjectOthersBrowser.py" line="328" /> + <location filename="../Project/ProjectOthersBrowser.py" line="332" /> <source>The mime type of the file could not be determined.</source> <translation>文件 MIME 类型无法确定。</translation> </message> <message> - <location filename="../Project/ProjectOthersBrowser.py" line="346" /> - <location filename="../Project/ProjectOthersBrowser.py" line="336" /> + <location filename="../Project/ProjectOthersBrowser.py" line="350" /> + <location filename="../Project/ProjectOthersBrowser.py" line="340" /> <source>The file has the mime type <b>{0}</b>.</source> <translation>文件的 MIME 类型为 <b>{0}</b>。</translation> </message> <message> - <location filename="../Project/ProjectOthersBrowser.py" line="354" /> + <location filename="../Project/ProjectOthersBrowser.py" line="358" /> <source>The file has the mime type <b>{0}</b>.<br/> Shall it be added to the list of text mime types?</source> <translation type="unfinished">该文件有 MIME 类型。<b>{0}</b>.<br/>将其添加至文本 MIME 类型列表?</translation> </message> <message> - <location filename="../Project/ProjectOthersBrowser.py" line="447" /> + <location filename="../Project/ProjectOthersBrowser.py" line="451" /> <source>Delete files/directories</source> <translation>删除文件或文件夹</translation> </message> <message> - <location filename="../Project/ProjectOthersBrowser.py" line="448" /> + <location filename="../Project/ProjectOthersBrowser.py" line="452" /> <source>Do you really want to delete these entries from the project?</source> <translation>确定要从项目中删除这些条目吗?</translation> </message> @@ -85165,60 +85188,60 @@ <translation type="unfinished" /> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="901" /> + <location filename="../Debugger/VariablesViewer.py" line="904" /> <source>Global Variables</source> <translation>全局变量</translation> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="903" /> + <location filename="../Debugger/VariablesViewer.py" line="906" /> <source><b>The Global Variables Viewer Window</b><p>This window displays the global variables of the debugged program.</p></source> <translation><b>全局变量浏览器窗口</b><p>该窗口显示调试程序的全局变量。</p></translation> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="910" /> + <location filename="../Debugger/VariablesViewer.py" line="913" /> <source>Local Variables</source> <translation>局部变量</translation> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="912" /> + <location filename="../Debugger/VariablesViewer.py" line="915" /> <source><b>The Local Variables Viewer Window</b><p>This window displays the local variables of the debugged program.</p></source> <translation><b>局部变量浏览器窗口</b><p>该窗口显示高度程序的局部变量。</p></translation> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="1030" /> + <location filename="../Debugger/VariablesViewer.py" line="1039" /> <source>Show Details...</source> <translation>显示细节…</translation> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="1032" /> + <location filename="../Debugger/VariablesViewer.py" line="1041" /> <source>Expand</source> <translation type="unfinished" /> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="1033" /> - <source>Collapse</source> - <translation type="unfinished" /> - </message> - <message> - <location filename="../Debugger/VariablesViewer.py" line="1034" /> - <source>Collapse All</source> - <translation type="unfinished" /> - </message> - <message> <location filename="../Debugger/VariablesViewer.py" line="1042" /> - <location filename="../Debugger/VariablesViewer.py" line="1036" /> + <source>Collapse</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Debugger/VariablesViewer.py" line="1043" /> + <source>Collapse All</source> + <translation type="unfinished" /> + </message> + <message> + <location filename="../Debugger/VariablesViewer.py" line="1051" /> + <location filename="../Debugger/VariablesViewer.py" line="1045" /> <source>Refresh</source> <translation type="unfinished">刷新</translation> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="1044" /> - <location filename="../Debugger/VariablesViewer.py" line="1038" /> + <location filename="../Debugger/VariablesViewer.py" line="1053" /> + <location filename="../Debugger/VariablesViewer.py" line="1047" /> <source>Configure...</source> <translation>配置…</translation> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="1046" /> - <location filename="../Debugger/VariablesViewer.py" line="1039" /> + <location filename="../Debugger/VariablesViewer.py" line="1055" /> + <location filename="../Debugger/VariablesViewer.py" line="1048" /> <source>Variables Type Filter...</source> <translation type="unfinished" /> </message> @@ -95741,12 +95764,12 @@ <context> <name>eric7_ide</name> <message> - <location filename="../eric7_ide.py" line="394" /> + <location filename="../eric7_ide.py" line="395" /> <source>Starting...</source> <translation type="unfinished">正在启动…</translation> </message> <message> - <location filename="../eric7_ide.py" line="400" /> + <location filename="../eric7_ide.py" line="401" /> <source>Generating Main Window...</source> <translation type="unfinished">正在产生主窗口…</translation> </message>